diff --git a/src/embed/auto-frame-renderer.ts b/src/embed/auto-frame-renderer.ts index 32b54639..e0730a58 100644 --- a/src/embed/auto-frame-renderer.ts +++ b/src/embed/auto-frame-renderer.ts @@ -146,8 +146,12 @@ class AutoFrameRenderer extends TsEmbed { */ public async replaceIframe(iframe: HTMLIFrameElement): Promise { this.frameToReplace = iframe; + if (this.shouldWaitForRenderPromise) { + await this.isReadyForRenderPromise; + } const src = this.getMCPIframeSrc(iframe.src); await this.renderIFrame(src); + this.isRendered = true; } } diff --git a/src/embed/base.spec.ts b/src/embed/base.spec.ts index 6a77ad5f..1f1f1a97 100644 --- a/src/embed/base.spec.ts +++ b/src/embed/base.spec.ts @@ -10,7 +10,7 @@ import * as base from './base'; import * as embedConfigInstance from './embedConfig'; import * as resetService from '../utils/resetServices'; import * as processTrigger from '../utils/processTrigger'; -import { createAndSetInitPromise, getInitPromise, getIsInitCalled, reloadIframe } from './base'; +import { createAndSetInitPromise, getInitPromise, getIsInitCalled, getIsInitCompleted, reloadIframe } from './base'; import { executeAfterWait, @@ -607,4 +607,28 @@ describe('Init Promise Functions', () => { const secondPromise = getInitPromise(); expect(firstPromise).toBe(secondPromise); }); + + test('getIsInitCompleted returns false (not undefined) before init resolves', () => { + // fresh store via beforeEach; init not yet called + const result = getIsInitCompleted(); + expect(result).toBe(false); + expect(typeof result).toBe('boolean'); + }); + + test('getIsInitCompleted returns true after init resolves', async () => { + base.init({ + thoughtSpotHost: 'tshost', + authType: index.AuthType.None, + }); + await getInitPromise(); + // flush the finally() microtask + await new Promise((r) => setTimeout(r, 0)); + expect(getIsInitCompleted()).toBe(true); + }); + + test('getIsInitCompleted returns false when window store is absent', () => { + // clear the store from window + (window as any)._tsEmbedSDK = {}; + expect(getIsInitCompleted()).toBe(false); + }); }); \ No newline at end of file diff --git a/src/embed/base.ts b/src/embed/base.ts index 63c83ebc..5108569e 100644 --- a/src/embed/base.ts +++ b/src/embed/base.ts @@ -209,6 +209,10 @@ export const createAndSetInitPromise = (): void => { }); initPromise.finally(() => { const curVal = getValueFromWindow(initFlagKey); + if (!curVal) { + logger.error('initFlagStore missing when marking init complete'); + return; + } curVal.isInitCompleted = true; storeValueInWindow(initFlagKey, curVal); }); @@ -221,8 +225,8 @@ export const getInitPromise = (): ReturnType > => getValueFromWindow(initFlagKey)?.initPromise; -export const getIsInitCompleted = (): boolean => - getValueFromWindow(initFlagKey)?.isInitCompleted; +export const getIsInitCompleted = (): boolean => + !!getValueFromWindow(initFlagKey)?.isInitCompleted; export const getIsInitCalled = (): boolean => !!getValueFromWindow(initFlagKey)?.isInitCalled; diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index 4e424635..70888e04 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -133,9 +133,9 @@ const getMockAppInitPayload = (data: any) => { customVariablesForThirdPartyTools, interceptTimeout: undefined, interceptUrls: [], - shouldBypassPayloadValidation:undefined, - useHostEventsV2:undefined, - embedExpiryInAuthToken:true + shouldBypassPayloadValidation: undefined, + useHostEventsV2: undefined, + embedExpiryInAuthToken: true, }; return { type: EmbedEvent.APP_INIT, @@ -144,7 +144,7 @@ const getMockAppInitPayload = (data: any) => { ...data, }, }; -} +}; describe('Unit test case for ts embed', () => { const mockMixPanelEvent = jest.spyOn(mixpanelInstance, 'uploadMixpanelEvent'); @@ -223,9 +223,7 @@ describe('Unit test case for ts embed', () => { liveboardEmbed.render(); mockProcessTrigger.mockResolvedValue({ session: 'test' }); await executeAfterWait(async () => { - await liveboardEmbed.trigger( - HostEvent.Save, - ); + await liveboardEmbed.trigger(HostEvent.Save); expect(mockProcessTrigger).toHaveBeenCalledWith( getIFrameEl(), HostEvent.Save, @@ -244,10 +242,7 @@ describe('Unit test case for ts embed', () => { liveboardEmbed.render(); mockProcessTrigger.mockResolvedValue({ session: 'test' }); await executeAfterWait(async () => { - await liveboardEmbed.trigger( - HostEvent.Save, - false, - ); + await liveboardEmbed.trigger(HostEvent.Save, false); expect(mockProcessTrigger).toHaveBeenCalledWith( getIFrameEl(), HostEvent.Save, @@ -398,9 +393,11 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ - customisations: customisationsView, - })); + expect(mockPort.postMessage).toHaveBeenCalledWith( + getMockAppInitPayload({ + customisations: customisationsView, + }), + ); }); }); @@ -427,9 +424,11 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ - hiddenHomepageModules: [HomepageModule.MyLibrary, HomepageModule.Learning], - })); + expect(mockPort.postMessage).toHaveBeenCalledWith( + getMockAppInitPayload({ + hiddenHomepageModules: [HomepageModule.MyLibrary, HomepageModule.Learning], + }), + ); }); }); @@ -480,10 +479,14 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ - reorderedHomepageModules: - [HomepageModule.MyLibrary, HomepageModule.Watchlist], - })); + expect(mockPort.postMessage).toHaveBeenCalledWith( + getMockAppInitPayload({ + reorderedHomepageModules: [ + HomepageModule.MyLibrary, + HomepageModule.Watchlist, + ], + }), + ); }); }); @@ -513,9 +516,11 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ - runtimeParameterParams: 'param1=color¶mVal1=blue', - })); + expect(mockPort.postMessage).toHaveBeenCalledWith( + getMockAppInitPayload({ + runtimeParameterParams: 'param1=color¶mVal1=blue', + }), + ); }); }); @@ -546,9 +551,11 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ - runtimeFilterParams: 'col1=color&op1=EQ&val1=blue', - })); + expect(mockPort.postMessage).toHaveBeenCalledWith( + getMockAppInitPayload({ + runtimeFilterParams: 'col1=color&op1=EQ&val1=blue', + }), + ); }); }); @@ -638,10 +645,14 @@ describe('Unit test case for ts embed', () => { }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ - hiddenHomeLeftNavItems: - [HomeLeftNavItem.Home, HomeLeftNavItem.MonitorSubscription], - })); + expect(mockPort.postMessage).toHaveBeenCalledWith( + getMockAppInitPayload({ + hiddenHomeLeftNavItems: [ + HomeLeftNavItem.Home, + HomeLeftNavItem.MonitorSubscription, + ], + }), + ); }); }); @@ -824,10 +835,12 @@ describe('Unit test case for ts embed', () => { postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ - authToken: 'test_auth_token1', - customVariablesForThirdPartyTools: {}, - })); + expect(mockPort.postMessage).toHaveBeenCalledWith( + getMockAppInitPayload({ + authToken: 'test_auth_token1', + customVariablesForThirdPartyTools: {}, + }), + ); }); jest.spyOn(authService, 'verifyTokenService').mockClear(); @@ -878,37 +891,40 @@ describe('Unit test case for ts embed', () => { await executeAfterWait(() => { const iframe = getIFrameEl(); - expect(iframe.src).toContain('overrideStringIDsUrl=https://sample-string-ids-url.com'); + expect(iframe.src).toContain( + 'overrideStringIDsUrl=https://sample-string-ids-url.com', + ); postMessageToParent(iframe.contentWindow, mockEmbedEventPayload, mockPort); }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ - customisations: { - content: { - strings: { - Liveboard: 'Dashboard', + expect(mockPort.postMessage).toHaveBeenCalledWith( + getMockAppInitPayload({ + customisations: { + content: { + strings: { + Liveboard: 'Dashboard', + }, + stringIDsUrl: 'https://sample-string-ids-url.com', + stringIDs: { + 'liveboard.header.title': 'Dashboard name', + }, }, - stringIDsUrl: 'https://sample-string-ids-url.com', - stringIDs: { - 'liveboard.header.title': 'Dashboard name', + style: { + customCSS: {}, + customCSSUrl: undefined, }, }, - 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'); - expect(customisationContent.stringIDs) - .toEqual({ - 'liveboard.header.title': 'Dashboard name', - }); + 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'); + expect(customisationContent.stringIDs).toEqual({ + 'liveboard.header.title': 'Dashboard name', + }); }); }); @@ -917,7 +933,10 @@ describe('Unit test case for ts embed', () => { type: EmbedEvent.APP_INIT, data: {}, }; - const searchEmbed = new SearchEmbed(getRootEl(), { ...defaultViewConfig, exposeTranslationIDs: true }); + const searchEmbed = new SearchEmbed(getRootEl(), { + ...defaultViewConfig, + exposeTranslationIDs: true, + }); searchEmbed.render(); const mockPort: any = { postMessage: jest.fn(), @@ -963,16 +982,16 @@ describe('Unit test case for ts embed', () => { name: 'Valid Action', target: CustomActionTarget.LIVEBOARD, position: CustomActionsPosition.PRIMARY, - metadataIds: { liveboardIds: ['lb123'] } + metadataIds: { liveboardIds: ['lb123'] }, }, { id: 'action2', name: 'Another Valid Action', target: CustomActionTarget.VIZ, position: CustomActionsPosition.MENU, - metadataIds: { vizIds: ['viz456'] } - } - ] + metadataIds: { vizIds: ['viz456'] }, + }, + ], }); searchEmbed.render(); @@ -986,33 +1005,35 @@ describe('Unit test case for ts embed', () => { }); await executeAfterWait(() => { - expect(mockPort.postMessage).toHaveBeenCalledWith(getMockAppInitPayload({ - customisations: { - content: {}, - style: { - customCSS: {}, - customCSSUrl: undefined, - }, - }, - authToken: 'test_auth_token1', - customActions: [ - { - id: 'action2', - name: 'Another Valid Action', - target: CustomActionTarget.VIZ, - position: CustomActionsPosition.MENU, - metadataIds: { vizIds: ['viz456'] } + expect(mockPort.postMessage).toHaveBeenCalledWith( + getMockAppInitPayload({ + customisations: { + content: {}, + style: { + customCSS: {}, + customCSSUrl: undefined, + }, }, - { - id: 'action1', - name: 'Valid Action', - target: CustomActionTarget.LIVEBOARD, - position: CustomActionsPosition.PRIMARY, - metadataIds: { liveboardIds: ['lb123'] } - } - ], // Actions should be sorted by name - 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 @@ -1024,15 +1045,15 @@ describe('Unit test case for ts embed', () => { id: 'action1', name: 'Valid Action', target: CustomActionTarget.LIVEBOARD, - position: CustomActionsPosition.PRIMARY + position: CustomActionsPosition.PRIMARY, }), expect.objectContaining({ id: 'action2', name: 'Another Valid Action', target: CustomActionTarget.VIZ, - position: CustomActionsPosition.MENU - }) - ]) + position: CustomActionsPosition.MENU, + }), + ]), ); // Verify actions are sorted by name (alphabetically) @@ -1094,7 +1115,10 @@ describe('Unit test case for ts embed', () => { type: EmbedEvent.APP_INIT, data: {}, }; - const searchEmbed = new SearchEmbed(getRootEl(), { ...defaultViewConfig, preRenderId: 'test' }); + const searchEmbed = new SearchEmbed(getRootEl(), { + ...defaultViewConfig, + preRenderId: 'test', + }); searchEmbed.preRender(); const mockPort: any = { postMessage: jest.fn(), @@ -1153,7 +1177,10 @@ describe('Unit test case for ts embed', () => { type: EmbedEvent.AuthExpire, data: {}, }; - const searchEmbed = new SearchEmbed(getRootEl(), { ...defaultViewConfig, preRenderId: 'test' }); + const searchEmbed = new SearchEmbed(getRootEl(), { + ...defaultViewConfig, + preRenderId: 'test', + }); jest.spyOn(baseInstance, 'notifyAuthFailure'); searchEmbed.preRender(); const loggerSpy = jest.spyOn(logger, 'error').mockImplementation(() => {}); @@ -1318,23 +1345,27 @@ describe('Unit test case for ts embed', () => { let mockGetPreauthInfo = null; if (overrideOrgId) { - mockGetPreauthInfo = jest.spyOn(sessionInfoService, 'getPreauthInfo').mockImplementation(jest.fn()); + mockGetPreauthInfo = jest + .spyOn(sessionInfoService, 'getPreauthInfo') + .mockImplementation(jest.fn()); } - const mockPreauthInfoFetch = jest.spyOn(authService, 'fetchPreauthInfoService').mockResolvedValueOnce({ - ok: true, - headers: new Headers({ 'content-type': 'application/json' }), // Mock headers correctly - json: async () => ({ - info: { - configInfo: { - mixpanelConfig: { - devSdkKey: 'devSdkKey', + const mockPreauthInfoFetch = jest + .spyOn(authService, 'fetchPreauthInfoService') + .mockResolvedValueOnce({ + ok: true, + headers: new Headers({ 'content-type': 'application/json' }), // Mock headers correctly + json: async () => ({ + info: { + configInfo: { + mixpanelConfig: { + devSdkKey: 'devSdkKey', + }, }, + userGUID: 'userGUID', }, - userGUID: 'userGUID', - }, - }), // Mock JSON response - }); + }), // Mock JSON response + }); const iFrame: any = document.createElement('div'); jest.spyOn(baseInstance, 'getAuthPromise').mockResolvedValueOnce(isLoggedIn); const tsEmbed = new SearchEmbed(getRootEl(), { @@ -1360,10 +1391,7 @@ describe('Unit test case for ts embed', () => { }; test('should call InfoSuccess Event on preauth call success', async () => { - const { - mockPreauthInfoFetch, - iFrame, - } = await setup(true); + const { mockPreauthInfoFetch, iFrame } = await setup(true); expect(mockPreauthInfoFetch).toHaveBeenCalledTimes(1); await executeAfterWait(() => { @@ -1378,9 +1406,7 @@ describe('Unit test case for ts embed', () => { }); test('should not call InfoSuccess Event if overrideOrgId is true', async () => { - const { - mockGetPreauthInfo, - } = await setup(true, 123); + const { mockGetPreauthInfo } = await setup(true, 123); expect(mockGetPreauthInfo).toHaveBeenCalledTimes(0); }); }); @@ -1405,7 +1431,7 @@ describe('Unit test case for ts embed', () => { embedType: 'AppEmbed' | 'SearchEmbed', showPrimaryNavbar?: boolean, overrideOrgId?: number, - disablePreauthCache?: boolean + disablePreauthCache?: boolean, ) => { jest.spyOn(window, 'addEventListener').mockImplementationOnce( (event, handler, options) => { @@ -1422,18 +1448,23 @@ describe('Unit test case for ts embed', () => { let mockGetPreauthInfo = null; // Determine if preauth cache should be enabled - const isAppEmbedWithPrimaryNavbar = embedType === 'AppEmbed' && showPrimaryNavbar === true; - const shouldDisableCache = overrideOrgId || disablePreauthCache || isAppEmbedWithPrimaryNavbar; + const isAppEmbedWithPrimaryNavbar = + embedType === 'AppEmbed' && showPrimaryNavbar === true; + const shouldDisableCache = + overrideOrgId || disablePreauthCache || isAppEmbedWithPrimaryNavbar; if (shouldDisableCache) { - mockGetPreauthInfo = jest.spyOn(sessionInfoService, 'getPreauthInfo') + mockGetPreauthInfo = jest + .spyOn(sessionInfoService, 'getPreauthInfo') .mockImplementation(jest.fn()); } else { - mockGetPreauthInfo = jest.spyOn(sessionInfoService, 'getPreauthInfo') - .mockResolvedValue({ info: { test: 'data' } } as any); + mockGetPreauthInfo = jest + .spyOn(sessionInfoService, 'getPreauthInfo') + .mockResolvedValue({ info: { test: 'data' } } as any); } - const mockPreauthInfoFetch = jest.spyOn(authService, 'fetchPreauthInfoService') + const mockPreauthInfoFetch = jest + .spyOn(authService, 'fetchPreauthInfoService') .mockResolvedValueOnce({ ok: true, headers: new Headers({ 'content-type': 'application/json' }), @@ -1568,7 +1599,12 @@ describe('Unit test case for ts embed', () => { }); test('should disable preauth cache for FullAppEmbed with disablePreauthCache = true', async () => { - const { mockGetPreauthInfo } = await setupPreauthTest('AppEmbed', false, undefined, true); + const { mockGetPreauthInfo } = await setupPreauthTest( + 'AppEmbed', + false, + undefined, + true, + ); await executeAfterWait(() => { expect(mockGetPreauthInfo).toHaveBeenCalledTimes(0); @@ -1634,9 +1670,12 @@ describe('Unit test case for ts embed', () => { test('mixpanel should call with VISUAL_SDK_RENDER_FAILED', () => { expect(mockMixPanelEvent).toHaveBeenCalledWith(MIXPANEL_EVENT.VISUAL_SDK_RENDER_START); - expect(mockMixPanelEvent).toHaveBeenCalledWith(MIXPANEL_EVENT.VISUAL_SDK_RENDER_FAILED, { - error: 'false', - }); + expect(mockMixPanelEvent).toHaveBeenCalledWith( + MIXPANEL_EVENT.VISUAL_SDK_RENDER_FAILED, + { + error: 'false', + }, + ); }); }); @@ -2003,8 +2042,8 @@ describe('Unit test case for ts embed', () => { await appEmbed.render(); expectUrlMatchesWithParams( getIFrameSrc(), - `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false&${defaultParamsForPinboardEmbed}` - + `&foo=bar&baz=1&bool=true${defaultParamsPost}#/home`, + `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false&${defaultParamsForPinboardEmbed}` + + `&foo=bar&baz=1&bool=true${defaultParamsPost}#/home`, ); }); @@ -2032,8 +2071,8 @@ describe('Unit test case for ts embed', () => { await appEmbed.render(); expectUrlMatchesWithParams( getIFrameSrc(), - `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false&${defaultParamsForPinboardEmbed}` - + `&foo=bar&foo2=bar2&foo3=false&baz=1&bool=true${defaultParamsPost}#/home`, + `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false&${defaultParamsForPinboardEmbed}` + + `&foo=bar&foo2=bar2&foo3=false&baz=1&bool=true${defaultParamsPost}#/home`, ); }); @@ -2048,8 +2087,8 @@ describe('Unit test case for ts embed', () => { await appEmbed.render(); expectUrlMatchesWithParams( getIFrameSrc(), - `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false&${defaultParamsForPinboardEmbed}` - + `&showAlerts=true${defaultParamsPost}#/home`, + `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false&${defaultParamsForPinboardEmbed}` + + `&showAlerts=true${defaultParamsPost}#/home`, ); }); it('Sets the locale param', async () => { @@ -2063,8 +2102,8 @@ describe('Unit test case for ts embed', () => { await appEmbed.render(); expectUrlMatchesWithParams( getIFrameSrc(), - `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false&${defaultParamsForPinboardEmbed}` - + `&locale=ja-JP${defaultParamsPost}#/home`, + `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false&${defaultParamsForPinboardEmbed}` + + `&locale=ja-JP${defaultParamsPost}#/home`, ); }); it('Sets both params when enableLinkOverridesV2 is set', async () => { @@ -2110,8 +2149,8 @@ describe('Unit test case for ts embed', () => { await appEmbed.render(); expectUrlMatchesWithParams( getIFrameSrc(), - `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false&${defaultParamsForPinboardEmbed}` - + `&iconSprite=iconSprite.com${defaultParamsPost}#/home`, + `http://${thoughtSpotHost}/?embedApp=true&primaryNavHidden=true&profileAndHelpInNavBarHidden=false&${defaultParamsForPinboardEmbed}` + + `&iconSprite=iconSprite.com${defaultParamsPost}#/home`, ); }); @@ -2391,8 +2430,9 @@ describe('Unit test case for ts embed', () => { tsEmbedDiv.style.height = '100px'; let resizeObserverCb: any; - (window as any).ResizeObserver = window.ResizeObserver - || jest.fn().mockImplementation((resizeObserverCbParam) => { + (window as any).ResizeObserver = + window.ResizeObserver || + jest.fn().mockImplementation((resizeObserverCbParam) => { resizeObserverCb = resizeObserverCbParam; return { disconnect: jest.fn(), @@ -2476,8 +2516,9 @@ describe('Unit test case for ts embed', () => { it('should set overflow:hidden when hidePreRender and remove when showPreRender', async () => { createRootEleForEmbed(); - (window as any).ResizeObserver = window.ResizeObserver - || jest.fn().mockImplementation(() => ({ + (window as any).ResizeObserver = + window.ResizeObserver || + jest.fn().mockImplementation(() => ({ disconnect: jest.fn(), observe: jest.fn(), unobserve: jest.fn(), @@ -2514,8 +2555,9 @@ describe('Unit test case for ts embed', () => { it('it should connect with another object', async () => { createRootEleForEmbed(); mockMessageChannel(); - (window as any).ResizeObserver = window.ResizeObserver - || jest.fn().mockImplementation(() => ({ + (window as any).ResizeObserver = + window.ResizeObserver || + jest.fn().mockImplementation(() => ({ disconnect: jest.fn(), observe: jest.fn(), unobserve: jest.fn(), @@ -2714,7 +2756,10 @@ describe('Unit test case for ts embed', () => { document.body.innerHTML = getDocumentBody(); }); test('Pre-render should wait for init to complete', async () => { - const lib = new LiveboardEmbed(getRootEl(), { preRenderId: 'test', liveboardId: 'test' }); + const lib = new LiveboardEmbed(getRootEl(), { + preRenderId: 'test', + liveboardId: 'test', + }); lib.preRender(); await executeAfterWait(() => { expect(errorSpy).toHaveBeenCalledWith(ERROR_MESSAGE.RENDER_CALLED_BEFORE_INIT); @@ -2789,10 +2834,12 @@ describe('Unit test case for ts embed', () => { jest.clearAllMocks(); document.body.innerHTML = getDocumentBody(); mockPort.postMessage.mockClear(); - jest.spyOn(authToken, 'getAuthenticationToken').mockResolvedValue('mock-test-token-placeholder'); + jest.spyOn(authToken, 'getAuthenticationToken').mockResolvedValue( + 'mock-test-token-placeholder', + ); jest.spyOn(baseInstance, 'handleAuth').mockImplementation(() => Promise.resolve(true)); - jest.spyOn(baseInstance, 'notifyAuthFailure').mockImplementation(() => { }); + jest.spyOn(baseInstance, 'notifyAuthFailure').mockImplementation(() => {}); }); const renderAndTriggerAuthExpire = async () => { @@ -2905,7 +2952,7 @@ describe('Unit test case for ts embed', () => { afterEach(() => { expect(baseInstance.notifyAuthFailure).toHaveBeenCalledWith( - authInstance.AuthFailureType.EXPIRY + authInstance.AuthFailureType.EXPIRY, ); }); }); @@ -2918,8 +2965,10 @@ describe('Unit test case for ts embed', () => { jest.clearAllMocks(); document.body.innerHTML = getDocumentBody(); mockPort.postMessage.mockClear(); - jest.spyOn(authToken, 'getAuthenticationToken').mockResolvedValue('mock-test-token-placeholder'); - jest.spyOn(processData, 'processAuthFailure').mockImplementation(() => ({} as any)); + jest.spyOn(authToken, 'getAuthenticationToken').mockResolvedValue( + 'mock-test-token-placeholder', + ); + jest.spyOn(processData, 'processAuthFailure').mockImplementation(() => ({}) as any); jest.spyOn(logger, 'error').mockImplementation(() => {}); }); @@ -2949,7 +2998,7 @@ describe('Unit test case for ts embed', () => { await executeAfterWait(() => { expect(authToken.getAuthenticationToken).toHaveBeenCalledWith( expect.any(Object), - true + true, ); }); }); @@ -2966,7 +3015,7 @@ describe('Unit test case for ts embed', () => { await executeAfterWait(() => { expect(authToken.getAuthenticationToken).toHaveBeenCalledWith( expect.any(Object), - true + true, ); }); }); @@ -3001,17 +3050,19 @@ describe('Unit test case for ts embed', () => { await executeAfterWait(() => { expect(authToken.getAuthenticationToken).toHaveBeenCalledWith( expect.any(Object), - true + true, ); // Check that logger.error was called with the token refresh // error const errorCalls = (logger.error as jest.Mock).mock.calls.filter( - (call) => call[0]?.includes(ERROR_MESSAGE.INVALID_TOKEN_ERROR) && call[0]?.includes('Token fetch failed') + (call) => + call[0]?.includes(ERROR_MESSAGE.INVALID_TOKEN_ERROR) && + call[0]?.includes('Token fetch failed'), ); expect(errorCalls.length).toBeGreaterThan(0); expect(processData.processAuthFailure).toHaveBeenCalledWith( error, - expect.any(Element) + expect.any(Element), ); expect(mockPort.postMessage).not.toHaveBeenCalled(); }); @@ -3200,7 +3251,9 @@ describe('Unit test case for ts embed', () => { isEmbedContainerLoaded: true, }; - jest.spyOn(searchEmbed as any, 'getPreRenderObj').mockReturnValue(mockPreRenderObj as any); + jest.spyOn(searchEmbed as any, 'getPreRenderObj').mockReturnValue( + mockPreRenderObj as any, + ); const result = searchEmbed['checkEmbedContainerLoaded'](); @@ -3276,7 +3329,8 @@ describe('Unit test case for ts embed', () => { const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); searchEmbed.isEmbedContainerLoaded = true; - const triggerSpy = jest.spyOn(searchEmbed, 'trigger') + const triggerSpy = jest + .spyOn(searchEmbed, 'trigger') .mockResolvedValue(mockContext); const context = await searchEmbed.getCurrentContext(); @@ -3289,7 +3343,8 @@ describe('Unit test case for ts embed', () => { const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); searchEmbed.isEmbedContainerLoaded = false; - const triggerSpy = jest.spyOn(searchEmbed, 'trigger') + const triggerSpy = jest + .spyOn(searchEmbed, 'trigger') .mockResolvedValue(mockContext); const contextPromise = searchEmbed.getCurrentContext(); @@ -3341,7 +3396,9 @@ describe('Unit test case for ts embed', () => { test('should handle handleEmbedContainerLoaded with EmbedListenerReady source', () => { const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); - const handler = searchEmbed['createEmbedContainerHandler'](EmbedEvent.EmbedListenerReady); + const handler = searchEmbed['createEmbedContainerHandler']( + EmbedEvent.EmbedListenerReady, + ); expect(searchEmbed.isEmbedContainerLoaded).toBe(false); @@ -3411,7 +3468,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'); @@ -3533,11 +3590,13 @@ describe('Unit test case for ts embed', () => { await appEmbed.render(); jest.spyOn(appEmbed, 'trigger').mockRejectedValue(new Error('trigger failed')); - const removeChildSpy = jest.spyOn(Node.prototype, 'removeChild').mockImplementation(() => getRootEl()); + const removeChildSpy = jest + .spyOn(Node.prototype, 'removeChild') + .mockImplementation(() => getRootEl()); appEmbed.destroy(); - await new Promise(resolve => setTimeout(resolve, 50)); + await new Promise((resolve) => setTimeout(resolve, 50)); expect(removeChildSpy).toHaveBeenCalled(); @@ -3570,7 +3629,9 @@ describe('Unit test case for ts embed', () => { await appEmbed.render(); const triggerSpy = jest.spyOn(appEmbed, 'trigger').mockResolvedValue(null); - const removeChildSpy = jest.spyOn(Node.prototype, 'removeChild').mockImplementation(() => getRootEl()); + const removeChildSpy = jest + .spyOn(Node.prototype, 'removeChild') + .mockImplementation(() => getRootEl()); appEmbed.destroy(); @@ -3594,7 +3655,9 @@ describe('Unit test case for ts embed', () => { await appEmbed.render(); const triggerSpy = jest.spyOn(appEmbed, 'trigger').mockResolvedValue(null); - const removeChildSpy = jest.spyOn(Node.prototype, 'removeChild').mockImplementation(() => getRootEl()); + const removeChildSpy = jest + .spyOn(Node.prototype, 'removeChild') + .mockImplementation(() => getRootEl()); appEmbed.destroy(); @@ -3602,7 +3665,7 @@ describe('Unit test case for ts embed', () => { expect(triggerSpy).toHaveBeenCalledWith(HostEvent.DestroyEmbed); // Wait for the timeout to complete - await new Promise(resolve => setTimeout(resolve, 1100)); + await new Promise((resolve) => setTimeout(resolve, 1100)); expect(removeChildSpy).toHaveBeenCalled(); }); @@ -3623,15 +3686,19 @@ describe('Unit test case for ts embed', () => { 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()); + 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)); + await new Promise((resolve) => setTimeout(resolve, 200)); expect(triggerSpy).toHaveBeenCalledWith(HostEvent.DestroyEmbed); expect(removeChildSpy).toHaveBeenCalled(); @@ -3653,15 +3720,19 @@ describe('Unit test case for ts embed', () => { 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()); + 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)); + await new Promise((resolve) => setTimeout(resolve, 200)); expect(triggerSpy).toHaveBeenCalledWith(HostEvent.DestroyEmbed); expect(removeChildSpy).toHaveBeenCalled(); @@ -3693,11 +3764,11 @@ describe('Unit test case for ts embed', () => { body: JSON.stringify({ variables: { session: { sessionId: 'session-123' }, - contextBookId: 'viz-456' - } - }) - } - }) + contextBookId: 'viz-456', + }, + }), + }, + }), }; const mockPort: any = { @@ -3734,8 +3805,8 @@ describe('Unit test case for ts embed', () => { type: EmbedEvent.ApiIntercept, data: JSON.stringify({ input: '/prism/?op=GetChartWithData', - init: {} - }) + init: {}, + }), }; const mockPort: any = { @@ -3776,8 +3847,8 @@ describe('Unit test case for ts embed', () => { type: EmbedEvent.ApiIntercept, data: JSON.stringify({ input: '/prism/?op=GetChartWithData', - init: {} - }) + init: {}, + }), }; const mockPort: any = { @@ -3799,7 +3870,7 @@ describe('Unit test case for ts embed', () => { // handleInterceptEvent const result = await capturedGetUnsavedAnswerTml({ sessionId: 'session-123', - vizId: 'viz-456' + vizId: 'viz-456', }); expect(mockProcessTrigger).toHaveBeenCalled(); @@ -3810,8 +3881,8 @@ describe('Unit test case for ts embed', () => { type: 'getUnsavedAnswerTML', parameters: { sessionId: 'session-123', - vizId: 'viz-456' - } + vizId: 'viz-456', + }, }); expect(result).toEqual(mockTmlResponse); }); @@ -3831,8 +3902,8 @@ describe('Unit test case for ts embed', () => { type: EmbedEvent.ApiIntercept, data: JSON.stringify({ input: '/api/test', - init: {} - }) + init: {}, + }), }; const mockPort: any = { @@ -3861,8 +3932,8 @@ describe('Unit test case for ts embed', () => { type: EmbedEvent.ApiIntercept, data: JSON.stringify({ input: '/prism/?op=GetChartWithData', - init: {} - }) + init: {}, + }), }; const mockPort: any = { @@ -3914,16 +3985,16 @@ describe('Unit test case for ts embed', () => { type: EmbedEvent.ApiIntercept, data: JSON.stringify({ input: '/prism/?op=GetChartWithData', - init: {} - }) + init: {}, + }), }; const mockEventData2 = { type: EmbedEvent.ApiIntercept, data: JSON.stringify({ input: '/prism/?op=LoadContextBook', - init: {} - }) + init: {}, + }), }; const mockPort: any = { @@ -3959,8 +4030,8 @@ describe('Unit test case for ts embed', () => { type: EmbedEvent.ApiIntercept, data: JSON.stringify({ input: '/prism/?op=GetChartWithData', - init: {} - }) + init: {}, + }), }; const mockPort: any = { @@ -4000,8 +4071,8 @@ describe('Unit test case for ts embed', () => { type: EmbedEvent.ApiIntercept, data: JSON.stringify({ input: '/prism/?op=GetChartWithData', - init: {} - }) + init: {}, + }), }; const mockPort: any = { @@ -4018,7 +4089,7 @@ describe('Unit test case for ts embed', () => { const result = await capturedGetUnsavedAnswerTml({ sessionId: 'session-123', - vizId: 'viz-456' + vizId: 'viz-456', }); expect(result).toBeUndefined(); @@ -4036,8 +4107,8 @@ describe('Unit test case for ts embed', () => { type: EmbedEvent.ApiIntercept, data: JSON.stringify({ input: '/prism/?op=LoadContextBook', - init: {} - }) + init: {}, + }), }; const mockPort: any = { @@ -4054,14 +4125,13 @@ describe('Unit test case for ts embed', () => { expect(mockHandleInterceptEvent).toHaveBeenCalledWith( expect.objectContaining({ eventData: mockEventData, - }) + }), ); }); }); }); }); - describe('Additional Coverage Tests', () => { beforeAll(() => { init({ @@ -4166,9 +4236,7 @@ describe('Trigger method edge cases', () => { }); test('should return null when trigger is called before iframe is ready', async () => { - jest.spyOn(baseInstance, 'getAuthPromise').mockRejectedValueOnce( - new Error('Auth failed'), - ); + jest.spyOn(baseInstance, 'getAuthPromise').mockRejectedValueOnce(new Error('Auth failed')); const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); jest.spyOn(logger, 'debug'); await searchEmbed.render(); @@ -4336,12 +4404,16 @@ describe('Fullscreen change handler behavior', () => { }); describe('ShowPreRender with UpdateEmbedParams', () => { - const setupPreRenderTest = async (preRenderId: string, initialConfig: Partial) => { + const setupPreRenderTest = async ( + preRenderId: string, + initialConfig: Partial, + ) => { createRootEleForEmbed(); mockMessageChannel(); - (window as any).ResizeObserver = window.ResizeObserver - || jest.fn().mockImplementation(() => ({ + (window as any).ResizeObserver = + window.ResizeObserver || + jest.fn().mockImplementation(() => ({ disconnect: jest.fn(), observe: jest.fn(), unobserve: jest.fn(), @@ -4551,7 +4623,8 @@ describe('ShowPreRender with UpdateEmbedParams', () => { }); }); - // Matches the structure produced by createValidationError / embedErrorDetails + // Matches the structure produced by createValidationError / + // embedErrorDetails const makeNestedValidationData = (message = 'invalid payload') => ({ type: EmbedEvent.Error, data: { @@ -4562,7 +4635,8 @@ describe('ShowPreRender with UpdateEmbedParams', () => { }, }); - // Matches the flat structure where errorType sits at the top level of data + // Matches the flat structure where errorType sits at the top level of + // data const makeFlatValidationData = (message = 'invalid payload') => ({ errorType: EmbedErrorCodes.HOST_EVENT_VALIDATION, message, @@ -4597,12 +4671,13 @@ describe('ShowPreRender with UpdateEmbedParams', () => { const embed = makeEmbed({ useHostEventsV2: true, shouldBypassPayloadValidation: true }); embed.on(EmbedEvent.Error, errorHandler); - (embed as any).executeCallbacks(EmbedEvent.Error, makeNestedValidationData('nested error')); + (embed as any).executeCallbacks( + EmbedEvent.Error, + makeNestedValidationData('nested error'), + ); expect(errorHandler).not.toHaveBeenCalled(); - expect(logger.warn).toHaveBeenCalledWith( - 'Host Event Validation failed: nested error', - ); + expect(logger.warn).toHaveBeenCalledWith('Host Event Validation failed: nested error'); }); test('skips Error event when errorType is resolved from data.errorType (flat format)', () => { @@ -4618,7 +4693,10 @@ describe('ShowPreRender with UpdateEmbedParams', () => { test('delivers Error event to handler when useHostEventsV2 is true and shouldBypassPayloadValidation is undefined', () => { const errorHandler = jest.fn(); - const embed = makeEmbed({ useHostEventsV2: true, shouldBypassPayloadValidation: undefined }); + const embed = makeEmbed({ + useHostEventsV2: true, + shouldBypassPayloadValidation: undefined, + }); embed.on(EmbedEvent.Error, errorHandler); (embed as any).executeCallbacks(EmbedEvent.Error, makeNestedValidationData()); @@ -4628,7 +4706,10 @@ describe('ShowPreRender with UpdateEmbedParams', () => { test('delivers Error event to handler when useHostEventsV2 is true and shouldBypassPayloadValidation is false', () => { const errorHandler = jest.fn(); - const embed = makeEmbed({ useHostEventsV2: true, shouldBypassPayloadValidation: false }); + const embed = makeEmbed({ + useHostEventsV2: true, + shouldBypassPayloadValidation: false, + }); embed.on(EmbedEvent.Error, errorHandler); (embed as any).executeCallbacks(EmbedEvent.Error, makeNestedValidationData()); @@ -4639,7 +4720,10 @@ describe('ShowPreRender with UpdateEmbedParams', () => { test('skips Error event when useHostEventsV2 is false regardless of shouldBypassPayloadValidation', () => { jest.spyOn(logger, 'warn'); const errorHandler = jest.fn(); - const embed = makeEmbed({ useHostEventsV2: false, shouldBypassPayloadValidation: undefined }); + const embed = makeEmbed({ + useHostEventsV2: false, + shouldBypassPayloadValidation: undefined, + }); embed.on(EmbedEvent.Error, errorHandler); (embed as any).executeCallbacks(EmbedEvent.Error, makeNestedValidationData()); @@ -4663,13 +4747,18 @@ describe('ShowPreRender with UpdateEmbedParams', () => { test('skips Error event when useHostEventsV2 is false and shouldBypassPayloadValidation is true', () => { jest.spyOn(logger, 'warn'); const errorHandler = jest.fn(); - const embed = makeEmbed({ useHostEventsV2: false, shouldBypassPayloadValidation: true }); + const embed = makeEmbed({ + useHostEventsV2: false, + shouldBypassPayloadValidation: true, + }); embed.on(EmbedEvent.Error, errorHandler); (embed as any).executeCallbacks(EmbedEvent.Error, makeNestedValidationData()); expect(errorHandler).not.toHaveBeenCalled(); - expect(logger.warn).toHaveBeenCalledWith('Host Event Validation failed: invalid payload'); + expect(logger.warn).toHaveBeenCalledWith( + 'Host Event Validation failed: invalid payload', + ); }); test('skips via handleError when shouldBypassPayloadValidation is true', () => { @@ -4694,7 +4783,10 @@ describe('ShowPreRender with UpdateEmbedParams', () => { test('delivers Error event to EmbedEvent.ALL handler when not skipped', () => { const allHandler = jest.fn(); - const embed = makeEmbed({ useHostEventsV2: true, shouldBypassPayloadValidation: false }); + const embed = makeEmbed({ + useHostEventsV2: true, + shouldBypassPayloadValidation: false, + }); embed.on(EmbedEvent.ALL, allHandler); (embed as any).executeCallbacks(EmbedEvent.Error, makeNestedValidationData()); @@ -4704,7 +4796,10 @@ describe('ShowPreRender with UpdateEmbedParams', () => { test('does not skip non-Error events even with HOST_EVENT_VALIDATION error code', () => { const customActionHandler = jest.fn(); - const embed = makeEmbed({ useHostEventsV2: true, shouldBypassPayloadValidation: false }); + const embed = makeEmbed({ + useHostEventsV2: true, + shouldBypassPayloadValidation: false, + }); embed.on(EmbedEvent.CustomAction, customActionHandler); (embed as any).executeCallbacks(EmbedEvent.CustomAction, { @@ -4716,7 +4811,10 @@ describe('ShowPreRender with UpdateEmbedParams', () => { test('does not skip Error events with unrelated error codes', () => { const errorHandler = jest.fn(); - const embed = makeEmbed({ useHostEventsV2: true, shouldBypassPayloadValidation: false }); + const embed = makeEmbed({ + useHostEventsV2: true, + shouldBypassPayloadValidation: false, + }); embed.on(EmbedEvent.Error, errorHandler); (embed as any).executeCallbacks(EmbedEvent.Error, { @@ -4727,4 +4825,171 @@ describe('ShowPreRender with UpdateEmbedParams', () => { expect(errorHandler).toHaveBeenCalled(); }); }); + + describe('constructor init-path branching (SCAL-315058)', () => { + beforeEach(() => { + init({ + thoughtSpotHost: 'tshost', + authType: AuthType.None, + }); + }); + + it('sets hostElement from domSelector', () => { + const embed = new SearchEmbed(getRootEl(), defaultViewConfig); + expect((embed as any).hostElement).toBe(getRootEl()); + }); + + it('skips isReadyForRenderPromise when init already completed', () => { + jest.spyOn(baseInstance, 'getIsInitCompleted').mockReturnValue(true); + const embed = new SearchEmbed(getRootEl(), defaultViewConfig); + expect((embed as any).shouldWaitForRenderPromise).toBe(false); + expect((embed as any).isReadyForRenderPromise).toBeUndefined(); + }); + + it('sets isReadyForRenderPromise when init not yet completed', () => { + jest.spyOn(baseInstance, 'getIsInitCompleted').mockReturnValue(false); + const embed = new SearchEmbed(getRootEl(), defaultViewConfig); + expect((embed as any).shouldWaitForRenderPromise).toBe(true); + expect((embed as any).isReadyForRenderPromise).toBeInstanceOf(Promise); + }); + + it('afterInit runs synchronously when init already completed', () => { + jest.spyOn(baseInstance, 'getIsInitCompleted').mockReturnValue(true); + const embed = new SearchEmbed(getRootEl(), defaultViewConfig); + // thoughtSpotHost is set by afterInit; + // must be non-empty after constructor + expect((embed as any).thoughtSpotHost).toBeTruthy(); + }); + + it('does not set isReadyForRenderPromise when shouldWaitForRenderPromise is false', () => { + jest.spyOn(baseInstance, 'getIsInitCompleted').mockReturnValue(true); + const embed = new SearchEmbed(getRootEl(), defaultViewConfig); + expect((embed as any).shouldWaitForRenderPromise).toBe(false); + // isReadyForRenderPromise must be undefined + // so no unnecessary await occurs + expect((embed as any).isReadyForRenderPromise).toBeUndefined(); + }); + + it('shouldWaitForRenderPromise flips to false after promise settles', async () => { + jest.spyOn(baseInstance, 'getIsInitCompleted').mockReturnValue(false); + const embed = new SearchEmbed(getRootEl(), defaultViewConfig); + expect((embed as any).shouldWaitForRenderPromise).toBe(true); + await (embed as any).isReadyForRenderPromise; + expect((embed as any).shouldWaitForRenderPromise).toBe(false); + }); + + it('calls throwInitError when getInitPromise rejects', async () => { + jest.spyOn(baseInstance, 'getIsInitCompleted').mockReturnValue(false); + jest.spyOn(baseInstance, 'getInitPromise').mockReturnValue( + Promise.reject(new Error('init failed')), + ); + const embed = new SearchEmbed(getRootEl(), defaultViewConfig); + const throwInitErrorSpy = jest.spyOn(embed as any, 'throwInitError'); + await (embed as any).isReadyForRenderPromise; + expect(throwInitErrorSpy).toHaveBeenCalled(); + }); + + it('shouldWaitForRenderPromise flips to false even when getInitPromise rejects', async () => { + jest.spyOn(baseInstance, 'getIsInitCompleted').mockReturnValue(false); + jest.spyOn(baseInstance, 'getInitPromise').mockReturnValue( + Promise.reject(new Error('init failed')), + ); + const embed = new SearchEmbed(getRootEl(), defaultViewConfig); + await (embed as any).isReadyForRenderPromise; + expect((embed as any).shouldWaitForRenderPromise).toBe(false); + }); + }); + + describe('preRender ID object includes placeHolder (SCAL-315058)', () => { + beforeAll(() => { + init({ + thoughtSpotHost: 'tshost', + authType: AuthType.None, + }); + }); + + it('getPreRenderIds returns placeHolder key', () => { + createRootEleForEmbed(); + const embed = new LiveboardEmbed('#tsEmbedDiv', { + preRenderId: 'ph-test', + liveboardId: 'lb-id', + }); + const ids = embed.getPreRenderIds(); + expect(ids.placeHolder).toBe('tsEmbed-pre-render-placeholder-ph-test'); + }); + }); + + describe('isPreRenderConnected logic (SCAL-315058)', () => { + beforeAll(() => { + init({ + thoughtSpotHost: 'tshost', + authType: AuthType.None, + }); + }); + + it('returns false when preRenderWrapper is absent', () => { + createRootEleForEmbed(); + const embed = new LiveboardEmbed('#tsEmbedDiv', { + preRenderId: 'conn-test', + liveboardId: 'lb-id', + }); + expect((embed as any).isPreRenderConnected()).toBe(false); + }); + + it('returns true once preRenderWrapper and preRenderChild are set', () => { + createRootEleForEmbed(); + const embed = new LiveboardEmbed('#tsEmbedDiv', { + preRenderId: 'conn-test-2', + liveboardId: 'lb-id', + }); + (embed as any).preRenderWrapper = document.createElement('div'); + (embed as any).preRenderChild = document.createElement('div'); + expect((embed as any).isPreRenderConnected()).toBe(true); + }); + }); + + describe('showPreRender inserts placeholder into hostElement (SCAL-315058)', () => { + beforeAll(() => { + // Clear spy implementations that may have leaked from prior + // describe blocks (e.g. getIsInitCompleted/getInitPromise mocks set + // in 'constructor init-path branching' persist across describes + // because clearAllMocks only clears call history, not + // implementations). + jest.restoreAllMocks(); + jest.spyOn(authInstance, 'postLoginService').mockResolvedValue(undefined); + init({ + thoughtSpotHost: 'tshost', + authType: AuthType.None, + }); + (window as any).ResizeObserver = jest.fn().mockImplementation(() => ({ + disconnect: jest.fn(), + observe: jest.fn(), + unobserve: jest.fn(), + })); + }); + + it('showPreRender creates a placeholder element with the correct id', async () => { + createRootEleForEmbed(); + const embed = new LiveboardEmbed('#tsEmbedDiv', { + preRenderId: 'ph-lifecycle-test', + liveboardId: 'lb-id', + }); + await embed.preRender(); + await waitFor( + () => !!document.querySelector('#tsEmbed-pre-render-child-ph-lifecycle-test'), + ); + + await embed.showPreRender(); + + const placeholderEle = ( + embed as any + ).getPreRenderPlaceHolderElement() as HTMLDivElement; + expect(placeholderEle).not.toBeNull(); + expect(placeholderEle.id).toBe('tsEmbed-pre-render-placeholder-ph-lifecycle-test'); + // placeholder is attached to a parent element (inside hostElement) + expect(placeholderEle.parentElement).not.toBeNull(); + + embed.destroy(); + }); + }); }); diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index 1a8e7702..e8e4a064 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -70,7 +70,10 @@ import { uploadMixpanelEvent, MIXPANEL_EVENT } from '../mixpanel-service'; import { processEventData, processAuthFailure } from '../utils/processData'; import { version } from '../../package.json'; import { - getAuthPromise, renderInQueue, handleAuth, notifyAuthFailure, + getAuthPromise, + renderInQueue, + handleAuth, + notifyAuthFailure, getInitPromise, getIsInitCalled, getIsInitCompleted, @@ -80,7 +83,12 @@ 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'; +import { + getInterceptInitData, + handleInterceptEvent, + processApiInterceptResponse, + processLegacyInterceptResponse, +} from '../api-intercept'; /** * Global prefix for all ThoughtSpot postHash Params. @@ -137,7 +145,11 @@ export class TsEmbed { this.hostEventClient.setIframeElement(iFrame); } - protected viewConfig: ViewConfig & { visibleTabs?: string[], hiddenTabs?: string[], showAlerts?: boolean }; + protected viewConfig: ViewConfig & { + visibleTabs?: string[]; + hiddenTabs?: string[]; + showAlerts?: boolean; + }; protected embedConfig: EmbedConfig; @@ -209,7 +221,7 @@ export class TsEmbed { ...viewConfig, }); const embedConfig = getEmbedConfig(); - if(embedConfig) { + if (embedConfig) { this.embedConfig = embedConfig; this.thoughtSpotHost = getThoughtSpotHost(embedConfig); this.thoughtSpotV2Base = getV2BasePath(embedConfig); @@ -217,20 +229,33 @@ export class TsEmbed { this.hostEventClient = new HostEventClient(this.iFrame); this.shouldWaitForRenderPromise = !getIsInitCompleted(); const afterInit = () => { - this.embedConfig = embedConfig; - if (!embedConfig.authTriggerContainer && !embedConfig.useEventForSAMLPopup) { + // Prefer the config captured at construction time; fall back to + // getEmbedConfig() for the case where init() + // hadn't been called yet. + this.embedConfig = embedConfig ?? getEmbedConfig(); + if (!this.embedConfig) { + logger.error('embedConfig unavailable in afterInit; init() may not have completed'); + return; + } + if (!this.embedConfig.authTriggerContainer && !this.embedConfig.useEventForSAMLPopup) { this.embedConfig.authTriggerContainer = domSelector; } - this.thoughtSpotHost = getThoughtSpotHost(embedConfig); - this.thoughtSpotV2Base = getV2BasePath(embedConfig); - this.shouldEncodeUrlQueryParams = embedConfig.shouldEncodeUrlQueryParams; - } + this.thoughtSpotHost = getThoughtSpotHost(this.embedConfig); + this.thoughtSpotV2Base = getV2BasePath(this.embedConfig); + this.shouldEncodeUrlQueryParams = this.embedConfig.shouldEncodeUrlQueryParams; + }; if (!this.shouldWaitForRenderPromise) { afterInit(); } else { - this.isReadyForRenderPromise = getInitPromise().then(afterInit).finally(() => { - this.shouldWaitForRenderPromise = true; - }) + this.isReadyForRenderPromise = getInitPromise() + .then(afterInit) + .catch((err) => { + logger.error('SDK init failed before embed could be configured', err); + this.throwInitError(); + }) + .finally(() => { + this.shouldWaitForRenderPromise = false; + }); } } @@ -263,7 +288,6 @@ export class TsEmbed { * @param event The window message event */ private getEventType(event: MessageEvent) { - return event.data?.type || event.data?.__type; } @@ -293,11 +317,10 @@ export class TsEmbed { // 3. FullAppEmbed has primary navbar visible since: // - primary navbar requires fresh auth state for navigation // - cached auth may not reflect current user permissions - const isDisabled = ( - this.viewConfig.overrideOrgId !== undefined - || this.embedConfig.disablePreauthCache === true - || this.isFullAppEmbedWithVisiblePrimaryNavbar() - ); + const isDisabled = + this.viewConfig.overrideOrgId !== undefined || + this.embedConfig.disablePreauthCache === true || + this.isFullAppEmbedWithVisiblePrimaryNavbar(); return !isDisabled; } @@ -311,8 +334,8 @@ export class TsEmbed { // Check if this is a FullAppEmbed (AppEmbed) // showPrimaryNavbar defaults to true if not explicitly set to false return ( - appViewConfig.embedComponentType === 'AppEmbed' - && appViewConfig.showPrimaryNavbar === true + appViewConfig.embedComponentType === 'AppEmbed' && + appViewConfig.showPrimaryNavbar === true ); } @@ -364,15 +387,29 @@ export class TsEmbed { this.subscribedListeners.offline = offlineEventListener; } - private handleApiInterceptEvent({ eventData, eventPort }: { eventData: any, eventPort: MessagePort | void }) { + 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); + }; + 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 }); + }; + handleInterceptEvent({ + eventData, + executeEvent, + viewConfig: this.viewConfig, + getUnsavedAnswerTml, + }); } private messageEventListener = (event: MessageEvent) => { @@ -392,11 +429,7 @@ export class TsEmbed { return; } - this.executeCallbacks( - eventType, - processedEventData, - eventPort, - ); + this.executeCallbacks(eventType, processedEventData, eventPort); } }; /** @@ -410,7 +443,6 @@ export class TsEmbed { this.subscribedListeners.message = this.messageEventListener; } - /** * Adds event listeners for both network and message events. * This maintains backward compatibility with the existing method. @@ -424,7 +456,6 @@ export class TsEmbed { this.subscribeToMessageEvents(); } - private unsubscribeToNetworkEvents() { if (this.subscribedListeners.online) { window.removeEventListener('online', this.subscribedListeners.online); @@ -467,14 +498,17 @@ export class TsEmbed { const authToken = await this.getAuthTokenForCookielessInit(); const customActionsResult = getCustomActions([ ...(this.viewConfig.customActions || []), - ...(this.embedConfig.customActions || []) + ...(this.embedConfig.customActions || []), ]); if (customActionsResult.errors.length > 0) { this.handleError({ errorType: ErrorDetailsTypes.VALIDATION_ERROR, message: customActionsResult.errors, code: EmbedErrorCodes.CUSTOM_ACTION_VALIDATION, - error: { type: EmbedErrorCodes.CUSTOM_ACTION_VALIDATION, message: customActionsResult.errors } + error: { + type: EmbedErrorCodes.CUSTOM_ACTION_VALIDATION, + message: customActionsResult.errors, + }, }); } const baseInitData = { @@ -536,10 +570,10 @@ export class TsEmbed { private async refreshAuthTokenForCookieless( responder: (data: any) => void, eventType: EmbedEvent, - forceRefresh: boolean = false + forceRefresh: boolean = false, ): Promise { const { authType, autoLogin } = this.embedConfig; - const isAutoLoginTrue = autoLogin ?? (authType === AuthType.TrustedAuthTokenCookieless); + const isAutoLoginTrue = autoLogin ?? authType === AuthType.TrustedAuthTokenCookieless; if (isAutoLoginTrue && authType === AuthType.TrustedAuthTokenCookieless) { const authToken = await getAuthenticationToken(this.embedConfig, forceRefresh); @@ -553,20 +587,23 @@ export class TsEmbed { private handleAuthFailure = (error: Error) => { logger.error(`${ERROR_MESSAGE.INVALID_TOKEN_ERROR} Error : ${error?.message}`); processAuthFailure(error, this.isPreRendered ? this.preRenderWrapper : this.hostElement); - } + }; /** * Refresh the auth token if the autoLogin is true and the authType is TrustedAuthTokenCookieless * @param _ * @param responder */ - private tokenRefresh = async (_: MessagePayload, responder: (data: { type: EmbedEvent, data: { authToken: string } }) => void) => { + private tokenRefresh = async ( + _: MessagePayload, + responder: (data: { type: EmbedEvent; data: { authToken: string } }) => void, + ) => { try { await this.refreshAuthTokenForCookieless(responder, EmbedEvent.RefreshAuthToken, true); } catch (e) { this.handleAuthFailure(e); } - } + }; /** * Sends updated auth token to the iFrame to avoid user logout @@ -577,7 +614,7 @@ export class TsEmbed { const { authType, autoLogin: autoLoginConfig } = this.embedConfig; // Default autoLogin: true for cookieless if undefined/null, otherwise // false - const autoLogin = autoLoginConfig ?? (authType === AuthType.TrustedAuthTokenCookieless); + const autoLogin = autoLoginConfig ?? authType === AuthType.TrustedAuthTokenCookieless; try { await this.refreshAuthTokenForCookieless(responder, EmbedEvent.AuthExpire, false); @@ -597,20 +634,22 @@ export class TsEmbed { * @param responder */ private idleSessionTimeout = (_: any, responder: any) => { - handleAuth().then(async () => { - let authToken = ''; - try { - authToken = await getAuthenticationToken(this.embedConfig); - responder({ - type: EmbedEvent.IdleSessionTimeout, - data: { authToken }, - }); - } catch (e) { - this.handleAuthFailure(e); - } - }).catch((e) => { - logger.error(`Auto Login failed, Error : ${e?.message}`); - }); + handleAuth() + .then(async () => { + let authToken = ''; + try { + authToken = await getAuthenticationToken(this.embedConfig); + responder({ + type: EmbedEvent.IdleSessionTimeout, + data: { authToken }, + }); + } catch (e) { + this.handleAuthFailure(e); + } + }) + .catch((e) => { + logger.error(`Auto Login failed, Error : ${e?.message}`); + }); notifyAuthFailure(AuthFailureType.IDLE_SESSION_TIMEOUT); }; @@ -622,7 +661,9 @@ export class TsEmbed { 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); @@ -789,8 +830,8 @@ export class TsEmbed { queryParams[Param.IconSpriteUrl] = spriteUrl.replace('https://', ''); } - const stringIDsUrl = customizations?.content?.stringIDsUrl - || embedCustomizations?.content?.stringIDsUrl; + const stringIDsUrl = + customizations?.content?.stringIDsUrl || embedCustomizations?.content?.stringIDsUrl; if (stringIDsUrl) { queryParams[Param.StringIDsUrl] = stringIDsUrl; } @@ -1070,9 +1111,7 @@ export class TsEmbed { } protected isPreRenderConnected(): boolean { - return ( - Boolean(this.preRenderWrapper && this.preRenderChild) - ); + return Boolean(this.preRenderWrapper && this.preRenderChild); } protected createPreRenderChild(child: string | Node): HTMLElement { @@ -1174,10 +1213,11 @@ export class TsEmbed { */ protected setIFrameHeight(height: number | string): void { if (this.isPreRendered) { - if (this.insertedDomEl) + if (this.insertedDomEl) { (this.insertedDomEl as HTMLElement).style.height = getCssDimension(height); - else + } else if (this.preRenderWrapper) { this.preRenderWrapper.style.height = getCssDimension(height); + } } else { // normal (non-preRender) mode: size the iframe directly this.iFrame.style.height = getCssDimension(height); @@ -1189,10 +1229,12 @@ export class TsEmbed { * Embed event handler -> responder -> createEmbedEventResponder -> send response * @param eventPort The event port for a specific MessageChannel * @param eventType The event type - * @returns + * @returns */ - protected createEmbedEventResponder = (eventPort: MessagePort | void, eventType: EmbedEvent) => { - + protected createEmbedEventResponder = ( + eventPort: MessagePort | void, + eventType: EmbedEvent, + ) => { const getPayloadToSend = (payload: any) => { if (eventType === EmbedEvent.OnBeforeGetVizDataIntercept) { return processLegacyInterceptResponse(payload); @@ -1201,25 +1243,26 @@ export class TsEmbed { return processApiInterceptResponse(payload); } return payload; - } + }; return (payload: any) => { const payloadToSend = getPayloadToSend(payload); this.triggerEventOnPort(eventPort, payloadToSend); - } - } + }; + }; - private shouldSkipEvent(eventType: EmbedEvent, data: any): boolean { - const errorType = data?.errorType ?? data?.data?.code; - if ( - eventType === EmbedEvent.Error - && errorType === EmbedErrorCodes.HOST_EVENT_VALIDATION - && (!getHostEventsConfig(this.viewConfig).useHostEventsV2 || getHostEventsConfig(this.viewConfig).shouldBypassPayloadValidation) + private shouldSkipEvent(eventType: EmbedEvent, data: any): boolean { + const errorType = data?.errorType ?? data?.data?.code; + if ( + eventType === EmbedEvent.Error && + errorType === EmbedErrorCodes.HOST_EVENT_VALIDATION && + (!getHostEventsConfig(this.viewConfig).useHostEventsV2 || + getHostEventsConfig(this.viewConfig).shouldBypassPayloadValidation) ) { logger.warn(`Host Event Validation failed: ${data?.data?.message}`); - return true; - } + return true; + } return false; - } + } /** * Executes all registered event handlers for a particular event type * @param eventType The event type @@ -1240,10 +1283,10 @@ export class TsEmbed { if ( // When start status is true it trigger only start releated // payload - (callbackObj.options.start && dataStatus === embedEventStatus.START) + (callbackObj.options.start && dataStatus === embedEventStatus.START) || // When start status is false it trigger only end releated // payload - || (!callbackObj.options.start && dataStatus === embedEventStatus.END) + (!callbackObj.options.start && dataStatus === embedEventStatus.END) ) { const responder = this.createEmbedEventResponder(eventPort, eventType); callbackObj.callback(data, responder); @@ -1389,15 +1432,15 @@ 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. - */ + * @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 the callbacks to be executed after the embed container + * Internal state to track the callbacks to be executed after the embed container * is loaded. * This is used to trigger events after the embed container is loaded. */ @@ -1442,22 +1485,23 @@ export class TsEmbed { } } - protected createEmbedContainerHandler = (source: EmbedEvent.AuthInit | EmbedEvent.EmbedListenerReady) => () => { - const processEmbedContainerReady = () => { - logger.debug('processEmbedContainerReady'); - this.isEmbedContainerLoaded = true; - this.executeEmbedContainerReadyCallbacks(); - } - if (source === EmbedEvent.AuthInit) { - const AUTH_INIT_FALLBACK_DELAY = 1000; - // Wait for 1 second to ensure the embed container is loaded - // This is a workaround to ensure the embed container is loaded - // this is needed until all clusters have EmbedListenerReady event - setTimeout(processEmbedContainerReady, AUTH_INIT_FALLBACK_DELAY); - } else if (source === EmbedEvent.EmbedListenerReady) { - processEmbedContainerReady(); - } - } + protected createEmbedContainerHandler = + (source: EmbedEvent.AuthInit | EmbedEvent.EmbedListenerReady) => () => { + const processEmbedContainerReady = () => { + logger.debug('processEmbedContainerReady'); + this.isEmbedContainerLoaded = true; + this.executeEmbedContainerReadyCallbacks(); + }; + if (source === EmbedEvent.AuthInit) { + const AUTH_INIT_FALLBACK_DELAY = 1000; + // Wait for 1 second to ensure the embed container is loaded + // This is a workaround to ensure the embed container is loaded + // this is needed until all clusters have EmbedListenerReady event + setTimeout(processEmbedContainerReady, AUTH_INIT_FALLBACK_DELAY); + } else if (source === EmbedEvent.EmbedListenerReady) { + processEmbedContainerReady(); + } + }; /** * Triggers an event to the embedded app @@ -1506,7 +1550,7 @@ export class TsEmbed { return null; } - // Check if iframe exists before triggering - + // Check if iframe exists before triggering - // this prevents the error when auth fails if (!this.iFrame) { logger.debug( @@ -1516,21 +1560,30 @@ export class TsEmbed { } // send an empty object, this is needed for liveboard default handlers - return this.hostEventClient.triggerHostEvent(messageType, data, context).catch((err: Error & { - isValidationError?: boolean; - embedErrorDetails?: { errorType: ErrorDetailsTypes; message: string; code: EmbedErrorCodes; error: string }; - }): Promise => { - if (err?.isValidationError) { - const errorDetails = err.embedErrorDetails ?? { - errorType: ErrorDetailsTypes.VALIDATION_ERROR, - message: err.message || ERROR_MESSAGE.UPDATEFILTERS_INVALID_PAYLOAD, - code: EmbedErrorCodes.UPDATEFILTERS_INVALID_PAYLOAD, - error: err.message, - }; - this.handleError(errorDetails); - } - throw err; - }); + return this.hostEventClient.triggerHostEvent(messageType, data, context).catch( + ( + err: Error & { + isValidationError?: boolean; + embedErrorDetails?: { + errorType: ErrorDetailsTypes; + message: string; + code: EmbedErrorCodes; + error: string; + }; + }, + ): Promise => { + if (err?.isValidationError) { + const errorDetails = err.embedErrorDetails ?? { + errorType: ErrorDetailsTypes.VALIDATION_ERROR, + message: err.message || ERROR_MESSAGE.UPDATEFILTERS_INVALID_PAYLOAD, + code: EmbedErrorCodes.UPDATEFILTERS_INVALID_PAYLOAD, + error: err.message, + }; + this.handleError(errorDetails); + } + throw err; + }, + ); } /** @@ -1558,8 +1611,7 @@ export class TsEmbed { if (!getIsInitCalled()) { logger.error(ERROR_MESSAGE.RENDER_CALLED_BEFORE_INIT); } - if (this.shouldWaitForRenderPromise) - await this.isReadyForRenderPromise; + if (this.shouldWaitForRenderPromise) await this.isReadyForRenderPromise; this.isRendered = true; return this; @@ -1574,33 +1626,33 @@ export class TsEmbed { } /** - * Context object for the embedded component. - * @returns {ContextObject} The current context object containing the page type and object ids. - * @example - * ```js - * const context = await embed.getCurrentContext(); - * console.log(context); - * - * // Example output - * { - * stack: [ - * { - * name: 'Liveboard', - * type: ContextType.Liveboard, - * objectIds: { - * liveboardId: '123', - * }, - * }, - * ], - * currentContext: { - * name: 'Liveboard', - * type: ContextType.Liveboard, - * objectIds: { - * liveboardId: '123', - * }, - * }, - * } - * ``` + * Context object for the embedded component. + * @returns {ContextObject} The current context object containing the page type and object ids. + * @example + * ```js + * const context = await embed.getCurrentContext(); + * console.log(context); + * + * // Example output + * { + * stack: [ + * { + * name: 'Liveboard', + * type: ContextType.Liveboard, + * objectIds: { + * liveboardId: '123', + * }, + * }, + * ], + * currentContext: { + * name: 'Liveboard', + * type: ContextType.Liveboard, + * objectIds: { + * liveboardId: '123', + * }, + * }, + * } + * ``` * @version SDK: 1.45.2 | ThoughtSpot: 26.3.0.cl */ public async getCurrentContext(): Promise { @@ -1620,7 +1672,7 @@ export class TsEmbed { * * @param eventName - The host or action event to generate the subscribed event name for. * @returns The formatted event name (e.g., "Save Subscribed"). - * + * * @version SDK: 1.47.2 | ThoughtSpot: 26.3.0.cl */ public subscribedEvent(eventName: HostEvent | Action): string { @@ -1632,7 +1684,10 @@ export class TsEmbed { * @param showPreRenderByDefault - Show the preRender after render, hidden by default */ - public async preRender(showPreRenderByDefault = false, replaceExistingPreRender = false): Promise { + public async preRender( + showPreRenderByDefault = false, + replaceExistingPreRender = false, + ): Promise { if (!this.viewConfig.preRenderId) { logger.error(ERROR_MESSAGE.PRERENDER_ID_MISSING); return this; @@ -1640,7 +1695,6 @@ export class TsEmbed { this.isPreRendered = true; this.showPreRenderByDefault = showPreRenderByDefault; - const isAlreadyRendered = this.connectPreRendered(); if (isAlreadyRendered && !replaceExistingPreRender) { if (this.showPreRenderByDefault) { @@ -1697,22 +1751,24 @@ export class TsEmbed { return; } if (!getEmbedConfig().waitForCleanupOnDestroy) { - this.trigger(HostEvent.DestroyEmbed) + 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)), - ]).catch((e) => { - logger.log('Error destroying TS Embed', e); - }).finally(() => { - try { - this.insertedDomEl?.parentNode?.removeChild(this.insertedDomEl); - } catch (e) { - logger.log('Error removing DOM element on destroy', e); - } - }); + ]) + .catch((e) => { + logger.log('Error destroying TS Embed', e); + }) + .finally(() => { + try { + this.insertedDomEl?.parentNode?.removeChild(this.insertedDomEl); + } catch (e) { + logger.log('Error removing DOM element on destroy', e); + } + }); } } catch (e) { logger.log('Error destroying TS Embed', e); @@ -1734,8 +1790,7 @@ export class TsEmbed { if (!getIsInitCalled()) { logger.error(ERROR_MESSAGE.RENDER_CALLED_BEFORE_INIT); } - if (this.shouldWaitForRenderPromise) - await this.isReadyForRenderPromise; + if (this.shouldWaitForRenderPromise) await this.isReadyForRenderPromise; const prerenderFrameSrc = this.getRootIframeSrc(); this.isRendered = true; @@ -1743,7 +1798,7 @@ export class TsEmbed { } protected beforePrerenderVisible(): void { - // We can ignore this as its a bit expensive and the newer customers + // We can ignore this as its a bit expensive and the newer customers // have moved on to UpdateEmbedParams supported clusters // this.validatePreRenderViewConfig(this.viewConfig); removed in #517 logger.debug('triggering UpdateEmbedParams', this.viewConfig); @@ -1763,7 +1818,6 @@ export class TsEmbed { }); } - /** * Displays the pre-rendered component inside the host element. * If the component has not been pre-rendered yet, it initiates rendering first. @@ -1771,8 +1825,7 @@ export class TsEmbed { * wrapper to overlay it. */ public async showPreRender(): Promise { - if (this.shouldWaitForRenderPromise) - await this.isReadyForRenderPromise; + if (this.shouldWaitForRenderPromise) await this.isReadyForRenderPromise; if (!this.viewConfig.preRenderId) { logger.error(ERROR_MESSAGE.PRERENDER_ID_MISSING); @@ -1822,9 +1875,14 @@ export class TsEmbed { } } - removeStyleProperties(this.preRenderWrapper, ['z-index', 'opacity', 'pointer-events', 'overflow']); + removeStyleProperties(this.preRenderWrapper, [ + 'z-index', + 'opacity', + 'pointer-events', + 'overflow', + ]); this.subscribeToEvents(); - + // Setup fullscreen change handler for prerendered components if (this.iFrame) { this.setupFullscreenChangeHandler(); @@ -1857,7 +1915,7 @@ export class TsEmbed { left: `${elBoundingClient.x + window.scrollX}px`, width: `${elBoundingClient.width}px`, height: `${elBoundingClient.height}px`, - position: 'absolute' + position: 'absolute', }); } diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index d22551fe..fc579214 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2123, + "id": 2165, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -28,7 +28,7 @@ }, "children": [ { - "id": 2245, + "id": 2287, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -49,14 +49,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7278, + "line": 7316, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2143, + "id": 2185, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -77,14 +77,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6321, + "line": 6359, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2136, + "id": 2178, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -105,14 +105,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6250, + "line": 6288, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2135, + "id": 2177, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -129,14 +129,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6239, + "line": 6277, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 2141, + "id": 2183, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -153,14 +153,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6302, + "line": 6340, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 2142, + "id": 2184, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -177,14 +177,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6311, + "line": 6349, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 2144, + "id": 2186, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -205,14 +205,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6331, + "line": 6369, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2225, + "id": 2267, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -233,14 +233,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7046, + "line": 7084, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 2196, + "id": 2238, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -261,14 +261,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6749, + "line": 6787, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2241, + "id": 2283, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -289,14 +289,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7231, + "line": 7269, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 2195, + "id": 2237, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -317,14 +317,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6737, + "line": 6775, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2194, + "id": 2236, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -345,14 +345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6725, + "line": 6763, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2240, + "id": 2282, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -374,14 +374,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7220, + "line": 7258, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 2207, + "id": 2249, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -402,14 +402,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6861, + "line": 6899, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2219, + "id": 2261, "name": "AxisMenuCompare", "kind": 16, "kindString": "Enumeration member", @@ -430,14 +430,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6992, + "line": 7030, "character": 4 } ], "defaultValue": "\"axisMenuCompare\"" }, { - "id": 2210, + "id": 2252, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -458,14 +458,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6895, + "line": 6933, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2215, + "id": 2257, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -486,14 +486,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6950, + "line": 6988, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2209, + "id": 2251, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -514,14 +514,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6884, + "line": 6922, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2212, + "id": 2254, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -542,14 +542,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6918, + "line": 6956, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2220, + "id": 2262, "name": "AxisMenuMerge", "kind": 16, "kindString": "Enumeration member", @@ -570,14 +570,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7002, + "line": 7040, "character": 4 } ], "defaultValue": "\"axisMenuMerge\"" }, { - "id": 2216, + "id": 2258, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -598,14 +598,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6960, + "line": 6998, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2213, + "id": 2255, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -626,14 +626,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6929, + "line": 6967, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2218, + "id": 2260, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -654,14 +654,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6982, + "line": 7020, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2214, + "id": 2256, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -682,14 +682,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6939, + "line": 6977, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 2211, + "id": 2253, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -710,14 +710,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6906, + "line": 6944, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 2217, + "id": 2259, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -738,14 +738,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6970, + "line": 7008, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2208, + "id": 2250, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -766,14 +766,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6872, + "line": 6910, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2254, + "id": 2296, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -794,14 +794,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7376, + "line": 7414, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2140, + "id": 2182, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -818,14 +818,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6293, + "line": 6331, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 2139, + "id": 2181, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -846,14 +846,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6284, + "line": 6322, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2138, + "id": 2180, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -874,14 +874,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6272, + "line": 6310, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2262, + "id": 2304, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -902,14 +902,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7464, + "line": 7502, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 2137, + "id": 2179, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -926,14 +926,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6261, + "line": 6299, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 2187, + "id": 2229, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -941,14 +941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6674, + "line": 6712, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2130, + "id": 2172, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -965,14 +965,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6198, + "line": 6236, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2186, + "id": 2228, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -989,14 +989,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6673, + "line": 6711, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2263, + "id": 2305, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -1017,14 +1017,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7474, + "line": 7512, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2277, + "id": 2319, "name": "CreateGroup", "kind": 16, "kindString": "Enumeration member", @@ -1045,14 +1045,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7634, + "line": 7672, "character": 4 } ], "defaultValue": "\"createGroup\"" }, { - "id": 2238, + "id": 2280, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -1073,14 +1073,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7195, + "line": 7233, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2198, + "id": 2240, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1101,14 +1101,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6769, + "line": 6807, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2203, + "id": 2245, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1129,14 +1129,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6819, + "line": 6857, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2255, + "id": 2297, "name": "DataModelInstructions", "kind": 16, "kindString": "Enumeration member", @@ -1157,14 +1157,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7388, + "line": 7426, "character": 4 } ], "defaultValue": "\"DataModelInstructions\"" }, { - "id": 2260, + "id": 2302, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1185,14 +1185,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7445, + "line": 7483, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2251, + "id": 2293, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1213,14 +1213,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7345, + "line": 7383, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2253, + "id": 2295, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1241,14 +1241,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7364, + "line": 7402, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 2152, + "id": 2194, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1265,14 +1265,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6381, + "line": 6419, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2155, + "id": 2197, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1289,14 +1289,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6414, + "line": 6452, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2154, + "id": 2196, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1314,14 +1314,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6404, + "line": 6442, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2153, + "id": 2195, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1338,14 +1338,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6391, + "line": 6429, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2156, + "id": 2198, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1362,14 +1362,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6424, + "line": 6462, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2157, + "id": 2199, "name": "DownloadLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -1390,14 +1390,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6434, + "line": 6472, "character": 4 } ], "defaultValue": "\"downloadLiveboard\"" }, { - "id": 2159, + "id": 2201, "name": "DownloadLiveboardAsA4Pdf", "kind": 16, "kindString": "Enumeration member", @@ -1418,14 +1418,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6458, + "line": 6496, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsA4Pdf\"" }, { - "id": 2158, + "id": 2200, "name": "DownloadLiveboardAsContinuousPDF", "kind": 16, "kindString": "Enumeration member", @@ -1446,14 +1446,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6444, + "line": 6482, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsContinuousPDF\"" }, { - "id": 2161, + "id": 2203, "name": "DownloadLiveboardAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1474,14 +1474,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6478, + "line": 6516, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsCsv\"" }, { - "id": 2160, + "id": 2202, "name": "DownloadLiveboardAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1502,14 +1502,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6468, + "line": 6506, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsXlsx\"" }, { - "id": 2191, + "id": 2233, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1526,14 +1526,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6690, + "line": 6728, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 2185, + "id": 2227, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1550,14 +1550,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6663, + "line": 6701, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2184, + "id": 2226, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1574,14 +1574,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6654, + "line": 6692, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2169, + "id": 2211, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1598,14 +1598,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6554, + "line": 6592, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2129, + "id": 2171, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1622,14 +1622,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6189, + "line": 6227, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 2197, + "id": 2239, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1650,14 +1650,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6758, + "line": 6796, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 2189, + "id": 2231, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1665,14 +1665,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6679, + "line": 6717, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2259, + "id": 2301, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1693,14 +1693,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7434, + "line": 7472, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2229, + "id": 2271, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1721,14 +1721,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7090, + "line": 7128, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2246, + "id": 2288, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1749,14 +1749,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7291, + "line": 7329, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2166, + "id": 2208, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1773,14 +1773,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6522, + "line": 6560, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2170, + "id": 2212, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1797,14 +1797,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6562, + "line": 6600, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2261, + "id": 2303, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1825,14 +1825,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7455, + "line": 7493, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 2226, + "id": 2268, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1853,14 +1853,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7056, + "line": 7094, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2227, + "id": 2269, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1881,14 +1881,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7067, + "line": 7105, "character": 4 } ], "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2183, + "id": 2225, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1905,14 +1905,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6643, + "line": 6681, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2163, + "id": 2205, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1930,14 +1930,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6494, + "line": 6532, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2164, + "id": 2206, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1954,14 +1954,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6504, + "line": 6542, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2264, + "id": 2306, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1982,14 +1982,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7489, + "line": 7527, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 2291, + "id": 2333, "name": "IncludeCurrentPeriod", "kind": 16, "kindString": "Enumeration member", @@ -2010,14 +2010,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7779, + "line": 7817, "character": 4 } ], "defaultValue": "\"includeCurrentPeriod\"" }, { - "id": 2252, + "id": 2294, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -2038,14 +2038,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7355, + "line": 7393, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2177, + "id": 2219, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -2062,14 +2062,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6604, + "line": 6642, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2270, + "id": 2312, "name": "LiveboardStylePanel", "kind": 16, "kindString": "Enumeration member", @@ -2090,14 +2090,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7555, + "line": 7593, "character": 4 } ], "defaultValue": "\"liveboardStylePanel\"" }, { - "id": 2236, + "id": 2278, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -2118,14 +2118,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7163, + "line": 7201, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 2128, + "id": 2170, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -2142,14 +2142,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6180, + "line": 6218, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2233, + "id": 2275, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -2166,14 +2166,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7131, + "line": 7169, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2202, + "id": 2244, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -2194,14 +2194,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6809, + "line": 6847, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2272, + "id": 2314, "name": "ManagePublishing", "kind": 16, "kindString": "Enumeration member", @@ -2222,14 +2222,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7581, + "line": 7619, "character": 4 } ], "defaultValue": "\"managePublishing\"" }, { - "id": 2250, + "id": 2292, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -2250,14 +2250,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7334, + "line": 7372, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 2224, + "id": 2266, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -2278,14 +2278,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7036, + "line": 7074, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2231, + "id": 2273, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -2305,14 +2305,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7111, + "line": 7149, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2276, + "id": 2318, "name": "MoveOutOfGroup", "kind": 16, "kindString": "Enumeration member", @@ -2333,14 +2333,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7624, + "line": 7662, "character": 4 } ], "defaultValue": "\"moveOutOfGroup\"" }, { - "id": 2275, + "id": 2317, "name": "MoveToGroup", "kind": 16, "kindString": "Enumeration member", @@ -2361,14 +2361,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7614, + "line": 7652, "character": 4 } ], "defaultValue": "\"moveToGroup\"" }, { - "id": 2232, + "id": 2274, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -2385,14 +2385,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7120, + "line": 7158, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2243, + "id": 2285, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2417,14 +2417,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7255, + "line": 7293, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2244, + "id": 2286, "name": "OrganizeFavorites", "kind": 16, "kindString": "Enumeration member", @@ -2445,14 +2445,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7267, + "line": 7305, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2274, + "id": 2316, "name": "Parameterize", "kind": 16, "kindString": "Enumeration member", @@ -2473,14 +2473,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7604, + "line": 7642, "character": 4 } ], "defaultValue": "\"parameterise\"" }, { - "id": 2247, + "id": 2289, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2501,14 +2501,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7302, + "line": 7340, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2234, + "id": 2276, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2533,14 +2533,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7143, + "line": 7181, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2235, + "id": 2277, "name": "PersonalizedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2561,14 +2561,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7153, + "line": 7191, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2180, + "id": 2222, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2585,14 +2585,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6621, + "line": 6659, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2268, + "id": 2310, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2609,14 +2609,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7533, + "line": 7571, "character": 4 } ], "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2167, + "id": 2209, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2633,14 +2633,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6532, + "line": 6570, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2256, + "id": 2298, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2661,14 +2661,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7400, + "line": 7438, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2271, + "id": 2313, "name": "Publish", "kind": 16, "kindString": "Enumeration member", @@ -2689,14 +2689,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7568, + "line": 7606, "character": 4 } ], "defaultValue": "\"publish\"" }, { - "id": 2193, + "id": 2235, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2714,14 +2714,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6715, + "line": 6753, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2296, + "id": 2338, "name": "RefreshLiveboardBrowserCache", "kind": 16, "kindString": "Enumeration member", @@ -2742,14 +2742,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7838, + "line": 7876, "character": 4 } ], "defaultValue": "\"refreshLiveboardBrowserCache\"" }, { - "id": 2171, + "id": 2213, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2766,14 +2766,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6572, + "line": 6610, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2269, + "id": 2311, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2794,14 +2794,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7545, + "line": 7583, "character": 4 } ], "defaultValue": "\"removeAttachment\"" }, { - "id": 2206, + "id": 2248, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2822,14 +2822,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6850, + "line": 6888, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2242, + "id": 2284, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2850,14 +2850,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7242, + "line": 7280, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2222, + "id": 2264, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2878,14 +2878,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7016, + "line": 7054, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2199, + "id": 2241, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2909,14 +2909,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6778, + "line": 6816, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 2192, + "id": 2234, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2933,14 +2933,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6699, + "line": 6737, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 2223, + "id": 2265, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2961,14 +2961,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7026, + "line": 7064, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2257, + "id": 2299, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2989,14 +2989,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7412, + "line": 7450, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2230, + "id": 2272, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -3017,14 +3017,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7102, + "line": 7140, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2124, + "id": 2166, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -3041,14 +3041,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6149, + "line": 6187, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2127, + "id": 2169, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -3065,14 +3065,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6167, + "line": 6205, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2132, + "id": 2174, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -3089,14 +3089,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6212, + "line": 6250, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2133, + "id": 2175, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -3113,14 +3113,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6221, + "line": 6259, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2292, + "id": 2334, "name": "SendTestScheduleEmail", "kind": 16, "kindString": "Enumeration member", @@ -3141,14 +3141,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7791, + "line": 7829, "character": 4 } ], "defaultValue": "\"sendTestScheduleEmail\"" }, { - "id": 2190, + "id": 2232, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -3156,14 +3156,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6680, + "line": 6718, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2134, + "id": 2176, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -3180,14 +3180,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6230, + "line": 6268, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2149, + "id": 2191, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -3198,14 +3198,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6356, + "line": 6394, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 2228, + "id": 2270, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -3226,14 +3226,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7077, + "line": 7115, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 2151, + "id": 2193, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -3250,14 +3250,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6371, + "line": 6409, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2146, + "id": 2188, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -3274,14 +3274,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6344, + "line": 6382, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2288, + "id": 2330, "name": "SpotterChatConnectorResources", "kind": 16, "kindString": "Enumeration member", @@ -3302,14 +3302,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7745, + "line": 7783, "character": 4 } ], "defaultValue": "\"spotterChatConnectorResources\"" }, { - "id": 2289, + "id": 2331, "name": "SpotterChatConnectors", "kind": 16, "kindString": "Enumeration member", @@ -3330,14 +3330,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7756, + "line": 7794, "character": 4 } ], "defaultValue": "\"spotterChatConnectors\"" }, { - "id": 2286, + "id": 2328, "name": "SpotterChatDelete", "kind": 16, "kindString": "Enumeration member", @@ -3358,14 +3358,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7724, + "line": 7762, "character": 4 } ], "defaultValue": "\"spotterChatDelete\"" }, { - "id": 2284, + "id": 2326, "name": "SpotterChatMenu", "kind": 16, "kindString": "Enumeration member", @@ -3386,14 +3386,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7704, + "line": 7742, "character": 4 } ], "defaultValue": "\"spotterChatMenu\"" }, { - "id": 2290, + "id": 2332, "name": "SpotterChatModeSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -3414,14 +3414,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7767, + "line": 7805, "character": 4 } ], "defaultValue": "\"spotterChatModeSwitcher\"" }, { - "id": 2285, + "id": 2327, "name": "SpotterChatRename", "kind": 16, "kindString": "Enumeration member", @@ -3442,14 +3442,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7714, + "line": 7752, "character": 4 } ], "defaultValue": "\"spotterChatRename\"" }, { - "id": 2287, + "id": 2329, "name": "SpotterDocs", "kind": 16, "kindString": "Enumeration member", @@ -3470,14 +3470,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7734, + "line": 7772, "character": 4 } ], "defaultValue": "\"spotterDocs\"" }, { - "id": 2258, + "id": 2300, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -3498,14 +3498,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7423, + "line": 7461, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 2282, + "id": 2324, "name": "SpotterNewChat", "kind": 16, "kindString": "Enumeration member", @@ -3526,14 +3526,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7684, + "line": 7722, "character": 4 } ], "defaultValue": "\"spotterNewChat\"" }, { - "id": 2283, + "id": 2325, "name": "SpotterPastChatBanner", "kind": 16, "kindString": "Enumeration member", @@ -3554,14 +3554,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7694, + "line": 7732, "character": 4 } ], "defaultValue": "\"spotterPastChatBanner\"" }, { - "id": 2280, + "id": 2322, "name": "SpotterSidebarFooter", "kind": 16, "kindString": "Enumeration member", @@ -3582,14 +3582,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7664, + "line": 7702, "character": 4 } ], "defaultValue": "\"spotterSidebarFooter\"" }, { - "id": 2279, + "id": 2321, "name": "SpotterSidebarHeader", "kind": 16, "kindString": "Enumeration member", @@ -3610,14 +3610,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7654, + "line": 7692, "character": 4 } ], "defaultValue": "\"spotterSidebarHeader\"" }, { - "id": 2281, + "id": 2323, "name": "SpotterSidebarToggle", "kind": 16, "kindString": "Enumeration member", @@ -3638,14 +3638,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7674, + "line": 7712, "character": 4 } ], "defaultValue": "\"spotterSidebarToggle\"" }, { - "id": 2267, + "id": 2309, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -3666,14 +3666,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7522, + "line": 7560, "character": 4 } ], "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2295, + "id": 2337, "name": "SpotterViz", "kind": 16, "kindString": "Enumeration member", @@ -3694,14 +3694,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7827, + "line": 7865, "character": 4 } ], "defaultValue": "\"spotterViz\"" }, { - "id": 2294, + "id": 2336, "name": "SpotterVizCheckpointRestore", "kind": 16, "kindString": "Enumeration member", @@ -3722,14 +3722,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7815, + "line": 7853, "character": 4 } ], "defaultValue": "\"spotterVizCheckpointRestore\"" }, { - "id": 2293, + "id": 2335, "name": "SpotterVizFeedback", "kind": 16, "kindString": "Enumeration member", @@ -3750,14 +3750,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7803, + "line": 7841, "character": 4 } ], "defaultValue": "\"spotterVizFeedback\"" }, { - "id": 2265, + "id": 2307, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -3778,14 +3778,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7500, + "line": 7538, "character": 4 } ], "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2266, + "id": 2308, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -3806,14 +3806,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7511, + "line": 7549, "character": 4 } ], "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2182, + "id": 2224, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -3830,14 +3830,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6635, + "line": 6673, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2201, + "id": 2243, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -3858,14 +3858,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6799, + "line": 6837, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2200, + "id": 2242, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -3886,14 +3886,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6788, + "line": 6826, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2204, + "id": 2246, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -3914,14 +3914,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6829, + "line": 6867, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 2205, + "id": 2247, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -3942,14 +3942,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6839, + "line": 6877, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2237, + "id": 2279, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -3974,14 +3974,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7182, + "line": 7220, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 2168, + "id": 2210, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3998,14 +3998,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6544, + "line": 6582, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2278, + "id": 2320, "name": "UngroupLiveboardGroup", "kind": 16, "kindString": "Enumeration member", @@ -4026,14 +4026,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7644, + "line": 7682, "character": 4 } ], "defaultValue": "\"ungroupLiveboardGroup\"" }, { - "id": 2273, + "id": 2315, "name": "Unpublish", "kind": 16, "kindString": "Enumeration member", @@ -4054,14 +4054,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7593, + "line": 7631, "character": 4 } ], "defaultValue": "\"unpublish\"" }, { - "id": 2249, + "id": 2291, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -4082,14 +4082,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7324, + "line": 7362, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2165, + "id": 2207, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -4106,14 +4106,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6513, + "line": 6551, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2239, + "id": 2281, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4134,14 +4134,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7206, + "line": 7244, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2248, + "id": 2290, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -4162,7 +4162,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7313, + "line": 7351, "character": 4 } ], @@ -4174,174 +4174,174 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2245, - 2143, - 2136, - 2135, - 2141, - 2142, - 2144, - 2225, - 2196, - 2241, - 2195, - 2194, - 2240, - 2207, - 2219, - 2210, - 2215, - 2209, - 2212, - 2220, - 2216, - 2213, - 2218, - 2214, - 2211, - 2217, - 2208, - 2254, - 2140, - 2139, - 2138, - 2262, - 2137, - 2187, - 2130, + 2287, + 2185, + 2178, + 2177, + 2183, + 2184, 2186, - 2263, - 2277, + 2267, 2238, - 2198, - 2203, + 2283, + 2237, + 2236, + 2282, + 2249, + 2261, + 2252, + 2257, + 2251, + 2254, + 2262, + 2258, 2255, 2260, - 2251, + 2256, 2253, - 2152, - 2155, - 2154, - 2153, - 2156, - 2157, - 2159, - 2158, - 2161, - 2160, - 2191, - 2185, - 2184, - 2169, - 2129, - 2197, - 2189, 2259, + 2250, + 2296, + 2182, + 2181, + 2180, + 2304, + 2179, 2229, - 2246, - 2166, - 2170, - 2261, - 2226, - 2227, - 2183, - 2163, - 2164, - 2264, - 2291, - 2252, - 2177, - 2270, - 2236, - 2128, - 2233, + 2172, + 2228, + 2305, + 2319, + 2280, + 2240, + 2245, + 2297, + 2302, + 2293, + 2295, + 2194, + 2197, + 2196, + 2195, + 2198, + 2199, + 2201, + 2200, + 2203, 2202, - 2272, - 2250, - 2224, + 2233, + 2227, + 2226, + 2211, + 2171, + 2239, 2231, - 2276, - 2275, - 2232, - 2243, - 2244, - 2274, - 2247, - 2234, - 2235, - 2180, - 2268, - 2167, - 2256, + 2301, 2271, - 2193, - 2296, - 2171, + 2288, + 2208, + 2212, + 2303, + 2268, 2269, + 2225, + 2205, 2206, - 2242, - 2222, - 2199, - 2192, - 2223, - 2257, - 2230, - 2124, - 2127, - 2132, - 2133, + 2306, + 2333, + 2294, + 2219, + 2312, + 2278, + 2170, + 2275, + 2244, + 2314, 2292, - 2190, - 2134, - 2149, - 2228, - 2151, - 2146, - 2288, - 2289, + 2266, + 2273, + 2318, + 2317, + 2274, + 2285, 2286, + 2316, + 2289, + 2276, + 2277, + 2222, + 2310, + 2209, + 2298, + 2313, + 2235, + 2338, + 2213, + 2311, + 2248, 2284, - 2290, - 2285, - 2287, - 2258, - 2282, - 2283, - 2280, + 2264, + 2241, + 2234, + 2265, + 2299, + 2272, + 2166, + 2169, + 2174, + 2175, + 2334, + 2232, + 2176, + 2191, + 2270, + 2193, + 2188, + 2330, + 2331, + 2328, + 2326, + 2332, + 2327, + 2329, + 2300, + 2324, + 2325, + 2322, + 2321, + 2323, + 2309, + 2337, + 2336, + 2335, + 2307, + 2308, + 2224, + 2243, + 2242, + 2246, + 2247, 2279, + 2210, + 2320, + 2315, + 2291, + 2207, 2281, - 2267, - 2295, - 2294, - 2293, - 2265, - 2266, - 2182, - 2201, - 2200, - 2204, - 2205, - 2237, - 2168, - 2278, - 2273, - 2249, - 2165, - 2239, - 2248 + 2290 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6140, + "line": 6178, "character": 12 } ] }, { - "id": 1730, + "id": 1772, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -4357,7 +4357,7 @@ }, "children": [ { - "id": 1731, + "id": 1773, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -4380,7 +4380,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1731 + 1773 ] } ], @@ -4393,7 +4393,7 @@ ] }, { - "id": 1715, + "id": 1757, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -4409,7 +4409,7 @@ }, "children": [ { - "id": 1718, + "id": 1760, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -4428,7 +4428,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1720, + "id": 1762, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -4447,7 +4447,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1717, + "id": 1759, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -4466,7 +4466,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1719, + "id": 1761, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -4485,7 +4485,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1716, + "id": 1758, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -4504,7 +4504,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1721, + "id": 1763, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -4528,12 +4528,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1718, - 1720, - 1717, - 1719, - 1716, - 1721 + 1760, + 1762, + 1759, + 1761, + 1758, + 1763 ] } ], @@ -4546,7 +4546,7 @@ ] }, { - "id": 1722, + "id": 1764, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -4562,7 +4562,7 @@ }, "children": [ { - "id": 1723, + "id": 1765, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -4580,7 +4580,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1727, + "id": 1769, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -4598,7 +4598,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1729, + "id": 1771, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -4616,7 +4616,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1724, + "id": 1766, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -4640,7 +4640,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1726, + "id": 1768, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -4673,7 +4673,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1728, + "id": 1770, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -4702,12 +4702,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1723, - 1727, - 1729, - 1724, - 1726, - 1728 + 1765, + 1769, + 1771, + 1766, + 1768, + 1770 ] } ], @@ -4720,7 +4720,7 @@ ] }, { - "id": 1881, + "id": 1923, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -4736,7 +4736,7 @@ }, "children": [ { - "id": 1892, + "id": 1934, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -4755,7 +4755,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1883, + "id": 1925, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -4784,7 +4784,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1882, + "id": 1924, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -4808,7 +4808,7 @@ "defaultValue": "\"None\"" }, { - "id": 1888, + "id": 1930, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -4826,7 +4826,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1886, + "id": 1928, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -4859,7 +4859,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1890, + "id": 1932, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -4883,7 +4883,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1891, + "id": 1933, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -4916,13 +4916,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1892, - 1883, - 1882, - 1888, - 1886, - 1890, - 1891 + 1934, + 1925, + 1924, + 1930, + 1928, + 1932, + 1933 ] } ], @@ -4935,7 +4935,7 @@ ] }, { - "id": 3137, + "id": 3145, "name": "BackgroundFormatType", "kind": 4, "kindString": "Enumeration", @@ -4951,7 +4951,7 @@ }, "children": [ { - "id": 3139, + "id": 3147, "name": "Gradient", "kind": 16, "kindString": "Enumeration member", @@ -4962,14 +4962,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8540, + "line": 8578, "character": 4 } ], "defaultValue": "\"GRADIENT\"" }, { - "id": 3138, + "id": 3146, "name": "Solid", "kind": 16, "kindString": "Enumeration member", @@ -4980,7 +4980,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8538, + "line": 8576, "character": 4 } ], @@ -4992,21 +4992,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3139, - 3138 + 3147, + 3146 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8536, + "line": 8574, "character": 12 } ] }, { - "id": 3140, + "id": 3148, "name": "ConditionalFormattingComparisonType", "kind": 4, "kindString": "Enumeration", @@ -5022,7 +5022,7 @@ }, "children": [ { - "id": 3142, + "id": 3150, "name": "ColumnBased", "kind": 16, "kindString": "Enumeration member", @@ -5033,14 +5033,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8551, + "line": 8589, "character": 4 } ], "defaultValue": "\"COLUMN_BASED\"" }, { - "id": 3143, + "id": 3151, "name": "ParameterBased", "kind": 16, "kindString": "Enumeration member", @@ -5051,14 +5051,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8553, + "line": 8591, "character": 4 } ], "defaultValue": "\"PARAMETER_BASED\"" }, { - "id": 3141, + "id": 3149, "name": "ValueBased", "kind": 16, "kindString": "Enumeration member", @@ -5069,7 +5069,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8549, + "line": 8587, "character": 4 } ], @@ -5081,22 +5081,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3142, - 3143, - 3141 + 3150, + 3151, + 3149 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8547, + "line": 8585, "character": 12 } ] }, { - "id": 3144, + "id": 3152, "name": "ConditionalFormattingOperator", "kind": 4, "kindString": "Enumeration", @@ -5112,7 +5112,7 @@ }, "children": [ { - "id": 3147, + "id": 3155, "name": "Contains", "kind": 16, "kindString": "Enumeration member", @@ -5123,14 +5123,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8505, + "line": 8543, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 3148, + "id": 3156, "name": "DoesNotContain", "kind": 16, "kindString": "Enumeration member", @@ -5141,14 +5141,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8507, + "line": 8545, "character": 4 } ], "defaultValue": "\"DOES_NOT_CONTAIN\"" }, { - "id": 3150, + "id": 3158, "name": "EndsWith", "kind": 16, "kindString": "Enumeration member", @@ -5159,14 +5159,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8511, + "line": 8549, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 3155, + "id": 3163, "name": "EqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5177,14 +5177,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8521, + "line": 8559, "character": 4 } ], "defaultValue": "\"EQUAL_TO\"" }, { - "id": 3151, + "id": 3159, "name": "GreaterThan", "kind": 16, "kindString": "Enumeration member", @@ -5195,14 +5195,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8513, + "line": 8551, "character": 4 } ], "defaultValue": "\"GREATER_THAN\"" }, { - "id": 3153, + "id": 3161, "name": "GreaterThanEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5213,14 +5213,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8517, + "line": 8555, "character": 4 } ], "defaultValue": "\"GREATER_THAN_EQUAL_TO\"" }, { - "id": 3145, + "id": 3153, "name": "Is", "kind": 16, "kindString": "Enumeration member", @@ -5231,14 +5231,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8501, + "line": 8539, "character": 4 } ], "defaultValue": "\"IS\"" }, { - "id": 3157, + "id": 3165, "name": "IsBetween", "kind": 16, "kindString": "Enumeration member", @@ -5249,14 +5249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8525, + "line": 8563, "character": 4 } ], "defaultValue": "\"IS_BETWEEN\"" }, { - "id": 3146, + "id": 3154, "name": "IsNot", "kind": 16, "kindString": "Enumeration member", @@ -5267,14 +5267,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8503, + "line": 8541, "character": 4 } ], "defaultValue": "\"IS_NOT\"" }, { - "id": 3159, + "id": 3167, "name": "IsNotNull", "kind": 16, "kindString": "Enumeration member", @@ -5285,14 +5285,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8529, + "line": 8567, "character": 4 } ], "defaultValue": "\"IS_NOT_NULL\"" }, { - "id": 3158, + "id": 3166, "name": "IsNull", "kind": 16, "kindString": "Enumeration member", @@ -5303,14 +5303,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8527, + "line": 8565, "character": 4 } ], "defaultValue": "\"IS_NULL\"" }, { - "id": 3152, + "id": 3160, "name": "LessThan", "kind": 16, "kindString": "Enumeration member", @@ -5321,14 +5321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8515, + "line": 8553, "character": 4 } ], "defaultValue": "\"LESS_THAN\"" }, { - "id": 3154, + "id": 3162, "name": "LessThanEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5339,14 +5339,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8519, + "line": 8557, "character": 4 } ], "defaultValue": "\"LESS_THAN_EQUAL_TO\"" }, { - "id": 3156, + "id": 3164, "name": "NotEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5357,14 +5357,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8523, + "line": 8561, "character": 4 } ], "defaultValue": "\"NOT_EQUAL_TO\"" }, { - "id": 3149, + "id": 3157, "name": "StartsWith", "kind": 16, "kindString": "Enumeration member", @@ -5375,7 +5375,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8509, + "line": 8547, "character": 4 } ], @@ -5387,34 +5387,34 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3147, - 3148, - 3150, 3155, - 3151, - 3153, - 3145, - 3157, - 3146, - 3159, + 3156, 3158, - 3152, + 3163, + 3159, + 3161, + 3153, + 3165, 3154, - 3156, - 3149 + 3167, + 3166, + 3160, + 3162, + 3164, + 3157 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8499, + "line": 8537, "character": 12 } ] }, { - "id": 2297, + "id": 2339, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -5424,7 +5424,7 @@ }, "children": [ { - "id": 2300, + "id": 2342, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -5432,14 +5432,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7858, + "line": 7896, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2298, + "id": 2340, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -5447,14 +5447,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7856, + "line": 7894, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2299, + "id": 2341, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -5462,7 +5462,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7857, + "line": 7895, "character": 4 } ], @@ -5474,22 +5474,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2300, - 2298, - 2299 + 2342, + 2340, + 2341 ] } ], "sources": [ { "fileName": "types.ts", - "line": 7855, + "line": 7893, "character": 12 } ] }, { - "id": 2113, + "id": 2155, "name": "ContextType", "kind": 4, "kindString": "Enumeration", @@ -5513,7 +5513,7 @@ }, "children": [ { - "id": 2116, + "id": 2158, "name": "Answer", "kind": 16, "kindString": "Enumeration member", @@ -5524,14 +5524,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8303, + "line": 8341, "character": 4 } ], "defaultValue": "\"answer\"" }, { - "id": 2115, + "id": 2157, "name": "Liveboard", "kind": 16, "kindString": "Enumeration member", @@ -5542,14 +5542,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8299, + "line": 8337, "character": 4 } ], "defaultValue": "\"liveboard\"" }, { - "id": 2118, + "id": 2160, "name": "Other", "kind": 16, "kindString": "Enumeration member", @@ -5560,14 +5560,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8312, + "line": 8350, "character": 4 } ], "defaultValue": "\"other\"" }, { - "id": 2114, + "id": 2156, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -5578,14 +5578,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8295, + "line": 8333, "character": 4 } ], "defaultValue": "\"search-answer\"" }, { - "id": 2117, + "id": 2159, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -5596,7 +5596,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8307, + "line": 8345, "character": 4 } ], @@ -5608,24 +5608,24 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2116, - 2115, - 2118, - 2114, - 2117 + 2158, + 2157, + 2160, + 2156, + 2159 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8291, + "line": 8329, "character": 12 } ] }, { - "id": 3057, + "id": 3100, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -5635,7 +5635,7 @@ }, "children": [ { - "id": 3060, + "id": 3103, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -5646,14 +5646,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7995, + "line": 8033, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 3058, + "id": 3101, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -5664,14 +5664,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7968, + "line": 8006, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 3061, + "id": 3104, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -5682,14 +5682,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8006, + "line": 8044, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 3059, + "id": 3102, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -5700,7 +5700,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7982, + "line": 8020, "character": 4 } ], @@ -5712,23 +5712,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3060, - 3058, - 3061, - 3059 + 3103, + 3101, + 3104, + 3102 ] } ], "sources": [ { "fileName": "types.ts", - "line": 7958, + "line": 7996, "character": 12 } ] }, { - "id": 3053, + "id": 3096, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -5738,7 +5738,7 @@ }, "children": [ { - "id": 3056, + "id": 3099, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -5749,14 +5749,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7949, + "line": 7987, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 3055, + "id": 3098, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -5767,14 +5767,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7941, + "line": 7979, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 3054, + "id": 3097, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -5785,7 +5785,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7936, + "line": 7974, "character": 4 } ], @@ -5797,22 +5797,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3056, - 3055, - 3054 + 3099, + 3098, + 3097 ] } ], "sources": [ { "fileName": "types.ts", - "line": 7931, + "line": 7969, "character": 12 } ] }, { - "id": 3160, + "id": 3168, "name": "DataLabelFilterOperator", "kind": 4, "kindString": "Enumeration", @@ -5828,7 +5828,7 @@ }, "children": [ { - "id": 3165, + "id": 3173, "name": "EqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5839,14 +5839,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8490, + "line": 8528, "character": 4 } ], "defaultValue": "\"EQUAL_TO\"" }, { - "id": 3161, + "id": 3169, "name": "GreaterThan", "kind": 16, "kindString": "Enumeration member", @@ -5857,14 +5857,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8482, + "line": 8520, "character": 4 } ], "defaultValue": "\"GREATER_THAN\"" }, { - "id": 3163, + "id": 3171, "name": "GreaterThanOrEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5875,14 +5875,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8486, + "line": 8524, "character": 4 } ], "defaultValue": "\"GREATER_THAN_OR_EQUAL_TO\"" }, { - "id": 3162, + "id": 3170, "name": "LessThan", "kind": 16, "kindString": "Enumeration member", @@ -5893,14 +5893,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8484, + "line": 8522, "character": 4 } ], "defaultValue": "\"LESS_THAN\"" }, { - "id": 3164, + "id": 3172, "name": "LessThanOrEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5911,14 +5911,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8488, + "line": 8526, "character": 4 } ], "defaultValue": "\"LESS_THAN_OR_EQUAL_TO\"" }, { - "id": 3166, + "id": 3174, "name": "NotEqualTo", "kind": 16, "kindString": "Enumeration member", @@ -5929,7 +5929,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8492, + "line": 8530, "character": 4 } ], @@ -5941,25 +5941,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3165, - 3161, - 3163, - 3162, - 3164, - 3166 + 3173, + 3169, + 3171, + 3170, + 3172, + 3174 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8480, + "line": 8518, "character": 12 } ] }, { - "id": 3049, + "id": 3092, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -5969,7 +5969,7 @@ }, "children": [ { - "id": 3051, + "id": 3094, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -5987,7 +5987,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 3050, + "id": 3093, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -6005,7 +6005,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 3052, + "id": 3095, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -6028,9 +6028,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3051, - 3050, - 3052 + 3094, + 3093, + 3095 ] } ], @@ -6043,7 +6043,7 @@ ] }, { - "id": 2119, + "id": 2161, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -6053,7 +6053,7 @@ }, "children": [ { - "id": 2121, + "id": 2163, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -6064,14 +6064,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5933, + "line": 5970, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 2122, + "id": 2164, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -6082,14 +6082,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5937, + "line": 5974, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 2120, + "id": 2162, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -6100,7 +6100,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5929, + "line": 5966, "character": 4 } ], @@ -6112,22 +6112,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2121, - 2122, - 2120 + 2163, + 2164, + 2162 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5925, + "line": 5962, "character": 12 } ] }, { - "id": 3066, + "id": 3109, "name": "EmbedErrorCodes", "kind": 4, "kindString": "Enumeration", @@ -6151,7 +6151,7 @@ }, "children": [ { - "id": 3069, + "id": 3112, "name": "CONFLICTING_ACTIONS_CONFIG", "kind": 16, "kindString": "Enumeration member", @@ -6162,14 +6162,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8172, + "line": 8210, "character": 4 } ], "defaultValue": "\"CONFLICTING_ACTIONS_CONFIG\"" }, { - "id": 3070, + "id": 3113, "name": "CONFLICTING_TABS_CONFIG", "kind": 16, "kindString": "Enumeration member", @@ -6180,14 +6180,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8175, + "line": 8213, "character": 4 } ], "defaultValue": "\"CONFLICTING_TABS_CONFIG\"" }, { - "id": 3073, + "id": 3116, "name": "CUSTOM_ACTION_VALIDATION", "kind": 16, "kindString": "Enumeration member", @@ -6198,14 +6198,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8184, + "line": 8222, "character": 4 } ], "defaultValue": "\"CUSTOM_ACTION_VALIDATION\"" }, { - "id": 3082, + "id": 3125, "name": "DRILLDOWN_INVALID_PAYLOAD", "kind": 16, "kindString": "Enumeration member", @@ -6216,14 +6216,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8211, + "line": 8249, "character": 4 } ], "defaultValue": "\"DRILLDOWN_INVALID_PAYLOAD\"" }, { - "id": 3076, + "id": 3119, "name": "HOST_EVENT_TYPE_UNDEFINED", "kind": 16, "kindString": "Enumeration member", @@ -6234,14 +6234,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8193, + "line": 8231, "character": 4 } ], "defaultValue": "\"HOST_EVENT_TYPE_UNDEFINED\"" }, { - "id": 3080, + "id": 3123, "name": "HOST_EVENT_VALIDATION", "kind": 16, "kindString": "Enumeration member", @@ -6252,14 +6252,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8205, + "line": 8243, "character": 4 } ], "defaultValue": "\"HOST_EVENT_VALIDATION\"" }, { - "id": 3071, + "id": 3114, "name": "INIT_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -6270,14 +6270,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8178, + "line": 8216, "character": 4 } ], "defaultValue": "\"INIT_ERROR\"" }, { - "id": 3079, + "id": 3122, "name": "INVALID_URL", "kind": 16, "kindString": "Enumeration member", @@ -6288,14 +6288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8202, + "line": 8240, "character": 4 } ], "defaultValue": "\"INVALID_URL\"" }, { - "id": 3068, + "id": 3111, "name": "LIVEBOARD_ID_MISSING", "kind": 16, "kindString": "Enumeration member", @@ -6306,14 +6306,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8169, + "line": 8207, "character": 4 } ], "defaultValue": "\"LIVEBOARD_ID_MISSING\"" }, { - "id": 3074, + "id": 3117, "name": "LOGIN_FAILED", "kind": 16, "kindString": "Enumeration member", @@ -6324,14 +6324,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8187, + "line": 8225, "character": 4 } ], "defaultValue": "\"LOGIN_FAILED\"" }, { - "id": 3072, + "id": 3115, "name": "NETWORK_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -6342,14 +6342,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8181, + "line": 8219, "character": 4 } ], "defaultValue": "\"NETWORK_ERROR\"" }, { - "id": 3077, + "id": 3120, "name": "PARSING_API_INTERCEPT_BODY_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -6360,14 +6360,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8196, + "line": 8234, "character": 4 } ], "defaultValue": "\"PARSING_API_INTERCEPT_BODY_ERROR\"" }, { - "id": 3075, + "id": 3118, "name": "RENDER_NOT_CALLED", "kind": 16, "kindString": "Enumeration member", @@ -6378,14 +6378,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8190, + "line": 8228, "character": 4 } ], "defaultValue": "\"RENDER_NOT_CALLED\"" }, { - "id": 3081, + "id": 3124, "name": "UPDATEFILTERS_INVALID_PAYLOAD", "kind": 16, "kindString": "Enumeration member", @@ -6396,14 +6396,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8208, + "line": 8246, "character": 4 } ], "defaultValue": "\"UPDATEFILTERS_INVALID_PAYLOAD\"" }, { - "id": 3078, + "id": 3121, "name": "UPDATE_PARAMS_FAILED", "kind": 16, "kindString": "Enumeration member", @@ -6414,14 +6414,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8199, + "line": 8237, "character": 4 } ], "defaultValue": "\"UPDATE_PARAMS_FAILED\"" }, { - "id": 3067, + "id": 3110, "name": "WORKSHEET_ID_NOT_FOUND", "kind": 16, "kindString": "Enumeration member", @@ -6432,7 +6432,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8166, + "line": 8204, "character": 4 } ], @@ -6444,35 +6444,35 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3069, - 3070, - 3073, - 3082, - 3076, - 3080, - 3071, - 3079, - 3068, - 3074, - 3072, - 3077, - 3075, - 3081, - 3078, - 3067 + 3112, + 3113, + 3116, + 3125, + 3119, + 3123, + 3114, + 3122, + 3111, + 3117, + 3115, + 3120, + 3118, + 3124, + 3121, + 3110 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8164, + "line": 8202, "character": 12 } ] }, { - "id": 1913, + "id": 1955, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -6497,7 +6497,7 @@ }, "children": [ { - "id": 1950, + "id": 1992, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -6518,14 +6518,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2791, + "line": 2828, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 1941, + "id": 1983, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -6546,14 +6546,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2654, + "line": 2691, "character": 4 } ], "defaultValue": "\"*\"" }, { - "id": 1921, + "id": 1963, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -6578,14 +6578,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2418, + "line": 2439, "character": 4 } ], "defaultValue": "\"addRemoveColumns\"" }, { - "id": 2003, + "id": 2045, "name": "AddToCoaching", "kind": 16, "kindString": "Enumeration member", @@ -6606,14 +6606,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3441, + "line": 3478, "character": 4 } ], "defaultValue": "\"addToCoaching\"" }, { - "id": 1967, + "id": 2009, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -6634,14 +6634,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3004, + "line": 3041, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1926, + "id": 1968, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -6666,14 +6666,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2512, + "line": 2549, "character": 4 } ], "defaultValue": "\"alert\"" }, { - "id": 1963, + "id": 2005, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -6694,14 +6694,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2972, + "line": 3009, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1949, + "id": 1991, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -6722,14 +6722,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2780, + "line": 2817, "character": 4 } ], "defaultValue": "\"answerDelete\"" }, { - "id": 2013, + "id": 2055, "name": "ApiIntercept", "kind": 16, "kindString": "Enumeration member", @@ -6751,14 +6751,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3607, + "line": 3644, "character": 4 } ], "defaultValue": "\"ApiIntercept\"" }, { - "id": 1992, + "id": 2034, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -6791,14 +6791,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3253, + "line": 3290, "character": 4 } ], "defaultValue": "\"AskSageInit\"" }, { - "id": 1927, + "id": 1969, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -6819,14 +6819,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2525, + "line": 2562, "character": 4 } ], "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1915, + "id": 1957, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -6851,14 +6851,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2320, + "line": 2341, "character": 4 } ], "defaultValue": "\"authInit\"" }, { - "id": 1974, + "id": 2016, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -6879,14 +6879,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3080, + "line": 3117, "character": 4 } ], "defaultValue": "\"cancel\"" }, { - "id": 1990, + "id": 2032, "name": "ChangePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -6923,14 +6923,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3239, + "line": 3276, "character": 4 } ], "defaultValue": "\"changePersonalisedView\"" }, { - "id": 1961, + "id": 2003, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -6951,14 +6951,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2950, + "line": 2987, "character": 4 } ], "defaultValue": "\"copyAEdit\"" }, { - "id": 1976, + "id": 2018, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -6979,14 +6979,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3100, + "line": 3137, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1956, + "id": 1998, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -7007,14 +7007,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2883, + "line": 2920, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1982, + "id": 2024, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -7031,14 +7031,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3151, + "line": 3188, "character": 4 } ], "defaultValue": "\"createConnection\"" }, { - "id": 1997, + "id": 2039, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -7056,14 +7056,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3391, + "line": 3428, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 1998, + "id": 2040, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -7080,14 +7080,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3396, + "line": 3433, "character": 4 } ], "defaultValue": "\"createModel\"" }, { - "id": 1991, + "id": 2033, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -7104,14 +7104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3244, + "line": 3281, "character": 4 } ], "defaultValue": "\"createWorksheet\"" }, { - "id": 1977, + "id": 2019, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -7132,14 +7132,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3111, + "line": 3148, "character": 4 } ], "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1922, + "id": 1964, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -7168,14 +7168,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2435, + "line": 2456, "character": 4 } ], "defaultValue": "\"customAction\"" }, { - "id": 1917, + "id": 1959, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -7204,14 +7204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2348, + "line": 2369, "character": 4 } ], "defaultValue": "\"data\"" }, { - "id": 2004, + "id": 2046, "name": "DataModelInstructions", "kind": 16, "kindString": "Enumeration member", @@ -7232,14 +7232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3452, + "line": 3489, "character": 4 } ], "defaultValue": "\"DataModelInstructions\"" }, { - "id": 1920, + "id": 1962, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -7264,14 +7264,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2406, + "line": 2427, "character": 4 } ], "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1972, + "id": 2014, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -7292,14 +7292,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3062, + "line": 3099, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1988, + "id": 2030, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -7328,14 +7328,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3211, + "line": 3248, "character": 4 } ], "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1989, + "id": 2031, "name": "DeletePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -7360,14 +7360,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3218, + "line": 3255, "character": 4 } ], "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1939, + "id": 1981, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -7388,14 +7388,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2621, + "line": 2658, "character": 4 } ], "defaultValue": "\"dialog-close\"" }, { - "id": 1938, + "id": 1980, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -7416,14 +7416,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2610, + "line": 2647, "character": 4 } ], "defaultValue": "\"dialog-open\"" }, { - "id": 1943, + "id": 1985, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -7445,14 +7445,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2689, + "line": 2726, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1946, + "id": 1988, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -7473,14 +7473,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2737, + "line": 2774, "character": 4 } ], "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1945, + "id": 1987, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -7501,14 +7501,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2721, + "line": 2758, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1944, + "id": 1986, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -7529,14 +7529,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2705, + "line": 2742, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1947, + "id": 1989, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -7557,14 +7557,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2753, + "line": 2790, "character": 4 } ], "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1948, + "id": 1990, "name": "DownloadLiveboardAsContinuousPDF", "kind": 16, "kindString": "Enumeration member", @@ -7585,14 +7585,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2764, + "line": 2801, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsContinuousPDF\"" }, { - "id": 1955, + "id": 1997, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -7613,14 +7613,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2872, + "line": 2909, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1954, + "id": 1996, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -7641,14 +7641,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2860, + "line": 2897, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1919, + "id": 1961, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -7685,14 +7685,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2394, + "line": 2415, "character": 4 } ], "defaultValue": "\"drillDown\"" }, { - "id": 1969, + "id": 2011, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7713,14 +7713,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3026, + "line": 3063, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1958, + "id": 2000, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7741,14 +7741,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2906, + "line": 2943, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2018, + "id": 2060, "name": "EmbedPageContextChanged", "kind": 16, "kindString": "Enumeration member", @@ -7769,21 +7769,21 @@ "sources": [ { "fileName": "types.ts", - "line": 3668, + "line": 3705, "character": 4 } ], "defaultValue": "\"EmbedPageContextChanged\"" }, { - "id": 1925, + "id": 1967, "name": "Error", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "An error has occurred. This event is fired for the following error types:", - "text": "`API` - API call failure.\n`FULLSCREEN` - Error when presenting a Liveboard or visualization in full screen\nmode. `SINGLE_VALUE_FILTER` - Error due to multiple values in the single value\nfilter. `NON_EXIST_FILTER` - Error due to a non-existent filter.\n`INVALID_DATE_VALUE` - Invalid date value error.\n`INVALID_OPERATOR` - Use of invalid operator during filter application.\n\nFor more information, see https://developers.thoughtspot.com/docs/events-app-integration#errorType", + "shortText": "Fired when an error occurs in the embedded component.", + "text": "**Important:** This event fires for many reasons — including internal\nvalidation warnings (e.g. `HOST_EVENT_VALIDATION`), configuration issues,\nand transient errors that ThoughtSpot already handles gracefully inside the\niframe. **Do not call `embed.destroy()` or unmount the embed component on\nevery error.** Doing so will tear down the iframe and abort all in-flight\nrequests, causing the embed to fail entirely.\n\nOnly treat the following codes as unrecoverable:\n- `INIT_ERROR` — SDK was not initialised before render\n- `LOGIN_FAILED` — authentication could not be completed\n\nAll other error codes should be logged and inspected, not acted upon\ndestructively.\n\n**Note:** There is currently no dedicated event for a true unrecoverable\ncrash. A future `EmbedEvent.FatalError` event is planned to give customers\na clean signal for when the embed cannot recover and needs to be torn down.\n\nError types include:\n`API` - API call failure.\n`FULLSCREEN` - Error when presenting a Liveboard in full screen mode.\n`VALIDATION_ERROR` - Internal host event or configuration validation warning.\n\nFor more information, see https://developers.thoughtspot.com/docs/events-app-integration#errorType", "tags": [ { "tag": "returns", @@ -7795,25 +7795,25 @@ }, { "tag": "example", - "text": "\n```js\n// API error\nSearchEmbed.on(EmbedEvent.Error, (error) => {\n console.log(error);\n // { type: \"Error\", data: { errorType: \"API\", error: { message: '...', error: '...' } } }\n // { errorType: \"API\", message: '...', code: '...' } new format\n});\n```" + "text": "\n```js\n// Recommended pattern — only destroy on truly fatal errors\nembed.on(EmbedEvent.Error, (error) => {\n const FATAL_CODES = ['INIT_ERROR', 'LOGIN_FAILED'];\n if (FATAL_CODES.includes(error.data?.code)) {\n embed.destroy();\n return;\n }\n // Log all other errors — do not destroy\n console.warn('Embed error (non-fatal):', error);\n});\n```" }, { "tag": "example", - "text": "\n```js\n// Fullscreen error (Errors during presenting of a liveboard)\nLiveboardEmbed.on(EmbedEvent.Error, (error) => {\n console.log(error);\n // { type: \"Error\", data: { errorType: \"FULLSCREEN\", error: {\n // message: \"Fullscreen API is not enabled\",\n // stack: \"...\"\n // } }}\n // { errorType: \"FULLSCREEN\", message: \"Fullscreen API is not enabled\", code: '...' } new format\n})\n```\n" + "text": "\n```js\n// API error\nSearchEmbed.on(EmbedEvent.Error, (error) => {\n console.log(error);\n // { errorType: \"API\", message: '...', code: '...' }\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 2502, + "line": 2539, "character": 4 } ], "defaultValue": "\"Error\"" }, { - "id": 1975, + "id": 2017, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7834,14 +7834,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3090, + "line": 3127, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1959, + "id": 2001, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7862,14 +7862,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2923, + "line": 2960, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1980, + "id": 2022, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -7890,14 +7890,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3141, + "line": 3178, "character": 4 } ], "defaultValue": "\"filterChanged\"" }, { - "id": 1933, + "id": 1975, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -7918,14 +7918,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2567, + "line": 2604, "character": 4 } ], "defaultValue": "\"getDataClick\"" }, { - "id": 1914, + "id": 1956, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -7946,14 +7946,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2308, + "line": 2329, "character": 4 } ], "defaultValue": "\"init\"" }, { - "id": 2007, + "id": 2049, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -7974,14 +7974,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3485, + "line": 3522, "character": 4 } ], "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 2006, + "id": 2048, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -8002,14 +8002,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3474, + "line": 3511, "character": 4 } ], "defaultValue": "\"LastPromptEdited\"" }, { - "id": 1966, + "id": 2008, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -8030,14 +8030,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2993, + "line": 3030, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1940, + "id": 1982, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -8062,14 +8062,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2643, + "line": 2680, "character": 4 } ], "defaultValue": "\"PinboardRendered\"" }, { - "id": 1916, + "id": 1958, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -8094,14 +8094,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2334, + "line": 2355, "character": 4 } ], "defaultValue": "\"load\"" }, { - "id": 1970, + "id": 2012, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -8122,14 +8122,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3037, + "line": 3074, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1936, + "id": 1978, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -8150,14 +8150,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2593, + "line": 2630, "character": 4 } ], "defaultValue": "\"noCookieAccess\"" }, { - "id": 1994, + "id": 2036, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -8188,14 +8188,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3324, + "line": 3361, "character": 4 } ], "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 2012, + "id": 2054, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -8216,14 +8216,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3541, + "line": 3578, "character": 4 } ], "defaultValue": "\"orgSwitched\"" }, { - "id": 1995, + "id": 2037, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -8240,14 +8240,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3335, + "line": 3372, "character": 4 } ], "defaultValue": "\"parameterChanged\"" }, { - "id": 1951, + "id": 1993, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -8268,14 +8268,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2812, + "line": 2849, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1971, + "id": 2013, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -8300,14 +8300,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3052, + "line": 3089, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2002, + "id": 2044, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8328,14 +8328,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3430, + "line": 3467, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1918, + "id": 1960, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -8356,14 +8356,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2357, + "line": 2378, "character": 4 } ], "defaultValue": "\"queryChanged\"" }, { - "id": 2028, + "id": 2070, "name": "RefreshLiveboardBrowserCache", "kind": 16, "kindString": "Enumeration member", @@ -8384,14 +8384,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3809, + "line": 3846, "character": 4 } ], "defaultValue": "\"refreshLiveboardBrowserCache\"" }, { - "id": 1993, + "id": 2035, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -8408,14 +8408,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3258, + "line": 3295, "character": 4 } ], "defaultValue": "\"rename\"" }, { - "id": 1987, + "id": 2029, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -8448,14 +8448,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3202, + "line": 3239, "character": 4 } ], "defaultValue": "\"resetLiveboard\"" }, { - "id": 2008, + "id": 2050, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -8476,14 +8476,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3496, + "line": 3533, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 1934, + "id": 1976, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -8504,14 +8504,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2577, + "line": 2614, "character": 4 } ], "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1942, + "id": 1984, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -8532,14 +8532,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2673, + "line": 2710, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1960, + "id": 2002, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -8560,14 +8560,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2934, + "line": 2971, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1985, + "id": 2027, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8604,14 +8604,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3184, + "line": 3221, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1986, + "id": 2028, "name": "SavePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -8644,14 +8644,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3193, + "line": 3230, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1968, + "id": 2010, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -8672,14 +8672,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3015, + "line": 3052, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1973, + "id": 2015, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -8700,14 +8700,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3071, + "line": 3108, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2020, + "id": 2062, "name": "SendTestScheduleEmail", "kind": 16, "kindString": "Enumeration member", @@ -8728,14 +8728,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3706, + "line": 3743, "character": 4 } ], "defaultValue": "\"sendTestScheduleEmail\"" }, { - "id": 1953, + "id": 1995, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8756,14 +8756,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2848, + "line": 2885, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1962, + "id": 2004, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -8784,14 +8784,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2961, + "line": 2998, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1952, + "id": 1994, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -8812,14 +8812,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2830, + "line": 2867, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2015, + "id": 2057, "name": "SpotterConversationDeleted", "kind": 16, "kindString": "Enumeration member", @@ -8840,14 +8840,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3631, + "line": 3668, "character": 4 } ], "defaultValue": "\"spotterConversationDeleted\"" }, { - "id": 2014, + "id": 2056, "name": "SpotterConversationRenamed", "kind": 16, "kindString": "Enumeration member", @@ -8868,14 +8868,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3619, + "line": 3656, "character": 4 } ], "defaultValue": "\"spotterConversationRenamed\"" }, { - "id": 2016, + "id": 2058, "name": "SpotterConversationSelected", "kind": 16, "kindString": "Enumeration member", @@ -8896,14 +8896,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3643, + "line": 3680, "character": 4 } ], "defaultValue": "\"spotterConversationSelected\"" }, { - "id": 2001, + "id": 2043, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -8924,14 +8924,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3419, + "line": 3456, "character": 4 } ], "defaultValue": "\"SpotterData\"" }, { - "id": 2009, + "id": 2051, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -8952,14 +8952,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3507, + "line": 3544, "character": 4 } ], "defaultValue": "\"spotterInit\"" }, { - "id": 2010, + "id": 2052, "name": "SpotterLoadComplete", "kind": 16, "kindString": "Enumeration member", @@ -8980,14 +8980,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3518, + "line": 3555, "character": 4 } ], "defaultValue": "\"spotterLoadComplete\"" }, { - "id": 2005, + "id": 2047, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -9008,14 +9008,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3463, + "line": 3500, "character": 4 } ], "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 2024, + "id": 2066, "name": "SpotterVizCheckpointCreated", "kind": 16, "kindString": "Enumeration member", @@ -9036,14 +9036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3758, + "line": 3795, "character": 4 } ], "defaultValue": "\"SpotterVizCheckpointCreated\"" }, { - "id": 2025, + "id": 2067, "name": "SpotterVizCheckpointRestored", "kind": 16, "kindString": "Enumeration member", @@ -9064,14 +9064,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3771, + "line": 3808, "character": 4 } ], "defaultValue": "\"SpotterVizCheckpointRestored\"" }, { - "id": 2027, + "id": 2069, "name": "SpotterVizClosed", "kind": 16, "kindString": "Enumeration member", @@ -9092,14 +9092,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3795, + "line": 3832, "character": 4 } ], "defaultValue": "\"SpotterVizClosed\"" }, { - "id": 2026, + "id": 2068, "name": "SpotterVizError", "kind": 16, "kindString": "Enumeration member", @@ -9120,14 +9120,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3783, + "line": 3820, "character": 4 } ], "defaultValue": "\"SpotterVizError\"" }, { - "id": 2021, + "id": 2063, "name": "SpotterVizInit", "kind": 16, "kindString": "Enumeration member", @@ -9148,14 +9148,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3719, + "line": 3756, "character": 4 } ], "defaultValue": "\"SpotterVizInit\"" }, { - "id": 2022, + "id": 2064, "name": "SpotterVizQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -9176,14 +9176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3732, + "line": 3769, "character": 4 } ], "defaultValue": "\"SpotterVizQueryTriggered\"" }, { - "id": 2023, + "id": 2065, "name": "SpotterVizResponseComplete", "kind": 16, "kindString": "Enumeration member", @@ -9204,14 +9204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3745, + "line": 3782, "character": 4 } ], "defaultValue": "\"SpotterVizResponseComplete\"" }, { - "id": 2019, + "id": 2061, "name": "Subscribed", "kind": 16, "kindString": "Enumeration member", @@ -9237,14 +9237,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3691, + "line": 3728, "character": 4 } ], "defaultValue": "\"Subscribed\"" }, { - "id": 1996, + "id": 2038, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -9266,14 +9266,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3378, + "line": 3415, "character": 4 } ], "defaultValue": "\"TableVizRendered\"" }, { - "id": 1981, + "id": 2023, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -9290,14 +9290,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3146, + "line": 3183, "character": 4 } ], "defaultValue": "\"updateConnection\"" }, { - "id": 1983, + "id": 2025, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9334,14 +9334,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3163, + "line": 3200, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1984, + "id": 2026, "name": "UpdatePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -9374,14 +9374,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3173, + "line": 3210, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1957, + "id": 1999, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -9402,14 +9402,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2894, + "line": 2931, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1924, + "id": 1966, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -9438,14 +9438,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2466, + "line": 2487, "character": 4 } ], "defaultValue": "\"vizPointClick\"" }, { - "id": 1923, + "id": 1965, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -9470,14 +9470,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2447, + "line": 2468, "character": 4 } ], "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1978, + "id": 2020, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -9498,7 +9498,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3122, + "line": 3159, "character": 4 } ], @@ -9510,120 +9510,120 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1950, - 1941, - 1921, - 2003, - 1967, - 1926, - 1963, - 1949, - 2013, 1992, - 1927, - 1915, - 1974, - 1990, - 1961, - 1976, - 1956, - 1982, - 1997, - 1998, + 1983, + 1963, + 2045, + 2009, + 1968, + 2005, 1991, - 1977, - 1922, - 1917, - 2004, - 1920, - 1972, - 1988, - 1989, - 1939, - 1938, - 1943, - 1946, - 1945, - 1944, - 1947, - 1948, - 1955, - 1954, - 1919, + 2055, + 2034, 1969, - 1958, + 1957, + 2016, + 2032, + 2003, 2018, - 1925, - 1975, + 1998, + 2024, + 2039, + 2040, + 2033, + 2019, + 1964, 1959, + 2046, + 1962, + 2014, + 2030, + 2031, + 1981, 1980, - 1933, - 1914, - 2007, - 2006, - 1966, - 1940, - 1916, - 1970, - 1936, - 1994, - 2012, - 1995, - 1951, - 1971, - 2002, - 1918, - 2028, - 1993, - 1987, - 2008, - 1934, - 1942, - 1960, 1985, + 1988, + 1987, 1986, - 1968, - 1973, - 2020, - 1953, - 1962, - 1952, - 2015, - 2014, - 2016, + 1989, + 1990, + 1997, + 1996, + 1961, + 2011, + 2000, + 2060, + 1967, + 2017, 2001, - 2009, + 2022, + 1975, + 1956, + 2049, + 2048, + 2008, + 1982, + 1958, + 2012, + 1978, + 2036, + 2054, + 2037, + 1993, + 2013, + 2044, + 1960, + 2070, + 2035, + 2029, + 2050, + 1976, + 1984, + 2002, + 2027, + 2028, 2010, - 2005, - 2024, + 2015, + 2062, + 1995, + 2004, + 1994, + 2057, + 2056, + 2058, + 2043, + 2051, + 2052, + 2047, + 2066, + 2067, + 2069, + 2068, + 2063, + 2064, + 2065, + 2061, + 2038, + 2023, 2025, - 2027, 2026, - 2021, - 2022, - 2023, - 2019, - 1996, - 1981, - 1983, - 1984, - 1957, - 1924, - 1923, - 1978 + 1999, + 1966, + 1965, + 2020 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2295, + "line": 2316, "character": 12 } ] }, { - "id": 3089, + "id": 3132, "name": "ErrorDetailsTypes", "kind": 4, "kindString": "Enumeration", @@ -9648,7 +9648,7 @@ }, "children": [ { - "id": 3090, + "id": 3133, "name": "API", "kind": 16, "kindString": "Enumeration member", @@ -9659,14 +9659,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8126, + "line": 8164, "character": 4 } ], "defaultValue": "\"API\"" }, { - "id": 3092, + "id": 3135, "name": "NETWORK", "kind": 16, "kindString": "Enumeration member", @@ -9677,14 +9677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8130, + "line": 8168, "character": 4 } ], "defaultValue": "\"NETWORK\"" }, { - "id": 3091, + "id": 3134, "name": "VALIDATION_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -9695,7 +9695,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8128, + "line": 8166, "character": 4 } ], @@ -9707,22 +9707,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3090, - 3092, - 3091 + 3133, + 3135, + 3134 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8124, + "line": 8162, "character": 12 } ] }, { - "id": 2688, + "id": 2731, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -9732,7 +9732,7 @@ }, "children": [ { - "id": 2692, + "id": 2735, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -9756,7 +9756,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2696, + "id": 2739, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -9780,7 +9780,7 @@ "defaultValue": "\"create\"" }, { - "id": 2698, + "id": 2741, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -9804,7 +9804,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2690, + "id": 2733, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -9828,7 +9828,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2695, + "id": 2738, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -9852,7 +9852,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2691, + "id": 2734, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -9876,7 +9876,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2693, + "id": 2736, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -9900,7 +9900,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2689, + "id": 2732, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -9924,7 +9924,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2694, + "id": 2737, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -9948,7 +9948,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2697, + "id": 2740, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -9977,16 +9977,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2692, - 2696, - 2698, - 2690, - 2695, - 2691, - 2693, - 2689, - 2694, - 2697 + 2735, + 2739, + 2741, + 2733, + 2738, + 2734, + 2736, + 2732, + 2737, + 2740 ] } ], @@ -9999,7 +9999,7 @@ ] }, { - "id": 2994, + "id": 3037, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -10015,7 +10015,7 @@ }, "children": [ { - "id": 2997, + "id": 3040, "name": "Focused", "kind": 16, "kindString": "Enumeration member", @@ -10039,7 +10039,7 @@ "defaultValue": "\"v4\"" }, { - "id": 2995, + "id": 3038, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -10057,7 +10057,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2996, + "id": 3039, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -10080,9 +10080,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2997, - 2995, - 2996 + 3040, + 3038, + 3039 ] } ], @@ -10095,14 +10095,14 @@ ] }, { - "id": 2988, + "id": 3031, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2990, + "id": 3033, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -10117,7 +10117,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2991, + "id": 3034, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -10132,7 +10132,7 @@ "defaultValue": "\"none\"" }, { - "id": 2989, + "id": 3032, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -10152,9 +10152,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2990, - 2991, - 2989 + 3033, + 3034, + 3032 ] } ], @@ -10167,7 +10167,7 @@ ] }, { - "id": 2699, + "id": 2742, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -10184,7 +10184,7 @@ }, "children": [ { - "id": 2702, + "id": 2745, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -10195,14 +10195,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2167, + "line": 2188, "character": 4 } ], "defaultValue": "\"FAVORITE\"" }, { - "id": 2705, + "id": 2748, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -10213,14 +10213,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2179, + "line": 2200, "character": 4 } ], "defaultValue": "\"LEARNING\"" }, { - "id": 2703, + "id": 2746, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -10231,14 +10231,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2171, + "line": 2192, "character": 4 } ], "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2700, + "id": 2743, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -10249,14 +10249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2159, + "line": 2180, "character": 4 } ], "defaultValue": "\"SEARCH\"" }, { - "id": 2704, + "id": 2747, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -10267,14 +10267,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2175, + "line": 2196, "character": 4 } ], "defaultValue": "\"TRENDING\"" }, { - "id": 2701, + "id": 2744, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -10285,7 +10285,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2163, + "line": 2184, "character": 4 } ], @@ -10297,25 +10297,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2702, - 2705, - 2703, - 2700, - 2704, - 2701 + 2745, + 2748, + 2746, + 2743, + 2747, + 2744 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2155, + "line": 2176, "character": 12 } ] }, { - "id": 2029, + "id": 2071, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -10348,7 +10348,7 @@ }, "children": [ { - "id": 2052, + "id": 2094, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -10369,14 +10369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4456, + "line": 4493, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2040, + "id": 2082, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -10406,14 +10406,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4154, + "line": 4191, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 2097, + "id": 2139, "name": "AddToCoaching", "kind": 16, "kindString": "Enumeration member", @@ -10439,14 +10439,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5738, + "line": 5775, "character": 4 } ], "defaultValue": "\"addToCoaching\"" }, { - "id": 2101, + "id": 2143, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -10472,14 +10472,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5780, + "line": 5817, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2081, + "id": 2123, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -10500,14 +10500,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5423, + "line": 5460, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 2104, + "id": 2146, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -10533,14 +10533,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5818, + "line": 5855, "character": 4 } ], "defaultValue": "\"AskSpotter\"" }, { - "id": 2059, + "id": 2101, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -10582,14 +10582,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4689, + "line": 4726, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2056, + "id": 2098, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -10627,14 +10627,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4564, + "line": 4601, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2098, + "id": 2140, "name": "DataModelInstructions", "kind": 16, "kindString": "Enumeration member", @@ -10655,14 +10655,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5747, + "line": 5784, "character": 4 } ], "defaultValue": "\"DataModelInstructions\"" }, { - "id": 2063, + "id": 2105, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -10696,14 +10696,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4842, + "line": 4879, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2100, + "id": 2142, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -10724,14 +10724,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5765, + "line": 5802, "character": 4 } ], "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2106, + "id": 2148, "name": "DestroyEmbed", "kind": 16, "kindString": "Enumeration member", @@ -10752,14 +10752,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5838, + "line": 5875, "character": 4 } ], "defaultValue": "\"EmbedDestroyed\"" }, { - "id": 2065, + "id": 2107, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -10789,14 +10789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4904, + "line": 4941, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2067, + "id": 2109, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -10830,14 +10830,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4974, + "line": 5011, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2050, + "id": 2092, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -10875,14 +10875,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4434, + "line": 4471, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2066, + "id": 2108, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -10907,14 +10907,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4935, + "line": 4972, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2068, + "id": 2110, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -10948,14 +10948,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5013, + "line": 5050, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2051, + "id": 2093, "name": "DownloadLiveboardAsContinuousPDF", "kind": 16, "kindString": "Enumeration member", @@ -10976,14 +10976,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4446, + "line": 4483, "character": 4 } ], "defaultValue": "\"downloadLiveboardAsContinuousPDF\"" }, { - "id": 2031, + "id": 2073, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -11021,14 +11021,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3984, + "line": 4021, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2058, + "id": 2100, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -11067,14 +11067,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4644, + "line": 4681, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2095, + "id": 2137, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -11104,14 +11104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5712, + "line": 5749, "character": 4 } ], "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2048, + "id": 2090, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -11140,14 +11140,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4380, + "line": 4417, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2055, + "id": 2097, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -11177,14 +11177,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4533, + "line": 4570, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2047, + "id": 2089, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -11213,14 +11213,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4358, + "line": 4395, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2080, + "id": 2122, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -11246,14 +11246,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5413, + "line": 5450, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 2075, + "id": 2117, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -11278,14 +11278,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5215, + "line": 5252, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 2034, + "id": 2076, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -11310,14 +11310,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4011, + "line": 4048, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2086, + "id": 2128, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -11343,14 +11343,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5517, + "line": 5554, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 2061, + "id": 2103, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -11387,14 +11387,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4780, + "line": 4817, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 2077, + "id": 2119, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -11419,14 +11419,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5339, + "line": 5376, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 2111, + "id": 2153, "name": "InitSpotterVizConversation", "kind": 16, "kindString": "Enumeration member", @@ -11447,14 +11447,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5907, + "line": 5944, "character": 4 } ], "defaultValue": "\"InitSpotterVizConversation\"" }, { - "id": 2044, + "id": 2086, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -11479,14 +11479,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4306, + "line": 4343, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2053, + "id": 2095, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -11531,14 +11531,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4501, + "line": 4538, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2057, + "id": 2099, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -11580,14 +11580,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4599, + "line": 4636, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2073, + "id": 2115, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -11621,14 +11621,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5179, + "line": 5216, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2038, + "id": 2080, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -11654,14 +11654,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4108, + "line": 4145, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 2039, + "id": 2081, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -11695,14 +11695,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4136, + "line": 4173, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 2043, + "id": 2085, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -11756,14 +11756,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4290, + "line": 4327, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2060, + "id": 2102, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -11805,14 +11805,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4734, + "line": 4771, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2096, + "id": 2138, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -11837,14 +11837,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5727, + "line": 5764, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2112, + "id": 2154, "name": "RefreshLiveboardBrowserCache", "kind": 16, "kindString": "Enumeration member", @@ -11865,14 +11865,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5917, + "line": 5954, "character": 4 } ], "defaultValue": "\"refreshLiveboardBrowserCache\"" }, { - "id": 2054, + "id": 2096, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -11901,14 +11901,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4515, + "line": 4552, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2041, + "id": 2083, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -11938,14 +11938,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4172, + "line": 4209, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 2083, + "id": 2125, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -11970,14 +11970,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5450, + "line": 5487, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2084, + "id": 2126, "name": "ResetLiveboardPersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -11998,14 +11998,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5459, + "line": 5496, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2074, + "id": 2116, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -12030,14 +12030,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5197, + "line": 5234, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 2099, + "id": 2141, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -12058,14 +12058,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5756, + "line": 5793, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2070, + "id": 2112, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -12099,14 +12099,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5090, + "line": 5127, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2091, + "id": 2133, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -12148,14 +12148,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5646, + "line": 5683, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 2045, + "id": 2087, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -12180,14 +12180,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4321, + "line": 4358, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2046, + "id": 2088, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -12212,14 +12212,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4336, + "line": 4373, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2030, + "id": 2072, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -12245,14 +12245,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3915, + "line": 3952, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 2089, + "id": 2131, "name": "SelectPersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -12281,14 +12281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5576, + "line": 5613, "character": 4 } ], "defaultValue": "\"SelectPersonalisedView\"" }, { - "id": 2109, + "id": 2151, "name": "SendTestScheduleEmail", "kind": 16, "kindString": "Enumeration member", @@ -12313,14 +12313,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5884, + "line": 5921, "character": 4 } ], "defaultValue": "\"sendTestScheduleEmail\"" }, { - "id": 2036, + "id": 2078, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -12350,14 +12350,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4053, + "line": 4090, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 2079, + "id": 2121, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -12387,14 +12387,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5383, + "line": 5420, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2078, + "id": 2120, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -12424,14 +12424,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5361, + "line": 5398, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 2035, + "id": 2077, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -12461,14 +12461,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4033, + "line": 4070, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2069, + "id": 2111, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -12497,14 +12497,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5038, + "line": 5075, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2062, + "id": 2104, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -12538,14 +12538,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4813, + "line": 4850, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2064, + "id": 2106, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -12579,14 +12579,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4876, + "line": 4913, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2094, + "id": 2136, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -12616,14 +12616,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5696, + "line": 5733, "character": 4 } ], "defaultValue": "\"SpotterSearch\"" }, { - "id": 2110, + "id": 2152, "name": "SpotterVizSendUserMessage", "kind": 16, "kindString": "Enumeration member", @@ -12649,14 +12649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5897, + "line": 5934, "character": 4 } ], "defaultValue": "\"SpotterVizSendUserMessage\"" }, { - "id": 2107, + "id": 2149, "name": "StartNewSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -12678,14 +12678,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5852, + "line": 5889, "character": 4 } ], "defaultValue": "\"StartNewSpotterConversation\"" }, { - "id": 2072, + "id": 2114, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -12719,14 +12719,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5149, + "line": 5186, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2071, + "id": 2113, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -12760,14 +12760,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5119, + "line": 5156, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2093, + "id": 2135, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -12793,14 +12793,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5671, + "line": 5708, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2082, + "id": 2124, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -12821,14 +12821,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5439, + "line": 5476, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2076, + "id": 2118, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -12870,14 +12870,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5318, + "line": 5355, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 2085, + "id": 2127, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -12907,14 +12907,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5488, + "line": 5525, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 2087, + "id": 2129, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -12939,14 +12939,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5535, + "line": 5572, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2088, + "id": 2130, "name": "UpdatePersonalizedView", "kind": 16, "kindString": "Enumeration member", @@ -12963,14 +12963,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5543, + "line": 5580, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2037, + "id": 2079, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -13005,14 +13005,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4096, + "line": 4133, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2049, + "id": 2091, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -13037,14 +13037,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4395, + "line": 4432, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2042, + "id": 2084, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -13065,7 +13065,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4188, + "line": 4225, "character": 4 } ], @@ -13077,94 +13077,94 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2052, - 2040, - 2097, + 2094, + 2082, + 2139, + 2143, + 2123, + 2146, 2101, - 2081, - 2104, - 2059, - 2056, 2098, - 2063, - 2100, - 2106, - 2065, - 2067, - 2050, - 2066, - 2068, - 2051, - 2031, - 2058, - 2095, - 2048, - 2055, - 2047, - 2080, - 2075, - 2034, - 2086, - 2061, - 2077, - 2111, - 2044, - 2053, - 2057, - 2073, - 2038, - 2039, - 2043, - 2060, - 2096, - 2112, - 2054, - 2041, - 2083, - 2084, - 2074, - 2099, - 2070, - 2091, - 2045, - 2046, - 2030, - 2089, + 2140, + 2105, + 2142, + 2148, + 2107, 2109, - 2036, - 2079, - 2078, - 2035, - 2069, - 2062, - 2064, - 2094, + 2092, + 2108, 2110, - 2107, - 2072, - 2071, 2093, - 2082, + 2073, + 2100, + 2137, + 2090, + 2097, + 2089, + 2122, + 2117, 2076, + 2128, + 2103, + 2119, + 2153, + 2086, + 2095, + 2099, + 2115, + 2080, + 2081, 2085, + 2102, + 2138, + 2154, + 2096, + 2083, + 2125, + 2126, + 2116, + 2141, + 2112, + 2133, 2087, 2088, - 2037, - 2049, - 2042 + 2072, + 2131, + 2151, + 2078, + 2121, + 2120, + 2077, + 2111, + 2104, + 2106, + 2136, + 2152, + 2149, + 2114, + 2113, + 2135, + 2124, + 2118, + 2127, + 2129, + 2130, + 2079, + 2091, + 2084 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3885, + "line": 3922, "character": 12 } ] }, { - "id": 3062, + "id": 3105, "name": "InterceptedApiType", "kind": 4, "kindString": "Enumeration", @@ -13174,7 +13174,7 @@ }, "children": [ { - "id": 3064, + "id": 3107, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -13185,14 +13185,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8345, + "line": 8383, "character": 4 } ], "defaultValue": "\"ALL\"" }, { - "id": 3063, + "id": 3106, "name": "AnswerData", "kind": 16, "kindString": "Enumeration member", @@ -13203,14 +13203,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8341, + "line": 8379, "character": 4 } ], "defaultValue": "\"AnswerData\"" }, { - "id": 3065, + "id": 3108, "name": "LiveboardData", "kind": 16, "kindString": "Enumeration member", @@ -13221,7 +13221,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8349, + "line": 8387, "character": 4 } ], @@ -13233,22 +13233,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3064, - 3063, - 3065 + 3107, + 3106, + 3108 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8337, + "line": 8375, "character": 12 } ] }, { - "id": 3132, + "id": 3140, "name": "LegendPosition", "kind": 4, "kindString": "Enumeration", @@ -13264,7 +13264,7 @@ }, "children": [ { - "id": 3134, + "id": 3142, "name": "Bottom", "kind": 16, "kindString": "Enumeration member", @@ -13275,14 +13275,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8615, + "line": 8653, "character": 4 } ], "defaultValue": "\"bottom\"" }, { - "id": 3135, + "id": 3143, "name": "Left", "kind": 16, "kindString": "Enumeration member", @@ -13293,14 +13293,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8617, + "line": 8655, "character": 4 } ], "defaultValue": "\"left\"" }, { - "id": 3136, + "id": 3144, "name": "Right", "kind": 16, "kindString": "Enumeration member", @@ -13311,14 +13311,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8619, + "line": 8657, "character": 4 } ], "defaultValue": "\"right\"" }, { - "id": 3133, + "id": 3141, "name": "Top", "kind": 16, "kindString": "Enumeration member", @@ -13329,7 +13329,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8613, + "line": 8651, "character": 4 } ], @@ -13341,23 +13341,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3134, - 3135, - 3136, - 3133 + 3142, + 3143, + 3144, + 3141 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8611, + "line": 8649, "character": 12 } ] }, { - "id": 2998, + "id": 3041, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -13373,7 +13373,7 @@ }, "children": [ { - "id": 2999, + "id": 3042, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -13391,7 +13391,7 @@ "defaultValue": "\"v2\"" }, { - "id": 3000, + "id": 3043, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -13414,8 +13414,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2999, - 3000 + 3042, + 3043 ] } ], @@ -13428,7 +13428,7 @@ ] }, { - "id": 3041, + "id": 3084, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -13444,7 +13444,7 @@ }, "children": [ { - "id": 3045, + "id": 3088, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -13455,14 +13455,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2205, + "line": 2226, "character": 4 } ], "defaultValue": "\"AUTHOR\"" }, { - "id": 3046, + "id": 3089, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -13473,14 +13473,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2209, + "line": 2230, "character": 4 } ], "defaultValue": "\"DATE_SORT\"" }, { - "id": 3042, + "id": 3085, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -13491,14 +13491,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2192, + "line": 2213, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 3043, + "id": 3086, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -13515,14 +13515,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2197, + "line": 2218, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 3047, + "id": 3090, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -13533,14 +13533,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2213, + "line": 2234, "character": 4 } ], "defaultValue": "\"SHARE\"" }, { - "id": 3044, + "id": 3087, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -13551,14 +13551,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2201, + "line": 2222, "character": 4 } ], "defaultValue": "\"TAGS\"" }, { - "id": 3048, + "id": 3091, "name": "Verified", "kind": 16, "kindString": "Enumeration member", @@ -13569,7 +13569,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2217, + "line": 2238, "character": 4 } ], @@ -13581,26 +13581,26 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3045, - 3046, - 3042, - 3043, - 3047, - 3044, - 3048 + 3088, + 3089, + 3085, + 3086, + 3090, + 3087, + 3091 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2188, + "line": 2209, "character": 12 } ] }, { - "id": 2965, + "id": 3008, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -13610,7 +13610,7 @@ }, "children": [ { - "id": 2970, + "id": 3013, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -13631,14 +13631,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8080, + "line": 8118, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2967, + "id": 3010, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -13659,14 +13659,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8041, + "line": 8079, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2969, + "id": 3012, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -13687,14 +13687,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8066, + "line": 8104, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2966, + "id": 3009, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -13715,14 +13715,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8029, + "line": 8067, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2971, + "id": 3014, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -13743,14 +13743,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8092, + "line": 8130, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2968, + "id": 3011, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -13771,7 +13771,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8053, + "line": 8091, "character": 4 } ], @@ -13783,25 +13783,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2970, - 2967, - 2969, - 2966, - 2971, - 2968 + 3013, + 3010, + 3012, + 3009, + 3014, + 3011 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8016, + "line": 8054, "character": 12 } ] }, { - "id": 1872, + "id": 1914, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -13811,7 +13811,7 @@ }, "children": [ { - "id": 1875, + "id": 1917, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -13829,7 +13829,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1878, + "id": 1920, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -13847,7 +13847,7 @@ "defaultValue": "\"data\"" }, { - "id": 1873, + "id": 1915, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -13865,7 +13865,7 @@ "defaultValue": "\"home\"" }, { - "id": 1876, + "id": 1918, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -13883,7 +13883,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1880, + "id": 1922, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -13901,7 +13901,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1874, + "id": 1916, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -13919,7 +13919,7 @@ "defaultValue": "\"search\"" }, { - "id": 1879, + "id": 1921, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -13942,13 +13942,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1875, - 1878, - 1873, - 1876, - 1880, - 1874, - 1879 + 1917, + 1920, + 1915, + 1918, + 1922, + 1916, + 1921 ] } ], @@ -13961,14 +13961,14 @@ ] }, { - "id": 2677, + "id": 2720, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2678, + "id": 2721, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -13976,14 +13976,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7845, + "line": 7883, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2680, + "id": 2723, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -13991,14 +13991,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7847, + "line": 7885, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2679, + "id": 2722, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -14006,14 +14006,14 @@ "sources": [ { "fileName": "types.ts", - "line": 7846, + "line": 7884, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2681, + "id": 2724, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -14021,7 +14021,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7848, + "line": 7886, "character": 4 } ], @@ -14033,23 +14033,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2678, - 2680, - 2679, - 2681 + 2721, + 2723, + 2722, + 2724 ] } ], "sources": [ { "fileName": "types.ts", - "line": 7844, + "line": 7882, "character": 12 } ] }, { - "id": 2992, + "id": 3035, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -14065,7 +14065,7 @@ }, "children": [ { - "id": 2993, + "id": 3036, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -14088,7 +14088,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2993 + 3036 ] } ], @@ -14101,7 +14101,7 @@ ] }, { - "id": 1897, + "id": 1939, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -14111,7 +14111,7 @@ }, "children": [ { - "id": 1905, + "id": 1947, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -14122,14 +14122,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2115, + "line": 2136, "character": 4 } ], "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1910, + "id": 1952, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -14140,14 +14140,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2135, + "line": 2156, "character": 4 } ], "defaultValue": "\"BW\"" }, { - "id": 1909, + "id": 1951, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -14158,14 +14158,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2131, + "line": 2152, "character": 4 } ], "defaultValue": "\"BW_INC\"" }, { - "id": 1907, + "id": 1949, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -14176,14 +14176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2123, + "line": 2144, "character": 4 } ], "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1908, + "id": 1950, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -14194,14 +14194,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2127, + "line": 2148, "character": 4 } ], "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1904, + "id": 1946, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -14212,14 +14212,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2111, + "line": 2132, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 1906, + "id": 1948, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -14230,14 +14230,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2119, + "line": 2140, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1898, + "id": 1940, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -14248,14 +14248,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2087, + "line": 2108, "character": 4 } ], "defaultValue": "\"EQ\"" }, { - "id": 1903, + "id": 1945, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -14266,14 +14266,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2107, + "line": 2128, "character": 4 } ], "defaultValue": "\"GE\"" }, { - "id": 1902, + "id": 1944, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -14284,14 +14284,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2103, + "line": 2124, "character": 4 } ], "defaultValue": "\"GT\"" }, { - "id": 1911, + "id": 1953, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -14302,14 +14302,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2139, + "line": 2160, "character": 4 } ], "defaultValue": "\"IN\"" }, { - "id": 1901, + "id": 1943, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -14320,14 +14320,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2099, + "line": 2120, "character": 4 } ], "defaultValue": "\"LE\"" }, { - "id": 1900, + "id": 1942, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -14338,14 +14338,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2095, + "line": 2116, "character": 4 } ], "defaultValue": "\"LT\"" }, { - "id": 1899, + "id": 1941, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -14356,14 +14356,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2091, + "line": 2112, "character": 4 } ], "defaultValue": "\"NE\"" }, { - "id": 1912, + "id": 1954, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -14374,7 +14374,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2143, + "line": 2164, "character": 4 } ], @@ -14386,34 +14386,34 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1905, - 1910, - 1909, - 1907, - 1908, - 1904, - 1906, - 1898, - 1903, - 1902, - 1911, - 1901, - 1900, - 1899, - 1912 + 1947, + 1952, + 1951, + 1949, + 1950, + 1946, + 1948, + 1940, + 1945, + 1944, + 1953, + 1943, + 1942, + 1941, + 1954 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2083, + "line": 2104, "character": 12 } ] }, { - "id": 3171, + "id": 3179, "name": "TableContentDensity", "kind": 4, "kindString": "Enumeration", @@ -14429,7 +14429,7 @@ }, "children": [ { - "id": 3173, + "id": 3181, "name": "Compact", "kind": 16, "kindString": "Enumeration member", @@ -14440,14 +14440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8643, + "line": 8681, "character": 4 } ], "defaultValue": "\"COMPACT\"" }, { - "id": 3172, + "id": 3180, "name": "Regular", "kind": 16, "kindString": "Enumeration member", @@ -14458,7 +14458,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8641, + "line": 8679, "character": 4 } ], @@ -14470,21 +14470,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3173, - 3172 + 3181, + 3180 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8639, + "line": 8677, "character": 12 } ] }, { - "id": 3167, + "id": 3175, "name": "TableTheme", "kind": 4, "kindString": "Enumeration", @@ -14500,7 +14500,7 @@ }, "children": [ { - "id": 3168, + "id": 3176, "name": "Outline", "kind": 16, "kindString": "Enumeration member", @@ -14511,14 +14511,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8628, + "line": 8666, "character": 4 } ], "defaultValue": "\"OUTLINE\"" }, { - "id": 3169, + "id": 3177, "name": "Row", "kind": 16, "kindString": "Enumeration member", @@ -14529,14 +14529,14 @@ "sources": [ { "fileName": "types.ts", - "line": 8630, + "line": 8668, "character": 4 } ], "defaultValue": "\"ROW\"" }, { - "id": 3170, + "id": 3178, "name": "Zebra", "kind": 16, "kindString": "Enumeration member", @@ -14547,7 +14547,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8632, + "line": 8670, "character": 4 } ], @@ -14559,29 +14559,29 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3168, - 3169, - 3170 + 3176, + 3177, + 3178 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8626, + "line": 8664, "character": 12 } ] }, { - "id": 3024, + "id": 3067, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 3033, + "id": 3076, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -14596,7 +14596,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 3029, + "id": 3072, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -14611,7 +14611,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 3034, + "id": 3077, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -14626,7 +14626,7 @@ "defaultValue": "\"getAnswerSession\"" }, { - "id": 3028, + "id": 3071, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -14641,7 +14641,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 3027, + "id": 3070, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -14656,7 +14656,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 3040, + "id": 3083, "name": "GetExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -14671,7 +14671,7 @@ "defaultValue": "\"getExportRequestForCurrentPinboard\"" }, { - "id": 3035, + "id": 3078, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -14686,7 +14686,7 @@ "defaultValue": "\"getFilters\"" }, { - "id": 3036, + "id": 3079, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -14701,7 +14701,7 @@ "defaultValue": "\"getIframeUrl\"" }, { - "id": 3030, + "id": 3073, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -14716,7 +14716,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 3037, + "id": 3080, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -14731,7 +14731,7 @@ "defaultValue": "\"getParameters\"" }, { - "id": 3038, + "id": 3081, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -14746,7 +14746,7 @@ "defaultValue": "\"getTML\"" }, { - "id": 3039, + "id": 3082, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -14761,7 +14761,7 @@ "defaultValue": "\"getTabs\"" }, { - "id": 3031, + "id": 3074, "name": "GetUnsavedAnswerTML", "kind": 16, "kindString": "Enumeration member", @@ -14776,7 +14776,7 @@ "defaultValue": "\"getUnsavedAnswerTML\"" }, { - "id": 3025, + "id": 3068, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -14791,7 +14791,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 3026, + "id": 3069, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -14806,7 +14806,7 @@ "defaultValue": "\"saveAnswer\"" }, { - "id": 3032, + "id": 3075, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -14826,22 +14826,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3033, - 3029, - 3034, - 3028, - 3027, - 3040, - 3035, - 3036, - 3030, - 3037, - 3038, - 3039, - 3031, - 3025, - 3026, - 3032 + 3076, + 3072, + 3077, + 3071, + 3070, + 3083, + 3078, + 3079, + 3073, + 3080, + 3081, + 3082, + 3074, + 3068, + 3069, + 3075 ] } ], @@ -14854,7 +14854,7 @@ ] }, { - "id": 1785, + "id": 1827, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -14883,7 +14883,7 @@ }, "children": [ { - "id": 1786, + "id": 1828, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -14900,7 +14900,7 @@ ], "signatures": [ { - "id": 1787, + "id": 1829, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -14910,7 +14910,7 @@ }, "parameters": [ { - "id": 1788, + "id": 1830, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -14918,12 +14918,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1862, + "id": 1904, "name": "SessionInterface" } }, { - "id": 1789, + "id": 1831, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -14935,7 +14935,7 @@ } }, { - "id": 1790, + "id": 1832, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -14947,7 +14947,7 @@ } }, { - "id": 1791, + "id": 1833, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -14961,7 +14961,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3001, + "id": 3044, "name": "VizPoint" } } @@ -14969,14 +14969,14 @@ ], "type": { "type": "reference", - "id": 1785, + "id": 1827, "name": "AnswerService" } } ] }, { - "id": 1800, + "id": 1842, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -14992,7 +14992,7 @@ ], "signatures": [ { - "id": 1801, + "id": 1843, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -15003,7 +15003,7 @@ }, "parameters": [ { - "id": 1802, + "id": 1844, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -15032,7 +15032,7 @@ ] }, { - "id": 1803, + "id": 1845, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -15048,7 +15048,7 @@ ], "signatures": [ { - "id": 1804, + "id": 1846, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -15064,7 +15064,7 @@ }, "parameters": [ { - "id": 1805, + "id": 1847, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -15093,7 +15093,7 @@ ] }, { - "id": 1856, + "id": 1898, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -15109,14 +15109,14 @@ ], "signatures": [ { - "id": 1857, + "id": 1899, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1858, + "id": 1900, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -15141,7 +15141,7 @@ ] }, { - "id": 1806, + "id": 1848, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -15157,7 +15157,7 @@ ], "signatures": [ { - "id": 1807, + "id": 1849, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -15168,7 +15168,7 @@ }, "parameters": [ { - "id": 1808, + "id": 1850, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -15180,7 +15180,7 @@ } }, { - "id": 1809, + "id": 1851, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -15188,12 +15188,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1897, + "id": 1939, "name": "RuntimeFilterOp" } }, { - "id": 1810, + "id": 1852, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -15239,7 +15239,7 @@ ] }, { - "id": 1846, + "id": 1888, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -15255,7 +15255,7 @@ ], "signatures": [ { - "id": 1847, + "id": 1889, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -15266,7 +15266,7 @@ }, "parameters": [ { - "id": 1848, + "id": 1890, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -15280,7 +15280,7 @@ } }, { - "id": 1849, + "id": 1891, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -15308,7 +15308,7 @@ ] }, { - "id": 1824, + "id": 1866, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -15324,7 +15324,7 @@ ], "signatures": [ { - "id": 1825, + "id": 1867, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -15335,7 +15335,7 @@ }, "parameters": [ { - "id": 1826, + "id": 1868, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -15348,7 +15348,7 @@ "defaultValue": "'en-us'" }, { - "id": 1827, + "id": 1869, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -15377,7 +15377,7 @@ ] }, { - "id": 1817, + "id": 1859, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -15393,7 +15393,7 @@ ], "signatures": [ { - "id": 1818, + "id": 1860, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -15404,7 +15404,7 @@ }, "parameters": [ { - "id": 1819, + "id": 1861, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -15417,7 +15417,7 @@ "defaultValue": "0" }, { - "id": 1820, + "id": 1862, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -15436,14 +15436,14 @@ { "type": "reflection", "declaration": { - "id": 1821, + "id": 1863, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1822, + "id": 1864, "name": "columns", "kind": 1024, "kindString": "Property", @@ -15454,7 +15454,7 @@ } }, { - "id": 1823, + "id": 1865, "name": "data", "kind": 1024, "kindString": "Property", @@ -15470,8 +15470,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1822, - 1823 + 1864, + 1865 ] } ] @@ -15484,7 +15484,7 @@ ] }, { - "id": 1828, + "id": 1870, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -15500,7 +15500,7 @@ ], "signatures": [ { - "id": 1829, + "id": 1871, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -15511,7 +15511,7 @@ }, "parameters": [ { - "id": 1830, + "id": 1872, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -15524,7 +15524,7 @@ "defaultValue": "'en-us'" }, { - "id": 1831, + "id": 1873, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -15539,7 +15539,7 @@ "defaultValue": "false" }, { - "id": 1832, + "id": 1874, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -15568,7 +15568,7 @@ ] }, { - "id": 1852, + "id": 1894, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -15584,7 +15584,7 @@ ], "signatures": [ { - "id": 1853, + "id": 1895, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -15603,7 +15603,7 @@ ] }, { - "id": 1833, + "id": 1875, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -15619,7 +15619,7 @@ ], "signatures": [ { - "id": 1834, + "id": 1876, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -15630,7 +15630,7 @@ }, "parameters": [ { - "id": 1835, + "id": 1877, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -15643,7 +15643,7 @@ "defaultValue": "'en-us'" }, { - "id": 1836, + "id": 1878, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -15664,7 +15664,7 @@ ] }, { - "id": 1837, + "id": 1879, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -15680,7 +15680,7 @@ ], "signatures": [ { - "id": 1838, + "id": 1880, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -15690,7 +15690,7 @@ }, "parameters": [ { - "id": 1839, + "id": 1881, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -15703,7 +15703,7 @@ "defaultValue": "'en-us'" }, { - "id": 1840, + "id": 1882, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -15716,7 +15716,7 @@ "defaultValue": "false" }, { - "id": 1841, + "id": 1883, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -15739,7 +15739,7 @@ ] }, { - "id": 1814, + "id": 1856, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -15755,14 +15755,14 @@ ], "signatures": [ { - "id": 1815, + "id": 1857, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1816, + "id": 1858, "name": "fetchSQLWithAllColumns", "kind": 32768, "kindString": "Parameter", @@ -15788,7 +15788,7 @@ ] }, { - "id": 1850, + "id": 1892, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -15804,7 +15804,7 @@ ], "signatures": [ { - "id": 1851, + "id": 1893, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -15815,14 +15815,14 @@ }, "type": { "type": "reference", - "id": 1862, + "id": 1904, "name": "SessionInterface" } } ] }, { - "id": 1795, + "id": 1837, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -15838,7 +15838,7 @@ ], "signatures": [ { - "id": 1796, + "id": 1838, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -15860,7 +15860,7 @@ ] }, { - "id": 1854, + "id": 1896, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -15876,7 +15876,7 @@ ], "signatures": [ { - "id": 1855, + "id": 1897, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -15895,7 +15895,7 @@ ] }, { - "id": 1842, + "id": 1884, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -15911,7 +15911,7 @@ ], "signatures": [ { - "id": 1843, + "id": 1885, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -15931,7 +15931,7 @@ }, "parameters": [ { - "id": 1844, + "id": 1886, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -15946,7 +15946,7 @@ } }, { - "id": 1845, + "id": 1887, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -15958,7 +15958,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1869, + "id": 1911, "name": "UnderlyingDataPoint" } } @@ -15969,7 +15969,7 @@ "typeArguments": [ { "type": "reference", - "id": 1785, + "id": 1827, "name": "AnswerService" } ], @@ -15979,7 +15979,7 @@ ] }, { - "id": 1797, + "id": 1839, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -15995,7 +15995,7 @@ ], "signatures": [ { - "id": 1798, + "id": 1840, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -16006,7 +16006,7 @@ }, "parameters": [ { - "id": 1799, + "id": 1841, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -16035,7 +16035,7 @@ ] }, { - "id": 1859, + "id": 1901, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -16051,14 +16051,14 @@ ], "signatures": [ { - "id": 1860, + "id": 1902, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1861, + "id": 1903, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -16077,7 +16077,7 @@ ] }, { - "id": 1811, + "id": 1853, "name": "updateDisplayMode", "kind": 2048, "kindString": "Method", @@ -16093,14 +16093,14 @@ ], "signatures": [ { - "id": 1812, + "id": 1854, "name": "updateDisplayMode", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1813, + "id": 1855, "name": "displayMode", "kind": 32768, "kindString": "Parameter", @@ -16131,32 +16131,32 @@ "title": "Constructors", "kind": 512, "children": [ - 1786 + 1828 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1800, - 1803, - 1856, - 1806, - 1846, - 1824, - 1817, - 1828, - 1852, - 1833, - 1837, - 1814, - 1850, - 1795, - 1854, 1842, - 1797, + 1845, + 1898, + 1848, + 1888, + 1866, 1859, - 1811 + 1870, + 1894, + 1875, + 1879, + 1856, + 1892, + 1837, + 1896, + 1884, + 1839, + 1901, + 1853 ] } ], @@ -16169,7 +16169,7 @@ ] }, { - "id": 877, + "id": 901, "name": "AppEmbed", "kind": 128, "kindString": "Class", @@ -16185,7 +16185,7 @@ }, "children": [ { - "id": 878, + "id": 902, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -16193,46 +16193,46 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 863, + "line": 879, "character": 4 } ], "signatures": [ { - "id": 879, + "id": 903, "name": "new AppEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 880, + "id": 904, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2706, + "id": 2749, "name": "DOMSelector" } }, { - "id": 881, + "id": 905, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2571, + "id": 2613, "name": "AppViewConfig" } } ], "type": { "type": "reference", - "id": 877, + "id": 901, "name": "AppEmbed" }, "overwrites": { @@ -16247,7 +16247,7 @@ } }, { - "id": 917, + "id": 941, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16257,13 +16257,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1338, + "line": 1359, "character": 11 } ], "signatures": [ { - "id": 918, + "id": 942, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -16293,7 +16293,7 @@ } }, { - "id": 1098, + "id": 1128, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -16303,13 +16303,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1848, + "line": 1976, "character": 17 } ], "signatures": [ { - "id": 1099, + "id": 1129, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16325,7 +16325,7 @@ }, "parameters": [ { - "id": 1100, + "id": 1130, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16346,7 +16346,7 @@ "typeArguments": [ { "type": "reference", - "id": 1785, + "id": 1827, "name": "AnswerService" } ], @@ -16364,7 +16364,7 @@ } }, { - "id": 1066, + "id": 1093, "name": "getCurrentContext", "kind": 2048, "kindString": "Method", @@ -16374,13 +16374,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1546, + "line": 1657, "character": 17 } ], "signatures": [ { - "id": 1067, + "id": 1094, "name": "getCurrentContext", "kind": 4096, "kindString": "Call signature", @@ -16421,7 +16421,7 @@ } }, { - "id": 894, + "id": 918, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -16431,13 +16431,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1207, + "line": 1228, "character": 11 } ], "signatures": [ { - "id": 895, + "id": 919, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -16453,7 +16453,7 @@ ] }, { - "id": 1062, + "id": 1089, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16463,13 +16463,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1508, + "line": 1619, "character": 11 } ], "signatures": [ { - "id": 1063, + "id": 1090, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16490,7 +16490,7 @@ } }, { - "id": 1093, + "id": 1122, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16500,13 +16500,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1835, + "line": 1962, "character": 11 } ], "signatures": [ { - "id": 1094, + "id": 1123, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16528,14 +16528,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1095, + "id": 1124, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1097, + "id": 1126, "name": "child", "kind": 1024, "kindString": "Property", @@ -16547,7 +16547,19 @@ "defaultValue": "..." }, { - "id": 1096, + "id": 1127, + "name": "placeHolder", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "defaultValue": "..." + }, + { + "id": 1125, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -16564,8 +16576,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1097, - 1096 + 1126, + 1127, + 1125 ] } ] @@ -16583,7 +16596,7 @@ } }, { - "id": 1075, + "id": 1102, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16593,13 +16606,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1597, + "line": 1714, "character": 11 } ], "signatures": [ { - "id": 1076, + "id": 1103, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16615,7 +16628,7 @@ }, "parameters": [ { - "id": 1077, + "id": 1104, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16623,20 +16636,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1078, + "id": 1105, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1079, + "id": 1106, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1080, + "id": 1107, "name": "key", "kind": 32768, "flags": {}, @@ -16681,7 +16694,7 @@ } }, { - "id": 1081, + "id": 1108, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16691,13 +16704,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1657, + "line": 1777, "character": 11 } ], "signatures": [ { - "id": 1082, + "id": 1109, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16718,7 +16731,7 @@ } }, { - "id": 1091, + "id": 1120, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16728,13 +16741,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1804, + "line": 1925, "character": 11 } ], "signatures": [ { - "id": 1092, + "id": 1121, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16758,7 +16771,7 @@ } }, { - "id": 913, + "id": 937, "name": "navigateToPage", "kind": 2048, "kindString": "Method", @@ -16768,13 +16781,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1312, + "line": 1333, "character": 11 } ], "signatures": [ { - "id": 914, + "id": 938, "name": "navigateToPage", "kind": 4096, "kindString": "Call signature", @@ -16790,7 +16803,7 @@ }, "parameters": [ { - "id": 915, + "id": 939, "name": "path", "kind": 32768, "kindString": "Parameter", @@ -16813,7 +16826,7 @@ } }, { - "id": 916, + "id": 940, "name": "noReload", "kind": 32768, "kindString": "Parameter", @@ -16836,7 +16849,7 @@ ] }, { - "id": 1031, + "id": 1058, "name": "off", "kind": 2048, "kindString": "Method", @@ -16846,13 +16859,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1299, + "line": 1400, "character": 11 } ], "signatures": [ { - "id": 1032, + "id": 1059, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16868,7 +16881,7 @@ }, "parameters": [ { - "id": 1033, + "id": 1060, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16878,12 +16891,12 @@ }, "type": { "type": "reference", - "id": 1913, + "id": 1955, "name": "EmbedEvent" } }, { - "id": 1034, + "id": 1061, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16893,7 +16906,7 @@ }, "type": { "type": "reference", - "id": 2710, + "id": 2753, "name": "MessageCallback" } } @@ -16914,7 +16927,7 @@ } }, { - "id": 932, + "id": 956, "name": "on", "kind": 2048, "kindString": "Method", @@ -16924,13 +16937,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1961, + "line": 2089, "character": 11 } ], "signatures": [ { - "id": 933, + "id": 957, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16953,38 +16966,38 @@ }, "parameters": [ { - "id": 934, + "id": 958, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1913, + "id": 1955, "name": "EmbedEvent" } }, { - "id": 935, + "id": 959, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2710, + "id": 2753, "name": "MessageCallback" } }, { - "id": 936, + "id": 960, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2707, + "id": 2750, "name": "MessageOptions" }, "defaultValue": "..." @@ -17006,7 +17019,7 @@ } }, { - "id": 1071, + "id": 1098, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -17016,13 +17029,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1575, + "line": 1686, "character": 17 } ], "signatures": [ { - "id": 1072, + "id": 1099, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -17032,7 +17045,7 @@ }, "parameters": [ { - "id": 1073, + "id": 1100, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -17047,7 +17060,7 @@ "defaultValue": "false" }, { - "id": 1074, + "id": 1101, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -17081,7 +17094,7 @@ } }, { - "id": 1083, + "id": 1110, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -17091,13 +17104,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1788, "character": 17 } ], "signatures": [ { - "id": 1084, + "id": 1111, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17134,7 +17147,7 @@ } }, { - "id": 925, + "id": 949, "name": "render", "kind": 2048, "kindString": "Method", @@ -17144,13 +17157,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1367, + "line": 1388, "character": 17 } ], "signatures": [ { - "id": 926, + "id": 950, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -17163,7 +17176,7 @@ "typeArguments": [ { "type": "reference", - "id": 877, + "id": 901, "name": "AppEmbed" } ], @@ -17181,7 +17194,7 @@ } }, { - "id": 1087, + "id": 1114, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17191,19 +17204,19 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1716, + "line": 1826, "character": 17 } ], "signatures": [ { - "id": 1088, + "id": 1115, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Displays the PreRender component.\nIf the component is not preRendered, it attempts to create and render it.\nAlso, synchronizes the style of the PreRender component with the embedding\nelement." + "shortText": "Displays the pre-rendered component inside the host element.\nIf the component has not been pre-rendered yet, it initiates rendering first.\nInserts a placeholder element into the host and positions the pre-render\nwrapper to overlay it." }, "type": { "type": "reference", @@ -17227,7 +17240,7 @@ } }, { - "id": 1068, + "id": 1095, "name": "subscribedEvent", "kind": 2048, "kindString": "Method", @@ -17237,13 +17250,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1566, + "line": 1677, "character": 11 } ], "signatures": [ { - "id": 1069, + "id": 1096, "name": "subscribedEvent", "kind": 4096, "kindString": "Call signature", @@ -17261,7 +17274,7 @@ }, "parameters": [ { - "id": 1070, + "id": 1097, "name": "eventName", "kind": 32768, "kindString": "Parameter", @@ -17274,12 +17287,12 @@ "types": [ { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" }, { "type": "reference", - "id": 2029, + "id": 2071, "name": "HostEvent" } ] @@ -17302,7 +17315,7 @@ } }, { - "id": 1089, + "id": 1118, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -17312,13 +17325,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1785, + "line": 1905, "character": 11 } ], "signatures": [ { - "id": 1090, + "id": 1119, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17348,7 +17361,7 @@ } }, { - "id": 1049, + "id": 1076, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17358,13 +17371,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1423, + "line": 1525, "character": 17 } ], "signatures": [ { - "id": 1050, + "id": 1077, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17385,40 +17398,40 @@ }, "typeParameter": [ { - "id": 1051, + "id": 1078, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2029, + "id": 2071, "name": "HostEvent" } }, { - "id": 1052, + "id": 1079, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} }, { - "id": 1053, + "id": 1080, "name": "ContextT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2113, + "id": 2155, "name": "ContextType" } } ], "parameters": [ { - "id": 1054, + "id": 1081, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17432,7 +17445,7 @@ } }, { - "id": 1055, + "id": 1082, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17457,7 +17470,7 @@ "defaultValue": "..." }, { - "id": 1056, + "id": 1083, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -17509,7 +17522,7 @@ } }, { - "id": 1057, + "id": 1084, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -17519,13 +17532,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1484, + "line": 1595, "character": 17 } ], "signatures": [ { - "id": 1058, + "id": 1085, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -17536,21 +17549,21 @@ }, "typeParameter": [ { - "id": 1059, + "id": 1086, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3024, + "id": 3067, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1060, + "id": 1087, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -17564,7 +17577,7 @@ } }, { - "id": 1061, + "id": 1088, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17617,40 +17630,40 @@ "title": "Constructors", "kind": 512, "children": [ - 878 + 902 ] }, { "title": "Methods", "kind": 2048, "children": [ - 917, - 1098, - 1066, - 894, - 1062, + 941, + 1128, 1093, - 1075, - 1081, - 1091, - 913, - 1031, - 932, - 1071, - 1083, - 925, - 1087, - 1068, + 918, 1089, - 1049, - 1057 + 1122, + 1102, + 1108, + 1120, + 937, + 1058, + 956, + 1098, + 1110, + 949, + 1114, + 1095, + 1118, + 1076, + 1084 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 858, + "line": 874, "character": 13 } ], @@ -17662,7 +17675,7 @@ ] }, { - "id": 1205, + "id": 1235, "name": "BodylessConversation", "kind": 128, "kindString": "Class", @@ -17686,7 +17699,7 @@ }, "children": [ { - "id": 1206, + "id": 1236, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -17700,45 +17713,45 @@ ], "signatures": [ { - "id": 1207, + "id": 1237, "name": "new BodylessConversation", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1208, + "id": 1238, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1169, + "id": 1199, "name": "BodylessConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1205, + "id": 1235, "name": "BodylessConversation" }, "overwrites": { "type": "reference", - "id": 1103, + "id": 1133, "name": "SpotterAgentEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1102, + "id": 1132, "name": "SpotterAgentEmbed.constructor" } }, { - "id": 1209, + "id": 1239, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -17754,14 +17767,14 @@ ], "signatures": [ { - "id": 1210, + "id": 1240, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1211, + "id": 1241, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -17781,14 +17794,14 @@ { "type": "reflection", "declaration": { - "id": 1212, + "id": 1242, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1214, + "id": 1244, "name": "container", "kind": 1024, "kindString": "Property", @@ -17799,7 +17812,7 @@ } }, { - "id": 1213, + "id": 1243, "name": "error", "kind": 1024, "kindString": "Property", @@ -17810,7 +17823,7 @@ } }, { - "id": 1215, + "id": 1245, "name": "viz", "kind": 1024, "kindString": "Property", @@ -17827,9 +17840,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1214, - 1213, - 1215 + 1244, + 1243, + 1245 ] } ] @@ -17838,14 +17851,14 @@ { "type": "reflection", "declaration": { - "id": 1216, + "id": 1246, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1217, + "id": 1247, "name": "container", "kind": 1024, "kindString": "Property", @@ -17856,7 +17869,7 @@ } }, { - "id": 1219, + "id": 1249, "name": "error", "kind": 1024, "kindString": "Property", @@ -17867,7 +17880,7 @@ } }, { - "id": 1218, + "id": 1248, "name": "viz", "kind": 1024, "kindString": "Property", @@ -17884,9 +17897,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1217, - 1219, - 1218 + 1247, + 1249, + 1248 ] } ] @@ -17899,19 +17912,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1107, + "id": 1137, "name": "SpotterAgentEmbed.sendMessage" } } ], "inheritedFrom": { "type": "reference", - "id": 1106, + "id": 1136, "name": "SpotterAgentEmbed.sendMessage" } }, { - "id": 1220, + "id": 1250, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -17927,7 +17940,7 @@ ], "signatures": [ { - "id": 1221, + "id": 1251, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -17938,7 +17951,7 @@ }, "parameters": [ { - "id": 1222, + "id": 1252, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -17961,14 +17974,14 @@ { "type": "reflection", "declaration": { - "id": 1223, + "id": 1253, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1225, + "id": 1255, "name": "data", "kind": 1024, "kindString": "Property", @@ -17980,7 +17993,7 @@ "defaultValue": "..." }, { - "id": 1224, + "id": 1254, "name": "error", "kind": 1024, "kindString": "Property", @@ -17996,8 +18009,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1225, - 1224 + 1255, + 1254 ] } ] @@ -18006,14 +18019,14 @@ { "type": "reflection", "declaration": { - "id": 1226, + "id": 1256, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1227, + "id": 1257, "name": "data", "kind": 1024, "kindString": "Property", @@ -18021,14 +18034,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1228, + "id": 1258, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1234, + "id": 1264, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -18040,7 +18053,7 @@ "defaultValue": "..." }, { - "id": 1233, + "id": 1263, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -18052,7 +18065,7 @@ "defaultValue": "..." }, { - "id": 1229, + "id": 1259, "name": "convId", "kind": 1024, "kindString": "Property", @@ -18064,7 +18077,7 @@ "defaultValue": "..." }, { - "id": 1232, + "id": 1262, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -18076,7 +18089,7 @@ "defaultValue": "..." }, { - "id": 1230, + "id": 1260, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -18088,7 +18101,7 @@ "defaultValue": "..." }, { - "id": 1231, + "id": 1261, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -18105,12 +18118,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1234, - 1233, - 1229, - 1232, - 1230, - 1231 + 1264, + 1263, + 1259, + 1262, + 1260, + 1261 ] } ] @@ -18119,7 +18132,7 @@ "defaultValue": "..." }, { - "id": 1235, + "id": 1265, "name": "error", "kind": 1024, "kindString": "Property", @@ -18135,8 +18148,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1227, - 1235 + 1257, + 1265 ] } ] @@ -18149,14 +18162,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1118, + "id": 1148, "name": "SpotterAgentEmbed.sendMessageData" } } ], "inheritedFrom": { "type": "reference", - "id": 1117, + "id": 1147, "name": "SpotterAgentEmbed.sendMessageData" } } @@ -18166,15 +18179,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1206 + 1236 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1209, - 1220 + 1239, + 1250 ] } ], @@ -18188,13 +18201,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1101, + "id": 1131, "name": "SpotterAgentEmbed" } ] }, { - "id": 1535, + "id": 1571, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -18222,7 +18235,7 @@ }, "children": [ { - "id": 1536, + "id": 1572, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -18236,14 +18249,14 @@ ], "signatures": [ { - "id": 1537, + "id": 1573, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1538, + "id": 1574, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -18254,38 +18267,38 @@ } }, { - "id": 1539, + "id": 1575, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1484, + "id": 1520, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1535, + "id": 1571, "name": "ConversationEmbed" }, "overwrites": { "type": "reference", - "id": 1238, + "id": 1268, "name": "SpotterEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1237, + "id": 1267, "name": "SpotterEmbed.constructor" } }, { - "id": 1693, + "id": 1732, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18295,13 +18308,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1627, + "line": 1744, "character": 11 } ], "signatures": [ { - "id": 1694, + "id": 1733, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18321,19 +18334,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1395, + "id": 1428, "name": "SpotterEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "id": 1394, + "id": 1427, "name": "SpotterEmbed.destroy" } }, { - "id": 1712, + "id": 1754, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18343,13 +18356,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1848, + "line": 1976, "character": 17 } ], "signatures": [ { - "id": 1713, + "id": 1755, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18365,7 +18378,7 @@ }, "parameters": [ { - "id": 1714, + "id": 1756, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18386,7 +18399,7 @@ "typeArguments": [ { "type": "reference", - "id": 1785, + "id": 1827, "name": "AnswerService" } ], @@ -18394,19 +18407,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1414, + "id": 1450, "name": "SpotterEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "id": 1413, + "id": 1449, "name": "SpotterEmbed.getAnswerService" } }, { - "id": 1678, + "id": 1717, "name": "getCurrentContext", "kind": 2048, "kindString": "Method", @@ -18416,13 +18429,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1546, + "line": 1657, "character": 17 } ], "signatures": [ { - "id": 1679, + "id": 1718, "name": "getCurrentContext", "kind": 4096, "kindString": "Call signature", @@ -18453,19 +18466,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1380, + "id": 1413, "name": "SpotterEmbed.getCurrentContext" } } ], "inheritedFrom": { "type": "reference", - "id": 1379, + "id": 1412, "name": "SpotterEmbed.getCurrentContext" } }, { - "id": 1545, + "id": 1581, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18481,7 +18494,7 @@ ], "signatures": [ { - "id": 1546, + "id": 1582, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -18492,19 +18505,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1247, + "id": 1277, "name": "SpotterEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "id": 1246, + "id": 1276, "name": "SpotterEmbed.getIframeSrc" } }, { - "id": 1707, + "id": 1748, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -18514,13 +18527,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1835, + "line": 1962, "character": 11 } ], "signatures": [ { - "id": 1708, + "id": 1749, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -18542,14 +18555,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1709, + "id": 1750, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1711, + "id": 1752, "name": "child", "kind": 1024, "kindString": "Property", @@ -18561,7 +18574,19 @@ "defaultValue": "..." }, { - "id": 1710, + "id": 1753, + "name": "placeHolder", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "defaultValue": "..." + }, + { + "id": 1751, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -18578,8 +18603,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1711, - 1710 + 1752, + 1753, + 1751 ] } ] @@ -18587,19 +18613,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1409, + "id": 1444, "name": "SpotterEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "id": 1408, + "id": 1443, "name": "SpotterEmbed.getPreRenderIds" } }, { - "id": 1687, + "id": 1726, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -18609,13 +18635,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1597, + "line": 1714, "character": 11 } ], "signatures": [ { - "id": 1688, + "id": 1727, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -18631,7 +18657,7 @@ }, "parameters": [ { - "id": 1689, + "id": 1728, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -18639,20 +18665,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1690, + "id": 1729, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1691, + "id": 1730, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1692, + "id": 1731, "name": "key", "kind": 32768, "flags": {}, @@ -18687,19 +18713,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1389, + "id": 1422, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "id": 1388, + "id": 1421, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 1695, + "id": 1734, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -18709,13 +18735,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1657, + "line": 1777, "character": 11 } ], "signatures": [ { - "id": 1696, + "id": 1735, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -18726,19 +18752,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1397, + "id": 1430, "name": "SpotterEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "id": 1396, + "id": 1429, "name": "SpotterEmbed.getUnderlyingFrameElement" } }, { - "id": 1705, + "id": 1746, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -18748,13 +18774,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1804, + "line": 1925, "character": 11 } ], "signatures": [ { - "id": 1706, + "id": 1747, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -18768,19 +18794,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1407, + "id": 1442, "name": "SpotterEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1406, + "id": 1441, "name": "SpotterEmbed.hidePreRender" } }, { - "id": 1645, + "id": 1684, "name": "off", "kind": 2048, "kindString": "Method", @@ -18790,13 +18816,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1299, + "line": 1400, "character": 11 } ], "signatures": [ { - "id": 1646, + "id": 1685, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -18812,7 +18838,7 @@ }, "parameters": [ { - "id": 1647, + "id": 1686, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18822,12 +18848,12 @@ }, "type": { "type": "reference", - "id": 1913, + "id": 1955, "name": "EmbedEvent" } }, { - "id": 1648, + "id": 1687, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18837,7 +18863,7 @@ }, "type": { "type": "reference", - "id": 2710, + "id": 2753, "name": "MessageCallback" } } @@ -18848,19 +18874,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1347, + "id": 1380, "name": "SpotterEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "id": 1346, + "id": 1379, "name": "SpotterEmbed.off" } }, { - "id": 1639, + "id": 1678, "name": "on", "kind": 2048, "kindString": "Method", @@ -18870,13 +18896,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1270, + "line": 1371, "character": 11 } ], "signatures": [ { - "id": 1640, + "id": 1679, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -18896,7 +18922,7 @@ }, "parameters": [ { - "id": 1641, + "id": 1680, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18906,12 +18932,12 @@ }, "type": { "type": "reference", - "id": 1913, + "id": 1955, "name": "EmbedEvent" } }, { - "id": 1642, + "id": 1681, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18921,12 +18947,12 @@ }, "type": { "type": "reference", - "id": 2710, + "id": 2753, "name": "MessageCallback" } }, { - "id": 1643, + "id": 1682, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18936,13 +18962,13 @@ }, "type": { "type": "reference", - "id": 2707, + "id": 2750, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1644, + "id": 1683, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -18961,19 +18987,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1341, + "id": 1374, "name": "SpotterEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "id": 1340, + "id": 1373, "name": "SpotterEmbed.on" } }, { - "id": 1683, + "id": 1722, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -18983,13 +19009,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1575, + "line": 1686, "character": 17 } ], "signatures": [ { - "id": 1684, + "id": 1723, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -18999,7 +19025,7 @@ }, "parameters": [ { - "id": 1685, + "id": 1724, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19014,7 +19040,7 @@ "defaultValue": "false" }, { - "id": 1686, + "id": 1725, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -19038,19 +19064,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1385, + "id": 1418, "name": "SpotterEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1384, + "id": 1417, "name": "SpotterEmbed.preRender" } }, { - "id": 1697, + "id": 1736, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19060,13 +19086,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1788, "character": 17 } ], "signatures": [ { - "id": 1698, + "id": 1737, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19093,19 +19119,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1399, + "id": 1432, "name": "SpotterEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "id": 1398, + "id": 1431, "name": "SpotterEmbed.prerenderGeneric" } }, { - "id": 1547, + "id": 1583, "name": "render", "kind": 2048, "kindString": "Method", @@ -19121,7 +19147,7 @@ ], "signatures": [ { - "id": 1548, + "id": 1584, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -19131,7 +19157,7 @@ "typeArguments": [ { "type": "reference", - "id": 1236, + "id": 1266, "name": "SpotterEmbed" } ], @@ -19139,19 +19165,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1249, + "id": 1279, "name": "SpotterEmbed.render" } } ], "inheritedFrom": { "type": "reference", - "id": 1248, + "id": 1278, "name": "SpotterEmbed.render" } }, { - "id": 1701, + "id": 1740, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19161,19 +19187,19 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1716, + "line": 1826, "character": 17 } ], "signatures": [ { - "id": 1702, + "id": 1741, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Displays the PreRender component.\nIf the component is not preRendered, it attempts to create and render it.\nAlso, synchronizes the style of the PreRender component with the embedding\nelement." + "shortText": "Displays the pre-rendered component inside the host element.\nIf the component has not been pre-rendered yet, it initiates rendering first.\nInserts a placeholder element into the host and positions the pre-render\nwrapper to overlay it." }, "type": { "type": "reference", @@ -19187,19 +19213,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1403, + "id": 1436, "name": "SpotterEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1402, + "id": 1435, "name": "SpotterEmbed.showPreRender" } }, { - "id": 1680, + "id": 1719, "name": "subscribedEvent", "kind": 2048, "kindString": "Method", @@ -19209,13 +19235,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1566, + "line": 1677, "character": 11 } ], "signatures": [ { - "id": 1681, + "id": 1720, "name": "subscribedEvent", "kind": 4096, "kindString": "Call signature", @@ -19233,7 +19259,7 @@ }, "parameters": [ { - "id": 1682, + "id": 1721, "name": "eventName", "kind": 32768, "kindString": "Parameter", @@ -19246,12 +19272,12 @@ "types": [ { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" }, { "type": "reference", - "id": 2029, + "id": 2071, "name": "HostEvent" } ] @@ -19264,19 +19290,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1382, + "id": 1415, "name": "SpotterEmbed.subscribedEvent" } } ], "inheritedFrom": { "type": "reference", - "id": 1381, + "id": 1414, "name": "SpotterEmbed.subscribedEvent" } }, { - "id": 1703, + "id": 1744, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -19286,13 +19312,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1785, + "line": 1905, "character": 11 } ], "signatures": [ { - "id": 1704, + "id": 1745, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -19312,19 +19338,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1405, + "id": 1440, "name": "SpotterEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "id": 1404, + "id": 1439, "name": "SpotterEmbed.syncPreRenderStyle" } }, { - "id": 1663, + "id": 1702, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -19334,13 +19360,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1423, + "line": 1525, "character": 17 } ], "signatures": [ { - "id": 1664, + "id": 1703, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -19361,40 +19387,40 @@ }, "typeParameter": [ { - "id": 1665, + "id": 1704, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2029, + "id": 2071, "name": "HostEvent" } }, { - "id": 1666, + "id": 1705, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} }, { - "id": 1667, + "id": 1706, "name": "ContextT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2113, + "id": 2155, "name": "ContextType" } } ], "parameters": [ { - "id": 1668, + "id": 1707, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19408,7 +19434,7 @@ } }, { - "id": 1669, + "id": 1708, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19433,7 +19459,7 @@ "defaultValue": "..." }, { - "id": 1670, + "id": 1709, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -19475,19 +19501,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1365, + "id": 1398, "name": "SpotterEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "id": 1364, + "id": 1397, "name": "SpotterEmbed.trigger" } }, { - "id": 1671, + "id": 1710, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19497,13 +19523,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1484, + "line": 1595, "character": 17 } ], "signatures": [ { - "id": 1672, + "id": 1711, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -19514,21 +19540,21 @@ }, "typeParameter": [ { - "id": 1673, + "id": 1712, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3024, + "id": 3067, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1674, + "id": 1713, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -19542,7 +19568,7 @@ } }, { - "id": 1675, + "id": 1714, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -19580,14 +19606,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1373, + "id": 1406, "name": "SpotterEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "id": 1372, + "id": 1405, "name": "SpotterEmbed.triggerUIPassThrough" } } @@ -19597,31 +19623,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1536 + 1572 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1693, - 1712, + 1732, + 1754, + 1717, + 1581, + 1748, + 1726, + 1734, + 1746, + 1684, 1678, - 1545, - 1707, - 1687, - 1695, - 1705, - 1645, - 1639, - 1683, - 1697, - 1547, - 1701, - 1680, - 1703, - 1663, - 1671 + 1722, + 1736, + 1583, + 1740, + 1719, + 1744, + 1702, + 1710 ] } ], @@ -19635,13 +19661,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1236, + "id": 1266, "name": "SpotterEmbed" } ] }, { - "id": 637, + "id": 655, "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", @@ -19661,7 +19687,7 @@ }, "children": [ { - "id": 638, + "id": 656, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -19675,40 +19701,40 @@ ], "signatures": [ { - "id": 639, + "id": 657, "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 640, + "id": 658, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2706, + "id": 2749, "name": "DOMSelector" } }, { - "id": 641, + "id": 659, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2465, + "id": 2507, "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 637, + "id": 655, "name": "LiveboardEmbed" }, "overwrites": { @@ -19723,7 +19749,7 @@ } }, { - "id": 699, + "id": 717, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -19733,13 +19759,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1064, + "line": 1065, "character": 11 } ], "signatures": [ { - "id": 700, + "id": 718, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -19769,7 +19795,7 @@ } }, { - "id": 874, + "id": 898, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -19779,13 +19805,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1848, + "line": 1976, "character": 17 } ], "signatures": [ { - "id": 875, + "id": 899, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -19801,7 +19827,7 @@ }, "parameters": [ { - "id": 876, + "id": 900, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -19822,7 +19848,7 @@ "typeArguments": [ { "type": "reference", - "id": 1785, + "id": 1827, "name": "AnswerService" } ], @@ -19840,7 +19866,7 @@ } }, { - "id": 844, + "id": 865, "name": "getCurrentContext", "kind": 2048, "kindString": "Method", @@ -19850,13 +19876,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1546, + "line": 1657, "character": 17 } ], "signatures": [ { - "id": 845, + "id": 866, "name": "getCurrentContext", "kind": 4096, "kindString": "Call signature", @@ -19897,7 +19923,7 @@ } }, { - "id": 842, + "id": 863, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -19907,13 +19933,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1508, + "line": 1619, "character": 11 } ], "signatures": [ { - "id": 843, + "id": 864, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -19934,7 +19960,7 @@ } }, { - "id": 715, + "id": 733, "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", @@ -19944,13 +19970,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1129, + "line": 1130, "character": 11 } ], "signatures": [ { - "id": 716, + "id": 734, "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", @@ -19967,7 +19993,7 @@ ] }, { - "id": 869, + "id": 892, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -19977,13 +20003,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1835, + "line": 1962, "character": 11 } ], "signatures": [ { - "id": 870, + "id": 893, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -20005,14 +20031,14 @@ "type": { "type": "reflection", "declaration": { - "id": 871, + "id": 894, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 873, + "id": 896, "name": "child", "kind": 1024, "kindString": "Property", @@ -20024,7 +20050,19 @@ "defaultValue": "..." }, { - "id": 872, + "id": 897, + "name": "placeHolder", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "defaultValue": "..." + }, + { + "id": 895, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -20041,8 +20079,9 @@ "title": "Properties", "kind": 1024, "children": [ - 873, - 872 + 896, + 897, + 895 ] } ] @@ -20060,7 +20099,7 @@ } }, { - "id": 853, + "id": 874, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -20070,13 +20109,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1597, + "line": 1714, "character": 11 } ], "signatures": [ { - "id": 854, + "id": 875, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -20092,7 +20131,7 @@ }, "parameters": [ { - "id": 855, + "id": 876, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -20100,20 +20139,20 @@ "type": { "type": "reflection", "declaration": { - "id": 856, + "id": 877, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 857, + "id": 878, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 858, + "id": 879, "name": "key", "kind": 32768, "flags": {}, @@ -20158,7 +20197,7 @@ } }, { - "id": 859, + "id": 880, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -20168,13 +20207,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1657, + "line": 1777, "character": 11 } ], "signatures": [ { - "id": 860, + "id": 881, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -20195,7 +20234,7 @@ } }, { - "id": 867, + "id": 890, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -20205,13 +20244,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1804, + "line": 1925, "character": 11 } ], "signatures": [ { - "id": 868, + "id": 891, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -20235,7 +20274,7 @@ } }, { - "id": 709, + "id": 727, "name": "navigateToLiveboard", "kind": 2048, "kindString": "Method", @@ -20245,20 +20284,20 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1104, + "line": 1105, "character": 11 } ], "signatures": [ { - "id": 710, + "id": 728, "name": "navigateToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 711, + "id": 729, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -20269,7 +20308,7 @@ } }, { - "id": 712, + "id": 730, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -20282,7 +20321,7 @@ } }, { - "id": 713, + "id": 731, "name": "activeTabId", "kind": 32768, "kindString": "Parameter", @@ -20295,7 +20334,7 @@ } }, { - "id": 714, + "id": 732, "name": "personalizedViewId", "kind": 32768, "kindString": "Parameter", @@ -20316,7 +20355,7 @@ ] }, { - "id": 819, + "id": 840, "name": "off", "kind": 2048, "kindString": "Method", @@ -20326,13 +20365,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1299, + "line": 1400, "character": 11 } ], "signatures": [ { - "id": 820, + "id": 841, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -20348,7 +20387,7 @@ }, "parameters": [ { - "id": 821, + "id": 842, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -20358,12 +20397,12 @@ }, "type": { "type": "reference", - "id": 1913, + "id": 1955, "name": "EmbedEvent" } }, { - "id": 822, + "id": 843, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -20373,7 +20412,7 @@ }, "type": { "type": "reference", - "id": 2710, + "id": 2753, "name": "MessageCallback" } } @@ -20394,7 +20433,7 @@ } }, { - "id": 722, + "id": 740, "name": "on", "kind": 2048, "kindString": "Method", @@ -20404,13 +20443,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1961, + "line": 2089, "character": 11 } ], "signatures": [ { - "id": 723, + "id": 741, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -20433,38 +20472,38 @@ }, "parameters": [ { - "id": 724, + "id": 742, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1913, + "id": 1955, "name": "EmbedEvent" } }, { - "id": 725, + "id": 743, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2710, + "id": 2753, "name": "MessageCallback" } }, { - "id": 726, + "id": 744, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2707, + "id": 2750, "name": "MessageOptions" }, "defaultValue": "..." @@ -20486,7 +20525,7 @@ } }, { - "id": 849, + "id": 870, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -20496,13 +20535,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1575, + "line": 1686, "character": 17 } ], "signatures": [ { - "id": 850, + "id": 871, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -20512,7 +20551,7 @@ }, "parameters": [ { - "id": 851, + "id": 872, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -20527,7 +20566,7 @@ "defaultValue": "false" }, { - "id": 852, + "id": 873, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -20561,7 +20600,7 @@ } }, { - "id": 861, + "id": 882, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -20571,13 +20610,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1788, "character": 17 } ], "signatures": [ { - "id": 862, + "id": 883, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -20614,7 +20653,7 @@ } }, { - "id": 707, + "id": 725, "name": "render", "kind": 2048, "kindString": "Method", @@ -20624,13 +20663,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1093, + "line": 1094, "character": 17 } ], "signatures": [ { - "id": 708, + "id": 726, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -20643,7 +20682,7 @@ "typeArguments": [ { "type": "reference", - "id": 637, + "id": 655, "name": "LiveboardEmbed" } ], @@ -20661,7 +20700,7 @@ } }, { - "id": 863, + "id": 884, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -20671,19 +20710,19 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1716, + "line": 1826, "character": 17 } ], "signatures": [ { - "id": 864, + "id": 885, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Displays the PreRender component.\nIf the component is not preRendered, it attempts to create and render it.\nAlso, synchronizes the style of the PreRender component with the embedding\nelement." + "shortText": "Displays the pre-rendered component inside the host element.\nIf the component has not been pre-rendered yet, it initiates rendering first.\nInserts a placeholder element into the host and positions the pre-render\nwrapper to overlay it." }, "type": { "type": "reference", @@ -20707,7 +20746,7 @@ } }, { - "id": 846, + "id": 867, "name": "subscribedEvent", "kind": 2048, "kindString": "Method", @@ -20717,13 +20756,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1566, + "line": 1677, "character": 11 } ], "signatures": [ { - "id": 847, + "id": 868, "name": "subscribedEvent", "kind": 4096, "kindString": "Call signature", @@ -20741,7 +20780,7 @@ }, "parameters": [ { - "id": 848, + "id": 869, "name": "eventName", "kind": 32768, "kindString": "Parameter", @@ -20754,12 +20793,12 @@ "types": [ { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" }, { "type": "reference", - "id": 2029, + "id": 2071, "name": "HostEvent" } ] @@ -20782,7 +20821,7 @@ } }, { - "id": 865, + "id": 888, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -20792,13 +20831,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1785, + "line": 1905, "character": 11 } ], "signatures": [ { - "id": 866, + "id": 889, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -20828,7 +20867,7 @@ } }, { - "id": 691, + "id": 709, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -20838,13 +20877,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 1045, + "line": 1046, "character": 11 } ], "signatures": [ { - "id": 692, + "id": 710, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -20855,40 +20894,40 @@ }, "typeParameter": [ { - "id": 693, + "id": 711, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2029, + "id": 2071, "name": "HostEvent" } }, { - "id": 694, + "id": 712, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} }, { - "id": 695, + "id": 713, "name": "ContextT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2113, + "id": 2155, "name": "ContextType" } } ], "parameters": [ { - "id": 696, + "id": 714, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -20902,7 +20941,7 @@ } }, { - "id": 697, + "id": 715, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -20927,7 +20966,7 @@ "defaultValue": "..." }, { - "id": 698, + "id": 716, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -20976,7 +21015,7 @@ } }, { - "id": 837, + "id": 858, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -20986,13 +21025,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1484, + "line": 1595, "character": 17 } ], "signatures": [ { - "id": 838, + "id": 859, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -21003,21 +21042,21 @@ }, "typeParameter": [ { - "id": 839, + "id": 860, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3024, + "id": 3067, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 840, + "id": 861, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -21031,7 +21070,7 @@ } }, { - "id": 841, + "id": 862, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -21084,33 +21123,33 @@ "title": "Constructors", "kind": 512, "children": [ - 638 + 656 ] }, { "title": "Methods", "kind": 2048, "children": [ - 699, + 717, + 898, + 865, + 863, + 733, + 892, 874, - 844, - 842, - 715, - 869, - 853, - 859, + 880, + 890, + 727, + 840, + 740, + 870, + 882, + 725, + 884, 867, + 888, 709, - 819, - 722, - 849, - 861, - 707, - 863, - 846, - 865, - 691, - 837 + 858 ] } ], @@ -21129,7 +21168,7 @@ ] }, { - "id": 248, + "id": 254, "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", @@ -21149,7 +21188,7 @@ }, "children": [ { - "id": 249, + "id": 255, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -21163,14 +21202,14 @@ ], "signatures": [ { - "id": 250, + "id": 256, "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 251, + "id": 257, "name": "domSelector", "kind": 32768, "kindString": "Parameter", @@ -21181,21 +21220,21 @@ } }, { - "id": 252, + "id": 258, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2415, + "id": 2457, "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 248, + "id": 254, "name": "SearchBarEmbed" }, "overwrites": { @@ -21210,7 +21249,7 @@ } }, { - "id": 413, + "id": 422, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -21220,13 +21259,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1627, + "line": 1744, "character": 11 } ], "signatures": [ { - "id": 414, + "id": 423, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -21256,7 +21295,7 @@ } }, { - "id": 432, + "id": 444, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -21266,13 +21305,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1848, + "line": 1976, "character": 17 } ], "signatures": [ { - "id": 433, + "id": 445, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -21288,7 +21327,7 @@ }, "parameters": [ { - "id": 434, + "id": 446, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -21309,7 +21348,7 @@ "typeArguments": [ { "type": "reference", - "id": 1785, + "id": 1827, "name": "AnswerService" } ], @@ -21327,7 +21366,7 @@ } }, { - "id": 398, + "id": 407, "name": "getCurrentContext", "kind": 2048, "kindString": "Method", @@ -21337,13 +21376,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1546, + "line": 1657, "character": 17 } ], "signatures": [ { - "id": 399, + "id": 408, "name": "getCurrentContext", "kind": 4096, "kindString": "Call signature", @@ -21384,7 +21423,7 @@ } }, { - "id": 394, + "id": 403, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -21394,13 +21433,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1508, + "line": 1619, "character": 11 } ], "signatures": [ { - "id": 395, + "id": 404, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -21421,7 +21460,7 @@ } }, { - "id": 427, + "id": 438, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -21431,13 +21470,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1835, + "line": 1962, "character": 11 } ], "signatures": [ { - "id": 428, + "id": 439, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -21459,14 +21498,14 @@ "type": { "type": "reflection", "declaration": { - "id": 429, + "id": 440, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 431, + "id": 442, "name": "child", "kind": 1024, "kindString": "Property", @@ -21478,7 +21517,19 @@ "defaultValue": "..." }, { - "id": 430, + "id": 443, + "name": "placeHolder", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "defaultValue": "..." + }, + { + "id": 441, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -21495,8 +21546,9 @@ "title": "Properties", "kind": 1024, "children": [ - 431, - 430 + 442, + 443, + 441 ] } ] @@ -21514,7 +21566,7 @@ } }, { - "id": 407, + "id": 416, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -21524,13 +21576,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1597, + "line": 1714, "character": 11 } ], "signatures": [ { - "id": 408, + "id": 417, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -21546,7 +21598,7 @@ }, "parameters": [ { - "id": 409, + "id": 418, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -21554,20 +21606,20 @@ "type": { "type": "reflection", "declaration": { - "id": 410, + "id": 419, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 411, + "id": 420, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 412, + "id": 421, "name": "key", "kind": 32768, "flags": {}, @@ -21612,7 +21664,7 @@ } }, { - "id": 415, + "id": 424, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -21622,13 +21674,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1657, + "line": 1777, "character": 11 } ], "signatures": [ { - "id": 416, + "id": 425, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -21649,7 +21701,7 @@ } }, { - "id": 425, + "id": 436, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -21659,13 +21711,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1804, + "line": 1925, "character": 11 } ], "signatures": [ { - "id": 426, + "id": 437, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -21689,7 +21741,7 @@ } }, { - "id": 363, + "id": 372, "name": "off", "kind": 2048, "kindString": "Method", @@ -21699,13 +21751,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1299, + "line": 1400, "character": 11 } ], "signatures": [ { - "id": 364, + "id": 373, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -21721,7 +21773,7 @@ }, "parameters": [ { - "id": 365, + "id": 374, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21731,12 +21783,12 @@ }, "type": { "type": "reference", - "id": 1913, + "id": 1955, "name": "EmbedEvent" } }, { - "id": 366, + "id": 375, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21746,7 +21798,7 @@ }, "type": { "type": "reference", - "id": 2710, + "id": 2753, "name": "MessageCallback" } } @@ -21767,7 +21819,7 @@ } }, { - "id": 357, + "id": 366, "name": "on", "kind": 2048, "kindString": "Method", @@ -21777,13 +21829,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1270, + "line": 1371, "character": 11 } ], "signatures": [ { - "id": 358, + "id": 367, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -21803,7 +21855,7 @@ }, "parameters": [ { - "id": 359, + "id": 368, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -21813,12 +21865,12 @@ }, "type": { "type": "reference", - "id": 1913, + "id": 1955, "name": "EmbedEvent" } }, { - "id": 360, + "id": 369, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -21828,12 +21880,12 @@ }, "type": { "type": "reference", - "id": 2710, + "id": 2753, "name": "MessageCallback" } }, { - "id": 361, + "id": 370, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -21843,13 +21895,13 @@ }, "type": { "type": "reference", - "id": 2707, + "id": 2750, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 362, + "id": 371, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -21878,7 +21930,7 @@ } }, { - "id": 403, + "id": 412, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -21888,13 +21940,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1575, + "line": 1686, "character": 17 } ], "signatures": [ { - "id": 404, + "id": 413, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -21904,7 +21956,7 @@ }, "parameters": [ { - "id": 405, + "id": 414, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -21919,7 +21971,7 @@ "defaultValue": "false" }, { - "id": 406, + "id": 415, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -21953,7 +22005,7 @@ } }, { - "id": 417, + "id": 426, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -21963,13 +22015,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1788, "character": 17 } ], "signatures": [ { - "id": 418, + "id": 427, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -22006,7 +22058,7 @@ } }, { - "id": 259, + "id": 265, "name": "render", "kind": 2048, "kindString": "Method", @@ -22022,7 +22074,7 @@ ], "signatures": [ { - "id": 260, + "id": 266, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -22035,7 +22087,7 @@ "typeArguments": [ { "type": "reference", - "id": 248, + "id": 254, "name": "SearchBarEmbed" } ], @@ -22053,7 +22105,7 @@ } }, { - "id": 421, + "id": 430, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -22063,19 +22115,19 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1716, + "line": 1826, "character": 17 } ], "signatures": [ { - "id": 422, + "id": 431, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Displays the PreRender component.\nIf the component is not preRendered, it attempts to create and render it.\nAlso, synchronizes the style of the PreRender component with the embedding\nelement." + "shortText": "Displays the pre-rendered component inside the host element.\nIf the component has not been pre-rendered yet, it initiates rendering first.\nInserts a placeholder element into the host and positions the pre-render\nwrapper to overlay it." }, "type": { "type": "reference", @@ -22099,7 +22151,7 @@ } }, { - "id": 400, + "id": 409, "name": "subscribedEvent", "kind": 2048, "kindString": "Method", @@ -22109,13 +22161,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1566, + "line": 1677, "character": 11 } ], "signatures": [ { - "id": 401, + "id": 410, "name": "subscribedEvent", "kind": 4096, "kindString": "Call signature", @@ -22133,7 +22185,7 @@ }, "parameters": [ { - "id": 402, + "id": 411, "name": "eventName", "kind": 32768, "kindString": "Parameter", @@ -22146,12 +22198,12 @@ "types": [ { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" }, { "type": "reference", - "id": 2029, + "id": 2071, "name": "HostEvent" } ] @@ -22174,7 +22226,7 @@ } }, { - "id": 423, + "id": 434, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -22184,13 +22236,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1785, + "line": 1905, "character": 11 } ], "signatures": [ { - "id": 424, + "id": 435, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -22220,7 +22272,7 @@ } }, { - "id": 381, + "id": 390, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -22230,13 +22282,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1423, + "line": 1525, "character": 17 } ], "signatures": [ { - "id": 382, + "id": 391, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -22257,40 +22309,40 @@ }, "typeParameter": [ { - "id": 383, + "id": 392, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2029, + "id": 2071, "name": "HostEvent" } }, { - "id": 384, + "id": 393, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} }, { - "id": 385, + "id": 394, "name": "ContextT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2113, + "id": 2155, "name": "ContextType" } } ], "parameters": [ { - "id": 386, + "id": 395, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -22304,7 +22356,7 @@ } }, { - "id": 387, + "id": 396, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -22329,7 +22381,7 @@ "defaultValue": "..." }, { - "id": 388, + "id": 397, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -22381,7 +22433,7 @@ } }, { - "id": 389, + "id": 398, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -22391,13 +22443,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1484, + "line": 1595, "character": 17 } ], "signatures": [ { - "id": 390, + "id": 399, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -22408,21 +22460,21 @@ }, "typeParameter": [ { - "id": 391, + "id": 400, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3024, + "id": 3067, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 392, + "id": 401, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -22436,7 +22488,7 @@ } }, { - "id": 393, + "id": 402, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -22489,31 +22541,31 @@ "title": "Constructors", "kind": 512, "children": [ - 249 + 255 ] }, { "title": "Methods", "kind": 2048, "children": [ - 413, - 432, - 398, - 394, - 427, + 422, + 444, 407, - 415, - 425, - 363, - 357, 403, - 417, - 259, - 421, - 400, - 423, - 381, - 389 + 438, + 416, + 424, + 436, + 372, + 366, + 412, + 426, + 265, + 430, + 409, + 434, + 390, + 398 ] } ], @@ -22576,7 +22628,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2706, + "id": 2749, "name": "DOMSelector" } }, @@ -22588,7 +22640,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2352, + "id": 2394, "name": "SearchViewConfig" } } @@ -22610,7 +22662,7 @@ } }, { - "id": 226, + "id": 229, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -22620,13 +22672,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1627, + "line": 1744, "character": 11 } ], "signatures": [ { - "id": 227, + "id": 230, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -22656,7 +22708,7 @@ } }, { - "id": 245, + "id": 251, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -22666,13 +22718,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1848, + "line": 1976, "character": 17 } ], "signatures": [ { - "id": 246, + "id": 252, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -22688,7 +22740,7 @@ }, "parameters": [ { - "id": 247, + "id": 253, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -22709,7 +22761,7 @@ "typeArguments": [ { "type": "reference", - "id": 1785, + "id": 1827, "name": "AnswerService" } ], @@ -22727,7 +22779,7 @@ } }, { - "id": 211, + "id": 214, "name": "getCurrentContext", "kind": 2048, "kindString": "Method", @@ -22737,13 +22789,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1546, + "line": 1657, "character": 17 } ], "signatures": [ { - "id": 212, + "id": 215, "name": "getCurrentContext", "kind": 4096, "kindString": "Call signature", @@ -22816,7 +22868,7 @@ ] }, { - "id": 207, + "id": 210, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -22826,13 +22878,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1508, + "line": 1619, "character": 11 } ], "signatures": [ { - "id": 208, + "id": 211, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -22853,7 +22905,7 @@ } }, { - "id": 240, + "id": 245, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -22863,13 +22915,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1835, + "line": 1962, "character": 11 } ], "signatures": [ { - "id": 241, + "id": 246, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -22891,14 +22943,14 @@ "type": { "type": "reflection", "declaration": { - "id": 242, + "id": 247, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 244, + "id": 249, "name": "child", "kind": 1024, "kindString": "Property", @@ -22910,7 +22962,19 @@ "defaultValue": "..." }, { - "id": 243, + "id": 250, + "name": "placeHolder", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "defaultValue": "..." + }, + { + "id": 248, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -22927,8 +22991,9 @@ "title": "Properties", "kind": 1024, "children": [ - 244, - 243 + 249, + 250, + 248 ] } ] @@ -22946,7 +23011,7 @@ } }, { - "id": 220, + "id": 223, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -22956,13 +23021,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1597, + "line": 1714, "character": 11 } ], "signatures": [ { - "id": 221, + "id": 224, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -22978,7 +23043,7 @@ }, "parameters": [ { - "id": 222, + "id": 225, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -22986,20 +23051,20 @@ "type": { "type": "reflection", "declaration": { - "id": 223, + "id": 226, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 224, + "id": 227, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 225, + "id": 228, "name": "key", "kind": 32768, "flags": {}, @@ -23044,7 +23109,7 @@ } }, { - "id": 228, + "id": 231, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -23054,13 +23119,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1657, + "line": 1777, "character": 11 } ], "signatures": [ { - "id": 229, + "id": 232, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -23081,7 +23146,7 @@ } }, { - "id": 238, + "id": 243, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -23091,13 +23156,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1804, + "line": 1925, "character": 11 } ], "signatures": [ { - "id": 239, + "id": 244, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -23121,7 +23186,7 @@ } }, { - "id": 176, + "id": 179, "name": "off", "kind": 2048, "kindString": "Method", @@ -23131,13 +23196,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1299, + "line": 1400, "character": 11 } ], "signatures": [ { - "id": 177, + "id": 180, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -23153,7 +23218,7 @@ }, "parameters": [ { - "id": 178, + "id": 181, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -23163,12 +23228,12 @@ }, "type": { "type": "reference", - "id": 1913, + "id": 1955, "name": "EmbedEvent" } }, { - "id": 179, + "id": 182, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -23178,7 +23243,7 @@ }, "type": { "type": "reference", - "id": 2710, + "id": 2753, "name": "MessageCallback" } } @@ -23199,7 +23264,7 @@ } }, { - "id": 170, + "id": 173, "name": "on", "kind": 2048, "kindString": "Method", @@ -23209,13 +23274,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1270, + "line": 1371, "character": 11 } ], "signatures": [ { - "id": 171, + "id": 174, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -23235,7 +23300,7 @@ }, "parameters": [ { - "id": 172, + "id": 175, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -23245,12 +23310,12 @@ }, "type": { "type": "reference", - "id": 1913, + "id": 1955, "name": "EmbedEvent" } }, { - "id": 173, + "id": 176, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -23260,12 +23325,12 @@ }, "type": { "type": "reference", - "id": 2710, + "id": 2753, "name": "MessageCallback" } }, { - "id": 174, + "id": 177, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -23275,13 +23340,13 @@ }, "type": { "type": "reference", - "id": 2707, + "id": 2750, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 175, + "id": 178, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -23310,7 +23375,7 @@ } }, { - "id": 216, + "id": 219, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -23320,13 +23385,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1575, + "line": 1686, "character": 17 } ], "signatures": [ { - "id": 217, + "id": 220, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -23336,7 +23401,7 @@ }, "parameters": [ { - "id": 218, + "id": 221, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -23351,7 +23416,7 @@ "defaultValue": "false" }, { - "id": 219, + "id": 222, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -23385,7 +23450,7 @@ } }, { - "id": 230, + "id": 233, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -23395,13 +23460,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1788, "character": 17 } ], "signatures": [ { - "id": 231, + "id": 234, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -23485,7 +23550,7 @@ } }, { - "id": 234, + "id": 237, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -23495,19 +23560,19 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1716, + "line": 1826, "character": 17 } ], "signatures": [ { - "id": 235, + "id": 238, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Displays the PreRender component.\nIf the component is not preRendered, it attempts to create and render it.\nAlso, synchronizes the style of the PreRender component with the embedding\nelement." + "shortText": "Displays the pre-rendered component inside the host element.\nIf the component has not been pre-rendered yet, it initiates rendering first.\nInserts a placeholder element into the host and positions the pre-render\nwrapper to overlay it." }, "type": { "type": "reference", @@ -23531,7 +23596,7 @@ } }, { - "id": 213, + "id": 216, "name": "subscribedEvent", "kind": 2048, "kindString": "Method", @@ -23541,13 +23606,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1566, + "line": 1677, "character": 11 } ], "signatures": [ { - "id": 214, + "id": 217, "name": "subscribedEvent", "kind": 4096, "kindString": "Call signature", @@ -23565,7 +23630,7 @@ }, "parameters": [ { - "id": 215, + "id": 218, "name": "eventName", "kind": 32768, "kindString": "Parameter", @@ -23578,12 +23643,12 @@ "types": [ { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" }, { "type": "reference", - "id": 2029, + "id": 2071, "name": "HostEvent" } ] @@ -23606,7 +23671,7 @@ } }, { - "id": 236, + "id": 241, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -23616,13 +23681,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1785, + "line": 1905, "character": 11 } ], "signatures": [ { - "id": 237, + "id": 242, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -23652,7 +23717,7 @@ } }, { - "id": 194, + "id": 197, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -23662,13 +23727,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1423, + "line": 1525, "character": 17 } ], "signatures": [ { - "id": 195, + "id": 198, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -23689,40 +23754,40 @@ }, "typeParameter": [ { - "id": 196, + "id": 199, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2029, + "id": 2071, "name": "HostEvent" } }, { - "id": 197, + "id": 200, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} }, { - "id": 198, + "id": 201, "name": "ContextT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2113, + "id": 2155, "name": "ContextType" } } ], "parameters": [ { - "id": 199, + "id": 202, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -23736,7 +23801,7 @@ } }, { - "id": 200, + "id": 203, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -23761,7 +23826,7 @@ "defaultValue": "..." }, { - "id": 201, + "id": 204, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -23813,7 +23878,7 @@ } }, { - "id": 202, + "id": 205, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -23823,13 +23888,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1484, + "line": 1595, "character": 17 } ], "signatures": [ { - "id": 203, + "id": 206, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -23840,21 +23905,21 @@ }, "typeParameter": [ { - "id": 204, + "id": 207, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3024, + "id": 3067, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 205, + "id": 208, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -23868,7 +23933,7 @@ } }, { - "id": 206, + "id": 209, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -23928,25 +23993,25 @@ "title": "Methods", "kind": 2048, "children": [ - 226, - 245, - 211, + 229, + 251, + 214, 78, - 207, - 240, - 220, - 228, - 238, - 176, - 170, - 216, - 230, + 210, + 245, + 223, + 231, + 243, + 179, + 173, + 219, + 233, 80, - 234, - 213, - 236, - 194, - 202 + 237, + 216, + 241, + 197, + 205 ] } ], @@ -23965,7 +24030,7 @@ ] }, { - "id": 1101, + "id": 1131, "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", @@ -23989,7 +24054,7 @@ }, "children": [ { - "id": 1102, + "id": 1132, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -24003,35 +24068,35 @@ ], "signatures": [ { - "id": 1103, + "id": 1133, "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1104, + "id": 1134, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1133, + "id": 1163, "name": "SpotterAgentEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1101, + "id": 1131, "name": "SpotterAgentEmbed" } } ] }, { - "id": 1106, + "id": 1136, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -24047,14 +24112,14 @@ ], "signatures": [ { - "id": 1107, + "id": 1137, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1108, + "id": 1138, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -24074,14 +24139,14 @@ { "type": "reflection", "declaration": { - "id": 1109, + "id": 1139, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1111, + "id": 1141, "name": "container", "kind": 1024, "kindString": "Property", @@ -24092,7 +24157,7 @@ } }, { - "id": 1110, + "id": 1140, "name": "error", "kind": 1024, "kindString": "Property", @@ -24103,7 +24168,7 @@ } }, { - "id": 1112, + "id": 1142, "name": "viz", "kind": 1024, "kindString": "Property", @@ -24120,9 +24185,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1111, - 1110, - 1112 + 1141, + 1140, + 1142 ] } ] @@ -24131,14 +24196,14 @@ { "type": "reflection", "declaration": { - "id": 1113, + "id": 1143, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1114, + "id": 1144, "name": "container", "kind": 1024, "kindString": "Property", @@ -24149,7 +24214,7 @@ } }, { - "id": 1116, + "id": 1146, "name": "error", "kind": 1024, "kindString": "Property", @@ -24160,7 +24225,7 @@ } }, { - "id": 1115, + "id": 1145, "name": "viz", "kind": 1024, "kindString": "Property", @@ -24177,9 +24242,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1114, - 1116, - 1115 + 1144, + 1146, + 1145 ] } ] @@ -24194,7 +24259,7 @@ ] }, { - "id": 1117, + "id": 1147, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -24210,7 +24275,7 @@ ], "signatures": [ { - "id": 1118, + "id": 1148, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -24221,7 +24286,7 @@ }, "parameters": [ { - "id": 1119, + "id": 1149, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -24244,14 +24309,14 @@ { "type": "reflection", "declaration": { - "id": 1120, + "id": 1150, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1122, + "id": 1152, "name": "data", "kind": 1024, "kindString": "Property", @@ -24263,7 +24328,7 @@ "defaultValue": "..." }, { - "id": 1121, + "id": 1151, "name": "error", "kind": 1024, "kindString": "Property", @@ -24279,8 +24344,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1122, - 1121 + 1152, + 1151 ] } ] @@ -24289,14 +24354,14 @@ { "type": "reflection", "declaration": { - "id": 1123, + "id": 1153, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1124, + "id": 1154, "name": "data", "kind": 1024, "kindString": "Property", @@ -24304,14 +24369,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1125, + "id": 1155, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1131, + "id": 1161, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -24323,7 +24388,7 @@ "defaultValue": "..." }, { - "id": 1130, + "id": 1160, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -24335,7 +24400,7 @@ "defaultValue": "..." }, { - "id": 1126, + "id": 1156, "name": "convId", "kind": 1024, "kindString": "Property", @@ -24347,7 +24412,7 @@ "defaultValue": "..." }, { - "id": 1129, + "id": 1159, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -24359,7 +24424,7 @@ "defaultValue": "..." }, { - "id": 1127, + "id": 1157, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -24371,7 +24436,7 @@ "defaultValue": "..." }, { - "id": 1128, + "id": 1158, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -24388,12 +24453,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1131, - 1130, - 1126, - 1129, - 1127, - 1128 + 1161, + 1160, + 1156, + 1159, + 1157, + 1158 ] } ] @@ -24402,7 +24467,7 @@ "defaultValue": "..." }, { - "id": 1132, + "id": 1162, "name": "error", "kind": 1024, "kindString": "Property", @@ -24418,8 +24483,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1124, - 1132 + 1154, + 1162 ] } ] @@ -24439,15 +24504,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1102 + 1132 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1106, - 1117 + 1136, + 1147 ] } ], @@ -24461,13 +24526,13 @@ "extendedBy": [ { "type": "reference", - "id": 1205, + "id": 1235, "name": "BodylessConversation" } ] }, { - "id": 1236, + "id": 1266, "name": "SpotterEmbed", "kind": 128, "kindString": "Class", @@ -24491,7 +24556,7 @@ }, "children": [ { - "id": 1237, + "id": 1267, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -24505,14 +24570,14 @@ ], "signatures": [ { - "id": 1238, + "id": 1268, "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1239, + "id": 1269, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -24523,21 +24588,21 @@ } }, { - "id": 1240, + "id": 1270, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1416, + "id": 1452, "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1236, + "id": 1266, "name": "SpotterEmbed" }, "overwrites": { @@ -24552,7 +24617,7 @@ } }, { - "id": 1394, + "id": 1427, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -24562,13 +24627,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1627, + "line": 1744, "character": 11 } ], "signatures": [ { - "id": 1395, + "id": 1428, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -24598,7 +24663,7 @@ } }, { - "id": 1413, + "id": 1449, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -24608,13 +24673,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1848, + "line": 1976, "character": 17 } ], "signatures": [ { - "id": 1414, + "id": 1450, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -24630,7 +24695,7 @@ }, "parameters": [ { - "id": 1415, + "id": 1451, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -24651,7 +24716,7 @@ "typeArguments": [ { "type": "reference", - "id": 1785, + "id": 1827, "name": "AnswerService" } ], @@ -24669,7 +24734,7 @@ } }, { - "id": 1379, + "id": 1412, "name": "getCurrentContext", "kind": 2048, "kindString": "Method", @@ -24679,13 +24744,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1546, + "line": 1657, "character": 17 } ], "signatures": [ { - "id": 1380, + "id": 1413, "name": "getCurrentContext", "kind": 4096, "kindString": "Call signature", @@ -24726,7 +24791,7 @@ } }, { - "id": 1246, + "id": 1276, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -24742,7 +24807,7 @@ ], "signatures": [ { - "id": 1247, + "id": 1277, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -24763,7 +24828,7 @@ } }, { - "id": 1408, + "id": 1443, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -24773,13 +24838,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1835, + "line": 1962, "character": 11 } ], "signatures": [ { - "id": 1409, + "id": 1444, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -24801,14 +24866,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1410, + "id": 1445, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1412, + "id": 1447, "name": "child", "kind": 1024, "kindString": "Property", @@ -24820,7 +24885,19 @@ "defaultValue": "..." }, { - "id": 1411, + "id": 1448, + "name": "placeHolder", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "defaultValue": "..." + }, + { + "id": 1446, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -24837,8 +24914,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1412, - 1411 + 1447, + 1448, + 1446 ] } ] @@ -24856,7 +24934,7 @@ } }, { - "id": 1388, + "id": 1421, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -24866,13 +24944,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1597, + "line": 1714, "character": 11 } ], "signatures": [ { - "id": 1389, + "id": 1422, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -24888,7 +24966,7 @@ }, "parameters": [ { - "id": 1390, + "id": 1423, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -24896,20 +24974,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1391, + "id": 1424, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1392, + "id": 1425, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1393, + "id": 1426, "name": "key", "kind": 32768, "flags": {}, @@ -24954,7 +25032,7 @@ } }, { - "id": 1396, + "id": 1429, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -24964,13 +25042,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1657, + "line": 1777, "character": 11 } ], "signatures": [ { - "id": 1397, + "id": 1430, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -24991,7 +25069,7 @@ } }, { - "id": 1406, + "id": 1441, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -25001,13 +25079,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1804, + "line": 1925, "character": 11 } ], "signatures": [ { - "id": 1407, + "id": 1442, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -25031,7 +25109,7 @@ } }, { - "id": 1346, + "id": 1379, "name": "off", "kind": 2048, "kindString": "Method", @@ -25041,13 +25119,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1299, + "line": 1400, "character": 11 } ], "signatures": [ { - "id": 1347, + "id": 1380, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -25063,7 +25141,7 @@ }, "parameters": [ { - "id": 1348, + "id": 1381, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -25073,12 +25151,12 @@ }, "type": { "type": "reference", - "id": 1913, + "id": 1955, "name": "EmbedEvent" } }, { - "id": 1349, + "id": 1382, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -25088,7 +25166,7 @@ }, "type": { "type": "reference", - "id": 2710, + "id": 2753, "name": "MessageCallback" } } @@ -25109,7 +25187,7 @@ } }, { - "id": 1340, + "id": 1373, "name": "on", "kind": 2048, "kindString": "Method", @@ -25119,13 +25197,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1270, + "line": 1371, "character": 11 } ], "signatures": [ { - "id": 1341, + "id": 1374, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -25145,7 +25223,7 @@ }, "parameters": [ { - "id": 1342, + "id": 1375, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -25155,12 +25233,12 @@ }, "type": { "type": "reference", - "id": 1913, + "id": 1955, "name": "EmbedEvent" } }, { - "id": 1343, + "id": 1376, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -25170,12 +25248,12 @@ }, "type": { "type": "reference", - "id": 2710, + "id": 2753, "name": "MessageCallback" } }, { - "id": 1344, + "id": 1377, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -25185,13 +25263,13 @@ }, "type": { "type": "reference", - "id": 2707, + "id": 2750, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1345, + "id": 1378, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -25220,7 +25298,7 @@ } }, { - "id": 1384, + "id": 1417, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -25230,13 +25308,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1575, + "line": 1686, "character": 17 } ], "signatures": [ { - "id": 1385, + "id": 1418, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -25246,7 +25324,7 @@ }, "parameters": [ { - "id": 1386, + "id": 1419, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -25261,7 +25339,7 @@ "defaultValue": "false" }, { - "id": 1387, + "id": 1420, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -25295,7 +25373,7 @@ } }, { - "id": 1398, + "id": 1431, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -25305,13 +25383,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1668, + "line": 1788, "character": 17 } ], "signatures": [ { - "id": 1399, + "id": 1432, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -25348,7 +25426,7 @@ } }, { - "id": 1248, + "id": 1278, "name": "render", "kind": 2048, "kindString": "Method", @@ -25364,7 +25442,7 @@ ], "signatures": [ { - "id": 1249, + "id": 1279, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -25374,7 +25452,7 @@ "typeArguments": [ { "type": "reference", - "id": 1236, + "id": 1266, "name": "SpotterEmbed" } ], @@ -25392,7 +25470,7 @@ } }, { - "id": 1402, + "id": 1435, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -25402,19 +25480,19 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1716, + "line": 1826, "character": 17 } ], "signatures": [ { - "id": 1403, + "id": 1436, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Displays the PreRender component.\nIf the component is not preRendered, it attempts to create and render it.\nAlso, synchronizes the style of the PreRender component with the embedding\nelement." + "shortText": "Displays the pre-rendered component inside the host element.\nIf the component has not been pre-rendered yet, it initiates rendering first.\nInserts a placeholder element into the host and positions the pre-render\nwrapper to overlay it." }, "type": { "type": "reference", @@ -25438,7 +25516,7 @@ } }, { - "id": 1381, + "id": 1414, "name": "subscribedEvent", "kind": 2048, "kindString": "Method", @@ -25448,13 +25526,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1566, + "line": 1677, "character": 11 } ], "signatures": [ { - "id": 1382, + "id": 1415, "name": "subscribedEvent", "kind": 4096, "kindString": "Call signature", @@ -25472,7 +25550,7 @@ }, "parameters": [ { - "id": 1383, + "id": 1416, "name": "eventName", "kind": 32768, "kindString": "Parameter", @@ -25485,12 +25563,12 @@ "types": [ { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" }, { "type": "reference", - "id": 2029, + "id": 2071, "name": "HostEvent" } ] @@ -25513,7 +25591,7 @@ } }, { - "id": 1404, + "id": 1439, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -25523,13 +25601,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1785, + "line": 1905, "character": 11 } ], "signatures": [ { - "id": 1405, + "id": 1440, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -25559,7 +25637,7 @@ } }, { - "id": 1364, + "id": 1397, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -25569,13 +25647,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1423, + "line": 1525, "character": 17 } ], "signatures": [ { - "id": 1365, + "id": 1398, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -25596,40 +25674,40 @@ }, "typeParameter": [ { - "id": 1366, + "id": 1399, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2029, + "id": 2071, "name": "HostEvent" } }, { - "id": 1367, + "id": 1400, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} }, { - "id": 1368, + "id": 1401, "name": "ContextT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2113, + "id": 2155, "name": "ContextType" } } ], "parameters": [ { - "id": 1369, + "id": 1402, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -25643,7 +25721,7 @@ } }, { - "id": 1370, + "id": 1403, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -25668,7 +25746,7 @@ "defaultValue": "..." }, { - "id": 1371, + "id": 1404, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -25720,7 +25798,7 @@ } }, { - "id": 1372, + "id": 1405, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -25730,13 +25808,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1484, + "line": 1595, "character": 17 } ], "signatures": [ { - "id": 1373, + "id": 1406, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -25747,21 +25825,21 @@ }, "typeParameter": [ { - "id": 1374, + "id": 1407, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3024, + "id": 3067, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1375, + "id": 1408, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -25775,7 +25853,7 @@ } }, { - "id": 1376, + "id": 1409, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -25828,31 +25906,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1237 + 1267 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1394, - 1413, + 1427, + 1449, + 1412, + 1276, + 1443, + 1421, + 1429, + 1441, 1379, - 1246, - 1408, - 1388, - 1396, - 1406, - 1346, - 1340, - 1384, - 1398, - 1248, - 1402, - 1381, - 1404, - 1364, - 1372 + 1373, + 1417, + 1431, + 1278, + 1435, + 1414, + 1439, + 1397, + 1405 ] } ], @@ -25872,13 +25950,13 @@ "extendedBy": [ { "type": "reference", - "id": 1535, + "id": 1571, "name": "ConversationEmbed" } ] }, { - "id": 2571, + "id": 2613, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -25894,7 +25972,7 @@ }, "children": [ { - "id": 2621, + "id": 2664, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -25925,20 +26003,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2622, + "id": 2665, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2623, + "id": 2666, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2624, + "id": 2667, "name": "key", "kind": 32768, "flags": {}, @@ -25974,7 +26052,7 @@ } }, { - "id": 2652, + "id": 2695, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -26002,7 +26080,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1678, + "line": 1699, "character": 4 } ], @@ -26016,7 +26094,7 @@ } }, { - "id": 2591, + "id": 2633, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -26053,7 +26131,7 @@ } }, { - "id": 2649, + "id": 2692, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -26077,13 +26155,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1636, + "line": 1657, "character": 4 } ], "type": { "type": "reference", - "id": 2297, + "id": 2339, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -26092,7 +26170,7 @@ } }, { - "id": 2670, + "id": 2713, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -26116,7 +26194,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1916, + "line": 1937, "character": 4 } ], @@ -26130,7 +26208,7 @@ } }, { - "id": 2640, + "id": 2683, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -26179,7 +26257,7 @@ } }, { - "id": 2625, + "id": 2668, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26208,7 +26286,7 @@ ], "type": { "type": "reference", - "id": 2723, + "id": 2766, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -26217,7 +26295,7 @@ } }, { - "id": 2592, + "id": 2634, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -26251,12 +26329,12 @@ ], "type": { "type": "reference", - "id": 3049, + "id": 3092, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2653, + "id": 2696, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -26284,7 +26362,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1694, + "line": 1715, "character": 4 } ], @@ -26298,7 +26376,7 @@ } }, { - "id": 2574, + "id": 2616, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -26336,7 +26414,7 @@ } }, { - "id": 2633, + "id": 2676, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26374,7 +26452,7 @@ } }, { - "id": 2617, + "id": 2660, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26412,7 +26490,7 @@ } }, { - "id": 2616, + "id": 2659, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -26444,7 +26522,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -26454,7 +26532,7 @@ } }, { - "id": 2590, + "id": 2632, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -26491,7 +26569,7 @@ } }, { - "id": 2629, + "id": 2672, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -26532,7 +26610,7 @@ } }, { - "id": 2664, + "id": 2707, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -26560,7 +26638,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1812, + "line": 1833, "character": 4 } ], @@ -26574,7 +26652,7 @@ } }, { - "id": 2669, + "id": 2712, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -26602,7 +26680,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1900, + "line": 1921, "character": 4 } ], @@ -26616,7 +26694,7 @@ } }, { - "id": 2654, + "id": 2697, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -26644,7 +26722,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1710, + "line": 1731, "character": 4 } ], @@ -26658,7 +26736,7 @@ } }, { - "id": 2609, + "id": 2652, "name": "enableHomepageAnnouncement", "kind": 1024, "kindString": "Property", @@ -26682,7 +26760,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 821, + "line": 837, "character": 4 } ], @@ -26692,7 +26770,7 @@ } }, { - "id": 2636, + "id": 2679, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -26730,7 +26808,7 @@ } }, { - "id": 2610, + "id": 2653, "name": "enableLiveboardDataCache", "kind": 1024, "kindString": "Property", @@ -26753,7 +26831,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 834, + "line": 850, "character": 4 } ], @@ -26763,7 +26841,7 @@ } }, { - "id": 2603, + "id": 2646, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -26791,7 +26869,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 718, + "line": 734, "character": 4 } ], @@ -26801,7 +26879,7 @@ } }, { - "id": 2575, + "id": 2617, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -26839,7 +26917,7 @@ } }, { - "id": 2587, + "id": 2629, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -26877,7 +26955,7 @@ } }, { - "id": 2607, + "id": 2650, "name": "enableStopAnswerGenerationEmbed", "kind": 1024, "kindString": "Property", @@ -26901,7 +26979,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 788, + "line": 804, "character": 4 } ], @@ -26911,7 +26989,7 @@ } }, { - "id": 2630, + "id": 2673, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -26949,7 +27027,7 @@ } }, { - "id": 2650, + "id": 2693, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -26973,7 +27051,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1649, + "line": 1670, "character": 4 } ], @@ -26987,7 +27065,7 @@ } }, { - "id": 2651, + "id": 2694, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -27011,7 +27089,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1662, + "line": 1683, "character": 4 } ], @@ -27025,7 +27103,7 @@ } }, { - "id": 2632, + "id": 2675, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -27062,7 +27140,7 @@ } }, { - "id": 2613, + "id": 2656, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -27092,7 +27170,7 @@ ], "type": { "type": "reference", - "id": 2682, + "id": 2725, "name": "FrameParams" }, "inheritedFrom": { @@ -27101,7 +27179,7 @@ } }, { - "id": 2588, + "id": 2630, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -27135,7 +27213,7 @@ } }, { - "id": 2618, + "id": 2661, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -27171,7 +27249,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -27181,7 +27259,7 @@ } }, { - "id": 2659, + "id": 2702, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -27205,7 +27283,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1572, + "line": 1593, "character": 4 } ], @@ -27213,7 +27291,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2688, + "id": 2731, "name": "HomeLeftNavItem" } }, @@ -27223,7 +27301,7 @@ } }, { - "id": 2657, + "id": 2700, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -27247,7 +27325,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1530, + "line": 1551, "character": 4 } ], @@ -27255,7 +27333,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2699, + "id": 2742, "name": "HomepageModule" } }, @@ -27265,7 +27343,7 @@ } }, { - "id": 2656, + "id": 2699, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -27289,7 +27367,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1509, + "line": 1530, "character": 4 } ], @@ -27297,7 +27375,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3041, + "id": 3084, "name": "ListPageColumns" } }, @@ -27307,7 +27385,7 @@ } }, { - "id": 2579, + "id": 2621, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -27345,7 +27423,7 @@ } }, { - "id": 2576, + "id": 2618, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -27383,7 +27461,7 @@ } }, { - "id": 2573, + "id": 2615, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -27421,7 +27499,7 @@ } }, { - "id": 2667, + "id": 2710, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -27449,7 +27527,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1867, + "line": 1888, "character": 4 } ], @@ -27463,7 +27541,7 @@ } }, { - "id": 2660, + "id": 2703, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -27491,7 +27569,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1748, + "line": 1769, "character": 4 } ], @@ -27505,7 +27583,7 @@ } }, { - "id": 2578, + "id": 2620, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -27543,7 +27621,7 @@ } }, { - "id": 2577, + "id": 2619, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -27581,7 +27659,7 @@ } }, { - "id": 2585, + "id": 2627, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -27618,7 +27696,7 @@ } }, { - "id": 2580, + "id": 2622, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -27656,7 +27734,7 @@ } }, { - "id": 2584, + "id": 2626, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -27690,7 +27768,7 @@ } }, { - "id": 2593, + "id": 2635, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -27716,12 +27794,12 @@ ], "type": { "type": "reference", - "id": 2988, + "id": 3031, "name": "HomePageSearchBarMode" } }, { - "id": 2626, + "id": 2669, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -27759,7 +27837,7 @@ } }, { - "id": 2646, + "id": 2689, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -27782,7 +27860,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8393, + "line": 8431, "character": 4 } ], @@ -27796,7 +27874,7 @@ } }, { - "id": 2645, + "id": 2688, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -27819,7 +27897,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8376, + "line": 8414, "character": 4 } ], @@ -27836,7 +27914,7 @@ } }, { - "id": 2671, + "id": 2714, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -27860,7 +27938,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1934, + "line": 1955, "character": 4 } ], @@ -27874,7 +27952,7 @@ } }, { - "id": 2597, + "id": 2640, "name": "isContinuousLiveboardPDFEnabled", "kind": 1024, "kindString": "Property", @@ -27898,7 +27976,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 617, + "line": 633, "character": 4 } ], @@ -27908,7 +27986,7 @@ } }, { - "id": 2673, + "id": 2716, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -27932,7 +28010,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1966, + "line": 1987, "character": 4 } ], @@ -27946,7 +28024,7 @@ } }, { - "id": 2599, + "id": 2642, "name": "isGranularXLSXCSVSchedulesEnabled", "kind": 1024, "kindString": "Property", @@ -27970,7 +28048,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 651, + "line": 667, "character": 4 } ], @@ -27980,7 +28058,7 @@ } }, { - "id": 2672, + "id": 2715, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -28004,7 +28082,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1949, + "line": 1970, "character": 4 } ], @@ -28018,7 +28096,7 @@ } }, { - "id": 2665, + "id": 2708, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -28046,7 +28124,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1829, + "line": 1850, "character": 4 } ], @@ -28060,7 +28138,7 @@ } }, { - "id": 2663, + "id": 2706, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -28084,7 +28162,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1795, + "line": 1816, "character": 4 } ], @@ -28098,7 +28176,7 @@ } }, { - "id": 2675, + "id": 2718, "name": "isLiveboardMasterpiecesEnabled", "kind": 1024, "kindString": "Property", @@ -28126,7 +28204,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1998, + "line": 2019, "character": 4 } ], @@ -28140,7 +28218,7 @@ } }, { - "id": 2595, + "id": 2638, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -28167,7 +28245,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 580, + "line": 596, "character": 4 } ], @@ -28177,7 +28255,7 @@ } }, { - "id": 2598, + "id": 2641, "name": "isLiveboardXLSXCSVDownloadEnabled", "kind": 1024, "kindString": "Property", @@ -28201,7 +28279,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 634, + "line": 650, "character": 4 } ], @@ -28211,7 +28289,7 @@ } }, { - "id": 2644, + "id": 2687, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -28231,7 +28309,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8360, + "line": 8398, "character": 4 } ], @@ -28245,7 +28323,7 @@ } }, { - "id": 2596, + "id": 2639, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -28269,7 +28347,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 598, + "line": 614, "character": 4 } ], @@ -28279,7 +28357,7 @@ } }, { - "id": 2655, + "id": 2698, "name": "isThisPeriodInDateFiltersEnabled", "kind": 1024, "kindString": "Property", @@ -28303,7 +28381,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1726, + "line": 1747, "character": 4 } ], @@ -28317,7 +28395,7 @@ } }, { - "id": 2594, + "id": 2636, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -28355,7 +28433,7 @@ } }, { - "id": 2600, + "id": 2643, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -28382,7 +28460,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 668, + "line": 684, "character": 4 } ], @@ -28392,7 +28470,7 @@ } }, { - "id": 2601, + "id": 2644, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -28416,7 +28494,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 692, + "line": 708, "character": 4 } ], @@ -28426,7 +28504,7 @@ } }, { - "id": 2635, + "id": 2678, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -28464,7 +28542,7 @@ } }, { - "id": 2620, + "id": 2663, "name": "locale", "kind": 1024, "kindString": "Property", @@ -28502,7 +28580,7 @@ } }, { - "id": 2608, + "id": 2651, "name": "minimumHeight", "kind": 1024, "kindString": "Property", @@ -28529,7 +28607,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 805, + "line": 821, "character": 4 } ], @@ -28539,7 +28617,7 @@ } }, { - "id": 2589, + "id": 2631, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -28576,7 +28654,7 @@ } }, { - "id": 2676, + "id": 2719, "name": "newChartsLibrary", "kind": 1024, "kindString": "Property", @@ -28604,7 +28682,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2014, + "line": 2035, "character": 4 } ], @@ -28618,7 +28696,45 @@ } }, { - "id": 2634, + "id": 2637, + "name": "newConnectionsExperience", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag is used to enable the new connection experience for AppEmbed.", + "text": "Supported embed types: `AppEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other embed view config\n newConnectionsExperience: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 578, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2677, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -28656,7 +28772,7 @@ } }, { - "id": 2582, + "id": 2624, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -28686,12 +28802,12 @@ ], "type": { "type": "reference", - "id": 1872, + "id": 1914, "name": "Page" } }, { - "id": 2581, + "id": 2623, "name": "path", "kind": 1024, "kindString": "Property", @@ -28725,7 +28841,7 @@ } }, { - "id": 2628, + "id": 2671, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -28763,7 +28879,7 @@ } }, { - "id": 2637, + "id": 2680, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -28801,7 +28917,7 @@ } }, { - "id": 2641, + "id": 2684, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -28842,7 +28958,7 @@ } }, { - "id": 2658, + "id": 2701, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -28866,7 +28982,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1551, + "line": 1572, "character": 4 } ], @@ -28874,7 +28990,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2699, + "id": 2742, "name": "HomepageModule" } }, @@ -28884,7 +29000,7 @@ } }, { - "id": 2647, + "id": 2690, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -28908,7 +29024,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1600, + "line": 1621, "character": 4 } ], @@ -28916,7 +29032,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1935, "name": "RuntimeFilter" } }, @@ -28926,7 +29042,7 @@ } }, { - "id": 2648, + "id": 2691, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -28950,7 +29066,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1621, + "line": 1642, "character": 4 } ], @@ -28958,7 +29074,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2962, + "id": 3005, "name": "RuntimeParameter" } }, @@ -28968,7 +29084,7 @@ } }, { - "id": 2642, + "id": 2685, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -29009,7 +29125,7 @@ } }, { - "id": 2639, + "id": 2682, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -29046,7 +29162,7 @@ } }, { - "id": 2662, + "id": 2705, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -29074,7 +29190,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1780, + "line": 1801, "character": 4 } ], @@ -29088,7 +29204,7 @@ } }, { - "id": 2668, + "id": 2711, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -29116,7 +29232,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1884, + "line": 1905, "character": 4 } ], @@ -29130,7 +29246,7 @@ } }, { - "id": 2661, + "id": 2704, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -29158,7 +29274,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1764, + "line": 1785, "character": 4 } ], @@ -29172,7 +29288,7 @@ } }, { - "id": 2666, + "id": 2709, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -29200,7 +29316,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1846, + "line": 1867, "character": 4 } ], @@ -29214,7 +29330,7 @@ } }, { - "id": 2674, + "id": 2717, "name": "showMaskedFilterChip", "kind": 1024, "kindString": "Property", @@ -29242,7 +29358,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1982, + "line": 2003, "character": 4 } ], @@ -29256,7 +29372,7 @@ } }, { - "id": 2572, + "id": 2614, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -29294,7 +29410,7 @@ } }, { - "id": 2605, + "id": 2648, "name": "spotterChatConfig", "kind": 1024, "kindString": "Property", @@ -29318,18 +29434,18 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 756, + "line": 772, "character": 4 } ], "type": { "type": "reference", - "id": 1467, + "id": 1503, "name": "SpotterChatViewConfig" } }, { - "id": 2604, + "id": 2647, "name": "spotterSidebarConfig", "kind": 1024, "kindString": "Property", @@ -29353,18 +29469,18 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 738, + "line": 754, "character": 4 } ], "type": { "type": "reference", - "id": 1472, + "id": 1508, "name": "SpotterSidebarViewConfig" } }, { - "id": 2606, + "id": 2649, "name": "spotterViz", "kind": 1024, "kindString": "Property", @@ -29388,18 +29504,18 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 779, + "line": 795, "character": 4 } ], "type": { "type": "reference", - "id": 2560, + "id": 2602, "name": "SpotterVizConfig" } }, { - "id": 2583, + "id": 2625, "name": "tag", "kind": 1024, "kindString": "Property", @@ -29433,7 +29549,7 @@ } }, { - "id": 2602, + "id": 2645, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -29461,7 +29577,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 708, + "line": 724, "character": 4 } ], @@ -29471,7 +29587,7 @@ } }, { - "id": 2643, + "id": 2686, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -29512,7 +29628,7 @@ } }, { - "id": 2619, + "id": 2662, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -29548,7 +29664,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -29558,7 +29674,7 @@ } }, { - "id": 2611, + "id": 2654, "name": "visualOverrides", "kind": 1024, "kindString": "Property", @@ -29577,13 +29693,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 840, + "line": 856, "character": 4 } ], "type": { "type": "reference", - "id": 3129, + "id": 3137, "name": "VisualizationOverrides" } } @@ -29593,101 +29709,102 @@ "title": "Properties", "kind": 1024, "children": [ - 2621, + 2664, + 2695, + 2633, + 2692, + 2713, + 2683, + 2668, + 2634, + 2696, + 2616, + 2676, + 2660, + 2659, + 2632, + 2672, + 2707, + 2712, + 2697, 2652, - 2591, - 2649, - 2670, - 2640, - 2625, - 2592, + 2679, 2653, - 2574, - 2633, + 2646, 2617, - 2616, - 2590, 2629, - 2664, - 2669, - 2654, - 2609, - 2636, - 2610, - 2603, - 2575, - 2587, - 2607, - 2630, 2650, - 2651, - 2632, - 2613, - 2588, - 2618, - 2659, - 2657, - 2656, - 2579, - 2576, - 2573, - 2667, - 2660, - 2578, - 2577, - 2585, - 2580, - 2584, - 2593, - 2626, - 2646, - 2645, - 2671, - 2597, 2673, - 2599, - 2672, - 2665, - 2663, + 2693, + 2694, 2675, - 2595, - 2598, - 2644, - 2596, - 2655, - 2594, - 2600, - 2601, - 2635, + 2656, + 2630, + 2661, + 2702, + 2700, + 2699, + 2621, + 2618, + 2615, + 2710, + 2703, 2620, - 2608, - 2589, - 2676, - 2634, - 2582, - 2581, - 2628, - 2637, - 2641, - 2658, - 2647, - 2648, + 2619, + 2627, + 2622, + 2626, + 2635, + 2669, + 2689, + 2688, + 2714, + 2640, + 2716, 2642, + 2715, + 2708, + 2706, + 2718, + 2638, + 2641, + 2687, 2639, - 2662, - 2668, - 2661, - 2666, - 2674, - 2572, - 2605, - 2604, - 2606, - 2583, - 2602, + 2698, + 2636, 2643, - 2619, - 2611 + 2644, + 2678, + 2663, + 2651, + 2631, + 2719, + 2637, + 2677, + 2624, + 2623, + 2671, + 2680, + 2684, + 2701, + 2690, + 2691, + 2685, + 2682, + 2705, + 2711, + 2704, + 2709, + 2717, + 2614, + 2648, + 2647, + 2649, + 2625, + 2645, + 2686, + 2662, + 2654 ] } ], @@ -29706,7 +29823,7 @@ ] }, { - "id": 1732, + "id": 1774, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -29722,14 +29839,14 @@ }, "children": [ { - "id": 1769, + "id": 1811, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1770, + "id": 1812, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -29739,19 +29856,19 @@ }, "parameters": [ { - "id": 1771, + "id": 1813, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1731, + "id": 1773, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1772, + "id": 1814, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -29775,14 +29892,14 @@ ] }, { - "id": 1773, + "id": 1815, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1774, + "id": 1816, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -29792,7 +29909,7 @@ }, "parameters": [ { - "id": 1775, + "id": 1817, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -29800,12 +29917,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1722, + "id": 1764, "name": "AuthStatus" } }, { - "id": 1776, + "id": 1818, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -29814,21 +29931,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1777, + "id": 1819, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1778, + "id": 1820, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1779, + "id": 1821, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -29854,7 +29971,7 @@ } }, { - "id": 1780, + "id": 1822, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -29866,7 +29983,7 @@ } }, { - "id": 1781, + "id": 1823, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -29882,21 +29999,21 @@ ], "type": { "type": "reference", - "id": 1732, + "id": 1774, "name": "AuthEventEmitter" } } ] }, { - "id": 1733, + "id": 1775, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1734, + "id": 1776, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -29906,7 +30023,7 @@ }, "parameters": [ { - "id": 1735, + "id": 1777, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -29914,12 +30031,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1723, + "id": 1765, "name": "FAILURE" } }, { - "id": 1736, + "id": 1778, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -29930,28 +30047,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1737, + "id": 1779, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1738, + "id": 1780, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1739, + "id": 1781, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1715, + "id": 1757, "name": "AuthFailureType" } } @@ -29968,12 +30085,12 @@ ], "type": { "type": "reference", - "id": 1732, + "id": 1774, "name": "AuthEventEmitter" } }, { - "id": 1740, + "id": 1782, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -29983,7 +30100,7 @@ }, "parameters": [ { - "id": 1741, + "id": 1783, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -29994,29 +30111,29 @@ "types": [ { "type": "reference", - "id": 1724, + "id": 1766, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1727, + "id": 1769, "name": "LOGOUT" }, { "type": "reference", - "id": 1728, + "id": 1770, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1729, + "id": 1771, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1742, + "id": 1784, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30027,14 +30144,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1743, + "id": 1785, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1744, + "id": 1786, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -30051,31 +30168,31 @@ ], "type": { "type": "reference", - "id": 1732, + "id": 1774, "name": "AuthEventEmitter" } }, { - "id": 1745, + "id": 1787, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1746, + "id": 1788, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1726, + "id": 1768, "name": "SUCCESS" } }, { - "id": 1747, + "id": 1789, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30083,21 +30200,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1748, + "id": 1790, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1749, + "id": 1791, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1750, + "id": 1792, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -30120,40 +30237,40 @@ ], "type": { "type": "reference", - "id": 1732, + "id": 1774, "name": "AuthEventEmitter" } } ] }, { - "id": 1751, + "id": 1793, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1752, + "id": 1794, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1753, + "id": 1795, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1723, + "id": 1765, "name": "FAILURE" } }, { - "id": 1754, + "id": 1796, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30161,28 +30278,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1755, + "id": 1797, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1756, + "id": 1798, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1757, + "id": 1799, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1715, + "id": 1757, "name": "AuthFailureType" } } @@ -30199,19 +30316,19 @@ ], "type": { "type": "reference", - "id": 1732, + "id": 1774, "name": "AuthEventEmitter" } }, { - "id": 1758, + "id": 1800, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1759, + "id": 1801, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30221,29 +30338,29 @@ "types": [ { "type": "reference", - "id": 1724, + "id": 1766, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1727, + "id": 1769, "name": "LOGOUT" }, { "type": "reference", - "id": 1728, + "id": 1770, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1729, + "id": 1771, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1760, + "id": 1802, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30251,14 +30368,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1761, + "id": 1803, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1762, + "id": 1804, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -30275,31 +30392,31 @@ ], "type": { "type": "reference", - "id": 1732, + "id": 1774, "name": "AuthEventEmitter" } }, { - "id": 1763, + "id": 1805, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1764, + "id": 1806, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1726, + "id": 1768, "name": "SUCCESS" } }, { - "id": 1765, + "id": 1807, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -30307,21 +30424,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1766, + "id": 1808, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1767, + "id": 1809, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1768, + "id": 1810, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -30344,21 +30461,21 @@ ], "type": { "type": "reference", - "id": 1732, + "id": 1774, "name": "AuthEventEmitter" } } ] }, { - "id": 1782, + "id": 1824, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1783, + "id": 1825, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -30368,7 +30485,7 @@ }, "parameters": [ { - "id": 1784, + "id": 1826, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30378,14 +30495,14 @@ }, "type": { "type": "reference", - "id": 1722, + "id": 1764, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1732, + "id": 1774, "name": "AuthEventEmitter" } } @@ -30397,11 +30514,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1769, - 1773, - 1733, - 1751, - 1782 + 1811, + 1815, + 1775, + 1793, + 1824 ] } ], @@ -30414,14 +30531,27 @@ ] }, { - "id": 3093, - "name": "AutoMCPFrameRendererViewConfig", + "id": 1199, + "name": "BodylessConversationViewConfig", "kind": 256, "kindString": "Interface", "flags": {}, + "comment": { + "shortText": "Configuration for conversation options.\nUse {@link SpotterAgentEmbedViewConfig} instead", + "tags": [ + { + "tag": "deprecated", + "text": "from SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl" + }, + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, "children": [ { - "id": 3103, + "id": 1210, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -30452,20 +30582,20 @@ "type": { "type": "reflection", "declaration": { - "id": 3104, + "id": 1211, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 3105, + "id": 1212, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 3106, + "id": 1213, "name": "key", "kind": 32768, "flags": {}, @@ -30497,11 +30627,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.additionalFlags" + "id": 1174, + "name": "SpotterAgentEmbedViewConfig.additionalFlags" } }, { - "id": 3122, + "id": 1228, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -30546,11 +30677,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.customActions" + "id": 1192, + "name": "SpotterAgentEmbedViewConfig.customActions" } }, { - "id": 3107, + "id": 1214, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -30579,16 +30711,17 @@ ], "type": { "type": "reference", - "id": 2723, + "id": 2766, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.customizations" + "id": 1178, + "name": "SpotterAgentEmbedViewConfig.customizations" } }, { - "id": 3115, + "id": 1222, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -30622,11 +30755,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.disableRedirectionLinksInNewTab" + "id": 1186, + "name": "SpotterAgentEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 3099, + "id": 1206, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -30660,11 +30794,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.disabledActionReason" + "id": 1170, + "name": "SpotterAgentEmbedViewConfig.disabledActionReason" } }, { - "id": 3098, + "id": 1205, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -30696,17 +30831,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.disabledActions" + "id": 1169, + "name": "SpotterAgentEmbedViewConfig.disabledActions" } }, { - "id": 3111, + "id": 1218, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -30743,11 +30879,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.doNotTrackPreRenderSize" + "id": 1182, + "name": "SpotterAgentEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 3118, + "id": 1225, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -30781,11 +30918,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.enableLinkOverridesV2" + "id": 1189, + "name": "SpotterAgentEmbedViewConfig.enableLinkOverridesV2" } }, { - "id": 3112, + "id": 1219, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -30819,11 +30957,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.enableV2Shell_experimental" + "id": 1183, + "name": "SpotterAgentEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 3114, + "id": 1221, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -30856,11 +30995,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.exposeTranslationIDs" + "id": 1185, + "name": "SpotterAgentEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 3095, + "id": 1202, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -30890,16 +31030,17 @@ ], "type": { "type": "reference", - "id": 2682, + "id": 2725, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.frameParams" + "id": 1166, + "name": "SpotterAgentEmbedViewConfig.frameParams" } }, { - "id": 3100, + "id": 1207, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -30935,17 +31076,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.hiddenActions" + "id": 1171, + "name": "SpotterAgentEmbedViewConfig.hiddenActions" } }, { - "id": 3108, + "id": 1215, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -30979,11 +31121,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.insertAsSibling" + "id": 1179, + "name": "SpotterAgentEmbedViewConfig.insertAsSibling" } }, { - "id": 3128, + "id": 1234, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -31006,7 +31149,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8393, + "line": 8431, "character": 4 } ], @@ -31016,11 +31159,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.interceptTimeout" + "id": 1198, + "name": "SpotterAgentEmbedViewConfig.interceptTimeout" } }, { - "id": 3127, + "id": 1233, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -31043,7 +31187,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8376, + "line": 8414, "character": 4 } ], @@ -31056,11 +31200,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.interceptUrls" + "id": 1197, + "name": "SpotterAgentEmbedViewConfig.interceptUrls" } }, { - "id": 3126, + "id": 1232, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -31080,7 +31225,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8360, + "line": 8398, "character": 4 } ], @@ -31090,11 +31235,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.isOnBeforeGetVizDataInterceptEnabled" + "id": 1196, + "name": "SpotterAgentEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" } }, { - "id": 3117, + "id": 1224, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -31128,11 +31274,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.linkOverride" + "id": 1188, + "name": "SpotterAgentEmbedViewConfig.linkOverride" } }, { - "id": 3102, + "id": 1209, "name": "locale", "kind": 1024, "kindString": "Property", @@ -31166,11 +31313,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.locale" + "id": 1173, + "name": "SpotterAgentEmbedViewConfig.locale" } }, { - "id": 3116, + "id": 1223, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -31204,11 +31352,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.overrideOrgId" + "id": 1187, + "name": "SpotterAgentEmbedViewConfig.overrideOrgId" } }, { - "id": 3110, + "id": 1217, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -31242,49 +31391,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.preRenderId" - } - }, - { - "id": 3119, - "name": "primaryAction", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The primary action to display on top of the viz for Liveboard and App Embed.\nUse this to set the primary action.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.39.0 | ThoughtSpot: 10.11.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 primaryAction: Action.Download\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1237, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseViewConfig.primaryAction" + "id": 1181, + "name": "SpotterAgentEmbedViewConfig.preRenderId" } }, { - "id": 3123, + "id": 1229, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -31321,11 +31433,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.refreshAuthTokenOnNearExpiry" + "id": 1193, + "name": "SpotterAgentEmbedViewConfig.refreshAuthTokenOnNearExpiry" } }, { - "id": 3124, + "id": 1230, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -31362,11 +31475,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.shouldBypassPayloadValidation" + "id": 1194, + "name": "SpotterAgentEmbedViewConfig.shouldBypassPayloadValidation" } }, { - "id": 3121, + "id": 1227, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -31399,11 +31513,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.showAlerts" + "id": 1191, + "name": "SpotterAgentEmbedViewConfig.showAlerts" } }, { - "id": 3125, + "id": 1231, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -31440,11 +31555,12 @@ }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.useHostEventsV2" + "id": 1195, + "name": "SpotterAgentEmbedViewConfig.useHostEventsV2" } }, { - "id": 3101, + "id": 1208, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -31480,13 +31596,40 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "BaseViewConfig.visibleActions" + "id": 1172, + "name": "SpotterAgentEmbedViewConfig.visibleActions" + } + }, + { + "id": 1200, + "name": "worksheetId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "comment": { + "shortText": "The ID of the Model to use for the conversation." + }, + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 15, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 1164, + "name": "SpotterAgentEmbedViewConfig.worksheetId" } } ], @@ -31495,57 +31638,58 @@ "title": "Properties", "kind": 1024, "children": [ - 3103, - 3122, - 3107, - 3115, - 3099, - 3098, - 3111, - 3118, - 3112, - 3114, - 3095, - 3100, - 3108, - 3128, - 3127, - 3126, - 3117, - 3102, - 3116, - 3110, - 3119, - 3123, - 3124, - 3121, - 3125, - 3101 + 1210, + 1228, + 1214, + 1222, + 1206, + 1205, + 1218, + 1225, + 1219, + 1221, + 1202, + 1207, + 1215, + 1234, + 1233, + 1232, + 1224, + 1209, + 1223, + 1217, + 1229, + 1230, + 1227, + 1231, + 1208, + 1200 ] } ], "sources": [ { - "fileName": "types.ts", - "line": 1481, + "fileName": "embed/bodyless-conversation.ts", + "line": 25, "character": 17 } ], "extendedTypes": [ { "type": "reference", - "name": "BaseViewConfig" + "id": 1163, + "name": "SpotterAgentEmbedViewConfig" } ] }, { - "id": 1169, - "name": "BodylessConversationViewConfig", + "id": 1520, + "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { - "shortText": "Configuration for conversation options.\nUse {@link SpotterAgentEmbedViewConfig} instead", + "shortText": "The configuration for the embedded spotterEmbed options.\nUse {@link SpotterEmbedViewConfig} instead", "tags": [ { "tag": "deprecated", @@ -31559,7 +31703,7 @@ }, "children": [ { - "id": 1180, + "id": 1546, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -31590,20 +31734,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1181, + "id": 1547, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1182, + "id": 1548, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1183, + "id": 1549, "name": "key", "kind": 32768, "flags": {}, @@ -31635,12 +31779,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1144, - "name": "SpotterAgentEmbedViewConfig.additionalFlags" + "id": 1478, + "name": "SpotterEmbedViewConfig.additionalFlags" } }, { - "id": 1198, + "id": 1564, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -31685,12 +31829,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1162, - "name": "SpotterAgentEmbedViewConfig.customActions" + "id": 1496, + "name": "SpotterEmbedViewConfig.customActions" } }, { - "id": 1184, + "id": 1550, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -31719,17 +31863,60 @@ ], "type": { "type": "reference", - "id": 2723, + "id": 2766, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1148, - "name": "SpotterAgentEmbedViewConfig.customizations" + "id": 1482, + "name": "SpotterEmbedViewConfig.customizations" } }, { - "id": 1192, + "id": 1525, + "name": "dataPanelV2", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to control Data panel experience", + "text": "Supported embed types: `SageEmbed`, `AppEmbed`, `SearchBarEmbed`, `LiveboardEmbed`, `SearchEmbed`", + "tags": [ + { + "tag": "deprecated", + "text": "from SDK: 1.46.0 | ThoughtSpot Cloud: 26.3.0.cl" + }, + { + "tag": "default", + "text": "true" + }, + { + "tag": "example", + "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, or SearchBarEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n dataPanelV2: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 191, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1457, + "name": "SpotterEmbedViewConfig.dataPanelV2" + } + }, + { + "id": 1558, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -31763,12 +31950,51 @@ }, "inheritedFrom": { "type": "reference", - "id": 1156, - "name": "SpotterAgentEmbedViewConfig.disableRedirectionLinksInNewTab" + "id": 1490, + "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" + } + }, + { + "id": 1523, + "name": "disableSourceSelection", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "disableSourceSelection : Disables data source selection\nbut still display the selected data source.", + "text": "Supported embed types: `SpotterEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.36.0 | ThoughtSpot: 10.6.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n disableSourceSelection : true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 161, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1455, + "name": "SpotterEmbedViewConfig.disableSourceSelection" } }, { - "id": 1176, + "id": 1542, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -31802,12 +32028,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1140, - "name": "SpotterAgentEmbedViewConfig.disabledActionReason" + "id": 1474, + "name": "SpotterEmbedViewConfig.disabledActionReason" } }, { - "id": 1175, + "id": 1541, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -31839,18 +32065,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1139, - "name": "SpotterAgentEmbedViewConfig.disabledActions" + "id": 1473, + "name": "SpotterEmbedViewConfig.disabledActions" } }, { - "id": 1188, + "id": 1554, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -31887,12 +32113,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1152, - "name": "SpotterAgentEmbedViewConfig.doNotTrackPreRenderSize" + "id": 1486, + "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1195, + "id": 1561, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -31926,12 +32152,94 @@ }, "inheritedFrom": { "type": "reference", - "id": 1159, - "name": "SpotterAgentEmbedViewConfig.enableLinkOverridesV2" + "id": 1493, + "name": "SpotterEmbedViewConfig.enableLinkOverridesV2" } }, { - "id": 1189, + "id": 1534, + "name": "enablePastConversationsSidebar", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Controls the visibility of the past conversations sidebar.", + "text": "Supported embed types: `SpotterEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl" + }, + { + "tag": "deprecated", + "text": "from SDK: 1.47.0 | ThoughtSpot: 26.4.0.cl\nUse `spotterSidebarConfig.enablePastConversationsSidebar`." + }, + { + "tag": "default", + "text": "false\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 320, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1466, + "name": "SpotterEmbedViewConfig.enablePastConversationsSidebar" + } + }, + { + "id": 1533, + "name": "enableStopAnswerGenerationEmbed", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Enables the stop answer generation button in the Spotter embed UI,\nallowing users to interrupt an ongoing answer generation.", + "text": "Supported embed types: `SpotterEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.48.0 | ThoughtSpot: 26.5.0.cl" + }, + { + "tag": "default", + "text": "false\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 310, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1465, + "name": "SpotterEmbedViewConfig.enableStopAnswerGenerationEmbed" + } + }, + { + "id": 1555, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -31965,12 +32273,90 @@ }, "inheritedFrom": { "type": "reference", - "id": 1153, - "name": "SpotterAgentEmbedViewConfig.enableV2Shell_experimental" + "id": 1487, + "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1191, + "id": 1529, + "name": "excludeRuntimeFiltersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to control whether runtime filters should be included in the URL.\nIf true, filters will be passed via app initialization payload\n(default behavior from SDK 1.45.0).\nIf false/undefined, filters are appended to the iframe URL instead.\n(default behavior before SDK 1.45.0).", + "text": "Supported embed types: `SpotterEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.41.0 | ThoughtSpot: 10.13.0.cl" + }, + { + "tag": "default", + "text": "true\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 255, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1461, + "name": "SpotterEmbedViewConfig.excludeRuntimeFiltersfromURL" + } + }, + { + "id": 1531, + "name": "excludeRuntimeParametersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to control whether runtime parameters should be included in the URL.\nIf true, parameters will be passed via app\ninitialization payload (default behavior from SDK 1.45.0).\nIf false/undefined, parameters are appended to\nthe iframe URL instead (default behavior before SDK 1.45.0).", + "text": "Supported embed types: `SpotterEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.41.0 | ThoughtSpot: 10.13.0.cl" + }, + { + "tag": "default", + "text": "true\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 286, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1463, + "name": "SpotterEmbedViewConfig.excludeRuntimeParametersfromURL" + } + }, + { + "id": 1557, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -32003,12 +32389,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1155, - "name": "SpotterAgentEmbedViewConfig.exposeTranslationIDs" + "id": 1489, + "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1172, + "id": 1538, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -32038,17 +32424,17 @@ ], "type": { "type": "reference", - "id": 2682, + "id": 2725, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1136, - "name": "SpotterAgentEmbedViewConfig.frameParams" + "id": 1470, + "name": "SpotterEmbedViewConfig.frameParams" } }, { - "id": 1177, + "id": 1543, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -32084,18 +32470,96 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1141, - "name": "SpotterAgentEmbedViewConfig.hiddenActions" + "id": 1475, + "name": "SpotterEmbedViewConfig.hiddenActions" } }, { - "id": 1185, + "id": 1527, + "name": "hideSampleQuestions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "hideSampleQuestions : Hide sample questions on\nthe initial screen of the conversation.", + "text": "Supported embed types: `SpotterEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.36.0 | ThoughtSpot: 10.6.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n hideSampleQuestions : true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 222, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1459, + "name": "SpotterEmbedViewConfig.hideSampleQuestions" + } + }, + { + "id": 1524, + "name": "hideSourceSelection", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "hideSourceSelection : Hide data source selection", + "text": "Supported embed types: `SpotterEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.36.0 | ThoughtSpot: 10.6.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n hideSourceSelection : true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 175, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1456, + "name": "SpotterEmbedViewConfig.hideSourceSelection" + } + }, + { + "id": 1551, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -32129,12 +32593,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1149, - "name": "SpotterAgentEmbedViewConfig.insertAsSibling" + "id": 1483, + "name": "SpotterEmbedViewConfig.insertAsSibling" } }, { - "id": 1204, + "id": 1570, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -32157,7 +32621,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8393, + "line": 8431, "character": 4 } ], @@ -32167,12 +32631,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1168, - "name": "SpotterAgentEmbedViewConfig.interceptTimeout" + "id": 1502, + "name": "SpotterEmbedViewConfig.interceptTimeout" } }, { - "id": 1203, + "id": 1569, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -32195,7 +32659,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8376, + "line": 8414, "character": 4 } ], @@ -32208,12 +32672,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1167, - "name": "SpotterAgentEmbedViewConfig.interceptUrls" + "id": 1501, + "name": "SpotterEmbedViewConfig.interceptUrls" } }, { - "id": 1202, + "id": 1568, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -32233,7 +32697,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8360, + "line": 8398, "character": 4 } ], @@ -32243,12 +32707,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1166, - "name": "SpotterAgentEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" + "id": 1500, + "name": "SpotterEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" } }, { - "id": 1194, + "id": 1560, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -32282,12 +32746,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1158, - "name": "SpotterAgentEmbedViewConfig.linkOverride" + "id": 1492, + "name": "SpotterEmbedViewConfig.linkOverride" } }, { - "id": 1179, + "id": 1545, "name": "locale", "kind": 1024, "kindString": "Property", @@ -32321,12 +32785,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1143, - "name": "SpotterAgentEmbedViewConfig.locale" + "id": 1477, + "name": "SpotterEmbedViewConfig.locale" } }, { - "id": 1193, + "id": 1559, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -32360,12 +32824,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1157, - "name": "SpotterAgentEmbedViewConfig.overrideOrgId" + "id": 1491, + "name": "SpotterEmbedViewConfig.overrideOrgId" } }, { - "id": 1187, + "id": 1553, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -32399,1484 +32863,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1151, - "name": "SpotterAgentEmbedViewConfig.preRenderId" - } - }, - { - "id": 1199, - "name": "refreshAuthTokenOnNearExpiry", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Refresh the auth token when the token is near expiry.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.45.2 | ThoughtSpot: 26.3.0.cl" - }, - { - "tag": "default", - "text": "true" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other embed view config\n refreshAuthTokenOnNearExpiry: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1450, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1163, - "name": "SpotterAgentEmbedViewConfig.refreshAuthTokenOnNearExpiry" - } - }, - { - "id": 1200, - "name": "shouldBypassPayloadValidation", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag skips payload validation so events can be processed even if the payload is old, incomplete, or from a trusted system.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.45.2 | ThoughtSpot: 26.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other embed view config\n shouldBypassPayloadValidation:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1463, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1164, - "name": "SpotterAgentEmbedViewConfig.shouldBypassPayloadValidation" - } - }, - { - "id": 1197, - "name": "showAlerts", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show alert messages and toast messages in the embed.\nSupported in all embed types.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other embed view config\n showAlerts:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1257, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1161, - "name": "SpotterAgentEmbedViewConfig.showAlerts" - } - }, - { - "id": 1201, - "name": "useHostEventsV2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to use host events v2. This is used to enable the new host events v2 API.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.45.2 | ThoughtSpot: 26.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other embed view config\n useHostEventsV2:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1477, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1165, - "name": "SpotterAgentEmbedViewConfig.useHostEventsV2" - } - }, - { - "id": 1178, - "name": "visibleActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this as an allowlist — only the actions listed here will be shown.\nAll other actions will be hidden. Use either this or {@link hiddenActions}, not both.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n visibleActions: [Action.Download, Action.Export],\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1000, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2123, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "id": 1142, - "name": "SpotterAgentEmbedViewConfig.visibleActions" - } - }, - { - "id": 1170, - "name": "worksheetId", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "comment": { - "shortText": "The ID of the Model to use for the conversation." - }, - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 15, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "id": 1134, - "name": "SpotterAgentEmbedViewConfig.worksheetId" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1180, - 1198, - 1184, - 1192, - 1176, - 1175, - 1188, - 1195, - 1189, - 1191, - 1172, - 1177, - 1185, - 1204, - 1203, - 1202, - 1194, - 1179, - 1193, - 1187, - 1199, - 1200, - 1197, - 1201, - 1178, - 1170 - ] - } - ], - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 25, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "id": 1133, - "name": "SpotterAgentEmbedViewConfig" - } - ] - }, - { - "id": 1484, - "name": "ConversationViewConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The configuration for the embedded spotterEmbed options.\nUse {@link SpotterEmbedViewConfig} instead", - "tags": [ - { - "tag": "deprecated", - "text": "from SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl" - }, - { - "tag": "group", - "text": "Embed components\n" - } - ] - }, - "children": [ - { - "id": 1510, - "name": "additionalFlags", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overridden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n },\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1039, - "character": 4 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1511, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 1512, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1513, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - } - } - }, - "inheritedFrom": { - "type": "reference", - "id": 1442, - "name": "SpotterEmbedViewConfig.additionalFlags" - } - }, - { - "id": 1528, - "name": "customActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Custom Actions allows users to define interactive UI actions (like buttons or menu\nitems) that appear in ThoughtSpot's visualizations, answers, and Liveboards. These\nactions enable users to trigger custom workflows — such as navigating to an\nexternal app, calling an API, or opening a modal — based on the data context of\nwhat they clicked can be used to trigger custom logic when the action is clicked.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.43.0 | ThoughtSpot: 10.14.0.cl" - }, - { - "tag": "example", - "text": "\n```ts\nimport {\n CustomActionPayload,\n CustomActionsPosition,\n CustomActionTarget,\n} 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 // Unique identifier for the custom action\n id: 'my-custom-action',\n\n // Display name shown to users in the UI\n name: 'My Custom Action',\n\n // Where the action appears in the UI\n // PRIMARY: Shows as a primary button (e.g., in the toolbar)\n // MENU: Shows in the \"More\" menu (three dots menu)\n // CONTEXTMENU: Shows in the right-click context menu\n position: CustomActionsPosition.PRIMARY,\n\n // What type of content this action applies to\n // ANSWER: Available on answer pages\n target: CustomActionTarget.ANSWER,\n\n // Optional: Restrict where this action appears based on data models\n // dataModelIds: {\n // // Restrict to specific data models\n // modelIds: ['model-id-1', 'model-id-2'],\n // // Restrict to specific columns within models\n // modelColumnNames: ['model-id::column-name']\n // },\n\n // Optional: Restrict where this action appears based on metadata\n // metadataIds: {\n // // Restrict to specific answers\n // answerIds: ['answer-id-1', 'answer-id-2'],\n // },\n // // Restrict to specific groups (for group-based access control)\n // groupIds: ['group-id-1', 'group-id-2'],\n // // Restrict to specific organizations (for multi-org deployments)\n // orgIds: ['org-id-1', 'org-id-2'],\n }\n ],\n})\n\n// to trigger a custom flow on custom action click listen to Custom action embed event\nembed.on(EmbedEvent.CustomAction, (payload: CustomActionPayload) => {\n console.log('Custom Action event:', payload);\n})\n```" - }, - { - "tag": "example", - "text": "\n```ts\nimport {\n CustomActionsPosition,\n CustomActionTarget,\n} from '@thoughtspot/visual-embed-sdk';\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n // Unique identifier for the custom action\n id: 'my-custom-action',\n\n // Display name shown to users in the UI\n name: 'My Custom Action',\n\n // Where the action appears in the UI\n // MENU: Shows in the \"More\" menu (three dots menu)\n // CONTEXTMENU: Shows in the right-click context menu\n position: CustomActionsPosition.MENU,\n\n // What type of content this action applies to\n // SPOTTER: Available in Spotter (AI-powered search)\n target: CustomActionTarget.SPOTTER,\n\n // Optional: Restrict where this action appears based on data models\n // dataModelIds: {\n // // Restrict to specific data models\n // modelIds: ['model-id-1', 'model-id-2'],\n // },\n // // Restrict to specific groups (for group-based access control)\n // groupIds: ['group-id-1'],\n // // Restrict to specific organizations (for multi-org deployments)\n // orgIds: ['org-id-1'],\n }\n ],\n})\n```" - }, - { - "tag": "example", - "text": "\n```ts\nimport {\n CustomActionsPosition,\n CustomActionTarget,\n} from '@thoughtspot/visual-embed-sdk';\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed config options\n customActions: [\n {\n // Unique identifier for the custom action\n id: 'my-liveboard-custom-action',\n\n // Display name shown to users in the UI\n name: 'My Liveboard Custom Action',\n\n // Where the action appears in the UI\n // PRIMARY: Shows as a primary button (e.g., in the toolbar)\n // MENU: Shows in the \"More\" menu (three dots menu)\n position: CustomActionsPosition.PRIMARY,\n\n // What type of content this action applies to\n // LIVEBOARD: Available on liveboard pages\n target: CustomActionTarget.LIVEBOARD,\n\n // Optional: Restrict where this action appears based on metadata\n // metadataIds: {\n // // Restrict to specific liveboards\n // liveboardIds: ['liveboard-id-1', 'liveboard-id-2'],\n // },\n // // Restrict to specific groups (for group-based access control)\n // groupIds: ['group-id-1', 'group-id-2'],\n // // Restrict to specific organizations (for multi-org deployments)\n // orgIds: ['org-id-1', 'org-id-2'],\n },\n {\n // Unique identifier for the custom action\n id: 'my-viz-custom-action',\n\n // Display name shown to users in the UI\n name: 'My Viz Custom Action',\n\n // Where the action appears in the UI\n // PRIMARY: Shows as a primary button (e.g., in the toolbar)\n // MENU: Shows in the \"More\" menu (three dots menu)\n // CONTEXTMENU: Shows in the right-click context menu\n position: CustomActionsPosition.PRIMARY,\n\n // What type of content this action applies to\n // VIZ: Available on individual visualizations\n target: CustomActionTarget.VIZ,\n\n // Optional: Restrict where this action appears based on metadata\n // metadataIds: {\n // // Restrict to specific answers\n // answerIds: ['answer-id-1', 'answer-id-2'],\n // // Restrict to specific liveboard. If liveboardId is\n // // passed, custom actions will appear on all vizzes of liveboard\n // liveboardIds: ['liveboard-id-1'],\n // // Restrict to specific vizIds\n // vizIds: ['viz-id-1']\n // },\n // dataModelIds: {\n // // Restrict to specific data models\n // modelIds: ['model-id-1', 'model-id-2'],\n // // Restrict to specific columns within models\n // modelColumnNames: ['model-id::column-name']\n // },\n // // Restrict to specific groups (for group-based access control)\n // groupIds: ['group-id-1', 'group-id-2'],\n // // Restrict to specific organizations (for multi-org deployments)\n // orgIds: ['org-id-1', 'org-id-2'],\n }\n ],\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1436, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "name": "CustomAction" - } - }, - "inheritedFrom": { - "type": "reference", - "id": 1460, - "name": "SpotterEmbedViewConfig.customActions" - } - }, - { - "id": 1514, - "name": "customizations", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" - }, - { - "tag": "default", - "text": "''\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1046, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 2723, - "name": "CustomisationsInterface" - }, - "inheritedFrom": { - "type": "reference", - "id": 1446, - "name": "SpotterEmbedViewConfig.customizations" - } - }, - { - "id": 1489, - "name": "dataPanelV2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to control Data panel experience", - "text": "Supported embed types: `SageEmbed`, `AppEmbed`, `SearchBarEmbed`, `LiveboardEmbed`, `SearchEmbed`", - "tags": [ - { - "tag": "deprecated", - "text": "from SDK: 1.46.0 | ThoughtSpot Cloud: 26.3.0.cl" - }, - { - "tag": "default", - "text": "true" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, or SearchBarEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n dataPanelV2: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 191, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1421, - "name": "SpotterEmbedViewConfig.dataPanelV2" - } - }, - { - "id": 1522, - "name": "disableRedirectionLinksInNewTab", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n disableRedirectionLinksInNewTab: true,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1154, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1454, - "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" - } - }, - { - "id": 1487, - "name": "disableSourceSelection", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "disableSourceSelection : Disables data source selection\nbut still display the selected data source.", - "text": "Supported embed types: `SpotterEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.36.0 | ThoughtSpot: 10.6.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n disableSourceSelection : true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 161, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1419, - "name": "SpotterEmbedViewConfig.disableSourceSelection" - } - }, - { - "id": 1506, - "name": "disabledActionReason", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The tooltip to display for disabled actions.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n disabledActions: [Action.Download, Action.Save],\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 961, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "id": 1438, - "name": "SpotterEmbedViewConfig.disabledActionReason" - } - }, - { - "id": 1505, - "name": "disabledActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. Disabled actions are grayed out\nand still visible to the user, but cannot be clicked.\nUse this when you want to disable an action (keep it visible but non-interactive).\nTo completely remove an action from the UI, use {@link hiddenActions} instead.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n disabledActions: [Action.Download, Action.Save],\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 945, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2123, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "id": 1437, - "name": "SpotterEmbedViewConfig.disabledActions" - } - }, - { - "id": 1518, - "name": "doNotTrackPreRenderSize", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.4.0.cl, 9.4.0.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1110, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1450, - "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" - } - }, - { - "id": 1525, - "name": "enableLinkOverridesV2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Enables the V2 link override mechanism with improved\nhandling. When enabled, navigation links within the\nembedded ThoughtSpot app are intercepted and routed\nthrough the SDK via the `EmbedEvent.DialogOpen`\nevent.", - "text": "The SDK automatically sends {@link linkOverride}\nalongside this flag for backward compatibility with\nolder ThoughtSpot versions.\n\nSupported embed types: `AppEmbed`, `LiveboardEmbed`,\n`SearchEmbed`, `SpotterAgentEmbed`,\n`SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.46.0 | ThoughtSpot: 26.2.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed view config\n enableLinkOverridesV2: true,\n});\n\nembed.on(EmbedEvent.DialogOpen, (payload) => {\n console.log('Link clicked:', payload);\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1221, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1457, - "name": "SpotterEmbedViewConfig.enableLinkOverridesV2" - } - }, - { - "id": 1498, - "name": "enablePastConversationsSidebar", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Controls the visibility of the past conversations sidebar.", - "text": "Supported embed types: `SpotterEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl" - }, - { - "tag": "deprecated", - "text": "from SDK: 1.47.0 | ThoughtSpot: 26.4.0.cl\nUse `spotterSidebarConfig.enablePastConversationsSidebar`." - }, - { - "tag": "default", - "text": "false\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 320, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1430, - "name": "SpotterEmbedViewConfig.enablePastConversationsSidebar" - } - }, - { - "id": 1497, - "name": "enableStopAnswerGenerationEmbed", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Enables the stop answer generation button in the Spotter embed UI,\nallowing users to interrupt an ongoing answer generation.", - "text": "Supported embed types: `SpotterEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.48.0 | ThoughtSpot: 26.5.0.cl" - }, - { - "tag": "default", - "text": "false\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 310, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1429, - "name": "SpotterEmbedViewConfig.enableStopAnswerGenerationEmbed" - } - }, - { - "id": 1519, - "name": "enableV2Shell_experimental", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighter-weight shell.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n enableV2Shell_experimental: true,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1127, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1451, - "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" - } - }, - { - "id": 1493, - "name": "excludeRuntimeFiltersfromURL", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to control whether runtime filters should be included in the URL.\nIf true, filters will be passed via app initialization payload\n(default behavior from SDK 1.45.0).\nIf false/undefined, filters are appended to the iframe URL instead.\n(default behavior before SDK 1.45.0).", - "text": "Supported embed types: `SpotterEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.41.0 | ThoughtSpot: 10.13.0.cl" - }, - { - "tag": "default", - "text": "true\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 255, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1425, - "name": "SpotterEmbedViewConfig.excludeRuntimeFiltersfromURL" - } - }, - { - "id": 1495, - "name": "excludeRuntimeParametersfromURL", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to control whether runtime parameters should be included in the URL.\nIf true, parameters will be passed via app\ninitialization payload (default behavior from SDK 1.45.0).\nIf false/undefined, parameters are appended to\nthe iframe URL instead (default behavior before SDK 1.45.0).", - "text": "Supported embed types: `SpotterEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.41.0 | ThoughtSpot: 10.13.0.cl" - }, - { - "tag": "default", - "text": "true\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 286, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1427, - "name": "SpotterEmbedViewConfig.excludeRuntimeParametersfromURL" - } - }, - { - "id": 1521, - "name": "exposeTranslationIDs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to expose translation IDs on the embedded app.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1138, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1453, - "name": "SpotterEmbedViewConfig.exposeTranslationIDs" - } - }, - { - "id": 1502, - "name": "frameParams", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 917, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 2682, - "name": "FrameParams" - }, - "inheritedFrom": { - "type": "reference", - "id": 1434, - "name": "SpotterEmbedViewConfig.frameParams" - } - }, - { - "id": 1507, - "name": "hiddenActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to completely remove from the embedded view.\nHidden actions are not visible to the user at all (fully removed from the UI).\nUse this when you want to remove an action entirely.\nTo keep an action visible but non-interactive (grayed out), use {@link disabledActions} instead.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n hiddenActions: [Action.Download, Action.Export],\n});\n```" - }, - { - "tag": "important", - "text": "\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 980, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2123, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "id": 1439, - "name": "SpotterEmbedViewConfig.hiddenActions" - } - }, - { - "id": 1491, - "name": "hideSampleQuestions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "hideSampleQuestions : Hide sample questions on\nthe initial screen of the conversation.", - "text": "Supported embed types: `SpotterEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.36.0 | ThoughtSpot: 10.6.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n hideSampleQuestions : true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 222, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1423, - "name": "SpotterEmbedViewConfig.hideSampleQuestions" - } - }, - { - "id": 1488, - "name": "hideSourceSelection", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "hideSourceSelection : Hide data source selection", - "text": "Supported embed types: `SpotterEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.36.0 | ThoughtSpot: 10.6.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... //other embed view config\n hideSourceSelection : true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 175, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1420, - "name": "SpotterEmbedViewConfig.hideSourceSelection" - } - }, - { - "id": 1515, - "name": "insertAsSibling", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n insertAsSibling:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1062, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1447, - "name": "SpotterEmbedViewConfig.insertAsSibling" - } - }, - { - "id": 1534, - "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": 8393, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "id": 1466, - "name": "SpotterEmbedViewConfig.interceptTimeout" - } - }, - { - "id": 1533, - "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 response 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": 8376, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "id": 1465, - "name": "SpotterEmbedViewConfig.interceptUrls" - } - }, - { - "id": 1532, - "name": "isOnBeforeGetVizDataInterceptEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", - "text": "Can be used for Search 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": 8360, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1464, - "name": "SpotterEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" - } - }, - { - "id": 1524, - "name": "linkOverride", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context\nmenu option.", - "text": "For improved link override handling, use\n{@link enableLinkOverridesV2} instead.\n\nSupported embed types: `AppEmbed`, `LiveboardEmbed`,\n`SearchEmbed`, `SpotterAgentEmbed`,\n`SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other embed view config\n linkOverride: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1193, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "id": 1456, - "name": "SpotterEmbedViewConfig.linkOverride" - } - }, - { - "id": 1509, - "name": "locale", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The locale settings to apply to the embedded view.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n locale:'en',\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1015, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "id": 1441, - "name": "SpotterEmbedViewConfig.locale" - } - }, - { - "id": 1523, - "name": "overrideOrgId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n overrideOrgId: 142536,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1173, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "id": 1455, - "name": "SpotterEmbedViewConfig.overrideOrgId" - } - }, - { - "id": 1517, - "name": "preRenderId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Replace with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n preRenderId: \"preRenderId-123\",\n});\nembed.showPreRender();\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1089, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "id": 1449, + "id": 1485, "name": "SpotterEmbedViewConfig.preRenderId" } }, { - "id": 1529, + "id": 1565, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -33913,12 +32905,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1461, + "id": 1497, "name": "SpotterEmbedViewConfig.refreshAuthTokenOnNearExpiry" } }, { - "id": 1492, + "id": 1528, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -33950,18 +32942,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1935, "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "id": 1424, + "id": 1460, "name": "SpotterEmbedViewConfig.runtimeFilters" } }, { - "id": 1494, + "id": 1530, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -33993,18 +32985,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2962, + "id": 3005, "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "id": 1426, + "id": 1462, "name": "SpotterEmbedViewConfig.runtimeParameters" } }, { - "id": 1486, + "id": 1522, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -34027,12 +33019,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1418, + "id": 1454, "name": "SpotterEmbedViewConfig.searchOptions" } }, { - "id": 1530, + "id": 1566, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -34069,12 +33061,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1462, + "id": 1498, "name": "SpotterEmbedViewConfig.shouldBypassPayloadValidation" } }, { - "id": 1527, + "id": 1563, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -34107,12 +33099,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1459, + "id": 1495, "name": "SpotterEmbedViewConfig.showAlerts" } }, { - "id": 1490, + "id": 1526, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -34146,12 +33138,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1422, + "id": 1458, "name": "SpotterEmbedViewConfig.showSpotterLimitations" } }, { - "id": 1500, + "id": 1536, "name": "spotterChatConfig", "kind": 1024, "kindString": "Property", @@ -34181,17 +33173,17 @@ ], "type": { "type": "reference", - "id": 1467, + "id": 1503, "name": "SpotterChatViewConfig" }, "inheritedFrom": { "type": "reference", - "id": 1432, + "id": 1468, "name": "SpotterEmbedViewConfig.spotterChatConfig" } }, { - "id": 1499, + "id": 1535, "name": "spotterSidebarConfig", "kind": 1024, "kindString": "Property", @@ -34221,17 +33213,17 @@ ], "type": { "type": "reference", - "id": 1472, + "id": 1508, "name": "SpotterSidebarViewConfig" }, "inheritedFrom": { "type": "reference", - "id": 1431, + "id": 1467, "name": "SpotterEmbedViewConfig.spotterSidebarConfig" } }, { - "id": 1496, + "id": 1532, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -34269,12 +33261,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1428, + "id": 1464, "name": "SpotterEmbedViewConfig.updatedSpotterChatPrompt" } }, { - "id": 1531, + "id": 1567, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -34311,12 +33303,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1463, + "id": 1499, "name": "SpotterEmbedViewConfig.useHostEventsV2" } }, { - "id": 1508, + "id": 1544, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -34352,18 +33344,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1440, + "id": 1476, "name": "SpotterEmbedViewConfig.visibleActions" } }, { - "id": 1485, + "id": 1521, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -34384,7 +33376,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1417, + "id": 1453, "name": "SpotterEmbedViewConfig.worksheetId" } } @@ -34394,47 +33386,47 @@ "title": "Properties", "kind": 1024, "children": [ - 1510, - 1528, - 1514, - 1489, - 1522, - 1487, - 1506, - 1505, - 1518, + 1546, + 1564, + 1550, 1525, - 1498, - 1497, - 1519, - 1493, - 1495, - 1521, - 1502, - 1507, - 1491, - 1488, - 1515, + 1558, + 1523, + 1542, + 1541, + 1554, + 1561, 1534, 1533, - 1532, - 1524, - 1509, - 1523, - 1517, + 1555, 1529, - 1492, - 1494, - 1486, - 1530, - 1527, - 1490, - 1500, - 1499, - 1496, 1531, - 1508, - 1485 + 1557, + 1538, + 1543, + 1527, + 1524, + 1551, + 1570, + 1569, + 1568, + 1560, + 1545, + 1559, + 1553, + 1565, + 1528, + 1530, + 1522, + 1566, + 1563, + 1526, + 1536, + 1535, + 1532, + 1567, + 1544, + 1521 ] } ], @@ -34448,13 +33440,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1416, + "id": 1452, "name": "SpotterEmbedViewConfig" } ] }, { - "id": 3004, + "id": 3047, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -34469,7 +33461,7 @@ }, "children": [ { - "id": 3005, + "id": 3048, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -34479,21 +33471,21 @@ "sources": [ { "fileName": "types.ts", - "line": 7889, + "line": 7927, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 3006, + "id": 3049, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3007, + "id": 3050, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -34501,18 +33493,18 @@ "sources": [ { "fileName": "types.ts", - "line": 7890, + "line": 7928, "character": 8 } ], "type": { "type": "reference", - "id": 3001, + "id": 3044, "name": "VizPoint" } }, { - "id": 3008, + "id": 3051, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -34520,7 +33512,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7891, + "line": 7929, "character": 8 } ], @@ -34528,7 +33520,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3001, + "id": 3044, "name": "VizPoint" } } @@ -34539,8 +33531,8 @@ "title": "Properties", "kind": 1024, "children": [ - 3007, - 3008 + 3050, + 3051 ] } ] @@ -34548,7 +33540,7 @@ } }, { - "id": 3009, + "id": 3052, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -34556,21 +33548,21 @@ "sources": [ { "fileName": "types.ts", - "line": 7893, + "line": 7931, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 3010, + "id": 3053, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3018, + "id": 3061, "name": "columns", "kind": 1024, "kindString": "Property", @@ -34578,7 +33570,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7901, + "line": 7939, "character": 8 } ], @@ -34591,7 +33583,7 @@ } }, { - "id": 3019, + "id": 3062, "name": "data", "kind": 1024, "kindString": "Property", @@ -34599,7 +33591,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7902, + "line": 7940, "character": 8 } ], @@ -34612,7 +33604,7 @@ } }, { - "id": 3012, + "id": 3055, "name": "id", "kind": 1024, "kindString": "Property", @@ -34620,7 +33612,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7895, + "line": 7933, "character": 8 } ], @@ -34630,7 +33622,7 @@ } }, { - "id": 3011, + "id": 3054, "name": "name", "kind": 1024, "kindString": "Property", @@ -34638,7 +33630,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7894, + "line": 7932, "character": 8 } ], @@ -34648,7 +33640,7 @@ } }, { - "id": 3013, + "id": 3056, "name": "sources", "kind": 1024, "kindString": "Property", @@ -34656,21 +33648,21 @@ "sources": [ { "fileName": "types.ts", - "line": 7896, + "line": 7934, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 3014, + "id": 3057, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3015, + "id": 3058, "name": "header", "kind": 1024, "kindString": "Property", @@ -34678,21 +33670,21 @@ "sources": [ { "fileName": "types.ts", - "line": 7897, + "line": 7935, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 3016, + "id": 3059, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3017, + "id": 3060, "name": "guid", "kind": 1024, "kindString": "Property", @@ -34700,7 +33692,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7898, + "line": 7936, "character": 16 } ], @@ -34715,7 +33707,7 @@ "title": "Properties", "kind": 1024, "children": [ - 3017 + 3060 ] } ] @@ -34728,7 +33720,7 @@ "title": "Properties", "kind": 1024, "children": [ - 3015 + 3058 ] } ] @@ -34741,23 +33733,23 @@ "title": "Properties", "kind": 1024, "children": [ - 3018, - 3019, - 3012, - 3011, - 3013 + 3061, + 3062, + 3055, + 3054, + 3056 ] } ], "indexSignature": { - "id": 3020, + "id": 3063, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 3021, + "id": 3064, "name": "key", "kind": 32768, "flags": {}, @@ -34776,7 +33768,7 @@ } }, { - "id": 3022, + "id": 3065, "name": "session", "kind": 1024, "kindString": "Property", @@ -34784,18 +33776,18 @@ "sources": [ { "fileName": "types.ts", - "line": 7905, + "line": 7943, "character": 4 } ], "type": { "type": "reference", - "id": 1862, + "id": 1904, "name": "SessionInterface" } }, { - "id": 3023, + "id": 3066, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -34805,7 +33797,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7906, + "line": 7944, "character": 4 } ], @@ -34820,23 +33812,23 @@ "title": "Properties", "kind": 1024, "children": [ - 3005, - 3009, - 3022, - 3023 + 3048, + 3052, + 3065, + 3066 ] } ], "sources": [ { "fileName": "types.ts", - "line": 7888, + "line": 7926, "character": 17 } ] }, { - "id": 2745, + "id": 2788, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -34846,7 +33838,7 @@ }, "children": [ { - "id": 2799, + "id": 2842, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -34869,7 +33861,7 @@ } }, { - "id": 2798, + "id": 2841, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -34892,7 +33884,7 @@ } }, { - "id": 2768, + "id": 2811, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -34915,7 +33907,7 @@ } }, { - "id": 2769, + "id": 2812, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -34938,7 +33930,7 @@ } }, { - "id": 2771, + "id": 2814, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -34961,7 +33953,7 @@ } }, { - "id": 2770, + "id": 2813, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -34984,7 +33976,7 @@ } }, { - "id": 2750, + "id": 2793, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -35007,7 +33999,7 @@ } }, { - "id": 2811, + "id": 2854, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -35030,7 +34022,7 @@ } }, { - "id": 2812, + "id": 2855, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -35053,7 +34045,7 @@ } }, { - "id": 2809, + "id": 2852, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -35076,7 +34068,7 @@ } }, { - "id": 2810, + "id": 2853, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -35099,7 +34091,7 @@ } }, { - "id": 2773, + "id": 2816, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -35122,7 +34114,7 @@ } }, { - "id": 2778, + "id": 2821, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -35145,7 +34137,7 @@ } }, { - "id": 2775, + "id": 2818, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -35168,7 +34160,7 @@ } }, { - "id": 2777, + "id": 2820, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -35191,7 +34183,7 @@ } }, { - "id": 2776, + "id": 2819, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -35214,7 +34206,7 @@ } }, { - "id": 2774, + "id": 2817, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -35237,7 +34229,7 @@ } }, { - "id": 2783, + "id": 2826, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -35260,7 +34252,7 @@ } }, { - "id": 2780, + "id": 2823, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -35283,7 +34275,7 @@ } }, { - "id": 2782, + "id": 2825, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -35306,7 +34298,7 @@ } }, { - "id": 2781, + "id": 2824, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -35329,7 +34321,7 @@ } }, { - "id": 2779, + "id": 2822, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -35352,7 +34344,7 @@ } }, { - "id": 2787, + "id": 2830, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -35375,7 +34367,7 @@ } }, { - "id": 2786, + "id": 2829, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -35398,7 +34390,7 @@ } }, { - "id": 2785, + "id": 2828, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -35421,7 +34413,7 @@ } }, { - "id": 2784, + "id": 2827, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -35444,7 +34436,7 @@ } }, { - "id": 2772, + "id": 2815, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -35467,7 +34459,7 @@ } }, { - "id": 2905, + "id": 2948, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -35490,7 +34482,7 @@ } }, { - "id": 2900, + "id": 2943, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -35513,7 +34505,7 @@ } }, { - "id": 2895, + "id": 2938, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -35536,7 +34528,7 @@ } }, { - "id": 2894, + "id": 2937, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -35559,7 +34551,7 @@ } }, { - "id": 2897, + "id": 2940, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -35582,7 +34574,7 @@ } }, { - "id": 2896, + "id": 2939, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -35605,7 +34597,7 @@ } }, { - "id": 2834, + "id": 2877, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -35628,7 +34620,7 @@ } }, { - "id": 2837, + "id": 2880, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -35651,7 +34643,7 @@ } }, { - "id": 2832, + "id": 2875, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -35674,7 +34666,7 @@ } }, { - "id": 2835, + "id": 2878, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -35697,7 +34689,7 @@ } }, { - "id": 2836, + "id": 2879, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -35720,7 +34712,7 @@ } }, { - "id": 2831, + "id": 2874, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -35743,7 +34735,7 @@ } }, { - "id": 2833, + "id": 2876, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -35766,7 +34758,7 @@ } }, { - "id": 2804, + "id": 2847, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -35789,7 +34781,7 @@ } }, { - "id": 2803, + "id": 2846, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -35812,7 +34804,7 @@ } }, { - "id": 2806, + "id": 2849, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -35835,7 +34827,7 @@ } }, { - "id": 2805, + "id": 2848, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -35858,7 +34850,7 @@ } }, { - "id": 2802, + "id": 2845, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -35881,7 +34873,7 @@ } }, { - "id": 2800, + "id": 2843, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -35904,7 +34896,7 @@ } }, { - "id": 2801, + "id": 2844, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -35927,7 +34919,7 @@ } }, { - "id": 2807, + "id": 2850, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -35950,7 +34942,7 @@ } }, { - "id": 2808, + "id": 2851, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -35973,7 +34965,7 @@ } }, { - "id": 2819, + "id": 2862, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -35996,7 +34988,7 @@ } }, { - "id": 2820, + "id": 2863, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -36019,7 +35011,7 @@ } }, { - "id": 2823, + "id": 2866, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -36042,7 +35034,7 @@ } }, { - "id": 2821, + "id": 2864, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -36065,7 +35057,7 @@ } }, { - "id": 2822, + "id": 2865, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -36088,7 +35080,7 @@ } }, { - "id": 2830, + "id": 2873, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -36111,7 +35103,7 @@ } }, { - "id": 2829, + "id": 2872, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -36134,7 +35126,7 @@ } }, { - "id": 2828, + "id": 2871, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -36157,7 +35149,7 @@ } }, { - "id": 2827, + "id": 2870, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -36180,7 +35172,7 @@ } }, { - "id": 2893, + "id": 2936, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -36203,7 +35195,7 @@ } }, { - "id": 2892, + "id": 2935, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -36226,7 +35218,7 @@ } }, { - "id": 2891, + "id": 2934, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -36249,7 +35241,7 @@ } }, { - "id": 2899, + "id": 2942, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -36272,7 +35264,7 @@ } }, { - "id": 2898, + "id": 2941, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -36295,7 +35287,7 @@ } }, { - "id": 2825, + "id": 2868, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -36318,7 +35310,7 @@ } }, { - "id": 2824, + "id": 2867, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -36341,7 +35333,7 @@ } }, { - "id": 2852, + "id": 2895, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -36364,7 +35356,7 @@ } }, { - "id": 2865, + "id": 2908, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -36388,7 +35380,7 @@ } }, { - "id": 2864, + "id": 2907, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -36412,7 +35404,7 @@ } }, { - "id": 2862, + "id": 2905, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -36436,7 +35428,7 @@ } }, { - "id": 2863, + "id": 2906, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -36460,7 +35452,7 @@ } }, { - "id": 2870, + "id": 2913, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -36483,7 +35475,7 @@ } }, { - "id": 2868, + "id": 2911, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -36506,7 +35498,7 @@ } }, { - "id": 2867, + "id": 2910, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -36529,7 +35521,7 @@ } }, { - "id": 2954, + "id": 2997, "name": "--ts-var-liveboard-edit-toolbar-border", "kind": 1024, "kindString": "Property", @@ -36552,7 +35544,7 @@ } }, { - "id": 2958, + "id": 3001, "name": "--ts-var-liveboard-edit-toolbar-hover-background", "kind": 1024, "kindString": "Property", @@ -36575,7 +35567,7 @@ } }, { - "id": 2959, + "id": 3002, "name": "--ts-var-liveboard-edit-toolbar-hover-text-color", "kind": 1024, "kindString": "Property", @@ -36598,7 +35590,7 @@ } }, { - "id": 2955, + "id": 2998, "name": "--ts-var-liveboard-edit-toolbar-selected-background", "kind": 1024, "kindString": "Property", @@ -36621,7 +35613,7 @@ } }, { - "id": 2956, + "id": 2999, "name": "--ts-var-liveboard-edit-toolbar-selected-text-color", "kind": 1024, "kindString": "Property", @@ -36644,7 +35636,7 @@ } }, { - "id": 2957, + "id": 3000, "name": "--ts-var-liveboard-edit-toolbar-text", "kind": 1024, "kindString": "Property", @@ -36667,7 +35659,7 @@ } }, { - "id": 2853, + "id": 2896, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -36691,7 +35683,7 @@ } }, { - "id": 2854, + "id": 2897, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -36715,7 +35707,7 @@ } }, { - "id": 2858, + "id": 2901, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -36739,7 +35731,7 @@ } }, { - "id": 2846, + "id": 2889, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -36763,7 +35755,7 @@ } }, { - "id": 2861, + "id": 2904, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -36787,7 +35779,7 @@ } }, { - "id": 2860, + "id": 2903, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -36811,7 +35803,7 @@ } }, { - "id": 2851, + "id": 2894, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -36835,7 +35827,7 @@ } }, { - "id": 2859, + "id": 2902, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -36859,7 +35851,7 @@ } }, { - "id": 2849, + "id": 2892, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -36883,7 +35875,7 @@ } }, { - "id": 2850, + "id": 2893, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -36907,7 +35899,7 @@ } }, { - "id": 2857, + "id": 2900, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -36931,7 +35923,7 @@ } }, { - "id": 2847, + "id": 2890, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -36955,7 +35947,7 @@ } }, { - "id": 2848, + "id": 2891, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -36979,7 +35971,7 @@ } }, { - "id": 2884, + "id": 2927, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -37002,7 +35994,7 @@ } }, { - "id": 2881, + "id": 2924, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -37025,7 +36017,7 @@ } }, { - "id": 2882, + "id": 2925, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -37048,7 +36040,7 @@ } }, { - "id": 2883, + "id": 2926, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -37071,7 +36063,7 @@ } }, { - "id": 2839, + "id": 2882, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -37094,7 +36086,7 @@ } }, { - "id": 2890, + "id": 2933, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -37117,7 +36109,7 @@ } }, { - "id": 2885, + "id": 2928, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -37140,7 +36132,7 @@ } }, { - "id": 2886, + "id": 2929, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -37163,7 +36155,7 @@ } }, { - "id": 2889, + "id": 2932, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -37186,7 +36178,7 @@ } }, { - "id": 2887, + "id": 2930, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -37209,7 +36201,7 @@ } }, { - "id": 2888, + "id": 2931, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -37232,7 +36224,7 @@ } }, { - "id": 2840, + "id": 2883, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -37255,7 +36247,7 @@ } }, { - "id": 2838, + "id": 2881, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -37278,7 +36270,7 @@ } }, { - "id": 2856, + "id": 2899, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -37301,7 +36293,7 @@ } }, { - "id": 2855, + "id": 2898, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -37324,7 +36316,7 @@ } }, { - "id": 2869, + "id": 2912, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -37347,7 +36339,7 @@ } }, { - "id": 2924, + "id": 2967, "name": "--ts-var-liveboard-styling-button-active-background", "kind": 1024, "kindString": "Property", @@ -37370,7 +36362,7 @@ } }, { - "id": 2921, + "id": 2964, "name": "--ts-var-liveboard-styling-button-background", "kind": 1024, "kindString": "Property", @@ -37393,7 +36385,7 @@ } }, { - "id": 2923, + "id": 2966, "name": "--ts-var-liveboard-styling-button-hover-background", "kind": 1024, "kindString": "Property", @@ -37416,7 +36408,7 @@ } }, { - "id": 2925, + "id": 2968, "name": "--ts-var-liveboard-styling-button-hover-text-color", "kind": 1024, "kindString": "Property", @@ -37439,7 +36431,7 @@ } }, { - "id": 2926, + "id": 2969, "name": "--ts-var-liveboard-styling-button-shadow", "kind": 1024, "kindString": "Property", @@ -37462,7 +36454,7 @@ } }, { - "id": 2922, + "id": 2965, "name": "--ts-var-liveboard-styling-button-text-color", "kind": 1024, "kindString": "Property", @@ -37485,7 +36477,7 @@ } }, { - "id": 2927, + "id": 2970, "name": "--ts-var-liveboard-styling-color-palette-background", "kind": 1024, "kindString": "Property", @@ -37508,7 +36500,7 @@ } }, { - "id": 2920, + "id": 2963, "name": "--ts-var-liveboard-styling-panel-border-color", "kind": 1024, "kindString": "Property", @@ -37531,7 +36523,7 @@ } }, { - "id": 2919, + "id": 2962, "name": "--ts-var-liveboard-styling-panel-text-color", "kind": 1024, "kindString": "Property", @@ -37554,7 +36546,7 @@ } }, { - "id": 2871, + "id": 2914, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -37577,7 +36569,7 @@ } }, { - "id": 2872, + "id": 2915, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -37600,7 +36592,7 @@ } }, { - "id": 2842, + "id": 2885, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -37623,7 +36615,7 @@ } }, { - "id": 2841, + "id": 2884, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -37646,7 +36638,7 @@ } }, { - "id": 2843, + "id": 2886, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -37669,7 +36661,7 @@ } }, { - "id": 2844, + "id": 2887, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -37692,7 +36684,7 @@ } }, { - "id": 2845, + "id": 2888, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -37715,7 +36707,7 @@ } }, { - "id": 2873, + "id": 2916, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -37738,7 +36730,7 @@ } }, { - "id": 2874, + "id": 2917, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -37761,7 +36753,7 @@ } }, { - "id": 2817, + "id": 2860, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -37784,7 +36776,7 @@ } }, { - "id": 2814, + "id": 2857, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -37807,7 +36799,7 @@ } }, { - "id": 2813, + "id": 2856, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -37830,7 +36822,7 @@ } }, { - "id": 2815, + "id": 2858, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -37853,7 +36845,7 @@ } }, { - "id": 2818, + "id": 2861, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -37876,7 +36868,7 @@ } }, { - "id": 2816, + "id": 2859, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -37899,7 +36891,7 @@ } }, { - "id": 2751, + "id": 2794, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -37922,7 +36914,7 @@ } }, { - "id": 2752, + "id": 2795, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -37945,7 +36937,7 @@ } }, { - "id": 2879, + "id": 2922, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -37968,7 +36960,7 @@ } }, { - "id": 2880, + "id": 2923, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -37991,7 +36983,7 @@ } }, { - "id": 2875, + "id": 2918, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -38014,7 +37006,7 @@ } }, { - "id": 2877, + "id": 2920, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -38037,7 +37029,7 @@ } }, { - "id": 2878, + "id": 2921, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -38060,7 +37052,7 @@ } }, { - "id": 2876, + "id": 2919, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -38083,7 +37075,7 @@ } }, { - "id": 2746, + "id": 2789, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -38106,7 +37098,7 @@ } }, { - "id": 2747, + "id": 2790, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -38129,7 +37121,7 @@ } }, { - "id": 2748, + "id": 2791, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -38152,7 +37144,7 @@ } }, { - "id": 2749, + "id": 2792, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -38175,7 +37167,7 @@ } }, { - "id": 2908, + "id": 2951, "name": "--ts-var-saved-chats-bg", "kind": 1024, "kindString": "Property", @@ -38198,7 +37190,7 @@ } }, { - "id": 2907, + "id": 2950, "name": "--ts-var-saved-chats-border-color", "kind": 1024, "kindString": "Property", @@ -38221,7 +37213,7 @@ } }, { - "id": 2912, + "id": 2955, "name": "--ts-var-saved-chats-btn-bg", "kind": 1024, "kindString": "Property", @@ -38244,7 +37236,7 @@ } }, { - "id": 2913, + "id": 2956, "name": "--ts-var-saved-chats-btn-hover-bg", "kind": 1024, "kindString": "Property", @@ -38267,7 +37259,7 @@ } }, { - "id": 2916, + "id": 2959, "name": "--ts-var-saved-chats-conv-active-bg", "kind": 1024, "kindString": "Property", @@ -38290,7 +37282,7 @@ } }, { - "id": 2915, + "id": 2958, "name": "--ts-var-saved-chats-conv-hover-bg", "kind": 1024, "kindString": "Property", @@ -38313,7 +37305,7 @@ } }, { - "id": 2914, + "id": 2957, "name": "--ts-var-saved-chats-conv-text-color", "kind": 1024, "kindString": "Property", @@ -38336,7 +37328,7 @@ } }, { - "id": 2917, + "id": 2960, "name": "--ts-var-saved-chats-footer-border", "kind": 1024, "kindString": "Property", @@ -38359,7 +37351,7 @@ } }, { - "id": 2910, + "id": 2953, "name": "--ts-var-saved-chats-header-border", "kind": 1024, "kindString": "Property", @@ -38382,7 +37374,7 @@ } }, { - "id": 2918, + "id": 2961, "name": "--ts-var-saved-chats-section-title-color", "kind": 1024, "kindString": "Property", @@ -38405,7 +37397,7 @@ } }, { - "id": 2909, + "id": 2952, "name": "--ts-var-saved-chats-text-color", "kind": 1024, "kindString": "Property", @@ -38428,7 +37420,7 @@ } }, { - "id": 2911, + "id": 2954, "name": "--ts-var-saved-chats-title-color", "kind": 1024, "kindString": "Property", @@ -38451,7 +37443,7 @@ } }, { - "id": 2760, + "id": 2803, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -38474,7 +37466,7 @@ } }, { - "id": 2764, + "id": 2807, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -38497,7 +37489,7 @@ } }, { - "id": 2765, + "id": 2808, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -38520,7 +37512,7 @@ } }, { - "id": 2763, + "id": 2806, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -38543,7 +37535,7 @@ } }, { - "id": 2759, + "id": 2802, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -38566,7 +37558,7 @@ } }, { - "id": 2762, + "id": 2805, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -38589,7 +37581,7 @@ } }, { - "id": 2756, + "id": 2799, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -38612,7 +37604,7 @@ } }, { - "id": 2757, + "id": 2800, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -38635,7 +37627,7 @@ } }, { - "id": 2758, + "id": 2801, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -38658,7 +37650,7 @@ } }, { - "id": 2753, + "id": 2796, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -38681,7 +37673,7 @@ } }, { - "id": 2754, + "id": 2797, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -38704,7 +37696,7 @@ } }, { - "id": 2755, + "id": 2798, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -38727,7 +37719,7 @@ } }, { - "id": 2761, + "id": 2804, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -38750,7 +37742,7 @@ } }, { - "id": 2826, + "id": 2869, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -38773,7 +37765,7 @@ } }, { - "id": 2866, + "id": 2909, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -38796,7 +37788,7 @@ } }, { - "id": 2904, + "id": 2947, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -38819,7 +37811,7 @@ } }, { - "id": 2901, + "id": 2944, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -38842,7 +37834,7 @@ } }, { - "id": 2902, + "id": 2945, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -38865,7 +37857,7 @@ } }, { - "id": 2903, + "id": 2946, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -38888,7 +37880,7 @@ } }, { - "id": 2906, + "id": 2949, "name": "--ts-var-spotter-chat-width", "kind": 1024, "kindString": "Property", @@ -38911,7 +37903,7 @@ } }, { - "id": 2766, + "id": 2809, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -38934,7 +37926,7 @@ } }, { - "id": 2767, + "id": 2810, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -38957,7 +37949,7 @@ } }, { - "id": 2961, + "id": 3004, "name": "--ts-var-spotterviz-border-color", "kind": 1024, "kindString": "Property", @@ -38980,7 +37972,7 @@ } }, { - "id": 2933, + "id": 2976, "name": "--ts-var-spotterviz-emptystate-spotterviz-color", "kind": 1024, "kindString": "Property", @@ -39003,7 +37995,7 @@ } }, { - "id": 2960, + "id": 3003, "name": "--ts-var-spotterviz-footer-text-color", "kind": 1024, "kindString": "Property", @@ -39026,7 +38018,7 @@ } }, { - "id": 2929, + "id": 2972, "name": "--ts-var-spotterviz-input-background", "kind": 1024, "kindString": "Property", @@ -39049,7 +38041,7 @@ } }, { - "id": 2931, + "id": 2974, "name": "--ts-var-spotterviz-input-cta-color", "kind": 1024, "kindString": "Property", @@ -39072,7 +38064,7 @@ } }, { - "id": 2932, + "id": 2975, "name": "--ts-var-spotterviz-input-cta-hover-color", "kind": 1024, "kindString": "Property", @@ -39095,7 +38087,7 @@ } }, { - "id": 2930, + "id": 2973, "name": "--ts-var-spotterviz-input-placeholder-color", "kind": 1024, "kindString": "Property", @@ -39118,7 +38110,7 @@ } }, { - "id": 2952, + "id": 2995, "name": "--ts-var-spotterviz-last-checkpoint-background", "kind": 1024, "kindString": "Property", @@ -39141,7 +38133,7 @@ } }, { - "id": 2953, + "id": 2996, "name": "--ts-var-spotterviz-last-checkpoint-border", "kind": 1024, "kindString": "Property", @@ -39164,7 +38156,7 @@ } }, { - "id": 2938, + "id": 2981, "name": "--ts-var-spotterviz-message-background", "kind": 1024, "kindString": "Property", @@ -39187,7 +38179,7 @@ } }, { - "id": 2928, + "id": 2971, "name": "--ts-var-spotterviz-panel-background", "kind": 1024, "kindString": "Property", @@ -39210,7 +38202,7 @@ } }, { - "id": 2934, + "id": 2977, "name": "--ts-var-spotterviz-prompt-card-background", "kind": 1024, "kindString": "Property", @@ -39233,7 +38225,7 @@ } }, { - "id": 2935, + "id": 2978, "name": "--ts-var-spotterviz-prompt-card-hover-background", "kind": 1024, "kindString": "Property", @@ -39256,7 +38248,7 @@ } }, { - "id": 2936, + "id": 2979, "name": "--ts-var-spotterviz-text-primary", "kind": 1024, "kindString": "Property", @@ -39279,7 +38271,7 @@ } }, { - "id": 2937, + "id": 2980, "name": "--ts-var-spotterviz-text-secondary", "kind": 1024, "kindString": "Property", @@ -39302,7 +38294,7 @@ } }, { - "id": 2942, + "id": 2985, "name": "--ts-var-spotterviz-thinking-completed-header-color", "kind": 1024, "kindString": "Property", @@ -39325,7 +38317,7 @@ } }, { - "id": 2944, + "id": 2987, "name": "--ts-var-spotterviz-thinking-cta-hover-background", "kind": 1024, "kindString": "Property", @@ -39348,7 +38340,7 @@ } }, { - "id": 2941, + "id": 2984, "name": "--ts-var-spotterviz-thinking-inprogress-header-color", "kind": 1024, "kindString": "Property", @@ -39371,7 +38363,7 @@ } }, { - "id": 2943, + "id": 2986, "name": "--ts-var-spotterviz-thinking-work-done-icon-color", "kind": 1024, "kindString": "Property", @@ -39394,7 +38386,7 @@ } }, { - "id": 2947, + "id": 2990, "name": "--ts-var-spotterviz-tool-border-color", "kind": 1024, "kindString": "Property", @@ -39417,7 +38409,7 @@ } }, { - "id": 2945, + "id": 2988, "name": "--ts-var-spotterviz-tool-call-background", "kind": 1024, "kindString": "Property", @@ -39440,7 +38432,7 @@ } }, { - "id": 2949, + "id": 2992, "name": "--ts-var-spotterviz-tool-feedback-button-background", "kind": 1024, "kindString": "Property", @@ -39463,7 +38455,7 @@ } }, { - "id": 2950, + "id": 2993, "name": "--ts-var-spotterviz-tool-feedback-button-hover", "kind": 1024, "kindString": "Property", @@ -39486,7 +38478,7 @@ } }, { - "id": 2948, + "id": 2991, "name": "--ts-var-spotterviz-tool-json-input-background", "kind": 1024, "kindString": "Property", @@ -39509,7 +38501,7 @@ } }, { - "id": 2951, + "id": 2994, "name": "--ts-var-spotterviz-tool-json-input-color", "kind": 1024, "kindString": "Property", @@ -39532,7 +38524,7 @@ } }, { - "id": 2946, + "id": 2989, "name": "--ts-var-spotterviz-tool-title-color", "kind": 1024, "kindString": "Property", @@ -39555,7 +38547,7 @@ } }, { - "id": 2940, + "id": 2983, "name": "--ts-var-spotterviz-usermessage-icon-background", "kind": 1024, "kindString": "Property", @@ -39578,7 +38570,7 @@ } }, { - "id": 2939, + "id": 2982, "name": "--ts-var-spotterviz-usermessage-icon-hover", "kind": 1024, "kindString": "Property", @@ -39601,7 +38593,7 @@ } }, { - "id": 2796, + "id": 2839, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -39624,7 +38616,7 @@ } }, { - "id": 2794, + "id": 2837, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -39647,7 +38639,7 @@ } }, { - "id": 2795, + "id": 2838, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -39670,7 +38662,7 @@ } }, { - "id": 2791, + "id": 2834, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -39693,7 +38685,7 @@ } }, { - "id": 2792, + "id": 2835, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -39716,7 +38708,7 @@ } }, { - "id": 2793, + "id": 2836, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -39739,7 +38731,7 @@ } }, { - "id": 2797, + "id": 2840, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -39762,7 +38754,7 @@ } }, { - "id": 2788, + "id": 2831, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -39785,7 +38777,7 @@ } }, { - "id": 2789, + "id": 2832, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -39808,7 +38800,7 @@ } }, { - "id": 2790, + "id": 2833, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -39836,222 +38828,222 @@ "title": "Properties", "kind": 1024, "children": [ - 2799, - 2798, - 2768, - 2769, - 2771, - 2770, - 2750, + 2842, + 2841, 2811, 2812, - 2809, - 2810, - 2773, - 2778, - 2775, - 2777, - 2776, - 2774, - 2783, - 2780, - 2782, - 2781, - 2779, - 2787, - 2786, - 2785, - 2784, - 2772, - 2905, - 2900, - 2895, - 2894, - 2897, - 2896, - 2834, - 2837, - 2832, - 2835, - 2836, - 2831, - 2833, - 2804, - 2803, - 2806, - 2805, - 2802, - 2800, - 2801, - 2807, - 2808, - 2819, + 2814, + 2813, + 2793, + 2854, + 2855, + 2852, + 2853, + 2816, + 2821, + 2818, 2820, + 2819, + 2817, + 2826, 2823, - 2821, + 2825, + 2824, 2822, 2830, 2829, 2828, 2827, - 2893, - 2892, - 2891, - 2899, - 2898, - 2825, - 2824, - 2852, - 2865, - 2864, - 2862, - 2863, - 2870, - 2868, - 2867, - 2954, - 2958, - 2959, - 2955, - 2956, - 2957, - 2853, - 2854, - 2858, + 2815, + 2948, + 2943, + 2938, + 2937, + 2940, + 2939, + 2877, + 2880, + 2875, + 2878, + 2879, + 2874, + 2876, + 2847, 2846, - 2861, - 2860, - 2851, - 2859, 2849, - 2850, - 2857, - 2847, 2848, - 2884, - 2881, - 2882, - 2883, - 2839, - 2890, - 2885, - 2886, - 2889, - 2887, - 2888, - 2840, - 2838, - 2856, - 2855, - 2869, - 2924, - 2921, - 2923, - 2925, - 2926, - 2922, - 2927, - 2920, - 2919, - 2871, - 2872, - 2842, - 2841, + 2845, 2843, 2844, - 2845, + 2850, + 2851, + 2862, + 2863, + 2866, + 2864, + 2865, 2873, - 2874, - 2817, - 2814, - 2813, - 2815, - 2818, - 2816, - 2751, - 2752, - 2879, - 2880, - 2875, - 2877, - 2878, - 2876, - 2746, - 2747, - 2748, - 2749, + 2872, + 2871, + 2870, + 2936, + 2935, + 2934, + 2942, + 2941, + 2868, + 2867, + 2895, 2908, 2907, - 2912, + 2905, + 2906, 2913, - 2916, - 2915, - 2914, - 2917, - 2910, - 2918, - 2909, 2911, - 2760, - 2764, - 2765, - 2763, - 2759, - 2762, - 2756, - 2757, - 2758, - 2753, - 2754, - 2755, - 2761, - 2826, - 2866, - 2904, + 2910, + 2997, + 3001, + 3002, + 2998, + 2999, + 3000, + 2896, + 2897, 2901, - 2902, + 2889, + 2904, 2903, - 2906, - 2766, - 2767, - 2961, + 2894, + 2902, + 2892, + 2893, + 2900, + 2890, + 2891, + 2927, + 2924, + 2925, + 2926, + 2882, 2933, - 2960, + 2928, 2929, - 2931, 2932, 2930, - 2952, - 2953, - 2938, - 2928, - 2934, - 2935, - 2936, - 2937, - 2942, - 2944, - 2941, - 2943, - 2947, - 2945, - 2949, - 2950, - 2948, - 2951, - 2946, - 2940, - 2939, - 2796, + 2931, + 2883, + 2881, + 2899, + 2898, + 2912, + 2967, + 2964, + 2966, + 2968, + 2969, + 2965, + 2970, + 2963, + 2962, + 2914, + 2915, + 2885, + 2884, + 2886, + 2887, + 2888, + 2916, + 2917, + 2860, + 2857, + 2856, + 2858, + 2861, + 2859, 2794, 2795, + 2922, + 2923, + 2918, + 2920, + 2921, + 2919, + 2789, + 2790, 2791, 2792, - 2793, + 2951, + 2950, + 2955, + 2956, + 2959, + 2958, + 2957, + 2960, + 2953, + 2961, + 2952, + 2954, + 2803, + 2807, + 2808, + 2806, + 2802, + 2805, + 2799, + 2800, + 2801, + 2796, 2797, - 2788, - 2789, - 2790 + 2798, + 2804, + 2869, + 2909, + 2947, + 2944, + 2945, + 2946, + 2949, + 2809, + 2810, + 3004, + 2976, + 3003, + 2972, + 2974, + 2975, + 2973, + 2995, + 2996, + 2981, + 2971, + 2977, + 2978, + 2979, + 2980, + 2985, + 2987, + 2984, + 2986, + 2990, + 2988, + 2992, + 2993, + 2991, + 2994, + 2989, + 2983, + 2982, + 2839, + 2837, + 2838, + 2834, + 2835, + 2836, + 2840, + 2831, + 2832, + 2833 ] } ], @@ -40064,7 +39056,7 @@ ] }, { - "id": 2733, + "id": 2776, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -40074,7 +39066,7 @@ }, "children": [ { - "id": 2735, + "id": 2778, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -40090,12 +39082,12 @@ ], "type": { "type": "reference", - "id": 2736, + "id": 2779, "name": "customCssInterface" } }, { - "id": 2734, + "id": 2777, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -40120,8 +39112,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2735, - 2734 + 2778, + 2777 ] } ], @@ -40134,7 +39126,7 @@ ] }, { - "id": 2723, + "id": 2766, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -40150,7 +39142,7 @@ }, "children": [ { - "id": 2725, + "id": 2768, "name": "content", "kind": 1024, "kindString": "Property", @@ -40167,14 +39159,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2726, + "id": 2769, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2728, + "id": 2771, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -40204,7 +39196,7 @@ } }, { - "id": 2729, + "id": 2772, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -40224,7 +39216,7 @@ } }, { - "id": 2727, + "id": 2770, "name": "strings", "kind": 1024, "kindString": "Property", @@ -40267,21 +39259,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2728, - 2729, - 2727 + 2771, + 2772, + 2770 ] } ], "indexSignature": { - "id": 2730, + "id": 2773, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2731, + "id": 2774, "name": "key", "kind": 32768, "flags": {}, @@ -40300,7 +39292,7 @@ } }, { - "id": 2732, + "id": 2775, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -40320,7 +39312,7 @@ } }, { - "id": 2724, + "id": 2767, "name": "style", "kind": 1024, "kindString": "Property", @@ -40336,7 +39328,7 @@ ], "type": { "type": "reference", - "id": 2733, + "id": 2776, "name": "CustomStyles" } } @@ -40346,9 +39338,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2725, - 2732, - 2724 + 2768, + 2775, + 2767 ] } ], @@ -40361,7 +39353,7 @@ ] }, { - "id": 2301, + "id": 2343, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -40377,7 +39369,7 @@ }, "children": [ { - "id": 2342, + "id": 2384, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -40407,20 +39399,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2343, + "id": 2385, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2344, + "id": 2386, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2345, + "id": 2387, "name": "key", "kind": 32768, "flags": {}, @@ -40452,7 +39444,7 @@ } }, { - "id": 2304, + "id": 2346, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -40475,7 +39467,7 @@ } }, { - "id": 2324, + "id": 2366, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -40517,7 +39509,7 @@ } }, { - "id": 2326, + "id": 2368, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -40546,7 +39538,7 @@ } }, { - "id": 2303, + "id": 2345, "name": "authType", "kind": 1024, "kindString": "Property", @@ -40563,12 +39555,12 @@ ], "type": { "type": "reference", - "id": 1881, + "id": 1923, "name": "AuthType" } }, { - "id": 2316, + "id": 2358, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -40597,7 +39589,7 @@ } }, { - "id": 2327, + "id": 2369, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -40630,7 +39622,7 @@ } }, { - "id": 2319, + "id": 2361, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -40659,7 +39651,7 @@ } }, { - "id": 2351, + "id": 2393, "name": "cleanupTimeout", "kind": 1024, "kindString": "Property", @@ -40692,7 +39684,7 @@ } }, { - "id": 2339, + "id": 2381, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -40721,7 +39713,7 @@ } }, { - "id": 2349, + "id": 2391, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -40765,7 +39757,7 @@ } }, { - "id": 2346, + "id": 2388, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -40808,7 +39800,7 @@ } }, { - "id": 2323, + "id": 2365, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -40833,12 +39825,12 @@ ], "type": { "type": "reference", - "id": 2723, + "id": 2766, "name": "CustomisationsInterface" } }, { - "id": 2337, + "id": 2379, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -40867,7 +39859,7 @@ } }, { - "id": 2321, + "id": 2363, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -40897,7 +39889,7 @@ } }, { - "id": 2348, + "id": 2390, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -40934,7 +39926,7 @@ } }, { - "id": 2341, + "id": 2383, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -40963,7 +39955,7 @@ } }, { - "id": 2317, + "id": 2359, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -40996,7 +39988,7 @@ } }, { - "id": 2347, + "id": 2389, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -41016,7 +40008,7 @@ } }, { - "id": 2315, + "id": 2357, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -41045,7 +40037,7 @@ } }, { - "id": 2310, + "id": 2352, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -41079,7 +40071,7 @@ } }, { - "id": 2335, + "id": 2377, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -41112,12 +40104,12 @@ ], "type": { "type": "reference", - "id": 2965, + "id": 3008, "name": "LogLevel" } }, { - "id": 2318, + "id": 2360, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -41146,7 +40138,7 @@ } }, { - "id": 2309, + "id": 2351, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -41179,7 +40171,7 @@ } }, { - "id": 2338, + "id": 2380, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -41208,7 +40200,7 @@ } }, { - "id": 2308, + "id": 2350, "name": "password", "kind": 1024, "kindString": "Property", @@ -41232,7 +40224,7 @@ } }, { - "id": 2333, + "id": 2375, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -41261,7 +40253,7 @@ } }, { - "id": 2320, + "id": 2362, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -41294,7 +40286,7 @@ } }, { - "id": 2311, + "id": 2353, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -41324,7 +40316,7 @@ } }, { - "id": 2313, + "id": 2355, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -41353,7 +40345,7 @@ } }, { - "id": 2334, + "id": 2376, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -41382,7 +40374,7 @@ } }, { - "id": 2314, + "id": 2356, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -41411,7 +40403,7 @@ } }, { - "id": 2322, + "id": 2364, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -41440,7 +40432,7 @@ } }, { - "id": 2302, + "id": 2344, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -41461,7 +40453,7 @@ } }, { - "id": 2325, + "id": 2367, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -41484,7 +40476,7 @@ } }, { - "id": 2307, + "id": 2349, "name": "username", "kind": 1024, "kindString": "Property", @@ -41507,7 +40499,7 @@ } }, { - "id": 2350, + "id": 2392, "name": "waitForCleanupOnDestroy", "kind": 1024, "kindString": "Property", @@ -41540,7 +40532,7 @@ } }, { - "id": 2305, + "id": 2347, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -41556,7 +40548,7 @@ ], "signatures": [ { - "id": 2306, + "id": 2348, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -41584,50 +40576,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2342, - 2304, - 2324, - 2326, - 2303, - 2316, - 2327, - 2319, + 2384, + 2346, + 2366, + 2368, + 2345, + 2358, + 2369, + 2361, + 2393, + 2381, + 2391, + 2388, + 2365, + 2379, + 2363, + 2390, + 2383, + 2359, + 2389, + 2357, + 2352, + 2377, + 2360, 2351, - 2339, + 2380, + 2350, + 2375, + 2362, + 2353, + 2355, + 2376, + 2356, + 2364, + 2344, + 2367, 2349, - 2346, - 2323, - 2337, - 2321, - 2348, - 2341, - 2317, - 2347, - 2315, - 2310, - 2335, - 2318, - 2309, - 2338, - 2308, - 2333, - 2320, - 2311, - 2313, - 2334, - 2314, - 2322, - 2302, - 2325, - 2307, - 2350 + 2392 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2305 + 2347 ] } ], @@ -41640,7 +40632,7 @@ ] }, { - "id": 3083, + "id": 3126, "name": "EmbedErrorDetailsEvent", "kind": 256, "kindString": "Interface", @@ -41669,7 +40661,7 @@ }, "children": [ { - "id": 3086, + "id": 3129, "name": "code", "kind": 1024, "kindString": "Property", @@ -41680,18 +40672,18 @@ "sources": [ { "fileName": "types.ts", - "line": 8270, + "line": 8308, "character": 4 } ], "type": { "type": "reference", - "id": 3066, + "id": 3109, "name": "EmbedErrorCodes" } }, { - "id": 3084, + "id": 3127, "name": "errorType", "kind": 1024, "kindString": "Property", @@ -41702,18 +40694,18 @@ "sources": [ { "fileName": "types.ts", - "line": 8266, + "line": 8304, "character": 4 } ], "type": { "type": "reference", - "id": 3089, + "id": 3132, "name": "ErrorDetailsTypes" } }, { - "id": 3085, + "id": 3128, "name": "message", "kind": 1024, "kindString": "Property", @@ -41724,7 +40716,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8268, + "line": 8306, "character": 4 } ], @@ -41751,21 +40743,21 @@ "title": "Properties", "kind": 1024, "children": [ - 3086, - 3084, - 3085 + 3129, + 3127, + 3128 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8264, + "line": 8302, "character": 17 } ], "indexSignature": { - "id": 3087, + "id": 3130, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -41775,7 +40767,7 @@ }, "parameters": [ { - "id": 3088, + "id": 3131, "name": "key", "kind": 32768, "flags": {}, @@ -41792,7 +40784,7 @@ } }, { - "id": 2682, + "id": 2725, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -41808,7 +40800,7 @@ }, "children": [ { - "id": 2684, + "id": 2727, "name": "height", "kind": 1024, "kindString": "Property", @@ -41840,7 +40832,7 @@ } }, { - "id": 2685, + "id": 2728, "name": "loading", "kind": 1024, "kindString": "Property", @@ -41876,7 +40868,7 @@ } }, { - "id": 2683, + "id": 2726, "name": "width", "kind": 1024, "kindString": "Property", @@ -41913,9 +40905,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2684, - 2685, - 2683 + 2727, + 2728, + 2726 ] } ], @@ -41927,7 +40919,7 @@ } ], "indexSignature": { - "id": 2686, + "id": 2729, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -41937,7 +40929,7 @@ }, "parameters": [ { - "id": 2687, + "id": 2730, "name": "key", "kind": 32768, "flags": {}, @@ -41971,7 +40963,7 @@ } }, { - "id": 2465, + "id": 2507, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -41987,7 +40979,7 @@ }, "children": [ { - "id": 2477, + "id": 2519, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -42021,7 +41013,7 @@ } }, { - "id": 2508, + "id": 2550, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -42052,20 +41044,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2509, + "id": 2551, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2510, + "id": 2552, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2511, + "id": 2553, "name": "key", "kind": 32768, "flags": {}, @@ -42101,7 +41093,7 @@ } }, { - "id": 2539, + "id": 2581, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -42129,7 +41121,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1678, + "line": 1699, "character": 4 } ], @@ -42143,7 +41135,7 @@ } }, { - "id": 2536, + "id": 2578, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -42167,13 +41159,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1636, + "line": 1657, "character": 4 } ], "type": { "type": "reference", - "id": 2297, + "id": 2339, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -42182,7 +41174,7 @@ } }, { - "id": 2553, + "id": 2595, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -42206,7 +41198,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1916, + "line": 1937, "character": 4 } ], @@ -42220,7 +41212,7 @@ } }, { - "id": 2527, + "id": 2569, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -42269,7 +41261,7 @@ } }, { - "id": 2512, + "id": 2554, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -42298,7 +41290,7 @@ ], "type": { "type": "reference", - "id": 2723, + "id": 2766, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -42307,7 +41299,7 @@ } }, { - "id": 2540, + "id": 2582, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -42335,7 +41327,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1694, + "line": 1715, "character": 4 } ], @@ -42349,7 +41341,7 @@ } }, { - "id": 2467, + "id": 2509, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -42391,7 +41383,7 @@ } }, { - "id": 2520, + "id": 2562, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -42429,7 +41421,7 @@ } }, { - "id": 2504, + "id": 2546, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42467,7 +41459,7 @@ } }, { - "id": 2503, + "id": 2545, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42499,7 +41491,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -42509,7 +41501,7 @@ } }, { - "id": 2516, + "id": 2558, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42550,7 +41542,7 @@ } }, { - "id": 2547, + "id": 2589, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -42578,7 +41570,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1812, + "line": 1833, "character": 4 } ], @@ -42592,7 +41584,7 @@ } }, { - "id": 2552, + "id": 2594, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -42620,7 +41612,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1900, + "line": 1921, "character": 4 } ], @@ -42634,7 +41626,7 @@ } }, { - "id": 2541, + "id": 2583, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -42662,7 +41654,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1710, + "line": 1731, "character": 4 } ], @@ -42676,7 +41668,7 @@ } }, { - "id": 2523, + "id": 2565, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -42714,7 +41706,7 @@ } }, { - "id": 2498, + "id": 2540, "name": "enableLiveboardDataCache", "kind": 1024, "kindString": "Property", @@ -42747,7 +41739,7 @@ } }, { - "id": 2495, + "id": 2537, "name": "enableStopAnswerGenerationEmbed", "kind": 1024, "kindString": "Property", @@ -42781,7 +41773,7 @@ } }, { - "id": 2517, + "id": 2559, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42819,7 +41811,7 @@ } }, { - "id": 2469, + "id": 2511, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -42856,7 +41848,7 @@ } }, { - "id": 2537, + "id": 2579, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -42880,7 +41872,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1649, + "line": 1670, "character": 4 } ], @@ -42894,7 +41886,7 @@ } }, { - "id": 2538, + "id": 2580, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -42918,7 +41910,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1662, + "line": 1683, "character": 4 } ], @@ -42932,7 +41924,7 @@ } }, { - "id": 2519, + "id": 2561, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42969,7 +41961,7 @@ } }, { - "id": 2500, + "id": 2542, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42999,7 +41991,7 @@ ], "type": { "type": "reference", - "id": 2682, + "id": 2725, "name": "FrameParams" }, "inheritedFrom": { @@ -43008,7 +42000,7 @@ } }, { - "id": 2466, + "id": 2508, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -43042,7 +42034,7 @@ } }, { - "id": 2505, + "id": 2547, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -43078,7 +42070,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -43088,7 +42080,7 @@ } }, { - "id": 2484, + "id": 2526, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -43125,7 +42117,7 @@ } }, { - "id": 2550, + "id": 2592, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -43153,7 +42145,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1867, + "line": 1888, "character": 4 } ], @@ -43167,7 +42159,7 @@ } }, { - "id": 2543, + "id": 2585, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -43195,7 +42187,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1748, + "line": 1769, "character": 4 } ], @@ -43209,7 +42201,7 @@ } }, { - "id": 2479, + "id": 2521, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -43243,7 +42235,7 @@ } }, { - "id": 2513, + "id": 2555, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -43281,7 +42273,7 @@ } }, { - "id": 2533, + "id": 2575, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -43304,7 +42296,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8393, + "line": 8431, "character": 4 } ], @@ -43318,7 +42310,7 @@ } }, { - "id": 2532, + "id": 2574, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -43341,7 +42333,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8376, + "line": 8414, "character": 4 } ], @@ -43358,7 +42350,7 @@ } }, { - "id": 2554, + "id": 2596, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -43382,7 +42374,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1934, + "line": 1955, "character": 4 } ], @@ -43396,7 +42388,7 @@ } }, { - "id": 2488, + "id": 2530, "name": "isContinuousLiveboardPDFEnabled", "kind": 1024, "kindString": "Property", @@ -43430,7 +42422,7 @@ } }, { - "id": 2556, + "id": 2598, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -43454,7 +42446,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1966, + "line": 1987, "character": 4 } ], @@ -43468,7 +42460,7 @@ } }, { - "id": 2490, + "id": 2532, "name": "isGranularXLSXCSVSchedulesEnabled", "kind": 1024, "kindString": "Property", @@ -43502,7 +42494,7 @@ } }, { - "id": 2555, + "id": 2597, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -43526,7 +42518,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1949, + "line": 1970, "character": 4 } ], @@ -43540,7 +42532,7 @@ } }, { - "id": 2548, + "id": 2590, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -43568,7 +42560,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1829, + "line": 1850, "character": 4 } ], @@ -43582,7 +42574,7 @@ } }, { - "id": 2546, + "id": 2588, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -43606,7 +42598,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1795, + "line": 1816, "character": 4 } ], @@ -43620,7 +42612,7 @@ } }, { - "id": 2558, + "id": 2600, "name": "isLiveboardMasterpiecesEnabled", "kind": 1024, "kindString": "Property", @@ -43648,7 +42640,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1998, + "line": 2019, "character": 4 } ], @@ -43662,7 +42654,7 @@ } }, { - "id": 2486, + "id": 2528, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -43699,7 +42691,7 @@ } }, { - "id": 2489, + "id": 2531, "name": "isLiveboardXLSXCSVDownloadEnabled", "kind": 1024, "kindString": "Property", @@ -43733,7 +42725,7 @@ } }, { - "id": 2531, + "id": 2573, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -43753,7 +42745,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8360, + "line": 8398, "character": 4 } ], @@ -43767,7 +42759,7 @@ } }, { - "id": 2487, + "id": 2529, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -43801,7 +42793,7 @@ } }, { - "id": 2542, + "id": 2584, "name": "isThisPeriodInDateFiltersEnabled", "kind": 1024, "kindString": "Property", @@ -43825,7 +42817,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1726, + "line": 1747, "character": 4 } ], @@ -43839,7 +42831,7 @@ } }, { - "id": 2491, + "id": 2533, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -43876,7 +42868,7 @@ } }, { - "id": 2492, + "id": 2534, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -43910,7 +42902,7 @@ } }, { - "id": 2522, + "id": 2564, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -43948,7 +42940,7 @@ } }, { - "id": 2470, + "id": 2512, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -43982,7 +42974,7 @@ } }, { - "id": 2476, + "id": 2518, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -44016,7 +43008,7 @@ } }, { - "id": 2507, + "id": 2549, "name": "locale", "kind": 1024, "kindString": "Property", @@ -44054,7 +43046,7 @@ } }, { - "id": 2468, + "id": 2510, "name": "minimumHeight", "kind": 1024, "kindString": "Property", @@ -44091,7 +43083,7 @@ } }, { - "id": 2559, + "id": 2601, "name": "newChartsLibrary", "kind": 1024, "kindString": "Property", @@ -44119,7 +43111,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2014, + "line": 2035, "character": 4 } ], @@ -44133,7 +43125,7 @@ } }, { - "id": 2521, + "id": 2563, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -44171,7 +43163,7 @@ } }, { - "id": 2478, + "id": 2520, "name": "personalizedViewId", "kind": 1024, "kindString": "Property", @@ -44205,7 +43197,7 @@ } }, { - "id": 2515, + "id": 2557, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -44243,7 +43235,7 @@ } }, { - "id": 2473, + "id": 2515, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -44277,7 +43269,7 @@ } }, { - "id": 2524, + "id": 2566, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -44315,7 +43307,7 @@ } }, { - "id": 2528, + "id": 2570, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -44356,7 +43348,7 @@ } }, { - "id": 2534, + "id": 2576, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -44380,7 +43372,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1600, + "line": 1621, "character": 4 } ], @@ -44388,7 +43380,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1935, "name": "RuntimeFilter" } }, @@ -44398,7 +43390,7 @@ } }, { - "id": 2535, + "id": 2577, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -44422,7 +43414,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1621, + "line": 1642, "character": 4 } ], @@ -44430,7 +43422,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2962, + "id": 3005, "name": "RuntimeParameter" } }, @@ -44440,7 +43432,7 @@ } }, { - "id": 2529, + "id": 2571, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -44481,7 +43473,7 @@ } }, { - "id": 2526, + "id": 2568, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -44518,7 +43510,7 @@ } }, { - "id": 2545, + "id": 2587, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -44546,7 +43538,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1780, + "line": 1801, "character": 4 } ], @@ -44560,7 +43552,7 @@ } }, { - "id": 2551, + "id": 2593, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -44588,7 +43580,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1884, + "line": 1905, "character": 4 } ], @@ -44602,7 +43594,7 @@ } }, { - "id": 2544, + "id": 2586, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -44630,7 +43622,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1764, + "line": 1785, "character": 4 } ], @@ -44644,7 +43636,7 @@ } }, { - "id": 2549, + "id": 2591, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -44672,7 +43664,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1846, + "line": 1867, "character": 4 } ], @@ -44686,7 +43678,7 @@ } }, { - "id": 2557, + "id": 2599, "name": "showMaskedFilterChip", "kind": 1024, "kindString": "Property", @@ -44714,7 +43706,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1982, + "line": 2003, "character": 4 } ], @@ -44728,7 +43720,7 @@ } }, { - "id": 2480, + "id": 2522, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -44762,7 +43754,7 @@ } }, { - "id": 2493, + "id": 2535, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -44795,7 +43787,7 @@ } }, { - "id": 2496, + "id": 2538, "name": "spotterChatConfig", "kind": 1024, "kindString": "Property", @@ -44825,12 +43817,12 @@ ], "type": { "type": "reference", - "id": 1467, + "id": 1503, "name": "SpotterChatViewConfig" } }, { - "id": 2497, + "id": 2539, "name": "spotterViz", "kind": 1024, "kindString": "Property", @@ -44860,12 +43852,12 @@ ], "type": { "type": "reference", - "id": 2560, + "id": 2602, "name": "SpotterVizConfig" } }, { - "id": 2494, + "id": 2536, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -44903,7 +43895,7 @@ } }, { - "id": 2530, + "id": 2572, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -44944,7 +43936,7 @@ } }, { - "id": 2506, + "id": 2548, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -44980,7 +43972,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -44990,7 +43982,7 @@ } }, { - "id": 2485, + "id": 2527, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -45027,7 +44019,7 @@ } }, { - "id": 2474, + "id": 2516, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -45064,7 +44056,7 @@ } }, { - "id": 2472, + "id": 2514, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -45103,86 +44095,86 @@ "title": "Properties", "kind": 1024, "children": [ - 2477, - 2508, - 2539, - 2536, - 2553, - 2527, - 2512, - 2540, - 2467, - 2520, - 2504, - 2503, - 2516, - 2547, - 2552, - 2541, - 2523, - 2498, - 2495, - 2517, - 2469, - 2537, - 2538, 2519, - 2500, - 2466, - 2505, - 2484, 2550, - 2543, - 2479, - 2513, - 2533, - 2532, + 2581, + 2578, + 2595, + 2569, 2554, - 2488, - 2556, - 2490, - 2555, - 2548, + 2582, + 2509, + 2562, 2546, + 2545, 2558, - 2486, - 2489, - 2531, - 2487, - 2542, - 2491, - 2492, - 2522, - 2470, - 2476, - 2507, - 2468, + 2589, + 2594, + 2583, + 2565, + 2540, + 2537, 2559, + 2511, + 2579, + 2580, + 2561, + 2542, + 2508, + 2547, + 2526, + 2592, + 2585, 2521, - 2478, - 2515, - 2473, - 2524, + 2555, + 2575, + 2574, + 2596, + 2530, + 2598, + 2532, + 2597, + 2590, + 2588, + 2600, 2528, - 2534, - 2535, + 2531, + 2573, 2529, - 2526, - 2545, - 2551, - 2544, + 2584, + 2533, + 2534, + 2564, + 2512, + 2518, 2549, + 2510, + 2601, + 2563, + 2520, 2557, - 2480, - 2493, - 2496, - 2497, - 2494, - 2530, - 2506, - 2485, - 2474, - 2472 + 2515, + 2566, + 2570, + 2576, + 2577, + 2571, + 2568, + 2587, + 2593, + 2586, + 2591, + 2599, + 2522, + 2535, + 2538, + 2539, + 2536, + 2572, + 2548, + 2527, + 2516, + 2514 ] } ], @@ -45209,7 +44201,7 @@ ] }, { - "id": 1893, + "id": 1935, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -45219,7 +44211,7 @@ }, "children": [ { - "id": 1894, + "id": 1936, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -45230,7 +44222,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2228, + "line": 2249, "character": 4 } ], @@ -45240,7 +44232,7 @@ } }, { - "id": 1895, + "id": 1937, "name": "operator", "kind": 1024, "kindString": "Property", @@ -45251,18 +44243,18 @@ "sources": [ { "fileName": "types.ts", - "line": 2232, + "line": 2253, "character": 4 } ], "type": { "type": "reference", - "id": 1897, + "id": 1939, "name": "RuntimeFilterOp" } }, { - "id": 1896, + "id": 1938, "name": "values", "kind": 1024, "kindString": "Property", @@ -45273,7 +44265,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2238, + "line": 2259, "character": 4 } ], @@ -45308,22 +44300,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1894, - 1895, - 1896 + 1936, + 1937, + 1938 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2224, + "line": 2245, "character": 17 } ] }, { - "id": 2962, + "id": 3005, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -45333,7 +44325,7 @@ }, "children": [ { - "id": 2963, + "id": 3006, "name": "name", "kind": 1024, "kindString": "Property", @@ -45344,7 +44336,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2248, + "line": 2269, "character": 4 } ], @@ -45354,7 +44346,7 @@ } }, { - "id": 2964, + "id": 3007, "name": "value", "kind": 1024, "kindString": "Property", @@ -45365,7 +44357,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2252, + "line": 2273, "character": 4 } ], @@ -45393,21 +44385,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2963, - 2964 + 3006, + 3007 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2244, + "line": 2265, "character": 17 } ] }, { - "id": 2415, + "id": 2457, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -45422,7 +44414,7 @@ }, "children": [ { - "id": 2430, + "id": 2472, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -45453,20 +44445,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2431, + "id": 2473, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2432, + "id": 2474, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2433, + "id": 2475, "name": "key", "kind": 32768, "flags": {}, @@ -45502,7 +44494,7 @@ } }, { - "id": 2461, + "id": 2503, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -45530,7 +44522,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1678, + "line": 1699, "character": 4 } ], @@ -45544,7 +44536,7 @@ } }, { - "id": 2458, + "id": 2500, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -45568,13 +44560,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1636, + "line": 1657, "character": 4 } ], "type": { "type": "reference", - "id": 2297, + "id": 2339, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -45583,7 +44575,7 @@ } }, { - "id": 2449, + "id": 2491, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -45632,7 +44624,7 @@ } }, { - "id": 2434, + "id": 2476, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -45661,7 +44653,7 @@ ], "type": { "type": "reference", - "id": 2723, + "id": 2766, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -45670,7 +44662,7 @@ } }, { - "id": 2462, + "id": 2504, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -45698,7 +44690,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1694, + "line": 1715, "character": 4 } ], @@ -45712,7 +44704,7 @@ } }, { - "id": 2417, + "id": 2459, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -45746,7 +44738,7 @@ } }, { - "id": 2416, + "id": 2458, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -45787,7 +44779,7 @@ } }, { - "id": 2442, + "id": 2484, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -45825,7 +44817,7 @@ } }, { - "id": 2426, + "id": 2468, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -45863,7 +44855,7 @@ } }, { - "id": 2425, + "id": 2467, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -45895,7 +44887,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -45905,7 +44897,7 @@ } }, { - "id": 2438, + "id": 2480, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -45946,7 +44938,7 @@ } }, { - "id": 2463, + "id": 2505, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -45974,7 +44966,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1710, + "line": 1731, "character": 4 } ], @@ -45988,7 +44980,7 @@ } }, { - "id": 2445, + "id": 2487, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -46026,7 +45018,7 @@ } }, { - "id": 2439, + "id": 2481, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -46064,7 +45056,7 @@ } }, { - "id": 2459, + "id": 2501, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -46088,7 +45080,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1649, + "line": 1670, "character": 4 } ], @@ -46102,7 +45094,7 @@ } }, { - "id": 2460, + "id": 2502, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -46126,7 +45118,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1662, + "line": 1683, "character": 4 } ], @@ -46140,7 +45132,7 @@ } }, { - "id": 2420, + "id": 2462, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -46174,7 +45166,7 @@ } }, { - "id": 2441, + "id": 2483, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -46211,7 +45203,7 @@ } }, { - "id": 2422, + "id": 2464, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -46241,7 +45233,7 @@ ], "type": { "type": "reference", - "id": 2682, + "id": 2725, "name": "FrameParams" }, "inheritedFrom": { @@ -46250,7 +45242,7 @@ } }, { - "id": 2427, + "id": 2469, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -46286,7 +45278,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -46296,7 +45288,7 @@ } }, { - "id": 2435, + "id": 2477, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -46334,7 +45326,7 @@ } }, { - "id": 2455, + "id": 2497, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -46357,7 +45349,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8393, + "line": 8431, "character": 4 } ], @@ -46371,7 +45363,7 @@ } }, { - "id": 2454, + "id": 2496, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -46394,7 +45386,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8376, + "line": 8414, "character": 4 } ], @@ -46411,7 +45403,7 @@ } }, { - "id": 2453, + "id": 2495, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -46431,7 +45423,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8360, + "line": 8398, "character": 4 } ], @@ -46445,7 +45437,7 @@ } }, { - "id": 2464, + "id": 2506, "name": "isThisPeriodInDateFiltersEnabled", "kind": 1024, "kindString": "Property", @@ -46469,7 +45461,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1726, + "line": 1747, "character": 4 } ], @@ -46483,7 +45475,7 @@ } }, { - "id": 2444, + "id": 2486, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -46521,7 +45513,7 @@ } }, { - "id": 2429, + "id": 2471, "name": "locale", "kind": 1024, "kindString": "Property", @@ -46559,7 +45551,7 @@ } }, { - "id": 2443, + "id": 2485, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -46597,7 +45589,7 @@ } }, { - "id": 2437, + "id": 2479, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -46635,7 +45627,7 @@ } }, { - "id": 2446, + "id": 2488, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -46673,7 +45665,7 @@ } }, { - "id": 2450, + "id": 2492, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -46714,7 +45706,7 @@ } }, { - "id": 2456, + "id": 2498, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -46738,7 +45730,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1600, + "line": 1621, "character": 4 } ], @@ -46746,7 +45738,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1935, "name": "RuntimeFilter" } }, @@ -46756,7 +45748,7 @@ } }, { - "id": 2457, + "id": 2499, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -46780,7 +45772,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1621, + "line": 1642, "character": 4 } ], @@ -46788,7 +45780,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2962, + "id": 3005, "name": "RuntimeParameter" } }, @@ -46798,7 +45790,7 @@ } }, { - "id": 2419, + "id": 2461, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -46832,7 +45824,7 @@ } }, { - "id": 2451, + "id": 2493, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -46873,7 +45865,7 @@ } }, { - "id": 2448, + "id": 2490, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -46910,7 +45902,7 @@ } }, { - "id": 2452, + "id": 2494, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -46951,7 +45943,7 @@ } }, { - "id": 2418, + "id": 2460, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -46985,7 +45977,7 @@ } }, { - "id": 2428, + "id": 2470, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -47021,7 +46013,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -47036,46 +46028,46 @@ "title": "Properties", "kind": 1024, "children": [ - 2430, - 2461, + 2472, + 2503, + 2500, + 2491, + 2476, + 2504, + 2459, 2458, - 2449, - 2434, + 2484, + 2468, + 2467, + 2480, + 2505, + 2487, + 2481, + 2501, + 2502, 2462, - 2417, - 2416, - 2442, - 2426, - 2425, - 2438, - 2463, - 2445, - 2439, - 2459, - 2460, - 2420, - 2441, - 2422, - 2427, - 2435, - 2455, - 2454, - 2453, + 2483, 2464, - 2444, - 2429, - 2443, - 2437, - 2446, - 2450, - 2456, - 2457, - 2419, - 2451, - 2448, - 2452, - 2418, - 2428 + 2469, + 2477, + 2497, + 2496, + 2495, + 2506, + 2486, + 2471, + 2485, + 2479, + 2488, + 2492, + 2498, + 2499, + 2461, + 2493, + 2490, + 2494, + 2460, + 2470 ] } ], @@ -47098,7 +46090,7 @@ ] }, { - "id": 2352, + "id": 2394, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -47114,7 +46106,7 @@ }, "children": [ { - "id": 2390, + "id": 2432, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -47145,20 +46137,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2391, + "id": 2433, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2392, + "id": 2434, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2393, + "id": 2435, "name": "key", "kind": 32768, "flags": {}, @@ -47194,7 +46186,7 @@ } }, { - "id": 2364, + "id": 2406, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -47228,7 +46220,7 @@ } }, { - "id": 2354, + "id": 2396, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -47262,7 +46254,7 @@ } }, { - "id": 2353, + "id": 2395, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -47296,7 +46288,7 @@ } }, { - "id": 2377, + "id": 2419, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -47324,7 +46316,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1678, + "line": 1699, "character": 4 } ], @@ -47338,7 +46330,7 @@ } }, { - "id": 2367, + "id": 2409, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -47375,7 +46367,7 @@ } }, { - "id": 2374, + "id": 2416, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -47399,13 +46391,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1636, + "line": 1657, "character": 4 } ], "type": { "type": "reference", - "id": 2297, + "id": 2339, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -47414,7 +46406,7 @@ } }, { - "id": 2408, + "id": 2450, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -47463,7 +46455,7 @@ } }, { - "id": 2394, + "id": 2436, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -47492,7 +46484,7 @@ ], "type": { "type": "reference", - "id": 2723, + "id": 2766, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -47501,7 +46493,7 @@ } }, { - "id": 2368, + "id": 2410, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -47539,7 +46531,7 @@ } }, { - "id": 2378, + "id": 2420, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -47567,7 +46559,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1694, + "line": 1715, "character": 4 } ], @@ -47581,7 +46573,7 @@ } }, { - "id": 2360, + "id": 2402, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -47615,7 +46607,7 @@ } }, { - "id": 2359, + "id": 2401, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -47651,7 +46643,7 @@ } }, { - "id": 2402, + "id": 2444, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -47689,7 +46681,7 @@ } }, { - "id": 2386, + "id": 2428, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -47727,7 +46719,7 @@ } }, { - "id": 2385, + "id": 2427, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -47759,7 +46751,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -47769,7 +46761,7 @@ } }, { - "id": 2398, + "id": 2440, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -47810,7 +46802,7 @@ } }, { - "id": 2379, + "id": 2421, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -47838,7 +46830,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1710, + "line": 1731, "character": 4 } ], @@ -47852,7 +46844,7 @@ } }, { - "id": 2405, + "id": 2447, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -47890,7 +46882,7 @@ } }, { - "id": 2357, + "id": 2399, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -47924,7 +46916,7 @@ } }, { - "id": 2399, + "id": 2441, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -47962,7 +46954,7 @@ } }, { - "id": 2375, + "id": 2417, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -47986,7 +46978,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1649, + "line": 1670, "character": 4 } ], @@ -48000,7 +46992,7 @@ } }, { - "id": 2376, + "id": 2418, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -48024,7 +47016,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1662, + "line": 1683, "character": 4 } ], @@ -48038,7 +47030,7 @@ } }, { - "id": 2363, + "id": 2405, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -48072,7 +47064,7 @@ } }, { - "id": 2401, + "id": 2443, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -48109,7 +47101,7 @@ } }, { - "id": 2369, + "id": 2411, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -48147,7 +47139,7 @@ } }, { - "id": 2358, + "id": 2400, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -48181,7 +47173,7 @@ } }, { - "id": 2382, + "id": 2424, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -48211,7 +47203,7 @@ ], "type": { "type": "reference", - "id": 2682, + "id": 2725, "name": "FrameParams" }, "inheritedFrom": { @@ -48220,7 +47212,7 @@ } }, { - "id": 2387, + "id": 2429, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -48256,7 +47248,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -48266,7 +47258,7 @@ } }, { - "id": 2355, + "id": 2397, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -48300,7 +47292,7 @@ } }, { - "id": 2356, + "id": 2398, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -48334,7 +47326,7 @@ } }, { - "id": 2365, + "id": 2407, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -48368,7 +47360,7 @@ } }, { - "id": 2395, + "id": 2437, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -48406,7 +47398,7 @@ } }, { - "id": 2414, + "id": 2456, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -48429,7 +47421,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8393, + "line": 8431, "character": 4 } ], @@ -48443,7 +47435,7 @@ } }, { - "id": 2413, + "id": 2455, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -48466,7 +47458,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8376, + "line": 8414, "character": 4 } ], @@ -48483,7 +47475,7 @@ } }, { - "id": 2412, + "id": 2454, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -48503,7 +47495,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8360, + "line": 8398, "character": 4 } ], @@ -48517,7 +47509,7 @@ } }, { - "id": 2380, + "id": 2422, "name": "isThisPeriodInDateFiltersEnabled", "kind": 1024, "kindString": "Property", @@ -48541,7 +47533,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1726, + "line": 1747, "character": 4 } ], @@ -48555,7 +47547,7 @@ } }, { - "id": 2404, + "id": 2446, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -48593,7 +47585,7 @@ } }, { - "id": 2389, + "id": 2431, "name": "locale", "kind": 1024, "kindString": "Property", @@ -48631,7 +47623,7 @@ } }, { - "id": 2370, + "id": 2412, "name": "newChartsLibrary", "kind": 1024, "kindString": "Property", @@ -48669,7 +47661,7 @@ } }, { - "id": 2403, + "id": 2445, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -48707,7 +47699,7 @@ } }, { - "id": 2397, + "id": 2439, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -48745,7 +47737,7 @@ } }, { - "id": 2409, + "id": 2451, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -48786,7 +47778,7 @@ } }, { - "id": 2372, + "id": 2414, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -48810,7 +47802,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1600, + "line": 1621, "character": 4 } ], @@ -48818,7 +47810,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1935, "name": "RuntimeFilter" } }, @@ -48828,7 +47820,7 @@ } }, { - "id": 2373, + "id": 2415, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -48852,7 +47844,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1621, + "line": 1642, "character": 4 } ], @@ -48860,7 +47852,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2962, + "id": 3005, "name": "RuntimeParameter" } }, @@ -48870,7 +47862,7 @@ } }, { - "id": 2362, + "id": 2404, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -48900,7 +47892,7 @@ } }, { - "id": 2361, + "id": 2403, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -48929,7 +47921,7 @@ } }, { - "id": 2410, + "id": 2452, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -48970,7 +47962,7 @@ } }, { - "id": 2407, + "id": 2449, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -49007,7 +47999,7 @@ } }, { - "id": 2411, + "id": 2453, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -49048,7 +48040,7 @@ } }, { - "id": 2366, + "id": 2408, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -49078,7 +48070,7 @@ } }, { - "id": 2388, + "id": 2430, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -49114,7 +48106,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -49124,7 +48116,7 @@ } }, { - "id": 2371, + "id": 2413, "name": "visualOverrides", "kind": 1024, "kindString": "Property", @@ -49149,7 +48141,7 @@ ], "type": { "type": "reference", - "id": 3129, + "id": 3137, "name": "VisualizationOverrides" } } @@ -49159,59 +48151,59 @@ "title": "Properties", "kind": 1024, "children": [ - 2390, - 2364, - 2354, - 2353, - 2377, - 2367, - 2374, - 2408, - 2394, - 2368, - 2378, - 2360, - 2359, + 2432, + 2406, + 2396, + 2395, + 2419, + 2409, + 2416, + 2450, + 2436, + 2410, + 2420, 2402, - 2386, - 2385, - 2398, - 2379, - 2405, - 2357, - 2399, - 2375, - 2376, - 2363, 2401, - 2369, - 2358, - 2382, - 2387, - 2355, - 2356, - 2365, - 2395, - 2414, - 2413, + 2444, + 2428, + 2427, + 2440, + 2421, + 2447, + 2399, + 2441, + 2417, + 2418, + 2405, + 2443, + 2411, + 2400, + 2424, + 2429, + 2397, + 2398, + 2407, + 2437, + 2456, + 2455, + 2454, + 2422, + 2446, + 2431, 2412, - 2380, + 2445, + 2439, + 2451, + 2414, + 2415, 2404, - 2389, - 2370, 2403, - 2397, - 2409, - 2372, - 2373, - 2362, - 2361, - 2410, - 2407, - 2411, - 2366, - 2388, - 2371 + 2452, + 2449, + 2453, + 2408, + 2430, + 2413 ] } ], @@ -49244,14 +48236,14 @@ ] }, { - "id": 1862, + "id": 1904, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1865, + "id": 1907, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -49266,14 +48258,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1866, + "id": 1908, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1868, + "id": 1910, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -49291,7 +48283,7 @@ } }, { - "id": 1867, + "id": 1909, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -49314,8 +48306,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1868, - 1867 + 1910, + 1909 ] } ] @@ -49323,7 +48315,7 @@ } }, { - "id": 1864, + "id": 1906, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -49341,7 +48333,7 @@ } }, { - "id": 1863, + "id": 1905, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -49364,9 +48356,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1865, - 1864, - 1863 + 1907, + 1906, + 1905 ] } ], @@ -49379,7 +48371,7 @@ ] }, { - "id": 1133, + "id": 1163, "name": "SpotterAgentEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -49395,7 +48387,7 @@ }, "children": [ { - "id": 1144, + "id": 1174, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -49426,20 +48418,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1145, + "id": 1175, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1146, + "id": 1176, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1147, + "id": 1177, "name": "key", "kind": 32768, "flags": {}, @@ -49475,7 +48467,7 @@ } }, { - "id": 1162, + "id": 1192, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -49524,7 +48516,7 @@ } }, { - "id": 1148, + "id": 1178, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -49553,7 +48545,7 @@ ], "type": { "type": "reference", - "id": 2723, + "id": 2766, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -49562,7 +48554,7 @@ } }, { - "id": 1156, + "id": 1186, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -49600,7 +48592,7 @@ } }, { - "id": 1140, + "id": 1170, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -49638,7 +48630,7 @@ } }, { - "id": 1139, + "id": 1169, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -49670,7 +48662,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -49680,7 +48672,7 @@ } }, { - "id": 1152, + "id": 1182, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -49721,7 +48713,7 @@ } }, { - "id": 1159, + "id": 1189, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -49759,7 +48751,7 @@ } }, { - "id": 1153, + "id": 1183, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -49797,7 +48789,7 @@ } }, { - "id": 1155, + "id": 1185, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -49834,7 +48826,7 @@ } }, { - "id": 1136, + "id": 1166, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -49864,7 +48856,7 @@ ], "type": { "type": "reference", - "id": 2682, + "id": 2725, "name": "FrameParams" }, "inheritedFrom": { @@ -49873,7 +48865,7 @@ } }, { - "id": 1141, + "id": 1171, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -49909,7 +48901,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -49919,7 +48911,7 @@ } }, { - "id": 1149, + "id": 1179, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -49957,7 +48949,7 @@ } }, { - "id": 1168, + "id": 1198, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -49980,7 +48972,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8393, + "line": 8431, "character": 4 } ], @@ -49994,7 +48986,7 @@ } }, { - "id": 1167, + "id": 1197, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -50017,7 +49009,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8376, + "line": 8414, "character": 4 } ], @@ -50034,7 +49026,7 @@ } }, { - "id": 1166, + "id": 1196, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -50054,7 +49046,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8360, + "line": 8398, "character": 4 } ], @@ -50068,7 +49060,7 @@ } }, { - "id": 1158, + "id": 1188, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -50106,7 +49098,7 @@ } }, { - "id": 1143, + "id": 1173, "name": "locale", "kind": 1024, "kindString": "Property", @@ -50144,7 +49136,7 @@ } }, { - "id": 1157, + "id": 1187, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -50182,7 +49174,7 @@ } }, { - "id": 1151, + "id": 1181, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -50220,7 +49212,7 @@ } }, { - "id": 1163, + "id": 1193, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -50261,7 +49253,7 @@ } }, { - "id": 1164, + "id": 1194, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -50302,7 +49294,7 @@ } }, { - "id": 1161, + "id": 1191, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -50339,7 +49331,7 @@ } }, { - "id": 1165, + "id": 1195, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -50380,7 +49372,7 @@ } }, { - "id": 1142, + "id": 1172, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -50416,7 +49408,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -50426,7 +49418,7 @@ } }, { - "id": 1134, + "id": 1164, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -50452,32 +49444,32 @@ "title": "Properties", "kind": 1024, "children": [ - 1144, - 1162, - 1148, - 1156, - 1140, - 1139, - 1152, - 1159, - 1153, - 1155, - 1136, - 1141, - 1149, - 1168, - 1167, + 1174, + 1192, + 1178, + 1186, + 1170, + 1169, + 1182, + 1189, + 1183, + 1185, 1166, - 1158, - 1143, - 1157, - 1151, - 1163, - 1164, - 1161, - 1165, - 1142, - 1134 + 1171, + 1179, + 1198, + 1197, + 1196, + 1188, + 1173, + 1187, + 1181, + 1193, + 1194, + 1191, + 1195, + 1172, + 1164 ] } ], @@ -50507,13 +49499,13 @@ "extendedBy": [ { "type": "reference", - "id": 1169, + "id": 1199, "name": "BodylessConversationViewConfig" } ] }, { - "id": 1467, + "id": 1503, "name": "SpotterChatViewConfig", "kind": 256, "kindString": "Interface", @@ -50533,7 +49525,7 @@ }, "children": [ { - "id": 1468, + "id": 1504, "name": "hideToolResponseCardBranding", "kind": 1024, "kindString": "Property", @@ -50562,7 +49554,7 @@ } }, { - "id": 1470, + "id": 1506, "name": "spotterFileUploadEnabled", "kind": 1024, "kindString": "Property", @@ -50596,7 +49588,7 @@ } }, { - "id": 1471, + "id": 1507, "name": "spotterFileUploadFileTypes", "kind": 1024, "kindString": "Property", @@ -50626,7 +49618,7 @@ } }, { - "id": 1469, + "id": 1505, "name": "toolResponseCardBrandingLabel", "kind": 1024, "kindString": "Property", @@ -50654,10 +49646,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1468, - 1470, - 1471, - 1469 + 1504, + 1506, + 1507, + 1505 ] } ], @@ -50670,7 +49662,7 @@ ] }, { - "id": 1416, + "id": 1452, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -50686,7 +49678,7 @@ }, "children": [ { - "id": 1442, + "id": 1478, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -50717,20 +49709,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1443, + "id": 1479, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1444, + "id": 1480, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1445, + "id": 1481, "name": "key", "kind": 32768, "flags": {}, @@ -50766,7 +49758,7 @@ } }, { - "id": 1460, + "id": 1496, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -50815,7 +49807,7 @@ } }, { - "id": 1446, + "id": 1482, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -50844,7 +49836,7 @@ ], "type": { "type": "reference", - "id": 2723, + "id": 2766, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -50853,7 +49845,7 @@ } }, { - "id": 1421, + "id": 1457, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -50891,7 +49883,7 @@ } }, { - "id": 1454, + "id": 1490, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -50929,7 +49921,7 @@ } }, { - "id": 1419, + "id": 1455, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -50963,7 +49955,7 @@ } }, { - "id": 1438, + "id": 1474, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -51001,7 +49993,7 @@ } }, { - "id": 1437, + "id": 1473, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -51033,7 +50025,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -51043,7 +50035,7 @@ } }, { - "id": 1450, + "id": 1486, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -51084,7 +50076,7 @@ } }, { - "id": 1457, + "id": 1493, "name": "enableLinkOverridesV2", "kind": 1024, "kindString": "Property", @@ -51122,7 +50114,7 @@ } }, { - "id": 1430, + "id": 1466, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -51160,7 +50152,7 @@ } }, { - "id": 1429, + "id": 1465, "name": "enableStopAnswerGenerationEmbed", "kind": 1024, "kindString": "Property", @@ -51194,7 +50186,7 @@ } }, { - "id": 1451, + "id": 1487, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -51232,7 +50224,7 @@ } }, { - "id": 1425, + "id": 1461, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -51266,7 +50258,7 @@ } }, { - "id": 1427, + "id": 1463, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -51300,7 +50292,7 @@ } }, { - "id": 1453, + "id": 1489, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -51337,7 +50329,7 @@ } }, { - "id": 1434, + "id": 1470, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -51367,7 +50359,7 @@ ], "type": { "type": "reference", - "id": 2682, + "id": 2725, "name": "FrameParams" }, "inheritedFrom": { @@ -51376,7 +50368,7 @@ } }, { - "id": 1439, + "id": 1475, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -51412,7 +50404,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -51422,7 +50414,7 @@ } }, { - "id": 1423, + "id": 1459, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -51456,7 +50448,7 @@ } }, { - "id": 1420, + "id": 1456, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -51490,7 +50482,7 @@ } }, { - "id": 1447, + "id": 1483, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -51528,7 +50520,7 @@ } }, { - "id": 1466, + "id": 1502, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -51551,7 +50543,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8393, + "line": 8431, "character": 4 } ], @@ -51565,7 +50557,7 @@ } }, { - "id": 1465, + "id": 1501, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -51588,7 +50580,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8376, + "line": 8414, "character": 4 } ], @@ -51605,7 +50597,7 @@ } }, { - "id": 1464, + "id": 1500, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -51625,7 +50617,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8360, + "line": 8398, "character": 4 } ], @@ -51639,7 +50631,7 @@ } }, { - "id": 1456, + "id": 1492, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -51677,7 +50669,7 @@ } }, { - "id": 1441, + "id": 1477, "name": "locale", "kind": 1024, "kindString": "Property", @@ -51715,7 +50707,7 @@ } }, { - "id": 1455, + "id": 1491, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -51753,7 +50745,7 @@ } }, { - "id": 1449, + "id": 1485, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -51791,7 +50783,7 @@ } }, { - "id": 1461, + "id": 1497, "name": "refreshAuthTokenOnNearExpiry", "kind": 1024, "kindString": "Property", @@ -51832,7 +50824,7 @@ } }, { - "id": 1424, + "id": 1460, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -51864,13 +50856,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1935, "name": "RuntimeFilter" } } }, { - "id": 1426, + "id": 1462, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -51902,13 +50894,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2962, + "id": 3005, "name": "RuntimeParameter" } } }, { - "id": 1418, + "id": 1454, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -51931,7 +50923,7 @@ } }, { - "id": 1462, + "id": 1498, "name": "shouldBypassPayloadValidation", "kind": 1024, "kindString": "Property", @@ -51972,7 +50964,7 @@ } }, { - "id": 1459, + "id": 1495, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -52009,7 +51001,7 @@ } }, { - "id": 1422, + "id": 1458, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -52043,7 +51035,7 @@ } }, { - "id": 1432, + "id": 1468, "name": "spotterChatConfig", "kind": 1024, "kindString": "Property", @@ -52073,12 +51065,12 @@ ], "type": { "type": "reference", - "id": 1467, + "id": 1503, "name": "SpotterChatViewConfig" } }, { - "id": 1431, + "id": 1467, "name": "spotterSidebarConfig", "kind": 1024, "kindString": "Property", @@ -52108,12 +51100,12 @@ ], "type": { "type": "reference", - "id": 1472, + "id": 1508, "name": "SpotterSidebarViewConfig" } }, { - "id": 1428, + "id": 1464, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -52151,7 +51143,7 @@ } }, { - "id": 1463, + "id": 1499, "name": "useHostEventsV2", "kind": 1024, "kindString": "Property", @@ -52192,7 +51184,7 @@ } }, { - "id": 1440, + "id": 1476, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -52228,7 +51220,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2123, + "id": 2165, "name": "Action" } }, @@ -52238,7 +51230,7 @@ } }, { - "id": 1417, + "id": 1453, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -52264,47 +51256,47 @@ "title": "Properties", "kind": 1024, "children": [ - 1442, - 1460, - 1446, - 1421, - 1454, - 1419, - 1438, - 1437, - 1450, + 1478, + 1496, + 1482, 1457, - 1430, - 1429, - 1451, - 1425, - 1427, - 1453, - 1434, - 1439, - 1423, - 1420, - 1447, + 1490, + 1455, + 1474, + 1473, + 1486, + 1493, 1466, 1465, - 1464, - 1456, - 1441, - 1455, - 1449, + 1487, 1461, - 1424, - 1426, - 1418, - 1462, - 1459, - 1422, - 1432, - 1431, - 1428, 1463, - 1440, - 1417 + 1489, + 1470, + 1475, + 1459, + 1456, + 1483, + 1502, + 1501, + 1500, + 1492, + 1477, + 1491, + 1485, + 1497, + 1460, + 1462, + 1454, + 1498, + 1495, + 1458, + 1468, + 1467, + 1464, + 1499, + 1476, + 1453 ] } ], @@ -52334,13 +51326,13 @@ "extendedBy": [ { "type": "reference", - "id": 1484, + "id": 1520, "name": "ConversationViewConfig" } ] }, { - "id": 1472, + "id": 1508, "name": "SpotterSidebarViewConfig", "kind": 256, "kindString": "Interface", @@ -52360,7 +51352,7 @@ }, "children": [ { - "id": 1473, + "id": 1509, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -52393,7 +51385,7 @@ } }, { - "id": 1481, + "id": 1517, "name": "spotterBestPracticesLabel", "kind": 1024, "kindString": "Property", @@ -52422,7 +51414,7 @@ } }, { - "id": 1477, + "id": 1513, "name": "spotterChatDeleteLabel", "kind": 1024, "kindString": "Property", @@ -52451,7 +51443,7 @@ } }, { - "id": 1476, + "id": 1512, "name": "spotterChatRenameLabel", "kind": 1024, "kindString": "Property", @@ -52480,7 +51472,7 @@ } }, { - "id": 1482, + "id": 1518, "name": "spotterConversationsBatchSize", "kind": 1024, "kindString": "Property", @@ -52513,7 +51505,7 @@ } }, { - "id": 1478, + "id": 1514, "name": "spotterDeleteConversationModalTitle", "kind": 1024, "kindString": "Property", @@ -52542,7 +51534,7 @@ } }, { - "id": 1480, + "id": 1516, "name": "spotterDocumentationUrl", "kind": 1024, "kindString": "Property", @@ -52571,7 +51563,7 @@ } }, { - "id": 1483, + "id": 1519, "name": "spotterNewChatButtonTitle", "kind": 1024, "kindString": "Property", @@ -52600,7 +51592,7 @@ } }, { - "id": 1479, + "id": 1515, "name": "spotterPastConversationAlertMessage", "kind": 1024, "kindString": "Property", @@ -52629,7 +51621,7 @@ } }, { - "id": 1475, + "id": 1511, "name": "spotterSidebarDefaultExpanded", "kind": 1024, "kindString": "Property", @@ -52662,7 +51654,7 @@ } }, { - "id": 1474, + "id": 1510, "name": "spotterSidebarTitle", "kind": 1024, "kindString": "Property", @@ -52696,17 +51688,17 @@ "title": "Properties", "kind": 1024, "children": [ - 1473, - 1481, - 1477, - 1476, - 1482, - 1478, - 1480, - 1483, - 1479, - 1475, - 1474 + 1509, + 1517, + 1513, + 1512, + 1518, + 1514, + 1516, + 1519, + 1515, + 1511, + 1510 ] } ], @@ -52719,7 +51711,7 @@ ] }, { - "id": 2560, + "id": 2602, "name": "SpotterVizConfig", "kind": 256, "kindString": "Interface", @@ -52743,7 +51735,7 @@ }, "children": [ { - "id": 2562, + "id": 2604, "name": "brandHeadline", "kind": 1024, "kindString": "Property", @@ -52776,7 +51768,7 @@ } }, { - "id": 2561, + "id": 2603, "name": "brandName", "kind": 1024, "kindString": "Property", @@ -52809,7 +51801,7 @@ } }, { - "id": 2564, + "id": 2606, "name": "customStarterPrompts", "kind": 1024, "kindString": "Property", @@ -52836,13 +51828,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2567, + "id": 2609, "name": "SpotterVizStarterPrompt" } } }, { - "id": 2565, + "id": 2607, "name": "description", "kind": 1024, "kindString": "Property", @@ -52871,7 +51863,7 @@ } }, { - "id": 2563, + "id": 2605, "name": "hideStarterPrompts", "kind": 1024, "kindString": "Property", @@ -52904,7 +51896,7 @@ } }, { - "id": 2566, + "id": 2608, "name": "inputChatPlaceholder", "kind": 1024, "kindString": "Property", @@ -52938,12 +51930,12 @@ "title": "Properties", "kind": 1024, "children": [ - 2562, - 2561, - 2564, - 2565, - 2563, - 2566 + 2604, + 2603, + 2606, + 2607, + 2605, + 2608 ] } ], @@ -52956,7 +51948,7 @@ ] }, { - "id": 2567, + "id": 2609, "name": "SpotterVizStarterPrompt", "kind": 256, "kindString": "Interface", @@ -52976,7 +51968,7 @@ }, "children": [ { - "id": 2569, + "id": 2611, "name": "displayText", "kind": 1024, "kindString": "Property", @@ -52997,7 +51989,7 @@ } }, { - "id": 2570, + "id": 2612, "name": "fullPrompt", "kind": 1024, "kindString": "Property", @@ -53018,7 +52010,7 @@ } }, { - "id": 2568, + "id": 2610, "name": "id", "kind": 1024, "kindString": "Property", @@ -53044,9 +52036,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2569, - 2570, - 2568 + 2611, + 2612, + 2610 ] } ], @@ -53059,14 +52051,14 @@ ] }, { - "id": 1869, + "id": 1911, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1870, + "id": 1912, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -53084,7 +52076,7 @@ } }, { - "id": 1871, + "id": 1913, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -53107,8 +52099,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1870, - 1871 + 1912, + 1913 ] } ], @@ -53121,7 +52113,7 @@ ] }, { - "id": 3129, + "id": 3137, "name": "VisualizationOverrides", "kind": 256, "kindString": "Interface", @@ -53141,7 +52133,7 @@ }, "children": [ { - "id": 3130, + "id": 3138, "name": "chart", "kind": 1024, "kindString": "Property", @@ -53154,7 +52146,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8886, + "line": 8924, "character": 4 } ], @@ -53164,7 +52156,7 @@ } }, { - "id": 3131, + "id": 3139, "name": "table", "kind": 1024, "kindString": "Property", @@ -53177,7 +52169,7 @@ "sources": [ { "fileName": "types.ts", - "line": 8888, + "line": 8926, "character": 4 } ], @@ -53192,28 +52184,28 @@ "title": "Properties", "kind": 1024, "children": [ - 3130, - 3131 + 3138, + 3139 ] } ], "sources": [ { "fileName": "types.ts", - "line": 8884, + "line": 8922, "character": 17 } ] }, { - "id": 3001, + "id": 3044, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 3002, + "id": 3045, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -53221,7 +52213,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7881, + "line": 7919, "character": 4 } ], @@ -53234,7 +52226,7 @@ } }, { - "id": 3003, + "id": 3046, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -53242,7 +52234,7 @@ "sources": [ { "fileName": "types.ts", - "line": 7882, + "line": 7920, "character": 4 } ], @@ -53260,21 +52252,21 @@ "title": "Properties", "kind": 1024, "children": [ - 3002, - 3003 + 3045, + 3046 ] } ], "sources": [ { "fileName": "types.ts", - "line": 7880, + "line": 7918, "character": 17 } ] }, { - "id": 2736, + "id": 2779, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -53284,7 +52276,7 @@ }, "children": [ { - "id": 2738, + "id": 2781, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -53314,20 +52306,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2739, + "id": 2782, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2740, + "id": 2783, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2741, + "id": 2784, "name": "selector", "kind": 32768, "flags": {}, @@ -53340,7 +52332,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2742, + "id": 2785, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -53353,14 +52345,14 @@ } ], "indexSignature": { - "id": 2743, + "id": 2786, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2744, + "id": 2787, "name": "declaration", "kind": 32768, "flags": {}, @@ -53382,7 +52374,7 @@ } }, { - "id": 2737, + "id": 2780, "name": "variables", "kind": 1024, "kindString": "Property", @@ -53401,7 +52393,7 @@ ], "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "CustomCssVariables" } } @@ -53411,8 +52403,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2738, - 2737 + 2781, + 2780 ] } ], @@ -53717,7 +52709,64 @@ ] }, { - "id": 2706, + "id": 3136, + "name": "AutoMCPFrameRendererViewConfig", + "kind": 4194304, + "kindString": "Type alias", + "flags": {}, + "comment": { + "shortText": "Configuration for {@link startAutoMCPFrameRenderer}.", + "text": "Extends {@link BaseViewConfig} but omits params that are not applicable\nto the auto-frame renderer:\n- `preRenderId` / `usePrerenderedIfAvailable` / `doNotTrackPreRenderSize` —\n the renderer always replaces a live iframe in-place; prerender pools are not used.\n- `insertAsSibling` — insertion is always a same-position `replaceWith`; the\n container-append path is never taken.\n- `primaryAction` — a Liveboard/AppEmbed-specific feature; the renderer renders\n whatever route the MCP server specifies.\n- `enableV2Shell_experimental` — the renderer always uses the v2 URL format;\n this flag has no effect.\n" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1494, + "character": 12 + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "BaseViewConfig" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "preRenderId" + }, + { + "type": "literal", + "value": "usePrerenderedIfAvailable" + }, + { + "type": "literal", + "value": "doNotTrackPreRenderSize" + }, + { + "type": "literal", + "value": "insertAsSibling" + }, + { + "type": "literal", + "value": "primaryAction" + }, + { + "type": "literal", + "value": "enableV2Shell_experimental" + } + ] + } + ], + "name": "Omit" + } + }, + { + "id": 2749, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -53744,7 +52793,7 @@ } }, { - "id": 2710, + "id": 2753, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -53752,14 +52801,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2051, + "line": 2072, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2711, + "id": 2754, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -53776,13 +52825,13 @@ "sources": [ { "fileName": "types.ts", - "line": 2051, + "line": 2072, "character": 30 } ], "signatures": [ { - "id": 2712, + "id": 2755, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -53792,19 +52841,19 @@ }, "parameters": [ { - "id": 2713, + "id": 2756, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2718, + "id": 2761, "name": "MessagePayload" } }, { - "id": 2714, + "id": 2757, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -53814,7 +52863,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2715, + "id": 2758, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -53822,13 +52871,13 @@ "sources": [ { "fileName": "types.ts", - "line": 2058, + "line": 2079, "character": 16 } ], "signatures": [ { - "id": 2716, + "id": 2759, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -53838,7 +52887,7 @@ }, "parameters": [ { - "id": 2717, + "id": 2760, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -53869,7 +52918,7 @@ } }, { - "id": 2707, + "id": 2750, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -53886,21 +52935,21 @@ "sources": [ { "fileName": "types.ts", - "line": 2040, + "line": 2061, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2708, + "id": 2751, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2709, + "id": 2752, "name": "start", "kind": 1024, "kindString": "Property", @@ -53913,7 +52962,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2045, + "line": 2066, "character": 4 } ], @@ -53928,14 +52977,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2709 + 2752 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2040, + "line": 2061, "character": 29 } ] @@ -53943,7 +52992,7 @@ } }, { - "id": 2718, + "id": 2761, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -53960,21 +53009,21 @@ "sources": [ { "fileName": "types.ts", - "line": 2027, + "line": 2048, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2719, + "id": 2762, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2721, + "id": 2764, "name": "data", "kind": 1024, "kindString": "Property", @@ -53982,7 +53031,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2031, + "line": 2052, "character": 4 } ], @@ -53992,7 +53041,7 @@ } }, { - "id": 2722, + "id": 2765, "name": "status", "kind": 1024, "kindString": "Property", @@ -54002,7 +53051,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2033, + "line": 2054, "character": 4 } ], @@ -54012,7 +53061,7 @@ } }, { - "id": 2720, + "id": 2763, "name": "type", "kind": 1024, "kindString": "Property", @@ -54020,7 +53069,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2029, + "line": 2050, "character": 4 } ], @@ -54035,16 +53084,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2721, - 2722, - 2720 + 2764, + 2765, + 2763 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2027, + "line": 2048, "character": 29 } ] @@ -54102,7 +53151,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1785, + "id": 1827, "name": "AnswerService" } } @@ -54146,7 +53195,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 348, + "line": 362, "character": 13 } ], @@ -54214,7 +53263,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 415, + "line": 429, "character": 13 } ], @@ -54364,7 +53413,7 @@ ], "type": { "type": "reference", - "id": 1785, + "id": 1827, "name": "AnswerService" } }, @@ -54451,7 +53500,7 @@ }, "type": { "type": "reference", - "id": 2301, + "id": 2343, "name": "EmbedConfig" } } @@ -54510,7 +53559,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 239, + "line": 253, "character": 13 } ], @@ -54551,14 +53600,14 @@ }, "type": { "type": "reference", - "id": 2301, + "id": 2343, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1732, + "id": 1774, "name": "AuthEventEmitter" } } @@ -54575,7 +53624,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 298, + "line": 312, "character": 13 } ], @@ -54698,7 +53747,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2677, + "id": 2720, "name": "PrefetchFeatures" } } @@ -54780,7 +53829,7 @@ "sources": [ { "fileName": "embed/base.ts", - "line": 469, + "line": 483, "character": 13 } ], @@ -54826,7 +53875,7 @@ ] }, { - "id": 3174, + "id": 3182, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -54842,7 +53891,7 @@ ], "signatures": [ { - "id": 3175, + "id": 3183, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -54872,7 +53921,7 @@ ] }, { - "id": 3176, + "id": 3184, "name": "startAutoMCPFrameRenderer", "kind": 64, "kindString": "Function", @@ -54886,7 +53935,7 @@ ], "signatures": [ { - "id": 3177, + "id": 3185, "name": "startAutoMCPFrameRenderer", "kind": 4096, "kindString": "Call signature", @@ -54908,7 +53957,7 @@ }, "parameters": [ { - "id": 3178, + "id": 3186, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", @@ -54918,7 +53967,7 @@ }, "type": { "type": "reference", - "id": 3093, + "id": 3136, "name": "AutoMCPFrameRendererViewConfig" }, "defaultValue": "{}" @@ -55096,7 +54145,7 @@ ] }, { - "id": 2972, + "id": 3015, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -55110,7 +54159,7 @@ ], "signatures": [ { - "id": 2973, + "id": 3016, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -55120,7 +54169,7 @@ }, "parameters": [ { - "id": 2974, + "id": 3017, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -55132,7 +54181,7 @@ } }, { - "id": 2975, + "id": 3018, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -55143,7 +54192,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2976, + "id": 3019, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -55166,90 +54215,89 @@ "title": "Enumerations", "kind": 4, "children": [ - 2123, - 1730, - 1715, - 1722, - 1881, - 3137, - 3140, - 3144, - 2297, - 2113, - 3057, - 3053, - 3160, - 3049, - 2119, - 3066, - 1913, - 3089, - 2688, - 2994, - 2988, - 2699, - 2029, - 3062, + 2165, + 1772, + 1757, + 1764, + 1923, + 3145, + 3148, + 3152, + 2339, + 2155, + 3100, + 3096, + 3168, + 3092, + 2161, + 3109, + 1955, 3132, - 2998, + 2731, + 3037, + 3031, + 2742, + 2071, + 3105, + 3140, 3041, - 2965, - 1872, - 2677, - 2992, - 1897, - 3171, - 3167, - 3024 + 3084, + 3008, + 1914, + 2720, + 3035, + 1939, + 3179, + 3175, + 3067 ] }, { "title": "Classes", "kind": 128, "children": [ - 1785, - 877, - 1205, - 1535, - 637, - 248, + 1827, + 901, + 1235, + 1571, + 655, + 254, 58, - 1101, - 1236 + 1131, + 1266 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2571, - 1732, - 3093, - 1169, - 1484, - 3004, - 2745, - 2733, - 2723, - 2301, - 3083, - 2682, - 2465, - 1893, - 2962, - 2415, - 2352, - 1862, - 1133, - 1467, - 1416, - 1472, - 2560, - 2567, - 1869, - 3129, - 3001, - 2736, + 2613, + 1774, + 1199, + 1520, + 3047, + 2788, + 2776, + 2766, + 2343, + 3126, + 2725, + 2507, + 1935, + 3005, + 2457, + 2394, + 1904, + 1163, + 1503, + 1452, + 1508, + 2602, + 2609, + 1911, + 3137, + 3044, + 2779, 21, 28 ] @@ -55258,10 +54306,11 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2706, - 2710, - 2707, - 2718 + 3136, + 2749, + 2753, + 2750, + 2761 ] }, { @@ -55278,10 +54327,10 @@ 4, 7, 25, - 3174, - 3176, + 3182, + 3184, 40, - 2972 + 3015 ] } ],