diff --git a/src/embed/hostEventClient/contracts.ts b/src/embed/hostEventClient/contracts.ts index 0f2e07f1..731c9edb 100644 --- a/src/embed/hostEventClient/contracts.ts +++ b/src/embed/hostEventClient/contracts.ts @@ -1,4 +1,4 @@ -import { HostEvent } from '../../types'; +import { ContextType, HostEvent } from '../../types'; export enum UIPassthroughEvent { PinAnswerToLiveboard = 'addVizToPinboard', @@ -103,7 +103,7 @@ export type HostEventRequest = ? UIPassthroughRequest : any; -export type HostEventResponse = +export type HostEventResponse = HostEventT extends keyof EmbedApiHostEventMapping ? UIPassthroughResponse : any; @@ -111,5 +111,5 @@ export type HostEventResponse = // trigger response and request export type TriggerPayload = PayloadT | HostEventRequest; -export type TriggerResponse = - PayloadT extends HostEventRequest ? HostEventResponse : any; +export type TriggerResponse = + PayloadT extends HostEventRequest ? HostEventResponse : any; \ No newline at end of file diff --git a/src/embed/hostEventClient/host-event-client.spec.ts b/src/embed/hostEventClient/host-event-client.spec.ts index 316342b6..1d4830b5 100644 --- a/src/embed/hostEventClient/host-event-client.spec.ts +++ b/src/embed/hostEventClient/host-event-client.spec.ts @@ -54,6 +54,7 @@ describe('HostEventClient', () => { type: apiName, parameters, }, + undefined, ); expect(result).toEqual(await triggerResponse); }); @@ -148,6 +149,7 @@ describe('HostEventClient', () => { HostEvent.UIPassthrough, 'http://localhost', { parameters: payload, type: UIPassthroughEvent.PinAnswerToLiveboard }, + undefined, ); expect(result).toEqual(mockResponse.value); }); @@ -185,6 +187,7 @@ describe('HostEventClient', () => { parameters: payload, type: 'saveAnswer', }, + undefined, ); expect(result).toEqual({ answerId: 'newAnswer', ...mockResponse[0].value }); }); @@ -198,7 +201,7 @@ describe('HostEventClient', () => { const result = await client.triggerHostEvent(hostEvent, payload); - expect(client.hostEventFallback).toHaveBeenCalledWith(hostEvent, payload); + expect(client.hostEventFallback).toHaveBeenCalledWith(hostEvent, payload, undefined); expect(result).toEqual(mockResponse); }); @@ -223,6 +226,7 @@ describe('HostEventClient', () => { HostEvent.Pin, mockThoughtSpotHost, {}, + undefined, ); expect(result).toEqual([mockResponse]); }); @@ -248,6 +252,7 @@ describe('HostEventClient', () => { HostEvent.Save, mockThoughtSpotHost, {}, + undefined, ); expect(result).toEqual([mockResponse]); }); @@ -303,6 +308,7 @@ describe('HostEventClient', () => { parameters: { ...payload, pinboardId: 'test', newPinboardName: 'testLiveboard' }, type: 'addVizToPinboard', }, + undefined, ); expect(result).toEqual({ pinboardId: 'testLiveboard', diff --git a/src/embed/hostEventClient/host-event-client.ts b/src/embed/hostEventClient/host-event-client.ts index a98812ea..85d66406 100644 --- a/src/embed/hostEventClient/host-event-client.ts +++ b/src/embed/hostEventClient/host-event-client.ts @@ -1,4 +1,4 @@ -import { HostEvent } from '../../types'; +import { ContextType, HostEvent } from '../../types'; import { processTrigger as processTriggerService } from '../../utils/processTrigger'; import { getEmbedConfig } from '../embedConfig'; import { @@ -23,7 +23,7 @@ export class HostEventClient { * @param {any} data Data to send with the host event * @returns {Promise} - the response from the process trigger */ - protected async processTrigger(message: HostEvent, data: any): Promise { + protected async processTrigger(message: HostEvent, data: any, context?: ContextType): Promise { if (!this.iFrame) { throw new Error('Iframe element is not set'); } @@ -34,14 +34,16 @@ export class HostEventClient { message, thoughtspotHost, data, + context, ); } public async handleHostEventWithParam( apiName: UIPassthroughEventT, parameters: UIPassthroughRequest, + context?: ContextType, ): Promise> { - const response = (await this.triggerUIPassthroughApi(apiName, parameters)) + const response = (await this.triggerUIPassthroughApi(apiName, parameters, context)) ?.filter?.((r) => r.error || r.value)[0]; if (!response) { @@ -65,8 +67,9 @@ export class HostEventClient { public async hostEventFallback( hostEvent: HostEvent, data: any, + context?: ContextType, ): Promise { - return this.processTrigger(hostEvent, data); + return this.processTrigger(hostEvent, data, context); } /** @@ -80,20 +83,22 @@ export class HostEventClient { public async triggerUIPassthroughApi( apiName: UIPassthroughEventT, parameters: UIPassthroughRequest, + context?: ContextType, ): Promise> { const res = await this.processTrigger(HostEvent.UIPassthrough, { type: apiName, parameters, - }); + }, context); return res; } protected async handlePinEvent( payload: HostEventRequest, - ): Promise> { + context?: ContextType, + ): Promise> { if (!payload || !('newVizName' in payload)) { - return this.hostEventFallback(HostEvent.Pin, payload); + return this.hostEventFallback(HostEvent.Pin, payload, context); } const formattedPayload = { @@ -104,6 +109,7 @@ export class HostEventClient { const data = await this.handleHostEventWithParam( UIPassthroughEvent.PinAnswerToLiveboard, formattedPayload, + context as ContextType, ); return { @@ -114,14 +120,16 @@ export class HostEventClient { protected async handleSaveAnswerEvent( payload: HostEventRequest, + context?: ContextType, ): Promise { if (!payload || !('name' in payload) || !('description' in payload)) { // Save is the fallback for SaveAnswer - return this.hostEventFallback(HostEvent.Save, payload); + return this.hostEventFallback(HostEvent.Save, payload, context); } const data = await this.handleHostEventWithParam( UIPassthroughEvent.SaveAnswer, payload, + context as ContextType, ); return { ...data, @@ -132,19 +140,22 @@ export class HostEventClient { public async triggerHostEvent< HostEventT extends HostEvent, PayloadT, + ContextT extends ContextType, >( hostEvent: HostEventT, payload?: TriggerPayload, - ): Promise> { + context?: ContextT, + ): Promise> { switch (hostEvent) { case HostEvent.Pin: - return this.handlePinEvent(payload as HostEventRequest) as any; + return this.handlePinEvent(payload as HostEventRequest, context as ContextType) as any; case HostEvent.SaveAnswer: return this.handleSaveAnswerEvent( payload as HostEventRequest, + context as ContextType, ) as any; default: - return this.hostEventFallback(hostEvent, payload); + return this.hostEventFallback(hostEvent, payload, context); } } } diff --git a/src/embed/liveboard.spec.ts b/src/embed/liveboard.spec.ts index 2abc8c93..105f79e8 100644 --- a/src/embed/liveboard.spec.ts +++ b/src/embed/liveboard.spec.ts @@ -1530,7 +1530,7 @@ describe('Liveboard/viz embed tests', () => { await liveboardEmbed.trigger(HostEvent.Save); expect(mockProcessTrigger).toHaveBeenCalledWith(HostEvent.Save, { vizId: 'testViz', - }); + }, undefined); }); }); }); diff --git a/src/embed/liveboard.ts b/src/embed/liveboard.ts index 666e7261..a8a0f70e 100644 --- a/src/embed/liveboard.ts +++ b/src/embed/liveboard.ts @@ -22,6 +22,7 @@ import { LiveboardAppEmbedViewConfig, ErrorDetailsTypes, EmbedErrorCodes, + ContextType, } from '../types'; import { calculateVisibleElementData, getQueryParamString, isUndefined, isValidCssMargin } from '../utils'; import { getAuthPromise } from './base'; @@ -842,10 +843,11 @@ export class LiveboardEmbed extends V1Embed { * @param {any} data The payload to send with the message * @returns A promise that resolves with the response from the embedded app */ - public trigger( + public trigger( messageType: HostEventT, data: TriggerPayload = ({} as any), - ): Promise> { + context?: ContextT, + ): Promise> { const dataWithVizId: any = data; if (messageType === HostEvent.SetActiveTab) { this.setActiveTab(data as { tabId: string }); @@ -854,7 +856,7 @@ export class LiveboardEmbed extends V1Embed { if (typeof dataWithVizId === 'object' && this.viewConfig.vizId) { dataWithVizId.vizId = this.viewConfig.vizId; } - return super.trigger(messageType, dataWithVizId); + return super.trigger(messageType, dataWithVizId, context); } /** * Destroys the ThoughtSpot embed, and remove any nodes from the DOM. diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index 6644b879..97dd320d 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -31,6 +31,7 @@ import { DefaultAppInitData, ErrorDetailsTypes, EmbedErrorCodes, + ContextObject, } from '../types'; import { executeAfterWait, @@ -204,6 +205,7 @@ describe('Unit test case for ts embed', () => { parameters: payload, type: UIPassthroughEvent.PinAnswerToLiveboard, }, + undefined, ); }); }); @@ -224,6 +226,7 @@ describe('Unit test case for ts embed', () => { HostEvent.Save, 'http://tshost', {}, + undefined, ); }); }); @@ -245,6 +248,7 @@ describe('Unit test case for ts embed', () => { HostEvent.Save, 'http://tshost', false, + undefined, ); }); }); @@ -1332,6 +1336,7 @@ describe('Unit test case for ts embed', () => { HostEvent.InfoSuccess, 'http://tshost', expect.objectContaining({ info: expect.any(Object) }), + undefined, ); }); }); @@ -1468,6 +1473,7 @@ describe('Unit test case for ts embed', () => { HostEvent.InfoSuccess, 'http://tshost', expect.objectContaining({ info: expect.any(Object) }), + undefined, ); }); }); @@ -1482,6 +1488,7 @@ describe('Unit test case for ts embed', () => { HostEvent.InfoSuccess, 'http://tshost', expect.objectContaining({ info: expect.any(Object) }), + undefined, ); }); }); @@ -1496,6 +1503,7 @@ describe('Unit test case for ts embed', () => { HostEvent.InfoSuccess, 'http://tshost', expect.objectContaining({ info: expect.any(Object) }), + undefined, ); }); }); @@ -1510,6 +1518,7 @@ describe('Unit test case for ts embed', () => { HostEvent.InfoSuccess, 'http://tshost', expect.objectContaining({ info: expect.any(Object) }), + undefined, ); }); }); @@ -3159,6 +3168,59 @@ describe('Unit test case for ts embed', () => { expect(callback3).toHaveBeenCalledTimes(1); }); + describe('getCurrentContext', () => { + const mockContext: ContextObject = { + stack: [ + { + name: 'Liveboard', + type: 'Liveboard' as any, + objectIds: { liveboardId: 'lb-123' }, + }, + ], + currentContext: { + name: 'Liveboard', + type: 'Liveboard' as any, + objectIds: { liveboardId: 'lb-123' }, + }, + }; + + test('should return context when embed container is already loaded', async () => { + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + searchEmbed.isEmbedContainerLoaded = true; + + const triggerSpy = jest.spyOn(searchEmbed, 'trigger') + .mockResolvedValue(mockContext); + + const context = await searchEmbed.getCurrentContext(); + + expect(context).toEqual(mockContext); + expect(triggerSpy).toHaveBeenCalledWith(HostEvent.GetPageContext, {}); + }); + + test('should wait for embed container to load before returning context', async () => { + const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); + searchEmbed.isEmbedContainerLoaded = false; + + const triggerSpy = jest.spyOn(searchEmbed, 'trigger') + .mockResolvedValue(mockContext); + + const contextPromise = searchEmbed.getCurrentContext(); + + // Context should not be resolved yet + await executeAfterWait(() => { + expect(triggerSpy).not.toHaveBeenCalled(); + }, 10); + + // Simulate embed container becoming ready + searchEmbed['executeEmbedContainerReadyCallbacks'](); + + const context = await contextPromise; + + expect(context).toEqual(mockContext); + expect(triggerSpy).toHaveBeenCalledWith(HostEvent.GetPageContext, {}); + }); + }); + test('should register embed container event handlers during construction', () => { const searchEmbed = new SearchEmbed(getRootEl(), defaultViewConfig); @@ -4056,7 +4118,7 @@ describe('Destroy error handling', () => { }).not.toThrow(); expect(logSpy).toHaveBeenCalledWith('Error destroying TS Embed', expect.any(Error)); - logSpy.mockRestore(); + logSpy.mockReset(); }); }); @@ -4099,11 +4161,12 @@ describe('Fullscreen change handler behavior', () => { document.dispatchEvent(event); await executeAfterWait(() => { - expect(mockProcessTrigger).toHaveBeenCalledWith( + expect(mockProcessTrigger).toHaveBeenLastCalledWith( expect.any(Object), HostEvent.ExitPresentMode, expect.any(String), expect.any(Object), + undefined, ); }); }); @@ -4196,13 +4259,14 @@ describe('ShowPreRender with UpdateEmbedParams', () => { embed2.showPreRender(); await executeAfterWait(() => { - expect(mockProcessTrigger).toHaveBeenCalledWith( + expect(mockProcessTrigger).toHaveBeenLastCalledWith( expect.any(Object), HostEvent.UpdateEmbedParams, expect.any(String), expect.objectContaining({ liveboardId: 'updated-lb', }), + undefined, ); }); }); @@ -4231,7 +4295,7 @@ describe('ShowPreRender with UpdateEmbedParams', () => { embed2.showPreRender(); await executeAfterWait(() => { - expect(mockProcessTrigger).toHaveBeenCalledWith( + expect(mockProcessTrigger).toHaveBeenLastCalledWith( expect.any(Object), HostEvent.UpdateEmbedParams, expect.any(String), @@ -4251,6 +4315,7 @@ describe('ShowPreRender with UpdateEmbedParams', () => { }, ], }), + undefined, ); }); }); @@ -4283,7 +4348,7 @@ describe('ShowPreRender with UpdateEmbedParams', () => { embed2.showPreRender(); await executeAfterWait(() => { - expect(mockProcessTrigger).toHaveBeenCalledWith( + expect(mockProcessTrigger).toHaveBeenLastCalledWith( expect.any(Object), HostEvent.UpdateEmbedParams, expect.any(String), @@ -4298,6 +4363,7 @@ describe('ShowPreRender with UpdateEmbedParams', () => { }, ], }), + undefined, ); }); }); diff --git a/src/embed/ts-embed.ts b/src/embed/ts-embed.ts index 52c652df..b0efe554 100644 --- a/src/embed/ts-embed.ts +++ b/src/embed/ts-embed.ts @@ -60,6 +60,8 @@ import { EmbedErrorDetailsEvent, ErrorDetailsTypes, EmbedErrorCodes, + ContextType, + ContextObject, } from '../types'; import { uploadMixpanelEvent, MIXPANEL_EVENT } from '../mixpanel-service'; import { processEventData, processAuthFailure } from '../utils/processData'; @@ -75,6 +77,7 @@ 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 { getHostEventsConfig } from '../utils'; const { version } = pkgInfo; @@ -480,6 +483,7 @@ export class TsEmbed { hiddenListColumns: this.viewConfig.hiddenListColumns || [], customActions: customActionsResult.actions, ...getInterceptInitData(this.viewConfig), + ...getHostEventsConfig(this.viewConfig), }; return baseInitData; @@ -1347,10 +1351,11 @@ export class TsEmbed { * @param {any} data The payload to send with the message * @returns A promise that resolves with the response from the embedded app */ - public async trigger( + public async trigger( messageType: HostEventT, data: TriggerPayload = {} as any, - ): Promise> { + context?: ContextT, + ): Promise> { uploadMixpanelEvent(`${MIXPANEL_EVENT.VISUAL_SDK_TRIGGER}-${messageType}`); if (!this.isRendered) { @@ -1383,7 +1388,7 @@ export class TsEmbed { } // send an empty object, this is needed for liveboard default handlers - return this.hostEventClient.triggerHostEvent(messageType, data); + return this.hostEventClient.triggerHostEvent(messageType, data, context); } /** @@ -1425,6 +1430,20 @@ export class TsEmbed { return this.render(); } + /** + * Get the current context of the embedded TS component. + * @returns The current context object containing the page type and object ids. + * @version SDK: 1.45.2 | ThoughtSpot: 26.3.0.cl + */ + public async getCurrentContext(): Promise { + return new Promise((resolve) => { + this.executeAfterEmbedContainerLoaded(async () => { + const context = await this.trigger(HostEvent.GetPageContext, {}); + resolve(context); + }); + }); + } + /** * Creates the preRender shell * @param showPreRenderByDefault - Show the preRender after render, hidden by default diff --git a/src/index.ts b/src/index.ts index 17c89638..d9da0fbe 100644 --- a/src/index.ts +++ b/src/index.ts @@ -68,6 +68,7 @@ import { InterceptedApiType, EmbedErrorCodes, ErrorDetailsTypes, + ContextType, } from './types'; import { CustomCssVariables } from './css-variables'; import { SageEmbed, SageViewConfig } from './embed/sage'; @@ -121,6 +122,7 @@ export { RuntimeFilterOp, EmbedEvent, HostEvent, + ContextType, DataSourceVisualMode, Action, ContextMenuTriggerOptions, diff --git a/src/types.ts b/src/types.ts index 67ad8682..4eb4d721 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1120,6 +1120,34 @@ export interface BaseViewConfig extends ApiInterceptFlags { * ``` */ customActions?: CustomAction[]; + + /** + * This flag skips payload validation so events can be processed even if the payload is old, incomplete, or from a trusted system. + * @default false + * @version SDK: 1.45.2 | ThoughtSpot: 26.3.0.cl + * @example + * ```js + * const embed = new AppEmbed('#tsEmbed', { + * ... // other embed view config + * shouldBypassPayloadValidation:true, + * }) + * ``` + */ + shouldBypassPayloadValidation?: boolean; + + /** + * Flag to use host events v2. This is used to enable the new host events v2 API. + * @default false + * @version SDK: 1.45.2 | ThoughtSpot: 26.3.0.cl + * @example + * ```js + * const embed = new AppEmbed('#tsEmbed', { + * ... // other embed view config + * useHostEventsV2:true, + * }) + * ``` + */ + useHostEventsV2?: boolean; } /** @@ -4547,6 +4575,18 @@ export enum HostEvent { * @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl */ StartNewSpotterConversation = 'StartNewSpotterConversation', + + /** + * @hidden + * Get the current context of the embedded page. + * + * @example + * ```js + * const context = await liveboardEmbed.trigger(HostEvent.GetPageContext); + * ``` + * @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl + */ + GetPageContext = 'GetPageContext', } /** @@ -6507,6 +6547,26 @@ export interface EmbedErrorDetailsEvent { /** Additional context-specific for backward compatibility */ [key: string]: any; } + +export enum ContextType { + /** + * Search answer context for search page or edit viz dialog on liveboard page. + */ + Search = 'search-answer', + /** + * Liveboard context for liveboard page. + */ + Liveboard = 'liveboard', + /** + * Answer context for explore modal/page on liveboard page. + */ + Answer = 'answer', + /** + * Spotter context for spotter modal/page. + */ + Spotter = 'spotter', +} + export interface DefaultAppInitData { customisations: CustomisationsInterface; authToken: string; @@ -6584,3 +6644,88 @@ export type ApiInterceptFlags = { */ interceptTimeout?: number; }; + +/** + * Object IDs for the embedded component. + * @version SDK: 1.45.2 | ThoughtSpot: 26.3.0.cl + */ +export interface ObjectIds { + /** + * Liveboard ID. + */ + liveboardId?: string; + /** + * Answer ID. + */ + answerId?: string; + /** + * Viz IDs. + */ + vizIds?: string[]; + /** + * Data model IDs. + */ + dataModelIds?: string[]; + /** + * Modal title. + */ + modalTitle?: string; +} + +/** + * Context object for the embedded component. + * @example + * ```js + * const context = await embed.getCurrentContext(); + * console.log(context); + * { + * 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 + */ +export interface ContextObject { + /** + * Stack of context objects. + */ + stack: Array<{ + /** + * Name of the context object. + */ + name: string; + /** + * Type of the context object. + */ + type: ContextType; + /** + * Object IDs of the context object. + */ + objectIds: ObjectIds; + }> + /** + * Current context object. + */ + currentContext: { + /** + * Name of the current context object. + */ + name: string; + type: ContextType; + objectIds: ObjectIds; + } +} \ No newline at end of file diff --git a/src/utils.ts b/src/utils.ts index 7d176c48..42035c47 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -15,6 +15,7 @@ import { DOMSelector, RuntimeParameter, AllEmbedViewConfig, + BaseViewConfig, } from './types'; import { logger } from './utils/logger'; import { ERROR_MESSAGE } from './errors'; @@ -560,6 +561,13 @@ export const formatTemplate = (template: string, values: Record): s }); }; +export const getHostEventsConfig = (viewConfig: BaseViewConfig) => { + return { + shouldBypassPayloadValidation: viewConfig.shouldBypassPayloadValidation, + useHostEventsV2: viewConfig.useHostEventsV2, + }; +} + /** * Check if the window is undefined * If the window is undefined, it means the code is running in a SSR environment. diff --git a/src/utils/processTrigger.ts b/src/utils/processTrigger.ts index 07cad435..2d6e11d2 100644 --- a/src/utils/processTrigger.ts +++ b/src/utils/processTrigger.ts @@ -1,5 +1,5 @@ import { ERROR_MESSAGE } from '../errors'; -import { HostEvent, MessagePayload } from '../types'; +import { ContextType, HostEvent, MessagePayload } from '../types'; import { logger } from '../utils/logger'; import { handlePresentEvent } from '../utils'; import { getEmbedConfig } from '../embed/embedConfig'; @@ -22,12 +22,13 @@ export const reload = (iFrame: HTMLIFrameElement) => { * @param message * @param message.type * @param message.data + * @param message.context * @param thoughtSpotHost * @param channel */ function postIframeMessage( iFrame: HTMLIFrameElement, - message: { type: HostEvent; data: any }, + message: { type: HostEvent; data: any, context?: any }, thoughtSpotHost: string, channel?: MessageChannel, ) { @@ -42,12 +43,14 @@ export const TRIGGER_TIMEOUT = 30000; * @param messageType * @param thoughtSpotHost * @param data + * @param context */ export function processTrigger( iFrame: HTMLIFrameElement, messageType: HostEvent, thoughtSpotHost: string, data: any, + context?: ContextType, ): Promise { return new Promise((res, rej) => { if (messageType === HostEvent.Reload) { @@ -83,6 +86,6 @@ export function processTrigger( res(new Error(ERROR_MESSAGE.TRIGGER_TIMED_OUT)); }, TRIGGER_TIMEOUT); - return postIframeMessage(iFrame, { type: messageType, data }, thoughtSpotHost, channel); + return postIframeMessage(iFrame, { type: messageType, data, context }, thoughtSpotHost, channel); }); } diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 0e249c72..d9084c47 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 2177, + "id": 2223, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2291, + "id": 2336, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5786, + "line": 5810, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2197, + "id": 2243, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4920, + "line": 4956, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 2190, + "id": 2236, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4849, + "line": 4885, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 2189, + "id": 2235, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4838, + "line": 4874, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 2195, + "id": 2241, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4901, + "line": 4937, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 2196, + "id": 2242, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4910, + "line": 4946, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 2198, + "id": 2244, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4930, + "line": 4966, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 2273, + "id": 2318, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5580, + "line": 5604, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 2246, + "id": 2291, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5302, + "line": 5326, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2288, + "id": 2333, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5753, + "line": 5777, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 2245, + "id": 2290, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5290, + "line": 5314, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2244, + "id": 2289, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5278, + "line": 5302, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2287, + "id": 2332, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5742, + "line": 5766, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 2257, + "id": 2302, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5415, + "line": 5439, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 2260, + "id": 2305, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5449, + "line": 5473, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 2265, + "id": 2310, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5504, + "line": 5528, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 2259, + "id": 2304, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5438, + "line": 5462, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 2262, + "id": 2307, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5472, + "line": 5496, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 2266, + "id": 2311, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5514, + "line": 5538, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 2263, + "id": 2308, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5483, + "line": 5507, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 2268, + "id": 2313, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5536, + "line": 5560, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 2264, + "id": 2309, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5493, + "line": 5517, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 2261, + "id": 2306, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5460, + "line": 5484, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 2267, + "id": 2312, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5524, + "line": 5548, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 2258, + "id": 2303, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5426, + "line": 5450, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2300, + "id": 2345, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5884, + "line": 5908, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 2194, + "id": 2240, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4892, + "line": 4928, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 2193, + "id": 2239, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4883, + "line": 4919, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 2192, + "id": 2238, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4871, + "line": 4907, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2308, + "id": 2353, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5972, + "line": 5996, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 2191, + "id": 2237, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4860, + "line": 4896, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 2237, + "id": 2282, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5227, + "line": 5253, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 2184, + "id": 2230, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4797, + "line": 4833, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2236, + "id": 2281, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5226, + "line": 5252, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2309, + "id": 2354, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5982, + "line": 6006, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2323, + "id": 2364, "name": "CreateGroup", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6142, + "line": 6118, "character": 4 } ], "defaultValue": "\"createGroup\"" }, { - "id": 2285, + "id": 2330, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5717, + "line": 5741, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2248, + "id": 2293, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5322, + "line": 5346, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2253, + "id": 2298, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5373, + "line": 5397, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2301, + "id": 2346, "name": "DataModelInstructions", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5896, + "line": 5920, "character": 4 } ], "defaultValue": "\"DataModelInstructions\"" }, { - "id": 2306, + "id": 2351, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5953, + "line": 5977, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2297, + "id": 2342, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1156,14 +1156,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5853, + "line": 5877, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2299, + "id": 2344, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1184,14 +1184,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5872, + "line": 5896, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 2206, + "id": 2252, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1208,14 +1208,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4980, + "line": 5016, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2209, + "id": 2255, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1232,14 +1232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5013, + "line": 5049, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2208, + "id": 2254, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1257,14 +1257,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5003, + "line": 5039, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2207, + "id": 2253, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1281,14 +1281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4990, + "line": 5026, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2210, + "id": 2256, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1305,42 +1305,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5023, + "line": 5059, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2211, - "name": "DownloadLiveboard", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "The **Download Liveboard** menu action on a Liveboard.\nAllows downloading the entire Liveboard.", - "tags": [ - { - "tag": "example", - "text": "\n```js\ndisabledActions: [Action.DownloadLiveboard]\n```" - }, - { - "tag": "version", - "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 5033, - "character": 4 - } - ], - "defaultValue": "\"downloadLiveboard\"" - }, - { - "id": 2241, + "id": 2286, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1357,14 +1329,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5243, + "line": 5269, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 2235, + "id": 2280, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1381,14 +1353,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5216, + "line": 5242, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2234, + "id": 2279, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1405,14 +1377,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5207, + "line": 5233, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2219, + "id": 2264, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1429,14 +1401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5109, + "line": 5135, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2183, + "id": 2229, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1453,14 +1425,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4788, + "line": 4824, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 2247, + "id": 2292, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1481,14 +1453,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5311, + "line": 5335, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 2239, + "id": 2284, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5232, + "line": 5258, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2305, + "id": 2350, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1524,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5942, + "line": 5966, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2277, + "id": 2322, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1552,14 +1524,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5624, + "line": 5648, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2292, + "id": 2337, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1580,14 +1552,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5799, + "line": 5823, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 2216, + "id": 2261, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1604,14 +1576,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5077, + "line": 5103, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2220, + "id": 2265, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1628,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5117, + "line": 5143, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2307, + "id": 2352, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1656,14 +1628,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5963, + "line": 5987, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 2274, + "id": 2319, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1684,14 +1656,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5590, + "line": 5614, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 2275, + "id": 2320, "name": "EnableIterativeChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1712,14 +1684,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5601, + "line": 5625, "character": 4 } ], "defaultValue": "\"enableIterativeChangeAnalysis\"" }, { - "id": 2233, + "id": 2278, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1736,14 +1708,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5196, + "line": 5222, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2213, + "id": 2258, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1761,14 +1733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5049, + "line": 5075, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2214, + "id": 2259, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1785,14 +1757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5059, + "line": 5085, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2310, + "id": 2355, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1813,42 +1785,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5997, + "line": 6022, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 2325, - "name": "IncludeCurrentPeriod", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "The **Include current period** checkbox for date filters.\nControls the visibility and availability of the option to include\nthe current time period in filter results.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nhiddenActions: [Action.IncludeCurrentPeriod]\ndisabledActions: [Action.IncludeCurrentPeriod]\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot: 26.4.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6164, - "character": 4 - } - ], - "defaultValue": "\"includeCurrentPeriod\"" - }, - { - "id": 2298, + "id": 2343, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1869,14 +1813,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5863, + "line": 5887, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 2227, + "id": 2272, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1893,14 +1837,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5158, + "line": 5184, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2316, + "id": 2361, "name": "LiveboardStylePanel", "kind": 16, "kindString": "Enumeration member", @@ -1921,14 +1865,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6063, + "line": 6088, "character": 4 } ], "defaultValue": "\"liveboardStylePanel\"" }, { - "id": 2283, + "id": 2328, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1949,14 +1893,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5685, + "line": 5709, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 2182, + "id": 2228, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1973,14 +1917,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4779, + "line": 4815, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2281, + "id": 2326, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1997,14 +1941,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5665, + "line": 5689, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2252, + "id": 2297, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -2025,42 +1969,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5363, + "line": 5387, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2318, - "name": "ManagePublishing", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "The **Manage Publishing** action for Liveboards, Answers and Models.\nOpens the same publishing modal as the **Publish** action.\nAppears as a child action to the **Publish** action if the\nobject is already published.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nhiddenActions: [Action.ManagePublishing]\ndisabledActions: [Action.ManagePublishing]\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot Cloud: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6089, - "character": 5 - } - ], - "defaultValue": "\"managePublishing\"" - }, - { - "id": 2296, + "id": 2341, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -2081,14 +1997,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5842, + "line": 5866, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 2272, + "id": 2317, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -2109,14 +2025,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5570, + "line": 5594, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2279, + "id": 2324, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -2136,14 +2052,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5645, + "line": 5669, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2322, + "id": 2363, "name": "MoveOutOfGroup", "kind": 16, "kindString": "Enumeration member", @@ -2164,14 +2080,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6132, + "line": 6108, "character": 4 } ], "defaultValue": "\"moveOutOfGroup\"" }, { - "id": 2321, + "id": 2362, "name": "MoveToGroup", "kind": 16, "kindString": "Enumeration member", @@ -2192,14 +2108,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6122, + "line": 6098, "character": 4 } ], "defaultValue": "\"moveToGroup\"" }, { - "id": 2280, + "id": 2325, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -2216,14 +2132,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5654, + "line": 5678, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2290, + "id": 2335, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -2244,42 +2160,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5775, + "line": 5799, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2320, - "name": "Parameterize", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "The **Parameterize** action for Tables and Connections.\nOpens the parameterization modal.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nhiddenActions: [Action.Parameterize]\ndisabledActions: [Action.Parameterize]\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot Cloud: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6112, - "character": 5 - } - ], - "defaultValue": "\"parameterise\"" - }, - { - "id": 2293, + "id": 2338, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2300,14 +2188,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5810, + "line": 5834, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2282, + "id": 2327, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2328,14 +2216,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5675, + "line": 5699, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 2230, + "id": 2275, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2352,14 +2240,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5175, + "line": 5201, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2314, + "id": 2359, "name": "PngScreenshotInEmail", "kind": 16, "kindString": "Enumeration member", @@ -2376,14 +2264,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6041, + "line": 6066, "character": 4 } ], "defaultValue": "\"pngScreenshotInEmail\"" }, { - "id": 2217, + "id": 2262, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2400,14 +2288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5087, + "line": 5113, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2302, + "id": 2347, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2428,42 +2316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5908, + "line": 5932, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 2317, - "name": "Publish", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "The **Publish** action for Liveboards, Answers and Models.\nOpens the publishing modal. It's a parent action for the\n**Manage Publishing** and **Unpublish** actions if the object\nis already published, otherwise appears standalone.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nhiddenActions: [Action.Publish]\ndisabledActions: [Action.Publish]\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot Cloud: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6076, - "character": 5 - } - ], - "defaultValue": "\"publish\"" - }, - { - "id": 2243, + "id": 2288, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2481,14 +2341,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5268, + "line": 5292, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 2221, + "id": 2266, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2505,14 +2365,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5127, + "line": 5153, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2315, + "id": 2360, "name": "RemoveAttachment", "kind": 16, "kindString": "Enumeration member", @@ -2533,14 +2393,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6053, + "line": 6078, "character": 4 } ], "defaultValue": "\"removeAttachment\"" }, { - "id": 2256, + "id": 2301, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2561,14 +2421,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5404, + "line": 5428, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2289, + "id": 2334, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2589,14 +2449,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5764, + "line": 5788, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 2270, + "id": 2315, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2617,14 +2477,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5550, + "line": 5574, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 2249, + "id": 2294, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2648,14 +2508,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5332, + "line": 5356, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 2242, + "id": 2287, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2672,14 +2532,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5252, + "line": 5278, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 2271, + "id": 2316, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2700,14 +2560,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5560, + "line": 5584, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2303, + "id": 2348, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2728,14 +2588,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5920, + "line": 5944, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2278, + "id": 2323, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2756,14 +2616,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5636, + "line": 5660, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 2178, + "id": 2224, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2780,14 +2640,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4748, + "line": 4784, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2181, + "id": 2227, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2804,14 +2664,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4766, + "line": 4802, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2186, + "id": 2232, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2828,14 +2688,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4811, + "line": 4847, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2187, + "id": 2233, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2852,14 +2712,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4820, + "line": 4856, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2240, + "id": 2285, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2867,14 +2727,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5233, + "line": 5259, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 2188, + "id": 2234, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2891,14 +2751,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4829, + "line": 4865, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2203, + "id": 2249, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2909,14 +2769,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4955, + "line": 4991, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 2276, + "id": 2321, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2937,14 +2797,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5611, + "line": 5635, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 2205, + "id": 2251, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2961,14 +2821,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4970, + "line": 5006, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2200, + "id": 2246, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2985,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4943, + "line": 4979, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2304, + "id": 2349, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -3013,14 +2873,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5931, + "line": 5955, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 2313, + "id": 2358, "name": "SpotterTokenQuickEdit", "kind": 16, "kindString": "Enumeration member", @@ -3041,14 +2901,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6030, + "line": 6055, "character": 4 } ], "defaultValue": "\"SpotterTokenQuickEdit\"" }, { - "id": 2311, + "id": 2356, "name": "SpotterWarningsBanner", "kind": 16, "kindString": "Enumeration member", @@ -3069,14 +2929,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6008, + "line": 6033, "character": 4 } ], "defaultValue": "\"SpotterWarningsBanner\"" }, { - "id": 2312, + "id": 2357, "name": "SpotterWarningsOnTokens", "kind": 16, "kindString": "Enumeration member", @@ -3097,14 +2957,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6019, + "line": 6044, "character": 4 } ], "defaultValue": "\"SpotterWarningsOnTokens\"" }, { - "id": 2232, + "id": 2277, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -3121,14 +2981,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5188, + "line": 5214, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2251, + "id": 2296, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -3149,14 +3009,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5353, + "line": 5377, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2250, + "id": 2295, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -3177,14 +3037,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5342, + "line": 5366, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2254, + "id": 2299, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -3205,14 +3065,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5383, + "line": 5407, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 2255, + "id": 2300, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -3233,14 +3093,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5393, + "line": 5417, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2284, + "id": 2329, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -3265,14 +3125,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5704, + "line": 5728, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 2218, + "id": 2263, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -3289,14 +3149,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5099, + "line": 5125, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2324, + "id": 2365, "name": "UngroupLiveboardGroup", "kind": 16, "kindString": "Enumeration member", @@ -3317,42 +3177,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6152, + "line": 6128, "character": 4 } ], "defaultValue": "\"ungroupLiveboardGroup\"" }, { - "id": 2319, - "name": "Unpublish", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "The **Unpublish** action for Liveboards, Answers and Models.\nOpens the unpublishing modal. Appears as a child action to\nthe **Publish** action if the object is already published.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nhiddenActions: [Action.Unpublish]\ndisabledActions: [Action.Unpublish]\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot Cloud: 26.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 6101, - "character": 5 - } - ], - "defaultValue": "\"unpublish\"" - }, - { - "id": 2295, + "id": 2340, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3373,14 +3205,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5832, + "line": 5856, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 2215, + "id": 2260, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -3397,14 +3229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5068, + "line": 5094, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2286, + "id": 2331, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -3425,14 +3257,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5728, + "line": 5752, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2294, + "id": 2339, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -3453,7 +3285,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5821, + "line": 5845, "character": 4 } ], @@ -3465,149 +3297,143 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2291, - 2197, - 2190, - 2189, - 2195, - 2196, - 2198, - 2273, - 2246, - 2288, - 2245, + 2336, + 2243, + 2236, + 2235, + 2241, + 2242, 2244, - 2287, - 2257, - 2260, - 2265, - 2259, - 2262, - 2266, - 2263, - 2268, - 2264, - 2261, - 2267, - 2258, - 2300, - 2194, - 2193, - 2192, + 2318, + 2291, + 2333, + 2290, + 2289, + 2332, + 2302, + 2305, + 2310, + 2304, + 2307, + 2311, 2308, - 2191, - 2237, - 2184, - 2236, + 2313, 2309, - 2323, - 2285, - 2248, - 2253, - 2301, 2306, - 2297, - 2299, - 2206, - 2209, - 2208, - 2207, - 2210, - 2211, - 2241, - 2235, - 2234, - 2219, - 2183, - 2247, + 2312, + 2303, + 2345, + 2240, 2239, - 2305, - 2277, - 2292, - 2216, - 2220, - 2307, - 2274, - 2275, - 2233, - 2213, - 2214, - 2310, - 2325, - 2298, - 2227, - 2316, - 2283, - 2182, + 2238, + 2353, + 2237, + 2282, + 2230, 2281, + 2354, + 2364, + 2330, + 2293, + 2298, + 2346, + 2351, + 2342, + 2344, 2252, - 2318, - 2296, - 2272, + 2255, + 2254, + 2253, + 2256, + 2286, + 2280, 2279, + 2264, + 2229, + 2292, + 2284, + 2350, 2322, - 2321, - 2280, - 2290, + 2337, + 2261, + 2265, + 2352, + 2319, 2320, - 2293, - 2282, - 2230, - 2314, - 2217, - 2302, + 2278, + 2258, + 2259, + 2355, + 2343, + 2272, + 2361, + 2328, + 2228, + 2326, + 2297, + 2341, 2317, - 2243, - 2221, + 2324, + 2363, + 2362, + 2325, + 2335, + 2338, + 2327, + 2275, + 2359, + 2262, + 2347, + 2288, + 2266, + 2360, + 2301, + 2334, 2315, - 2256, - 2289, - 2270, - 2249, - 2242, - 2271, - 2303, - 2278, - 2178, - 2181, - 2186, - 2187, - 2240, - 2188, - 2203, - 2276, - 2205, - 2200, - 2304, - 2313, - 2311, - 2312, + 2294, + 2287, + 2316, + 2348, + 2323, + 2224, + 2227, 2232, + 2233, + 2285, + 2234, + 2249, + 2321, 2251, - 2250, - 2254, - 2255, - 2284, - 2218, - 2324, - 2319, + 2246, + 2349, + 2358, + 2356, + 2357, + 2277, + 2296, 2295, - 2215, - 2286, - 2294 + 2299, + 2300, + 2329, + 2263, + 2365, + 2340, + 2260, + 2331, + 2339 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4739, + "line": 4775, "character": 12 } ] }, { - "id": 1820, + "id": 1860, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3623,7 +3449,7 @@ }, "children": [ { - "id": 1821, + "id": 1861, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3646,7 +3472,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1821 + 1861 ] } ], @@ -3659,7 +3485,7 @@ ] }, { - "id": 1805, + "id": 1845, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3675,7 +3501,7 @@ }, "children": [ { - "id": 1808, + "id": 1848, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3690,7 +3516,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1810, + "id": 1850, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3705,7 +3531,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1807, + "id": 1847, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3720,7 +3546,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1809, + "id": 1849, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3735,7 +3561,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1806, + "id": 1846, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3750,7 +3576,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1811, + "id": 1851, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3770,12 +3596,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1808, - 1810, - 1807, - 1809, - 1806, - 1811 + 1848, + 1850, + 1847, + 1849, + 1846, + 1851 ] } ], @@ -3788,7 +3614,7 @@ ] }, { - "id": 1812, + "id": 1852, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3804,7 +3630,7 @@ }, "children": [ { - "id": 1813, + "id": 1853, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3822,7 +3648,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1817, + "id": 1857, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3840,7 +3666,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1819, + "id": 1859, "name": "SAML_POPUP_CLOSED_NO_AUTH", "kind": 16, "kindString": "Enumeration member", @@ -3858,7 +3684,7 @@ "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" }, { - "id": 1814, + "id": 1854, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3876,7 +3702,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1816, + "id": 1856, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3894,7 +3720,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1818, + "id": 1858, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3923,12 +3749,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1813, - 1817, - 1819, - 1814, - 1816, - 1818 + 1853, + 1857, + 1859, + 1854, + 1856, + 1858 ] } ], @@ -3941,7 +3767,7 @@ ] }, { - "id": 1967, + "id": 2007, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3957,7 +3783,7 @@ }, "children": [ { - "id": 1978, + "id": 2018, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3976,7 +3802,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1969, + "id": 2009, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -4005,7 +3831,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1968, + "id": 2008, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -4029,7 +3855,7 @@ "defaultValue": "\"None\"" }, { - "id": 1974, + "id": 2014, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -4047,7 +3873,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1972, + "id": 2012, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -4080,7 +3906,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1976, + "id": 2016, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -4104,7 +3930,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1977, + "id": 2017, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -4137,13 +3963,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1978, - 1969, - 1968, - 1974, - 1972, - 1976, - 1977 + 2018, + 2009, + 2008, + 2014, + 2012, + 2016, + 2017 ] } ], @@ -4156,7 +3982,7 @@ ] }, { - "id": 2326, + "id": 2366, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -4166,7 +3992,7 @@ }, "children": [ { - "id": 2329, + "id": 2369, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -4174,14 +4000,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6184, + "line": 6148, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2327, + "id": 2367, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -4189,14 +4015,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6182, + "line": 6146, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2328, + "id": 2368, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -4204,7 +4030,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6183, + "line": 6147, "character": 4 } ], @@ -4216,22 +4042,110 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2329, - 2327, - 2328 + 2369, + 2367, + 2368 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6181, + "line": 6145, "character": 12 } ] }, { - "id": 3027, + "id": 2214, + "name": "ContextType", + "kind": 4, + "kindString": "Enumeration", + "flags": {}, + "children": [ + { + "id": 2217, + "name": "Answer", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6478, + "character": 4 + } + ], + "defaultValue": "\"answer\"" + }, + { + "id": 2216, + "name": "Liveboard", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6477, + "character": 4 + } + ], + "defaultValue": "\"liveboard\"" + }, + { + "id": 2215, + "name": "Search", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6476, + "character": 4 + } + ], + "defaultValue": "\"search-answer\"" + }, + { + "id": 2218, + "name": "Spotter", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 6479, + "character": 4 + } + ], + "defaultValue": "\"spotter\"" + } + ], + "groups": [ + { + "title": "Enumeration members", + "kind": 16, + "children": [ + 2217, + 2216, + 2215, + 2218 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 6475, + "character": 12 + } + ] + }, + { + "id": 3070, "name": "CustomActionTarget", "kind": 4, "kindString": "Enumeration", @@ -4241,7 +4155,7 @@ }, "children": [ { - "id": 3030, + "id": 3073, "name": "ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -4249,14 +4163,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6269, + "line": 6233, "character": 4 } ], "defaultValue": "\"ANSWER\"" }, { - "id": 3028, + "id": 3071, "name": "LIVEBOARD", "kind": 16, "kindString": "Enumeration member", @@ -4264,14 +4178,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6267, + "line": 6231, "character": 4 } ], "defaultValue": "\"LIVEBOARD\"" }, { - "id": 3031, + "id": 3074, "name": "SPOTTER", "kind": 16, "kindString": "Enumeration member", @@ -4279,14 +4193,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6270, + "line": 6234, "character": 4 } ], "defaultValue": "\"SPOTTER\"" }, { - "id": 3029, + "id": 3072, "name": "VIZ", "kind": 16, "kindString": "Enumeration member", @@ -4294,7 +4208,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6268, + "line": 6232, "character": 4 } ], @@ -4306,23 +4220,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3030, - 3028, - 3031, - 3029 + 3073, + 3071, + 3074, + 3072 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6266, + "line": 6230, "character": 12 } ] }, { - "id": 3023, + "id": 3066, "name": "CustomActionsPosition", "kind": 4, "kindString": "Enumeration", @@ -4332,7 +4246,7 @@ }, "children": [ { - "id": 3026, + "id": 3069, "name": "CONTEXTMENU", "kind": 16, "kindString": "Enumeration member", @@ -4340,14 +4254,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6260, + "line": 6224, "character": 4 } ], "defaultValue": "\"CONTEXTMENU\"" }, { - "id": 3025, + "id": 3068, "name": "MENU", "kind": 16, "kindString": "Enumeration member", @@ -4355,14 +4269,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6259, + "line": 6223, "character": 4 } ], "defaultValue": "\"MENU\"" }, { - "id": 3024, + "id": 3067, "name": "PRIMARY", "kind": 16, "kindString": "Enumeration member", @@ -4370,7 +4284,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6258, + "line": 6222, "character": 4 } ], @@ -4382,22 +4296,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3026, - 3025, - 3024 + 3069, + 3068, + 3067 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6257, + "line": 6221, "character": 12 } ] }, { - "id": 3019, + "id": 3062, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -4407,7 +4321,7 @@ }, "children": [ { - "id": 3021, + "id": 3064, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4418,14 +4332,14 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 74, + "line": 75, "character": 4 } ], "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 3020, + "id": 3063, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -4436,14 +4350,14 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 70, + "line": 71, "character": 4 } ], "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 3022, + "id": 3065, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -4454,7 +4368,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 78, + "line": 79, "character": 4 } ], @@ -4466,22 +4380,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3021, - 3020, - 3022 + 3064, + 3063, + 3065 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 66, + "line": 67, "character": 12 } ] }, { - "id": 2173, + "id": 2219, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -4491,7 +4405,7 @@ }, "children": [ { - "id": 2175, + "id": 2221, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -4502,14 +4416,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4565, + "line": 4603, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 2176, + "id": 2222, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -4520,14 +4434,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4569, + "line": 4607, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 2174, + "id": 2220, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -4538,7 +4452,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4561, + "line": 4599, "character": 4 } ], @@ -4550,22 +4464,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2175, - 2176, - 2174 + 2221, + 2222, + 2220 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4557, + "line": 4595, "character": 12 } ] }, { - "id": 3036, + "id": 3079, "name": "EmbedErrorCodes", "kind": 4, "kindString": "Enumeration", @@ -4598,7 +4512,7 @@ }, "children": [ { - "id": 3039, + "id": 3082, "name": "CONFLICTING_ACTIONS_CONFIG", "kind": 16, "kindString": "Enumeration member", @@ -4609,14 +4523,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6409, + "line": 6373, "character": 4 } ], "defaultValue": "\"CONFLICTING_ACTIONS_CONFIG\"" }, { - "id": 3040, + "id": 3083, "name": "CONFLICTING_TABS_CONFIG", "kind": 16, "kindString": "Enumeration member", @@ -4627,14 +4541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6412, + "line": 6376, "character": 4 } ], "defaultValue": "\"CONFLICTING_TABS_CONFIG\"" }, { - "id": 3043, + "id": 3086, "name": "CUSTOM_ACTION_VALIDATION", "kind": 16, "kindString": "Enumeration member", @@ -4645,14 +4559,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6421, + "line": 6385, "character": 4 } ], "defaultValue": "\"CUSTOM_ACTION_VALIDATION\"" }, { - "id": 3046, + "id": 3089, "name": "HOST_EVENT_TYPE_UNDEFINED", "kind": 16, "kindString": "Enumeration member", @@ -4663,14 +4577,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6430, + "line": 6394, "character": 4 } ], "defaultValue": "\"HOST_EVENT_TYPE_UNDEFINED\"" }, { - "id": 3041, + "id": 3084, "name": "INIT_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -4681,14 +4595,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6415, + "line": 6379, "character": 4 } ], "defaultValue": "\"INIT_ERROR\"" }, { - "id": 3038, + "id": 3081, "name": "LIVEBOARD_ID_MISSING", "kind": 16, "kindString": "Enumeration member", @@ -4699,14 +4613,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6406, + "line": 6370, "character": 4 } ], "defaultValue": "\"LIVEBOARD_ID_MISSING\"" }, { - "id": 3044, + "id": 3087, "name": "LOGIN_FAILED", "kind": 16, "kindString": "Enumeration member", @@ -4717,14 +4631,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6424, + "line": 6388, "character": 4 } ], "defaultValue": "\"LOGIN_FAILED\"" }, { - "id": 3042, + "id": 3085, "name": "NETWORK_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -4735,14 +4649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6418, + "line": 6382, "character": 4 } ], "defaultValue": "\"NETWORK_ERROR\"" }, { - "id": 3047, + "id": 3090, "name": "PARSING_API_INTERCEPT_BODY_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -4753,14 +4667,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6433, + "line": 6397, "character": 4 } ], "defaultValue": "\"PARSING_API_INTERCEPT_BODY_ERROR\"" }, { - "id": 3045, + "id": 3088, "name": "RENDER_NOT_CALLED", "kind": 16, "kindString": "Enumeration member", @@ -4771,14 +4685,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6427, + "line": 6391, "character": 4 } ], "defaultValue": "\"RENDER_NOT_CALLED\"" }, { - "id": 3048, + "id": 3091, "name": "UPDATE_PARAMS_FAILED", "kind": 16, "kindString": "Enumeration member", @@ -4789,14 +4703,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6436, + "line": 6400, "character": 4 } ], "defaultValue": "\"UPDATE_PARAMS_FAILED\"" }, { - "id": 3037, + "id": 3080, "name": "WORKSHEET_ID_NOT_FOUND", "kind": 16, "kindString": "Enumeration member", @@ -4807,7 +4721,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6403, + "line": 6367, "character": 4 } ], @@ -4819,31 +4733,31 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3039, - 3040, - 3043, - 3046, - 3041, - 3038, - 3044, - 3042, - 3047, - 3045, - 3048, - 3037 + 3082, + 3083, + 3086, + 3089, + 3084, + 3081, + 3087, + 3085, + 3090, + 3088, + 3091, + 3080 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6401, + "line": 6365, "character": 12 } ] }, { - "id": 1999, + "id": 2039, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -4868,7 +4782,7 @@ }, "children": [ { - "id": 2035, + "id": 2075, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -4889,14 +4803,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2394, + "line": 2422, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2027, + "id": 2067, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -4917,14 +4831,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2273, + "line": 2301, "character": 4 } ], "defaultValue": "\"*\"" }, { - "id": 2007, + "id": 2047, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -4949,14 +4863,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2037, + "line": 2065, "character": 4 } ], "defaultValue": "\"addRemoveColumns\"" }, { - "id": 2086, + "id": 2126, "name": "AddToCoaching", "kind": 16, "kindString": "Enumeration member", @@ -4977,14 +4891,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2998, + "line": 3026, "character": 4 } ], "defaultValue": "\"addToCoaching\"" }, { - "id": 2052, + "id": 2092, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -5005,14 +4919,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2604, + "line": 2632, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2012, + "id": 2052, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -5037,14 +4951,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2131, + "line": 2159, "character": 4 } ], "defaultValue": "\"alert\"" }, { - "id": 2048, + "id": 2088, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -5065,14 +4979,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2572, + "line": 2600, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2034, + "id": 2074, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -5093,14 +5007,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2383, + "line": 2411, "character": 4 } ], "defaultValue": "\"answerDelete\"" }, { - "id": 2096, + "id": 2136, "name": "ApiIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5122,14 +5036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3164, + "line": 3192, "character": 4 } ], "defaultValue": "\"ApiIntercept\"" }, { - "id": 2075, + "id": 2115, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -5162,14 +5076,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2813, + "line": 2841, "character": 4 } ], "defaultValue": "\"AskSageInit\"" }, { - "id": 2013, + "id": 2053, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -5190,14 +5104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2144, + "line": 2172, "character": 4 } ], "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 2001, + "id": 2041, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -5222,14 +5136,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1939, + "line": 1967, "character": 4 } ], "defaultValue": "\"authInit\"" }, { - "id": 2059, + "id": 2099, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -5250,14 +5164,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2680, + "line": 2708, "character": 4 } ], "defaultValue": "\"cancel\"" }, { - "id": 2046, + "id": 2086, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -5278,14 +5192,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2550, + "line": 2578, "character": 4 } ], "defaultValue": "\"copyAEdit\"" }, { - "id": 2061, + "id": 2101, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -5306,14 +5220,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2700, + "line": 2728, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2041, + "id": 2081, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -5334,14 +5248,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2485, + "line": 2513, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2069, + "id": 2109, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -5358,14 +5272,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2764, + "line": 2792, "character": 4 } ], "defaultValue": "\"createConnection\"" }, { - "id": 2080, + "id": 2120, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5383,14 +5297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2948, + "line": 2976, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 2081, + "id": 2121, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -5407,14 +5321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2953, + "line": 2981, "character": 4 } ], "defaultValue": "\"createModel\"" }, { - "id": 2074, + "id": 2114, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -5431,14 +5345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2804, + "line": 2832, "character": 4 } ], "defaultValue": "\"createWorksheet\"" }, { - "id": 2062, + "id": 2102, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5459,14 +5373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2711, + "line": 2739, "character": 4 } ], "defaultValue": "\"cross-filter-changed\"" }, { - "id": 2008, + "id": 2048, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -5495,14 +5409,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2054, + "line": 2082, "character": 4 } ], "defaultValue": "\"customAction\"" }, { - "id": 2003, + "id": 2043, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -5531,14 +5445,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1967, + "line": 1995, "character": 4 } ], "defaultValue": "\"data\"" }, { - "id": 2087, + "id": 2127, "name": "DataModelInstructions", "kind": 16, "kindString": "Enumeration member", @@ -5559,14 +5473,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3009, + "line": 3037, "character": 4 } ], "defaultValue": "\"DataModelInstructions\"" }, { - "id": 2006, + "id": 2046, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -5591,14 +5505,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2025, + "line": 2053, "character": 4 } ], "defaultValue": "\"dataSourceSelected\"" }, { - "id": 2057, + "id": 2097, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -5619,14 +5533,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2662, + "line": 2690, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2073, + "id": 2113, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5651,14 +5565,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2799, + "line": 2827, "character": 4 } ], "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 2025, + "id": 2065, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -5679,14 +5593,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2240, + "line": 2268, "character": 4 } ], "defaultValue": "\"dialog-close\"" }, { - "id": 2024, + "id": 2064, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -5707,14 +5621,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2229, + "line": 2257, "character": 4 } ], "defaultValue": "\"dialog-open\"" }, { - "id": 2029, + "id": 2069, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -5736,14 +5650,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2308, + "line": 2336, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 2032, + "id": 2072, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -5764,14 +5678,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2353, + "line": 2381, "character": 4 } ], "defaultValue": "\"downloadAsCsv\"" }, { - "id": 2031, + "id": 2071, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -5792,14 +5706,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2338, + "line": 2366, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2030, + "id": 2070, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -5820,14 +5734,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2323, + "line": 2351, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2033, + "id": 2073, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -5848,14 +5762,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2368, + "line": 2396, "character": 4 } ], "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 2040, + "id": 2080, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -5876,14 +5790,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2474, + "line": 2502, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 2039, + "id": 2079, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -5904,14 +5818,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2462, + "line": 2490, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 2005, + "id": 2045, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -5948,14 +5862,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2013, + "line": 2041, "character": 4 } ], "defaultValue": "\"drillDown\"" }, { - "id": 2054, + "id": 2094, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -5976,14 +5890,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2626, + "line": 2654, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2043, + "id": 2083, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -6004,14 +5918,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2508, + "line": 2536, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2011, + "id": 2051, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -6041,14 +5955,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2121, + "line": 2149, "character": 4 } ], "defaultValue": "\"Error\"" }, { - "id": 2060, + "id": 2100, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -6069,14 +5983,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2690, + "line": 2718, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2044, + "id": 2084, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -6097,14 +6011,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2524, + "line": 2552, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2065, + "id": 2105, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -6121,14 +6035,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2741, + "line": 2769, "character": 4 } ], "defaultValue": "\"filterChanged\"" }, { - "id": 2019, + "id": 2059, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -6149,14 +6063,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2186, + "line": 2214, "character": 4 } ], "defaultValue": "\"getDataClick\"" }, { - "id": 2000, + "id": 2040, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -6177,14 +6091,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1927, + "line": 1955, "character": 4 } ], "defaultValue": "\"init\"" }, { - "id": 2090, + "id": 2130, "name": "LastPromptDeleted", "kind": 16, "kindString": "Enumeration member", @@ -6205,14 +6119,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3042, + "line": 3070, "character": 4 } ], "defaultValue": "\"LastPromptDeleted\"" }, { - "id": 2089, + "id": 2129, "name": "LastPromptEdited", "kind": 16, "kindString": "Enumeration member", @@ -6233,14 +6147,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3031, + "line": 3059, "character": 4 } ], "defaultValue": "\"LastPromptEdited\"" }, { - "id": 2051, + "id": 2091, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -6261,14 +6175,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2593, + "line": 2621, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2026, + "id": 2066, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -6293,14 +6207,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2262, + "line": 2290, "character": 4 } ], "defaultValue": "\"PinboardRendered\"" }, { - "id": 2002, + "id": 2042, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -6325,14 +6239,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1953, + "line": 1981, "character": 4 } ], "defaultValue": "\"load\"" }, { - "id": 2055, + "id": 2095, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -6353,14 +6267,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2637, + "line": 2665, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2022, + "id": 2062, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -6381,14 +6295,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2212, + "line": 2240, "character": 4 } ], "defaultValue": "\"noCookieAccess\"" }, { - "id": 2077, + "id": 2117, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -6415,14 +6329,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2881, + "line": 2909, "character": 4 } ], "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 2095, + "id": 2135, "name": "OrgSwitched", "kind": 16, "kindString": "Enumeration member", @@ -6443,14 +6357,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3098, + "line": 3126, "character": 4 } ], "defaultValue": "\"orgSwitched\"" }, { - "id": 2078, + "id": 2118, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -6467,14 +6381,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2892, + "line": 2920, "character": 4 } ], "defaultValue": "\"parameterChanged\"" }, { - "id": 2036, + "id": 2076, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -6495,14 +6409,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2414, + "line": 2442, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2056, + "id": 2096, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -6527,14 +6441,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2652, + "line": 2680, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2085, + "id": 2125, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -6555,14 +6469,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2987, + "line": 3015, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2004, + "id": 2044, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -6583,14 +6497,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1976, + "line": 2004, "character": 4 } ], "defaultValue": "\"queryChanged\"" }, { - "id": 2076, + "id": 2116, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -6607,14 +6521,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2818, + "line": 2846, "character": 4 } ], "defaultValue": "\"rename\"" }, { - "id": 2072, + "id": 2112, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -6647,14 +6561,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2792, + "line": 2820, "character": 4 } ], "defaultValue": "\"resetLiveboard\"" }, { - "id": 2091, + "id": 2131, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -6675,14 +6589,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3053, + "line": 3081, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2020, + "id": 2060, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -6703,14 +6617,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2196, + "line": 2224, "character": 4 } ], "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 2066, + "id": 2106, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -6727,14 +6641,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2747, + "line": 2775, "character": 4 } ], "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 2067, + "id": 2107, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -6751,14 +6665,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2754, + "line": 2782, "character": 4 } ], "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 2028, + "id": 2068, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -6779,14 +6693,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2292, + "line": 2320, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2045, + "id": 2085, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -6807,14 +6721,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2535, + "line": 2563, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 2071, + "id": 2111, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -6847,14 +6761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2783, + "line": 2811, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 2053, + "id": 2093, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -6875,14 +6789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2615, + "line": 2643, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2058, + "id": 2098, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -6903,14 +6817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2671, + "line": 2699, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2038, + "id": 2078, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -6931,14 +6845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2450, + "line": 2478, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2047, + "id": 2087, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -6959,14 +6873,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2561, + "line": 2589, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2037, + "id": 2077, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -6987,14 +6901,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2432, + "line": 2460, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2084, + "id": 2124, "name": "SpotterData", "kind": 16, "kindString": "Enumeration member", @@ -7015,14 +6929,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2976, + "line": 3004, "character": 4 } ], "defaultValue": "\"SpotterData\"" }, { - "id": 2092, + "id": 2132, "name": "SpotterInit", "kind": 16, "kindString": "Enumeration member", @@ -7043,14 +6957,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3064, + "line": 3092, "character": 4 } ], "defaultValue": "\"spotterInit\"" }, { - "id": 2093, + "id": 2133, "name": "SpotterLoadComplete", "kind": 16, "kindString": "Enumeration member", @@ -7071,14 +6985,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3075, + "line": 3103, "character": 4 } ], "defaultValue": "\"spotterLoadComplete\"" }, { - "id": 2088, + "id": 2128, "name": "SpotterQueryTriggered", "kind": 16, "kindString": "Enumeration member", @@ -7099,14 +7013,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3020, + "line": 3048, "character": 4 } ], "defaultValue": "\"SpotterQueryTriggered\"" }, { - "id": 2079, + "id": 2119, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -7128,14 +7042,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2935, + "line": 2963, "character": 4 } ], "defaultValue": "\"TableVizRendered\"" }, { - "id": 2068, + "id": 2108, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -7152,14 +7066,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2759, + "line": 2787, "character": 4 } ], "defaultValue": "\"updateConnection\"" }, { - "id": 2070, + "id": 2110, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -7192,14 +7106,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2774, + "line": 2802, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 2042, + "id": 2082, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -7220,14 +7134,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2496, + "line": 2524, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2010, + "id": 2050, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -7256,14 +7170,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2085, + "line": 2113, "character": 4 } ], "defaultValue": "\"vizPointClick\"" }, { - "id": 2009, + "id": 2049, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -7288,14 +7202,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2066, + "line": 2094, "character": 4 } ], "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 2063, + "id": 2103, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -7316,7 +7230,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2722, + "line": 2750, "character": 4 } ], @@ -7328,103 +7242,103 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2035, - 2027, - 2007, - 2086, - 2052, - 2012, - 2048, - 2034, - 2096, 2075, - 2013, - 2001, - 2059, - 2046, - 2061, + 2067, + 2047, + 2126, + 2092, + 2052, + 2088, + 2074, + 2136, + 2115, + 2053, 2041, - 2069, - 2080, + 2099, + 2086, + 2101, 2081, - 2074, - 2062, - 2008, - 2003, - 2087, - 2006, - 2057, - 2073, - 2025, - 2024, - 2029, - 2032, - 2031, - 2030, - 2033, - 2040, - 2039, - 2005, - 2054, + 2109, + 2120, + 2121, + 2114, + 2102, + 2048, 2043, - 2011, - 2060, - 2044, + 2127, + 2046, + 2097, + 2113, 2065, - 2019, - 2000, - 2090, - 2089, - 2051, - 2026, - 2002, - 2055, - 2022, - 2077, - 2095, - 2078, - 2036, - 2056, - 2085, - 2004, - 2076, + 2064, + 2069, 2072, - 2091, - 2020, - 2066, - 2067, - 2028, - 2045, 2071, - 2053, - 2058, - 2038, - 2047, - 2037, - 2084, - 2092, - 2093, - 2088, - 2079, - 2068, 2070, + 2073, + 2080, + 2079, + 2045, + 2094, + 2083, + 2051, + 2100, + 2084, + 2105, + 2059, + 2040, + 2130, + 2129, + 2091, + 2066, 2042, - 2010, - 2009, - 2063 + 2095, + 2062, + 2117, + 2135, + 2118, + 2076, + 2096, + 2125, + 2044, + 2116, + 2112, + 2131, + 2060, + 2106, + 2107, + 2068, + 2085, + 2111, + 2093, + 2098, + 2078, + 2087, + 2077, + 2124, + 2132, + 2133, + 2128, + 2119, + 2108, + 2110, + 2082, + 2050, + 2049, + 2103 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1914, + "line": 1942, "character": 12 } ] }, { - "id": 3049, + "id": 3092, "name": "ErrorDetailsTypes", "kind": 4, "kindString": "Enumeration", @@ -7453,7 +7367,7 @@ }, "children": [ { - "id": 3050, + "id": 3093, "name": "API", "kind": 16, "kindString": "Enumeration member", @@ -7464,14 +7378,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6373, + "line": 6337, "character": 4 } ], "defaultValue": "\"API\"" }, { - "id": 3052, + "id": 3095, "name": "NETWORK", "kind": 16, "kindString": "Enumeration member", @@ -7482,14 +7396,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6377, + "line": 6341, "character": 4 } ], "defaultValue": "\"NETWORK\"" }, { - "id": 3051, + "id": 3094, "name": "VALIDATION_ERROR", "kind": 16, "kindString": "Enumeration member", @@ -7500,7 +7414,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6375, + "line": 6339, "character": 4 } ], @@ -7512,22 +7426,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3050, - 3052, - 3051 + 3093, + 3095, + 3094 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6371, + "line": 6335, "character": 12 } ] }, { - "id": 2723, + "id": 2766, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -7537,7 +7451,7 @@ }, "children": [ { - "id": 2727, + "id": 2770, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -7561,7 +7475,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2731, + "id": 2774, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -7585,7 +7499,7 @@ "defaultValue": "\"create\"" }, { - "id": 2733, + "id": 2776, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -7609,7 +7523,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2725, + "id": 2768, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -7633,7 +7547,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2730, + "id": 2773, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -7657,7 +7571,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2726, + "id": 2769, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -7681,7 +7595,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2728, + "id": 2771, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -7705,7 +7619,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2724, + "id": 2767, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -7729,7 +7643,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2729, + "id": 2772, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -7753,7 +7667,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2732, + "id": 2775, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -7782,16 +7696,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2727, - 2731, - 2733, - 2725, - 2730, - 2726, - 2728, - 2724, - 2729, - 2732 + 2770, + 2774, + 2776, + 2768, + 2773, + 2769, + 2771, + 2767, + 2772, + 2775 ] } ], @@ -7804,7 +7718,7 @@ ] }, { - "id": 2974, + "id": 3017, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -7820,7 +7734,7 @@ }, "children": [ { - "id": 2975, + "id": 3018, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -7831,14 +7745,14 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 109, + "line": 110, "character": 4 } ], "defaultValue": "\"v2\"" }, { - "id": 2976, + "id": 3019, "name": "ModularWithStylingChanges", "kind": 16, "kindString": "Enumeration member", @@ -7849,7 +7763,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 114, + "line": 115, "character": 4 } ], @@ -7861,28 +7775,28 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2975, - 2976 + 3018, + 3019 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 104, + "line": 105, "character": 12 } ] }, { - "id": 2968, + "id": 3011, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2970, + "id": 3013, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -7890,14 +7804,14 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 83, + "line": 84, "character": 4 } ], "defaultValue": "\"aiAnswer\"" }, { - "id": 2971, + "id": 3014, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -7905,14 +7819,14 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 84, + "line": 85, "character": 4 } ], "defaultValue": "\"none\"" }, { - "id": 2969, + "id": 3012, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -7920,7 +7834,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 82, + "line": 83, "character": 4 } ], @@ -7932,22 +7846,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2970, - 2971, - 2969 + 3013, + 3014, + 3012 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 81, + "line": 82, "character": 12 } ] }, { - "id": 2734, + "id": 2777, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -7964,7 +7878,7 @@ }, "children": [ { - "id": 2737, + "id": 2780, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -7975,14 +7889,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1787, + "line": 1815, "character": 4 } ], "defaultValue": "\"FAVORITE\"" }, { - "id": 2740, + "id": 2783, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -7993,14 +7907,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1799, + "line": 1827, "character": 4 } ], "defaultValue": "\"LEARNING\"" }, { - "id": 2738, + "id": 2781, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -8011,14 +7925,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1791, + "line": 1819, "character": 4 } ], "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2735, + "id": 2778, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8029,14 +7943,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1779, + "line": 1807, "character": 4 } ], "defaultValue": "\"SEARCH\"" }, { - "id": 2739, + "id": 2782, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -8047,14 +7961,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1795, + "line": 1823, "character": 4 } ], "defaultValue": "\"TRENDING\"" }, { - "id": 2736, + "id": 2779, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -8065,7 +7979,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1783, + "line": 1811, "character": 4 } ], @@ -8077,25 +7991,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2737, - 2740, - 2738, - 2735, - 2739, - 2736 + 2780, + 2783, + 2781, + 2778, + 2782, + 2779 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1775, + "line": 1803, "character": 12 } ] }, { - "id": 2097, + "id": 2137, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -8124,7 +8038,7 @@ }, "children": [ { - "id": 2119, + "id": 2159, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -8145,14 +8059,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3602, + "line": 3630, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 2108, + "id": 2148, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -8178,14 +8092,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3412, + "line": 3440, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 2162, + "id": 2202, "name": "AddToCoaching", "kind": 16, "kindString": "Enumeration member", @@ -8211,14 +8125,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4436, + "line": 4464, "character": 4 } ], "defaultValue": "\"addToCoaching\"" }, { - "id": 2166, + "id": 2206, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -8244,14 +8158,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4478, + "line": 4506, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 2149, + "id": 2189, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -8272,14 +8186,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4252, + "line": 4280, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 2169, + "id": 2209, "name": "AskSpotter", "kind": 16, "kindString": "Enumeration member", @@ -8305,14 +8219,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4516, + "line": 4544, "character": 4 } ], "defaultValue": "\"AskSpotter\"" }, { - "id": 2126, + "id": 2166, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -8338,14 +8252,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3738, + "line": 3766, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 2123, + "id": 2163, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -8375,14 +8289,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3676, + "line": 3704, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 2163, + "id": 2203, "name": "DataModelInstructions", "kind": 16, "kindString": "Enumeration member", @@ -8403,14 +8317,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4445, + "line": 4473, "character": 4 } ], "defaultValue": "\"DataModelInstructions\"" }, { - "id": 2130, + "id": 2170, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -8436,14 +8350,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3822, + "line": 3850, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2165, + "id": 2205, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -8464,14 +8378,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4463, + "line": 4491, "character": 4 } ], "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 2171, + "id": 2211, "name": "DestroyEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8492,14 +8406,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4536, + "line": 4564, "character": 4 } ], "defaultValue": "\"EmbedDestroyed\"" }, { - "id": 2132, + "id": 2172, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -8529,14 +8443,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3868, + "line": 3896, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2134, + "id": 2174, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -8562,14 +8476,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3919, + "line": 3947, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 2118, + "id": 2158, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -8599,14 +8513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3592, + "line": 3620, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 2133, + "id": 2173, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -8627,14 +8541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3892, + "line": 3920, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 2135, + "id": 2175, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -8660,14 +8574,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3946, + "line": 3974, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 2099, + "id": 2139, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -8697,14 +8611,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3291, + "line": 3319, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 2125, + "id": 2165, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -8735,14 +8649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3721, + "line": 3749, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 2160, + "id": 2200, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -8768,14 +8682,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4416, + "line": 4444, "character": 4 } ], "defaultValue": "\"EditLastPrompt\"" }, { - "id": 2116, + "id": 2156, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -8796,14 +8710,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3556, + "line": 3584, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 2122, + "id": 2162, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -8829,14 +8743,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3659, + "line": 3687, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 2115, + "id": 2155, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -8857,14 +8771,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3546, + "line": 3574, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 2148, + "id": 2188, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -8890,14 +8804,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4242, + "line": 4270, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 2142, + "id": 2182, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -8918,14 +8832,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4069, + "line": 4097, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 2102, + "id": 2142, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -8946,14 +8860,42 @@ "sources": [ { "fileName": "types.ts", - "line": 3311, + "line": 3339, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 2153, + "id": 2213, + "name": "GetPageContext", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Get the current context of the embedded page.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst context = await liveboardEmbed.trigger(HostEvent.GetPageContext);\n```" + }, + { + "tag": "version", + "text": "SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 4587, + "character": 4 + } + ], + "defaultValue": "\"GetPageContext\"" + }, + { + "id": 2193, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -8975,14 +8917,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4316, + "line": 4344, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 2128, + "id": 2168, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -9007,14 +8949,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3786, + "line": 3814, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 2144, + "id": 2184, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -9035,14 +8977,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4171, + "line": 4199, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 2112, + "id": 2152, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -9063,14 +9005,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3518, + "line": 3546, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2120, + "id": 2160, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -9107,14 +9049,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3635, + "line": 3663, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2124, + "id": 2164, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -9148,14 +9090,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3697, + "line": 3725, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 2140, + "id": 2180, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -9181,14 +9123,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4046, + "line": 4074, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2106, + "id": 2146, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -9214,14 +9156,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3382, + "line": 3410, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 2107, + "id": 2147, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -9251,14 +9193,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3402, + "line": 3430, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 2111, + "id": 2151, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -9300,14 +9242,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3508, + "line": 3536, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 2127, + "id": 2167, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -9333,14 +9275,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3755, + "line": 3783, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2161, + "id": 2201, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -9361,14 +9303,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4425, + "line": 4453, "character": 4 } ], "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 2121, + "id": 2161, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -9393,14 +9335,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3649, + "line": 3677, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 2109, + "id": 2149, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -9426,14 +9368,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3422, + "line": 3450, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 2151, + "id": 2191, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -9454,14 +9396,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4277, + "line": 4305, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 2141, + "id": 2181, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -9482,14 +9424,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4058, + "line": 4086, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 2164, + "id": 2204, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -9510,14 +9452,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4454, + "line": 4482, "character": 4 } ], "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 2137, + "id": 2177, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -9543,14 +9485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3999, + "line": 4027, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 2156, + "id": 2196, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -9580,14 +9522,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4365, + "line": 4393, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 2113, + "id": 2153, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -9608,14 +9550,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3527, + "line": 3555, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 2114, + "id": 2154, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -9636,14 +9578,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3536, + "line": 3564, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 2098, + "id": 2138, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -9665,14 +9607,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3241, + "line": 3269, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 2104, + "id": 2144, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -9698,14 +9640,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3336, + "line": 3364, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 2146, + "id": 2186, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -9731,14 +9673,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4197, + "line": 4225, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 2145, + "id": 2185, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -9764,14 +9706,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4184, + "line": 4212, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 2103, + "id": 2143, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -9797,14 +9739,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3324, + "line": 3352, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 2136, + "id": 2176, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -9825,14 +9767,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3959, + "line": 3987, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 2129, + "id": 2169, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -9858,14 +9800,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3805, + "line": 3833, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 2131, + "id": 2171, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -9891,14 +9833,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3842, + "line": 3870, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2159, + "id": 2199, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -9924,14 +9866,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4406, + "line": 4434, "character": 4 } ], "defaultValue": "\"SpotterSearch\"" }, { - "id": 2172, + "id": 2212, "name": "StartNewSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -9953,14 +9895,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4549, + "line": 4577, "character": 4 } ], "defaultValue": "\"StartNewSpotterConversation\"" }, { - "id": 2139, + "id": 2179, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -9986,14 +9928,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4030, + "line": 4058, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 2138, + "id": 2178, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -10019,14 +9961,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4014, + "line": 4042, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 2158, + "id": 2198, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -10052,14 +9994,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4390, + "line": 4418, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 2150, + "id": 2190, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -10080,14 +10022,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4268, + "line": 4296, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 2143, + "id": 2183, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -10125,14 +10067,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4158, + "line": 4186, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 2152, + "id": 2192, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -10158,14 +10100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4296, + "line": 4324, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 2154, + "id": 2194, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -10182,14 +10124,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4324, + "line": 4352, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 2105, + "id": 2145, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -10220,14 +10162,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3370, + "line": 3398, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 2147, + "id": 2187, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -10253,14 +10195,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4212, + "line": 4240, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 2117, + "id": 2157, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -10281,14 +10223,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3565, + "line": 3593, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2110, + "id": 2150, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -10309,7 +10251,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3438, + "line": 3466, "character": 4 } ], @@ -10321,87 +10263,88 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2119, - 2108, - 2162, + 2159, + 2148, + 2202, + 2206, + 2189, + 2209, 2166, - 2149, - 2169, - 2126, - 2123, 2163, - 2130, + 2203, + 2170, + 2205, + 2211, + 2172, + 2174, + 2158, + 2173, + 2175, + 2139, 2165, - 2171, - 2132, - 2134, - 2118, - 2133, - 2135, - 2099, - 2125, - 2160, - 2116, - 2122, - 2115, - 2148, + 2200, + 2156, + 2162, + 2155, + 2188, + 2182, 2142, - 2102, - 2153, - 2128, - 2144, - 2112, - 2120, - 2124, - 2140, - 2106, - 2107, - 2111, - 2127, - 2161, - 2121, - 2109, - 2151, - 2141, + 2213, + 2193, + 2168, + 2184, + 2152, + 2160, 2164, - 2137, - 2156, - 2113, - 2114, - 2098, - 2104, + 2180, 2146, - 2145, - 2103, - 2136, - 2129, - 2131, - 2159, - 2172, - 2139, + 2147, + 2151, + 2167, + 2201, + 2161, + 2149, + 2191, + 2181, + 2204, + 2177, + 2196, + 2153, + 2154, 2138, - 2158, - 2150, + 2144, + 2186, + 2185, 2143, - 2152, - 2154, - 2105, - 2147, - 2117, - 2110 + 2176, + 2169, + 2171, + 2199, + 2212, + 2179, + 2178, + 2198, + 2190, + 2183, + 2192, + 2194, + 2145, + 2187, + 2157, + 2150 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3221, + "line": 3249, "character": 12 } ] }, { - "id": 3032, + "id": 3075, "name": "InterceptedApiType", "kind": 4, "kindString": "Enumeration", @@ -10411,7 +10354,7 @@ }, "children": [ { - "id": 3034, + "id": 3077, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -10422,14 +10365,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6537, + "line": 6509, "character": 4 } ], "defaultValue": "\"ALL\"" }, { - "id": 3033, + "id": 3076, "name": "AnswerData", "kind": 16, "kindString": "Enumeration member", @@ -10440,14 +10383,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6533, + "line": 6505, "character": 4 } ], "defaultValue": "\"AnswerData\"" }, { - "id": 3035, + "id": 3078, "name": "LiveboardData", "kind": 16, "kindString": "Enumeration member", @@ -10458,7 +10401,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6541, + "line": 6513, "character": 4 } ], @@ -10470,22 +10413,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3034, - 3033, - 3035 + 3077, + 3076, + 3078 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6529, + "line": 6501, "character": 12 } ] }, { - "id": 2977, + "id": 3020, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -10501,7 +10444,7 @@ }, "children": [ { - "id": 2978, + "id": 3021, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -10512,14 +10455,14 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 126, + "line": 127, "character": 4 } ], "defaultValue": "\"v2\"" }, { - "id": 2979, + "id": 3022, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -10530,7 +10473,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 130, + "line": 131, "character": 4 } ], @@ -10542,21 +10485,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2978, - 2979 + 3021, + 3022 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 121, + "line": 122, "character": 12 } ] }, { - "id": 3011, + "id": 3054, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -10572,7 +10515,7 @@ }, "children": [ { - "id": 3015, + "id": 3058, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -10583,14 +10526,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1824, + "line": 1852, "character": 4 } ], "defaultValue": "\"AUTHOR\"" }, { - "id": 3016, + "id": 3059, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -10601,14 +10544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1828, + "line": 1856, "character": 4 } ], "defaultValue": "\"DATE_SORT\"" }, { - "id": 3012, + "id": 3055, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -10619,14 +10562,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1812, + "line": 1840, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 3013, + "id": 3056, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -10642,14 +10585,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1816, + "line": 1844, "character": 4 } ], "defaultValue": "\"FAVOURITE\"" }, { - "id": 3017, + "id": 3060, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -10660,14 +10603,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1832, + "line": 1860, "character": 4 } ], "defaultValue": "\"SHARE\"" }, { - "id": 3014, + "id": 3057, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -10678,14 +10621,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1820, + "line": 1848, "character": 4 } ], "defaultValue": "\"TAGS\"" }, { - "id": 3018, + "id": 3061, "name": "Verified", "kind": 16, "kindString": "Enumeration member", @@ -10696,7 +10639,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1836, + "line": 1864, "character": 4 } ], @@ -10708,26 +10651,26 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3015, - 3016, - 3012, - 3013, - 3017, - 3014, - 3018 + 3058, + 3059, + 3055, + 3056, + 3060, + 3057, + 3061 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1808, + "line": 1836, "character": 12 } ] }, { - "id": 2945, + "id": 2988, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -10737,7 +10680,7 @@ }, "children": [ { - "id": 2950, + "id": 2993, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -10758,14 +10701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6344, + "line": 6308, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2947, + "id": 2990, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -10786,14 +10729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6305, + "line": 6269, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2949, + "id": 2992, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -10814,14 +10757,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6330, + "line": 6294, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2946, + "id": 2989, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -10842,14 +10785,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6293, + "line": 6257, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2951, + "id": 2994, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -10870,14 +10813,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6356, + "line": 6320, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2948, + "id": 2991, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -10898,7 +10841,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6317, + "line": 6281, "character": 4 } ], @@ -10910,25 +10853,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2950, - 2947, - 2949, - 2946, - 2951, - 2948 + 2993, + 2990, + 2992, + 2989, + 2994, + 2991 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6280, + "line": 6244, "character": 12 } ] }, { - "id": 1958, + "id": 1998, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -10938,7 +10881,7 @@ }, "children": [ { - "id": 1961, + "id": 2001, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -10949,14 +10892,14 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 39, + "line": 40, "character": 4 } ], "defaultValue": "\"answers\"" }, { - "id": 1964, + "id": 2004, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -10967,14 +10910,14 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 51, + "line": 52, "character": 4 } ], "defaultValue": "\"data\"" }, { - "id": 1959, + "id": 1999, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -10985,14 +10928,14 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 31, + "line": 32, "character": 4 } ], "defaultValue": "\"home\"" }, { - "id": 1962, + "id": 2002, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -11003,14 +10946,14 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 43, + "line": 44, "character": 4 } ], "defaultValue": "\"liveboards\"" }, { - "id": 1966, + "id": 2006, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -11021,14 +10964,14 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 59, + "line": 60, "character": 4 } ], "defaultValue": "\"monitor\"" }, { - "id": 1960, + "id": 2000, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -11039,14 +10982,14 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 35, + "line": 36, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 1965, + "id": 2005, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -11057,7 +11000,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 55, + "line": 56, "character": 4 } ], @@ -11069,33 +11012,33 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1961, - 1964, - 1959, - 1962, - 1966, - 1960, - 1965 + 2001, + 2004, + 1999, + 2002, + 2006, + 2000, + 2005 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 27, + "line": 28, "character": 12 } ] }, { - "id": 2712, + "id": 2755, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2713, + "id": 2756, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -11103,14 +11046,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6171, + "line": 6135, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2715, + "id": 2758, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -11118,14 +11061,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6173, + "line": 6137, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2714, + "id": 2757, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -11133,14 +11076,14 @@ "sources": [ { "fileName": "types.ts", - "line": 6172, + "line": 6136, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2716, + "id": 2759, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -11148,7 +11091,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6174, + "line": 6138, "character": 4 } ], @@ -11160,23 +11103,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2713, - 2715, - 2714, - 2716 + 2756, + 2758, + 2757, + 2759 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6170, + "line": 6134, "character": 12 } ] }, { - "id": 2972, + "id": 3015, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -11192,7 +11135,7 @@ }, "children": [ { - "id": 2973, + "id": 3016, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -11203,7 +11146,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 97, + "line": 98, "character": 4 } ], @@ -11215,20 +11158,20 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2973 + 3016 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 91, + "line": 92, "character": 12 } ] }, { - "id": 1983, + "id": 2023, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -11238,7 +11181,7 @@ }, "children": [ { - "id": 1991, + "id": 2031, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -11249,14 +11192,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1735, + "line": 1763, "character": 4 } ], "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1996, + "id": 2036, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -11267,14 +11210,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1755, + "line": 1783, "character": 4 } ], "defaultValue": "\"BW\"" }, { - "id": 1995, + "id": 2035, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -11285,14 +11228,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1751, + "line": 1779, "character": 4 } ], "defaultValue": "\"BW_INC\"" }, { - "id": 1993, + "id": 2033, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -11303,14 +11246,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1743, + "line": 1771, "character": 4 } ], "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1994, + "id": 2034, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -11321,14 +11264,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1747, + "line": 1775, "character": 4 } ], "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1990, + "id": 2030, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -11339,14 +11282,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1731, + "line": 1759, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 1992, + "id": 2032, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -11357,14 +11300,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1739, + "line": 1767, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1984, + "id": 2024, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -11375,14 +11318,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1707, + "line": 1735, "character": 4 } ], "defaultValue": "\"EQ\"" }, { - "id": 1989, + "id": 2029, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -11393,14 +11336,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1727, + "line": 1755, "character": 4 } ], "defaultValue": "\"GE\"" }, { - "id": 1988, + "id": 2028, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -11411,14 +11354,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1723, + "line": 1751, "character": 4 } ], "defaultValue": "\"GT\"" }, { - "id": 1997, + "id": 2037, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -11429,14 +11372,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1759, + "line": 1787, "character": 4 } ], "defaultValue": "\"IN\"" }, { - "id": 1987, + "id": 2027, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -11447,14 +11390,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1719, + "line": 1747, "character": 4 } ], "defaultValue": "\"LE\"" }, { - "id": 1986, + "id": 2026, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -11465,14 +11408,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1715, + "line": 1743, "character": 4 } ], "defaultValue": "\"LT\"" }, { - "id": 1985, + "id": 2025, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -11483,14 +11426,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1711, + "line": 1739, "character": 4 } ], "defaultValue": "\"NE\"" }, { - "id": 1998, + "id": 2038, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -11501,7 +11444,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1763, + "line": 1791, "character": 4 } ], @@ -11513,41 +11456,41 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1991, - 1996, - 1995, - 1993, - 1994, - 1990, - 1992, - 1984, - 1989, - 1988, - 1997, - 1987, - 1986, - 1985, - 1998 + 2031, + 2036, + 2035, + 2033, + 2034, + 2030, + 2032, + 2024, + 2029, + 2028, + 2037, + 2027, + 2026, + 2025, + 2038 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1703, + "line": 1731, "character": 12 } ] }, { - "id": 3003, + "id": 3046, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 3008, + "id": 3051, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -11562,7 +11505,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 3007, + "id": 3050, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -11577,7 +11520,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 3006, + "id": 3049, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -11592,7 +11535,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 3009, + "id": 3052, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -11607,7 +11550,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 3010, + "id": 3053, "name": "GetUnsavedAnswerTML", "kind": 16, "kindString": "Enumeration member", @@ -11622,7 +11565,7 @@ "defaultValue": "\"getUnsavedAnswerTML\"" }, { - "id": 3004, + "id": 3047, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -11637,7 +11580,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 3005, + "id": 3048, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -11657,13 +11600,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 3008, - 3007, - 3006, - 3009, - 3010, - 3004, - 3005 + 3051, + 3050, + 3049, + 3052, + 3053, + 3047, + 3048 ] } ], @@ -11676,7 +11619,7 @@ ] }, { - "id": 1875, + "id": 1915, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -11705,7 +11648,7 @@ }, "children": [ { - "id": 1876, + "id": 1916, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -11722,7 +11665,7 @@ ], "signatures": [ { - "id": 1877, + "id": 1917, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -11732,7 +11675,7 @@ }, "parameters": [ { - "id": 1878, + "id": 1918, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -11740,12 +11683,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1948, + "id": 1988, "name": "SessionInterface" } }, { - "id": 1879, + "id": 1919, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -11757,7 +11700,7 @@ } }, { - "id": 1880, + "id": 1920, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -11769,7 +11712,7 @@ } }, { - "id": 1881, + "id": 1921, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -11783,7 +11726,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2980, + "id": 3023, "name": "VizPoint" } } @@ -11791,14 +11734,14 @@ ], "type": { "type": "reference", - "id": 1875, + "id": 1915, "name": "AnswerService" } } ] }, { - "id": 1890, + "id": 1930, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -11814,7 +11757,7 @@ ], "signatures": [ { - "id": 1891, + "id": 1931, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -11825,7 +11768,7 @@ }, "parameters": [ { - "id": 1892, + "id": 1932, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -11854,7 +11797,7 @@ ] }, { - "id": 1893, + "id": 1933, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -11870,7 +11813,7 @@ ], "signatures": [ { - "id": 1894, + "id": 1934, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -11886,7 +11829,7 @@ }, "parameters": [ { - "id": 1895, + "id": 1935, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -11915,7 +11858,7 @@ ] }, { - "id": 1942, + "id": 1982, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -11931,14 +11874,14 @@ ], "signatures": [ { - "id": 1943, + "id": 1983, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1944, + "id": 1984, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -11963,7 +11906,7 @@ ] }, { - "id": 1896, + "id": 1936, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -11979,7 +11922,7 @@ ], "signatures": [ { - "id": 1897, + "id": 1937, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -11990,7 +11933,7 @@ }, "parameters": [ { - "id": 1898, + "id": 1938, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -12002,7 +11945,7 @@ } }, { - "id": 1899, + "id": 1939, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -12010,12 +11953,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1983, + "id": 2023, "name": "RuntimeFilterOp" } }, { - "id": 1900, + "id": 1940, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -12061,7 +12004,7 @@ ] }, { - "id": 1932, + "id": 1972, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -12077,7 +12020,7 @@ ], "signatures": [ { - "id": 1933, + "id": 1973, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -12088,7 +12031,7 @@ }, "parameters": [ { - "id": 1934, + "id": 1974, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -12102,7 +12045,7 @@ } }, { - "id": 1935, + "id": 1975, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -12130,7 +12073,7 @@ ] }, { - "id": 1910, + "id": 1950, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -12146,7 +12089,7 @@ ], "signatures": [ { - "id": 1911, + "id": 1951, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -12157,7 +12100,7 @@ }, "parameters": [ { - "id": 1912, + "id": 1952, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -12170,7 +12113,7 @@ "defaultValue": "'en-us'" }, { - "id": 1913, + "id": 1953, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -12199,7 +12142,7 @@ ] }, { - "id": 1903, + "id": 1943, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -12215,7 +12158,7 @@ ], "signatures": [ { - "id": 1904, + "id": 1944, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -12226,7 +12169,7 @@ }, "parameters": [ { - "id": 1905, + "id": 1945, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -12239,7 +12182,7 @@ "defaultValue": "0" }, { - "id": 1906, + "id": 1946, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -12258,14 +12201,14 @@ { "type": "reflection", "declaration": { - "id": 1907, + "id": 1947, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1908, + "id": 1948, "name": "columns", "kind": 1024, "kindString": "Property", @@ -12276,7 +12219,7 @@ } }, { - "id": 1909, + "id": 1949, "name": "data", "kind": 1024, "kindString": "Property", @@ -12292,8 +12235,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1908, - 1909 + 1948, + 1949 ] } ] @@ -12306,7 +12249,7 @@ ] }, { - "id": 1914, + "id": 1954, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -12322,7 +12265,7 @@ ], "signatures": [ { - "id": 1915, + "id": 1955, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -12333,7 +12276,7 @@ }, "parameters": [ { - "id": 1916, + "id": 1956, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -12346,7 +12289,7 @@ "defaultValue": "'en-us'" }, { - "id": 1917, + "id": 1957, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -12361,7 +12304,7 @@ "defaultValue": "false" }, { - "id": 1918, + "id": 1958, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -12390,7 +12333,7 @@ ] }, { - "id": 1938, + "id": 1978, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -12406,7 +12349,7 @@ ], "signatures": [ { - "id": 1939, + "id": 1979, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -12425,7 +12368,7 @@ ] }, { - "id": 1919, + "id": 1959, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -12441,7 +12384,7 @@ ], "signatures": [ { - "id": 1920, + "id": 1960, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -12452,7 +12395,7 @@ }, "parameters": [ { - "id": 1921, + "id": 1961, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -12465,7 +12408,7 @@ "defaultValue": "'en-us'" }, { - "id": 1922, + "id": 1962, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -12486,7 +12429,7 @@ ] }, { - "id": 1923, + "id": 1963, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -12502,7 +12445,7 @@ ], "signatures": [ { - "id": 1924, + "id": 1964, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -12512,7 +12455,7 @@ }, "parameters": [ { - "id": 1925, + "id": 1965, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -12525,7 +12468,7 @@ "defaultValue": "'en-us'" }, { - "id": 1926, + "id": 1966, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -12538,7 +12481,7 @@ "defaultValue": "false" }, { - "id": 1927, + "id": 1967, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -12561,7 +12504,7 @@ ] }, { - "id": 1901, + "id": 1941, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -12577,7 +12520,7 @@ ], "signatures": [ { - "id": 1902, + "id": 1942, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -12596,7 +12539,7 @@ ] }, { - "id": 1936, + "id": 1976, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -12612,7 +12555,7 @@ ], "signatures": [ { - "id": 1937, + "id": 1977, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -12623,14 +12566,14 @@ }, "type": { "type": "reference", - "id": 1948, + "id": 1988, "name": "SessionInterface" } } ] }, { - "id": 1885, + "id": 1925, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -12646,7 +12589,7 @@ ], "signatures": [ { - "id": 1886, + "id": 1926, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -12668,7 +12611,7 @@ ] }, { - "id": 1940, + "id": 1980, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -12684,7 +12627,7 @@ ], "signatures": [ { - "id": 1941, + "id": 1981, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -12703,7 +12646,7 @@ ] }, { - "id": 1928, + "id": 1968, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -12719,7 +12662,7 @@ ], "signatures": [ { - "id": 1929, + "id": 1969, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -12739,7 +12682,7 @@ }, "parameters": [ { - "id": 1930, + "id": 1970, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -12754,7 +12697,7 @@ } }, { - "id": 1931, + "id": 1971, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -12766,7 +12709,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1955, + "id": 1995, "name": "UnderlyingDataPoint" } } @@ -12777,7 +12720,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1915, "name": "AnswerService" } ], @@ -12787,7 +12730,7 @@ ] }, { - "id": 1887, + "id": 1927, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -12803,7 +12746,7 @@ ], "signatures": [ { - "id": 1888, + "id": 1928, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -12814,7 +12757,7 @@ }, "parameters": [ { - "id": 1889, + "id": 1929, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -12843,7 +12786,7 @@ ] }, { - "id": 1945, + "id": 1985, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -12859,14 +12802,14 @@ ], "signatures": [ { - "id": 1946, + "id": 1986, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1947, + "id": 1987, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -12890,31 +12833,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1876 + 1916 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1890, - 1893, - 1942, - 1896, - 1932, - 1910, - 1903, - 1914, - 1938, - 1919, - 1923, - 1901, + 1930, + 1933, + 1982, 1936, - 1885, - 1940, - 1928, - 1887, - 1945 + 1972, + 1950, + 1943, + 1954, + 1978, + 1959, + 1963, + 1941, + 1976, + 1925, + 1980, + 1968, + 1927, + 1985 ] } ], @@ -12927,7 +12870,7 @@ ] }, { - "id": 1027, + "id": 1047, "name": "AppEmbed", "kind": 128, "kindString": "Class", @@ -12943,7 +12886,7 @@ }, "children": [ { - "id": 1028, + "id": 1048, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -12951,46 +12894,46 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 704, + "line": 671, "character": 4 } ], "signatures": [ { - "id": 1029, + "id": 1049, "name": "new AppEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1030, + "id": 1050, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2741, + "id": 2784, "name": "DOMSelector" } }, { - "id": 1031, + "id": 1051, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2620, + "id": 2663, "name": "AppViewConfig" } } ], "type": { "type": "reference", - "id": 1027, + "id": 1047, "name": "AppEmbed" }, "overwrites": { @@ -13005,7 +12948,7 @@ } }, { - "id": 1065, + "id": 1085, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13015,13 +12958,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1099, + "line": 1056, "character": 11 } ], "signatures": [ { - "id": 1066, + "id": 1086, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13051,7 +12994,7 @@ } }, { - "id": 1241, + "id": 1265, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13061,13 +13004,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1699, + "line": 1717, "character": 17 } ], "signatures": [ { - "id": 1242, + "id": 1266, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13083,7 +13026,7 @@ }, "parameters": [ { - "id": 1243, + "id": 1267, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13104,7 +13047,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1915, "name": "AnswerService" } ], @@ -13122,7 +13065,60 @@ } }, { - "id": 1042, + "id": 1236, + "name": "getCurrentContext", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/ts-embed.ts", + "line": 1437, + "character": 17 + } + ], + "signatures": [ + { + "id": 1237, + "name": "getCurrentContext", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Get the current context of the embedded TS component.", + "returns": "The current context object containing the page type and object ids.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl\n" + } + ] + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + }, + "inheritedFrom": { + "type": "reference", + "name": "V1Embed.getCurrentContext" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "V1Embed.getCurrentContext" + } + }, + { + "id": 1062, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -13132,13 +13128,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 968, + "line": 925, "character": 11 } ], "signatures": [ { - "id": 1043, + "id": 1063, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -13154,7 +13150,7 @@ ] }, { - "id": 1210, + "id": 1232, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -13164,13 +13160,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1420, + "line": 1424, "character": 11 } ], "signatures": [ { - "id": 1211, + "id": 1233, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -13191,7 +13187,7 @@ } }, { - "id": 1236, + "id": 1260, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13201,13 +13197,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1686, + "line": 1704, "character": 11 } ], "signatures": [ { - "id": 1237, + "id": 1261, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -13229,14 +13225,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1238, + "id": 1262, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1240, + "id": 1264, "name": "child", "kind": 1024, "kindString": "Property", @@ -13248,7 +13244,7 @@ "defaultValue": "..." }, { - "id": 1239, + "id": 1263, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -13265,8 +13261,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1240, - 1239 + 1264, + 1263 ] } ] @@ -13284,7 +13280,7 @@ } }, { - "id": 1218, + "id": 1242, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -13294,13 +13290,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1455, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 1219, + "id": 1243, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -13316,7 +13312,7 @@ }, "parameters": [ { - "id": 1220, + "id": 1244, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -13324,20 +13320,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1221, + "id": 1245, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1222, + "id": 1246, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1223, + "id": 1247, "name": "key", "kind": 32768, "flags": {}, @@ -13382,7 +13378,7 @@ } }, { - "id": 1224, + "id": 1248, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -13392,13 +13388,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1508, + "line": 1526, "character": 11 } ], "signatures": [ { - "id": 1225, + "id": 1249, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -13419,7 +13415,7 @@ } }, { - "id": 1234, + "id": 1258, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -13429,13 +13425,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1655, + "line": 1673, "character": 11 } ], "signatures": [ { - "id": 1235, + "id": 1259, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -13459,7 +13455,7 @@ } }, { - "id": 1061, + "id": 1081, "name": "navigateToPage", "kind": 2048, "kindString": "Method", @@ -13469,13 +13465,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1073, + "line": 1030, "character": 11 } ], "signatures": [ { - "id": 1062, + "id": 1082, "name": "navigateToPage", "kind": 4096, "kindString": "Call signature", @@ -13491,7 +13487,7 @@ }, "parameters": [ { - "id": 1063, + "id": 1083, "name": "path", "kind": 32768, "kindString": "Parameter", @@ -13514,7 +13510,7 @@ } }, { - "id": 1064, + "id": 1084, "name": "noReload", "kind": 32768, "kindString": "Parameter", @@ -13537,7 +13533,7 @@ ] }, { - "id": 1181, + "id": 1201, "name": "off", "kind": 2048, "kindString": "Method", @@ -13547,13 +13543,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1240, + "line": 1243, "character": 11 } ], "signatures": [ { - "id": 1182, + "id": 1202, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -13569,7 +13565,7 @@ }, "parameters": [ { - "id": 1183, + "id": 1203, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -13579,12 +13575,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 1184, + "id": 1204, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -13594,7 +13590,7 @@ }, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } } @@ -13615,7 +13611,7 @@ } }, { - "id": 1080, + "id": 1100, "name": "on", "kind": 2048, "kindString": "Method", @@ -13625,13 +13621,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1812, + "line": 1830, "character": 11 } ], "signatures": [ { - "id": 1081, + "id": 1101, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -13654,38 +13650,38 @@ }, "parameters": [ { - "id": 1082, + "id": 1102, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 1083, + "id": 1103, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } }, { - "id": 1084, + "id": 1104, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2742, + "id": 2785, "name": "MessageOptions" }, "defaultValue": "..." @@ -13707,7 +13703,7 @@ } }, { - "id": 1214, + "id": 1238, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -13717,13 +13713,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1433, + "line": 1451, "character": 17 } ], "signatures": [ { - "id": 1215, + "id": 1239, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -13733,7 +13729,7 @@ }, "parameters": [ { - "id": 1216, + "id": 1240, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -13748,7 +13744,7 @@ "defaultValue": "false" }, { - "id": 1217, + "id": 1241, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -13782,7 +13778,7 @@ } }, { - "id": 1226, + "id": 1250, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -13792,13 +13788,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1519, + "line": 1537, "character": 17 } ], "signatures": [ { - "id": 1227, + "id": 1251, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -13835,7 +13831,7 @@ } }, { - "id": 1073, + "id": 1093, "name": "render", "kind": 2048, "kindString": "Method", @@ -13845,13 +13841,13 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 1128, + "line": 1085, "character": 17 } ], "signatures": [ { - "id": 1074, + "id": 1094, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -13864,7 +13860,7 @@ "typeArguments": [ { "type": "reference", - "id": 1027, + "id": 1047, "name": "AppEmbed" } ], @@ -13882,7 +13878,7 @@ } }, { - "id": 1230, + "id": 1254, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -13892,13 +13888,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1567, + "line": 1585, "character": 17 } ], "signatures": [ { - "id": 1231, + "id": 1255, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -13928,7 +13924,7 @@ } }, { - "id": 1232, + "id": 1256, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -13938,13 +13934,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1636, + "line": 1654, "character": 11 } ], "signatures": [ { - "id": 1233, + "id": 1257, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -13974,7 +13970,7 @@ } }, { - "id": 1199, + "id": 1219, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -13984,13 +13980,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1350, + "line": 1353, "character": 17 } ], "signatures": [ { - "id": 1200, + "id": 1220, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14001,28 +13997,40 @@ }, "typeParameter": [ { - "id": 1201, + "id": 1221, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2097, + "id": 2137, "name": "HostEvent" } }, { - "id": 1202, + "id": 1222, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} + }, + { + "id": 1223, + "name": "ContextT", + "kind": 131072, + "kindString": "Type parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 2214, + "name": "ContextType" + } } ], "parameters": [ { - "id": 1203, + "id": 1224, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14036,7 +14044,7 @@ } }, { - "id": 1204, + "id": 1225, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14059,6 +14067,19 @@ "name": "TriggerPayload" }, "defaultValue": "..." + }, + { + "id": 1226, + "name": "context", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "name": "ContextT" + } } ], "type": { @@ -14074,6 +14095,10 @@ { "type": "reference", "name": "HostEventT" + }, + { + "type": "reference", + "name": "ContextT" } ], "name": "TriggerResponse" @@ -14093,7 +14118,7 @@ } }, { - "id": 1205, + "id": 1227, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14103,13 +14128,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1400, "character": 17 } ], "signatures": [ { - "id": 1206, + "id": 1228, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14120,21 +14145,21 @@ }, "typeParameter": [ { - "id": 1207, + "id": 1229, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3003, + "id": 3046, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1208, + "id": 1230, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14148,7 +14173,7 @@ } }, { - "id": 1209, + "id": 1231, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -14201,38 +14226,39 @@ "title": "Constructors", "kind": 512, "children": [ - 1028 + 1048 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1065, - 1241, - 1042, - 1210, + 1085, + 1265, 1236, - 1218, - 1224, - 1234, - 1061, - 1181, - 1080, - 1214, - 1226, - 1073, - 1230, + 1062, 1232, - 1199, - 1205 + 1260, + 1242, + 1248, + 1258, + 1081, + 1201, + 1100, + 1238, + 1250, + 1093, + 1254, + 1256, + 1219, + 1227 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 698, + "line": 665, "character": 13 } ], @@ -14244,7 +14270,7 @@ ] }, { - "id": 1340, + "id": 1368, "name": "BodylessConversation", "kind": 128, "kindString": "Class", @@ -14268,7 +14294,7 @@ }, "children": [ { - "id": 1341, + "id": 1369, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -14282,45 +14308,45 @@ ], "signatures": [ { - "id": 1342, + "id": 1370, "name": "new BodylessConversation", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1343, + "id": 1371, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1308, + "id": 1334, "name": "BodylessConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1340, + "id": 1368, "name": "BodylessConversation" }, "overwrites": { "type": "reference", - "id": 1246, + "id": 1270, "name": "SpotterAgentEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1245, + "id": 1269, "name": "SpotterAgentEmbed.constructor" } }, { - "id": 1344, + "id": 1372, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -14336,14 +14362,14 @@ ], "signatures": [ { - "id": 1345, + "id": 1373, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1346, + "id": 1374, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -14363,14 +14389,14 @@ { "type": "reflection", "declaration": { - "id": 1347, + "id": 1375, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1349, + "id": 1377, "name": "container", "kind": 1024, "kindString": "Property", @@ -14381,7 +14407,7 @@ } }, { - "id": 1348, + "id": 1376, "name": "error", "kind": 1024, "kindString": "Property", @@ -14392,7 +14418,7 @@ } }, { - "id": 1350, + "id": 1378, "name": "viz", "kind": 1024, "kindString": "Property", @@ -14409,9 +14435,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1349, - 1348, - 1350 + 1377, + 1376, + 1378 ] } ] @@ -14420,14 +14446,14 @@ { "type": "reflection", "declaration": { - "id": 1351, + "id": 1379, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1352, + "id": 1380, "name": "container", "kind": 1024, "kindString": "Property", @@ -14438,7 +14464,7 @@ } }, { - "id": 1354, + "id": 1382, "name": "error", "kind": 1024, "kindString": "Property", @@ -14449,7 +14475,7 @@ } }, { - "id": 1353, + "id": 1381, "name": "viz", "kind": 1024, "kindString": "Property", @@ -14466,9 +14492,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1352, - 1354, - 1353 + 1380, + 1382, + 1381 ] } ] @@ -14481,19 +14507,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1250, + "id": 1274, "name": "SpotterAgentEmbed.sendMessage" } } ], "inheritedFrom": { "type": "reference", - "id": 1249, + "id": 1273, "name": "SpotterAgentEmbed.sendMessage" } }, { - "id": 1355, + "id": 1383, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -14509,7 +14535,7 @@ ], "signatures": [ { - "id": 1356, + "id": 1384, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -14520,7 +14546,7 @@ }, "parameters": [ { - "id": 1357, + "id": 1385, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -14543,14 +14569,14 @@ { "type": "reflection", "declaration": { - "id": 1358, + "id": 1386, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1360, + "id": 1388, "name": "data", "kind": 1024, "kindString": "Property", @@ -14562,7 +14588,7 @@ "defaultValue": "..." }, { - "id": 1359, + "id": 1387, "name": "error", "kind": 1024, "kindString": "Property", @@ -14578,8 +14604,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1360, - 1359 + 1388, + 1387 ] } ] @@ -14588,14 +14614,14 @@ { "type": "reflection", "declaration": { - "id": 1361, + "id": 1389, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1362, + "id": 1390, "name": "data", "kind": 1024, "kindString": "Property", @@ -14603,14 +14629,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1363, + "id": 1391, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1369, + "id": 1397, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -14622,7 +14648,7 @@ "defaultValue": "..." }, { - "id": 1368, + "id": 1396, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -14634,7 +14660,7 @@ "defaultValue": "..." }, { - "id": 1364, + "id": 1392, "name": "convId", "kind": 1024, "kindString": "Property", @@ -14646,7 +14672,7 @@ "defaultValue": "..." }, { - "id": 1367, + "id": 1395, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -14658,7 +14684,7 @@ "defaultValue": "..." }, { - "id": 1365, + "id": 1393, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -14670,7 +14696,7 @@ "defaultValue": "..." }, { - "id": 1366, + "id": 1394, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -14687,12 +14713,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1369, - 1368, - 1364, - 1367, - 1365, - 1366 + 1397, + 1396, + 1392, + 1395, + 1393, + 1394 ] } ] @@ -14701,7 +14727,7 @@ "defaultValue": "..." }, { - "id": 1370, + "id": 1398, "name": "error", "kind": 1024, "kindString": "Property", @@ -14717,8 +14743,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1362, - 1370 + 1390, + 1398 ] } ] @@ -14731,14 +14757,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1261, + "id": 1285, "name": "SpotterAgentEmbed.sendMessageData" } } ], "inheritedFrom": { "type": "reference", - "id": 1260, + "id": 1284, "name": "SpotterAgentEmbed.sendMessageData" } } @@ -14748,15 +14774,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1341 + 1369 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1344, - 1355 + 1372, + 1383 ] } ], @@ -14770,13 +14796,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1244, + "id": 1268, "name": "SpotterAgentEmbed" } ] }, { - "id": 1632, + "id": 1668, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -14804,7 +14830,7 @@ }, "children": [ { - "id": 1633, + "id": 1669, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -14812,20 +14838,20 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 360, + "line": 371, "character": 4 } ], "signatures": [ { - "id": 1634, + "id": 1670, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1635, + "id": 1671, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -14836,38 +14862,38 @@ } }, { - "id": 1636, + "id": 1672, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1588, + "id": 1622, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1632, + "id": 1668, "name": "ConversationEmbed" }, "overwrites": { "type": "reference", - "id": 1373, + "id": 1401, "name": "SpotterEmbed.constructor" } } ], "overwrites": { "type": "reference", - "id": 1372, + "id": 1400, "name": "SpotterEmbed.constructor" } }, { - "id": 1783, + "id": 1823, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -14877,13 +14903,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1485, + "line": 1503, "character": 11 } ], "signatures": [ { - "id": 1784, + "id": 1824, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -14903,19 +14929,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1523, + "id": 1555, "name": "SpotterEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "id": 1522, + "id": 1554, "name": "SpotterEmbed.destroy" } }, { - "id": 1802, + "id": 1842, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -14925,13 +14951,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1699, + "line": 1717, "character": 17 } ], "signatures": [ { - "id": 1803, + "id": 1843, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -14947,7 +14973,7 @@ }, "parameters": [ { - "id": 1804, + "id": 1844, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -14968,7 +14994,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1915, "name": "AnswerService" } ], @@ -14976,19 +15002,74 @@ }, "inheritedFrom": { "type": "reference", - "id": 1542, + "id": 1574, "name": "SpotterEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "id": 1541, + "id": 1573, "name": "SpotterEmbed.getAnswerService" } }, { - "id": 1640, + "id": 1680, + "name": "getCurrentContext", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 347, + "character": 17 + } + ], + "signatures": [ + { + "id": 1681, + "name": "getCurrentContext", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Get the current context of the embedded SpotterEmbed.", + "returns": "The current context object containing the page type and object ids.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl\n" + } + ] + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "PageContextOptions" + } + ], + "name": "Promise" + }, + "inheritedFrom": { + "type": "reference", + "id": 1412, + "name": "SpotterEmbed.getCurrentContext" + } + } + ], + "inheritedFrom": { + "type": "reference", + "id": 1411, + "name": "SpotterEmbed.getCurrentContext" + } + }, + { + "id": 1676, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -14998,13 +15079,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 293, + "line": 294, "character": 11 } ], "signatures": [ { - "id": 1641, + "id": 1677, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15015,19 +15096,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1380, + "id": 1408, "name": "SpotterEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "id": 1379, + "id": 1407, "name": "SpotterEmbed.getIframeSrc" } }, { - "id": 1797, + "id": 1837, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15037,13 +15118,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1686, + "line": 1704, "character": 11 } ], "signatures": [ { - "id": 1798, + "id": 1838, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15065,14 +15146,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1799, + "id": 1839, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1801, + "id": 1841, "name": "child", "kind": 1024, "kindString": "Property", @@ -15084,7 +15165,7 @@ "defaultValue": "..." }, { - "id": 1800, + "id": 1840, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15101,8 +15182,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1801, - 1800 + 1841, + 1840 ] } ] @@ -15110,19 +15191,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1537, + "id": 1569, "name": "SpotterEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "id": 1536, + "id": 1568, "name": "SpotterEmbed.getPreRenderIds" } }, { - "id": 1777, + "id": 1817, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -15132,13 +15213,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1455, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 1778, + "id": 1818, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15154,7 +15235,7 @@ }, "parameters": [ { - "id": 1779, + "id": 1819, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15162,20 +15243,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1780, + "id": 1820, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1781, + "id": 1821, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1782, + "id": 1822, "name": "key", "kind": 32768, "flags": {}, @@ -15210,19 +15291,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1517, + "id": 1549, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "id": 1516, + "id": 1548, "name": "SpotterEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 1785, + "id": 1825, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -15232,13 +15313,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1508, + "line": 1526, "character": 11 } ], "signatures": [ { - "id": 1786, + "id": 1826, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -15249,19 +15330,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1525, + "id": 1557, "name": "SpotterEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "id": 1524, + "id": 1556, "name": "SpotterEmbed.getUnderlyingFrameElement" } }, { - "id": 1795, + "id": 1835, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -15271,13 +15352,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1655, + "line": 1673, "character": 11 } ], "signatures": [ { - "id": 1796, + "id": 1836, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -15291,19 +15372,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1535, + "id": 1567, "name": "SpotterEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1534, + "id": 1566, "name": "SpotterEmbed.hidePreRender" } }, { - "id": 1742, + "id": 1780, "name": "off", "kind": 2048, "kindString": "Method", @@ -15313,13 +15394,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1240, + "line": 1243, "character": 11 } ], "signatures": [ { - "id": 1743, + "id": 1781, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -15335,7 +15416,7 @@ }, "parameters": [ { - "id": 1744, + "id": 1782, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15345,12 +15426,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 1745, + "id": 1783, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15360,7 +15441,7 @@ }, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } } @@ -15371,19 +15452,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1482, + "id": 1512, "name": "SpotterEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "id": 1481, + "id": 1511, "name": "SpotterEmbed.off" } }, { - "id": 1736, + "id": 1774, "name": "on", "kind": 2048, "kindString": "Method", @@ -15393,13 +15474,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1211, + "line": 1214, "character": 11 } ], "signatures": [ { - "id": 1737, + "id": 1775, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -15419,7 +15500,7 @@ }, "parameters": [ { - "id": 1738, + "id": 1776, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15429,12 +15510,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 1739, + "id": 1777, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15444,12 +15525,12 @@ }, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } }, { - "id": 1740, + "id": 1778, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -15459,13 +15540,13 @@ }, "type": { "type": "reference", - "id": 2742, + "id": 2785, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1741, + "id": 1779, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -15484,19 +15565,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1476, + "id": 1506, "name": "SpotterEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "id": 1475, + "id": 1505, "name": "SpotterEmbed.on" } }, { - "id": 1773, + "id": 1813, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15506,13 +15587,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1433, + "line": 1451, "character": 17 } ], "signatures": [ { - "id": 1774, + "id": 1814, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -15522,7 +15603,7 @@ }, "parameters": [ { - "id": 1775, + "id": 1815, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -15537,7 +15618,7 @@ "defaultValue": "false" }, { - "id": 1776, + "id": 1816, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -15561,19 +15642,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1513, + "id": 1545, "name": "SpotterEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1512, + "id": 1544, "name": "SpotterEmbed.preRender" } }, { - "id": 1787, + "id": 1827, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -15583,13 +15664,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1519, + "line": 1537, "character": 17 } ], "signatures": [ { - "id": 1788, + "id": 1828, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -15616,19 +15697,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1527, + "id": 1559, "name": "SpotterEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "id": 1526, + "id": 1558, "name": "SpotterEmbed.prerenderGeneric" } }, { - "id": 1642, + "id": 1678, "name": "render", "kind": 2048, "kindString": "Method", @@ -15638,13 +15719,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 333, + "line": 334, "character": 17 } ], "signatures": [ { - "id": 1643, + "id": 1679, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -15654,7 +15735,7 @@ "typeArguments": [ { "type": "reference", - "id": 1371, + "id": 1399, "name": "SpotterEmbed" } ], @@ -15662,19 +15743,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1382, + "id": 1410, "name": "SpotterEmbed.render" } } ], "inheritedFrom": { "type": "reference", - "id": 1381, + "id": 1409, "name": "SpotterEmbed.render" } }, { - "id": 1791, + "id": 1831, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -15684,13 +15765,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1567, + "line": 1585, "character": 17 } ], "signatures": [ { - "id": 1792, + "id": 1832, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -15710,19 +15791,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1531, + "id": 1563, "name": "SpotterEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "id": 1530, + "id": 1562, "name": "SpotterEmbed.showPreRender" } }, { - "id": 1793, + "id": 1833, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -15732,13 +15813,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1636, + "line": 1654, "character": 11 } ], "signatures": [ { - "id": 1794, + "id": 1834, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -15758,19 +15839,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1533, + "id": 1565, "name": "SpotterEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "id": 1532, + "id": 1564, "name": "SpotterEmbed.syncPreRenderStyle" } }, { - "id": 1760, + "id": 1798, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -15780,13 +15861,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1350, + "line": 1353, "character": 17 } ], "signatures": [ { - "id": 1761, + "id": 1799, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -15797,28 +15878,40 @@ }, "typeParameter": [ { - "id": 1762, + "id": 1800, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2097, + "id": 2137, "name": "HostEvent" } }, { - "id": 1763, + "id": 1801, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} + }, + { + "id": 1802, + "name": "ContextT", + "kind": 131072, + "kindString": "Type parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 2214, + "name": "ContextType" + } } ], "parameters": [ { - "id": 1764, + "id": 1803, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15832,7 +15925,7 @@ } }, { - "id": 1765, + "id": 1804, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -15855,6 +15948,19 @@ "name": "TriggerPayload" }, "defaultValue": "..." + }, + { + "id": 1805, + "name": "context", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "name": "ContextT" + } } ], "type": { @@ -15870,6 +15976,10 @@ { "type": "reference", "name": "HostEventT" + }, + { + "type": "reference", + "name": "ContextT" } ], "name": "TriggerResponse" @@ -15879,19 +15989,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 1500, + "id": 1530, "name": "SpotterEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "id": 1499, + "id": 1529, "name": "SpotterEmbed.trigger" } }, { - "id": 1766, + "id": 1806, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -15901,13 +16011,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1400, "character": 17 } ], "signatures": [ { - "id": 1767, + "id": 1807, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -15918,21 +16028,21 @@ }, "typeParameter": [ { - "id": 1768, + "id": 1808, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3003, + "id": 3046, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1769, + "id": 1809, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -15946,7 +16056,7 @@ } }, { - "id": 1770, + "id": 1810, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -15984,14 +16094,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 1506, + "id": 1538, "name": "SpotterEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "id": 1505, + "id": 1537, "name": "SpotterEmbed.triggerUIPassThrough" } } @@ -16001,49 +16111,50 @@ "title": "Constructors", "kind": 512, "children": [ - 1633 + 1669 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1783, - 1802, - 1640, - 1797, - 1777, - 1785, - 1795, - 1742, - 1736, - 1773, - 1787, - 1642, - 1791, - 1793, - 1760, - 1766 + 1823, + 1842, + 1680, + 1676, + 1837, + 1817, + 1825, + 1835, + 1780, + 1774, + 1813, + 1827, + 1678, + 1831, + 1833, + 1798, + 1806 ] } ], "sources": [ { "fileName": "embed/conversation.ts", - "line": 359, + "line": 370, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "id": 1371, + "id": 1399, "name": "SpotterEmbed" } ] }, { - "id": 614, + "id": 626, "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", @@ -16063,7 +16174,7 @@ }, "children": [ { - "id": 615, + "id": 627, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -16071,46 +16182,46 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 489, + "line": 458, "character": 4 } ], "signatures": [ { - "id": 616, + "id": 628, "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 617, + "id": 629, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2741, + "id": 2784, "name": "DOMSelector" } }, { - "id": 618, + "id": 630, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2485, + "id": 2527, "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 614, + "id": 626, "name": "LiveboardEmbed" }, "overwrites": { @@ -16125,7 +16236,7 @@ } }, { - "id": 670, + "id": 684, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16135,13 +16246,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 863, + "line": 824, "character": 11 } ], "signatures": [ { - "id": 671, + "id": 685, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -16171,7 +16282,7 @@ } }, { - "id": 841, + "id": 857, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -16181,13 +16292,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1699, + "line": 1717, "character": 17 } ], "signatures": [ { - "id": 842, + "id": 858, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16203,7 +16314,7 @@ }, "parameters": [ { - "id": 843, + "id": 859, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16224,7 +16335,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1915, "name": "AnswerService" } ], @@ -16242,7 +16353,60 @@ } }, { - "id": 814, + "id": 701, + "name": "getCurrentContext", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 901, + "character": 17 + } + ], + "signatures": [ + { + "id": 702, + "name": "getCurrentContext", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Get the current context of the embedded liveboard.", + "returns": "The current context object containing the page type and object ids.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl\n" + } + ] + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "PageContextOptions" + } + ], + "name": "Promise" + }, + "overwrites": { + "type": "reference", + "name": "V1Embed.getCurrentContext" + } + } + ], + "overwrites": { + "type": "reference", + "name": "V1Embed.getCurrentContext" + } + }, + { + "id": 830, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16252,13 +16416,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1420, + "line": 1424, "character": 11 } ], "signatures": [ { - "id": 815, + "id": 831, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16279,7 +16443,7 @@ } }, { - "id": 685, + "id": 699, "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", @@ -16289,13 +16453,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 922, + "line": 883, "character": 11 } ], "signatures": [ { - "id": 686, + "id": 700, "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", @@ -16312,7 +16476,7 @@ ] }, { - "id": 836, + "id": 852, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16322,13 +16486,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1686, + "line": 1704, "character": 11 } ], "signatures": [ { - "id": 837, + "id": 853, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16350,14 +16514,14 @@ "type": { "type": "reflection", "declaration": { - "id": 838, + "id": 854, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 840, + "id": 856, "name": "child", "kind": 1024, "kindString": "Property", @@ -16369,7 +16533,7 @@ "defaultValue": "..." }, { - "id": 839, + "id": 855, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -16386,8 +16550,8 @@ "title": "Properties", "kind": 1024, "children": [ - 840, - 839 + 856, + 855 ] } ] @@ -16405,7 +16569,7 @@ } }, { - "id": 820, + "id": 836, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16415,13 +16579,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1455, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 821, + "id": 837, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16437,7 +16601,7 @@ }, "parameters": [ { - "id": 822, + "id": 838, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16445,20 +16609,20 @@ "type": { "type": "reflection", "declaration": { - "id": 823, + "id": 839, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 824, + "id": 840, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 825, + "id": 841, "name": "key", "kind": 32768, "flags": {}, @@ -16503,7 +16667,7 @@ } }, { - "id": 826, + "id": 842, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16513,13 +16677,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1508, + "line": 1526, "character": 11 } ], "signatures": [ { - "id": 827, + "id": 843, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16540,7 +16704,7 @@ } }, { - "id": 834, + "id": 850, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16550,13 +16714,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1655, + "line": 1673, "character": 11 } ], "signatures": [ { - "id": 835, + "id": 851, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16580,7 +16744,7 @@ } }, { - "id": 680, + "id": 694, "name": "navigateToLiveboard", "kind": 2048, "kindString": "Method", @@ -16590,20 +16754,20 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 903, + "line": 864, "character": 11 } ], "signatures": [ { - "id": 681, + "id": 695, "name": "navigateToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 682, + "id": 696, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -16614,7 +16778,7 @@ } }, { - "id": 683, + "id": 697, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16627,7 +16791,7 @@ } }, { - "id": 684, + "id": 698, "name": "activeTabId", "kind": 32768, "kindString": "Parameter", @@ -16648,7 +16812,7 @@ ] }, { - "id": 791, + "id": 807, "name": "off", "kind": 2048, "kindString": "Method", @@ -16658,13 +16822,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1240, + "line": 1243, "character": 11 } ], "signatures": [ { - "id": 792, + "id": 808, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16680,7 +16844,7 @@ }, "parameters": [ { - "id": 793, + "id": 809, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16690,12 +16854,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 794, + "id": 810, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16705,7 +16869,7 @@ }, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } } @@ -16726,7 +16890,7 @@ } }, { - "id": 692, + "id": 708, "name": "on", "kind": 2048, "kindString": "Method", @@ -16736,13 +16900,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1812, + "line": 1830, "character": 11 } ], "signatures": [ { - "id": 693, + "id": 709, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16765,38 +16929,38 @@ }, "parameters": [ { - "id": 694, + "id": 710, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 695, + "id": 711, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } }, { - "id": 696, + "id": 712, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2742, + "id": 2785, "name": "MessageOptions" }, "defaultValue": "..." @@ -16818,7 +16982,7 @@ } }, { - "id": 816, + "id": 832, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -16828,13 +16992,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1433, + "line": 1451, "character": 17 } ], "signatures": [ { - "id": 817, + "id": 833, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -16844,7 +17008,7 @@ }, "parameters": [ { - "id": 818, + "id": 834, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -16859,7 +17023,7 @@ "defaultValue": "false" }, { - "id": 819, + "id": 835, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -16893,7 +17057,7 @@ } }, { - "id": 828, + "id": 844, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -16903,13 +17067,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1519, + "line": 1537, "character": 17 } ], "signatures": [ { - "id": 829, + "id": 845, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -16946,7 +17110,7 @@ } }, { - "id": 678, + "id": 692, "name": "render", "kind": 2048, "kindString": "Method", @@ -16956,13 +17120,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 892, + "line": 853, "character": 17 } ], "signatures": [ { - "id": 679, + "id": 693, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -16975,7 +17139,7 @@ "typeArguments": [ { "type": "reference", - "id": 614, + "id": 626, "name": "LiveboardEmbed" } ], @@ -16993,7 +17157,7 @@ } }, { - "id": 830, + "id": 846, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17003,13 +17167,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1567, + "line": 1585, "character": 17 } ], "signatures": [ { - "id": 831, + "id": 847, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17039,7 +17203,7 @@ } }, { - "id": 832, + "id": 848, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -17049,13 +17213,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1636, + "line": 1654, "character": 11 } ], "signatures": [ { - "id": 833, + "id": 849, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17085,7 +17249,7 @@ } }, { - "id": 664, + "id": 676, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17095,13 +17259,13 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 845, + "line": 805, "character": 11 } ], "signatures": [ { - "id": 665, + "id": 677, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17112,28 +17276,40 @@ }, "typeParameter": [ { - "id": 666, + "id": 678, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2097, + "id": 2137, "name": "HostEvent" } }, { - "id": 667, + "id": 679, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} + }, + { + "id": 680, + "name": "ContextT", + "kind": 131072, + "kindString": "Type parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 2214, + "name": "ContextType" + } } ], "parameters": [ { - "id": 668, + "id": 681, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17147,7 +17323,7 @@ } }, { - "id": 669, + "id": 682, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17170,6 +17346,19 @@ "name": "TriggerPayload" }, "defaultValue": "..." + }, + { + "id": 683, + "name": "context", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "name": "ContextT" + } } ], "type": { @@ -17185,6 +17374,10 @@ { "type": "reference", "name": "HostEventT" + }, + { + "type": "reference", + "name": "ContextT" } ], "name": "TriggerResponse" @@ -17204,7 +17397,7 @@ } }, { - "id": 809, + "id": 825, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -17214,13 +17407,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1400, "character": 17 } ], "signatures": [ { - "id": 810, + "id": 826, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -17231,21 +17424,21 @@ }, "typeParameter": [ { - "id": 811, + "id": 827, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3003, + "id": 3046, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 812, + "id": 828, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -17259,7 +17452,7 @@ } }, { - "id": 813, + "id": 829, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17312,38 +17505,39 @@ "title": "Constructors", "kind": 512, "children": [ - 615 + 627 ] }, { "title": "Methods", "kind": 2048, "children": [ - 670, - 841, - 814, - 685, - 836, - 820, - 826, - 834, - 680, - 791, - 692, - 816, - 828, - 678, + 684, + 857, + 701, 830, + 699, + 852, + 836, + 842, + 850, + 694, + 807, + 708, 832, - 664, - 809 + 844, + 692, + 846, + 848, + 676, + 825 ] } ], "sources": [ { "fileName": "embed/liveboard.ts", - "line": 483, + "line": 452, "character": 13 } ], @@ -17355,7 +17549,7 @@ ] }, { - "id": 844, + "id": 860, "name": "SageEmbed", "kind": 128, "kindString": "Class", @@ -17375,7 +17569,7 @@ }, "children": [ { - "id": 845, + "id": 861, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -17383,46 +17577,46 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 151, + "line": 152, "character": 4 } ], "signatures": [ { - "id": 846, + "id": 862, "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 847, + "id": 863, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2741, + "id": 2784, "name": "DOMSelector" } }, { - "id": 848, + "id": 864, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2569, + "id": 2611, "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 844, + "id": 860, "name": "SageEmbed" }, "overwrites": { @@ -17437,7 +17631,7 @@ } }, { - "id": 1005, + "id": 1025, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -17447,13 +17641,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1485, + "line": 1503, "character": 11 } ], "signatures": [ { - "id": 1006, + "id": 1026, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17483,7 +17677,7 @@ } }, { - "id": 1024, + "id": 1044, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17493,13 +17687,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1699, + "line": 1717, "character": 17 } ], "signatures": [ { - "id": 1025, + "id": 1045, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -17515,7 +17709,7 @@ }, "parameters": [ { - "id": 1026, + "id": 1046, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17536,7 +17730,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1915, "name": "AnswerService" } ], @@ -17554,7 +17748,60 @@ } }, { - "id": 854, + "id": 874, + "name": "getCurrentContext", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/sage.ts", + "line": 239, + "character": 17 + } + ], + "signatures": [ + { + "id": 875, + "name": "getCurrentContext", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Get the current context of the embedded SageEmbed.", + "returns": "The current context object containing the page type and object ids.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl\n" + } + ] + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "PageContextOptions" + } + ], + "name": "Promise" + }, + "overwrites": { + "type": "reference", + "name": "V1Embed.getCurrentContext" + } + } + ], + "overwrites": { + "type": "reference", + "name": "V1Embed.getCurrentContext" + } + }, + { + "id": 870, "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", @@ -17564,13 +17811,13 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 200, + "line": 201, "character": 11 } ], "signatures": [ { - "id": 855, + "id": 871, "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", @@ -17587,7 +17834,7 @@ ] }, { - "id": 991, + "id": 1011, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -17597,13 +17844,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1420, + "line": 1424, "character": 11 } ], "signatures": [ { - "id": 992, + "id": 1012, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -17624,7 +17871,7 @@ } }, { - "id": 1019, + "id": 1039, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -17634,13 +17881,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1686, + "line": 1704, "character": 11 } ], "signatures": [ { - "id": 1020, + "id": 1040, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -17662,14 +17909,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1021, + "id": 1041, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1023, + "id": 1043, "name": "child", "kind": 1024, "kindString": "Property", @@ -17681,7 +17928,7 @@ "defaultValue": "..." }, { - "id": 1022, + "id": 1042, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17698,8 +17945,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1023, - 1022 + 1043, + 1042 ] } ] @@ -17717,7 +17964,7 @@ } }, { - "id": 999, + "id": 1019, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17727,13 +17974,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1455, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 1000, + "id": 1020, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17749,7 +17996,7 @@ }, "parameters": [ { - "id": 1001, + "id": 1021, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17757,20 +18004,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1002, + "id": 1022, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1003, + "id": 1023, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1004, + "id": 1024, "name": "key", "kind": 32768, "flags": {}, @@ -17815,7 +18062,7 @@ } }, { - "id": 1007, + "id": 1027, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17825,13 +18072,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1508, + "line": 1526, "character": 11 } ], "signatures": [ { - "id": 1008, + "id": 1028, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17852,7 +18099,7 @@ } }, { - "id": 1017, + "id": 1037, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -17862,13 +18109,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1655, + "line": 1673, "character": 11 } ], "signatures": [ { - "id": 1018, + "id": 1038, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -17892,7 +18139,7 @@ } }, { - "id": 962, + "id": 980, "name": "off", "kind": 2048, "kindString": "Method", @@ -17902,13 +18149,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1240, + "line": 1243, "character": 11 } ], "signatures": [ { - "id": 963, + "id": 981, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -17924,7 +18171,7 @@ }, "parameters": [ { - "id": 964, + "id": 982, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17934,12 +18181,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 965, + "id": 983, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -17949,7 +18196,7 @@ }, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } } @@ -17970,7 +18217,7 @@ } }, { - "id": 863, + "id": 881, "name": "on", "kind": 2048, "kindString": "Method", @@ -17980,13 +18227,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1812, + "line": 1830, "character": 11 } ], "signatures": [ { - "id": 864, + "id": 882, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -18009,38 +18256,38 @@ }, "parameters": [ { - "id": 865, + "id": 883, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 866, + "id": 884, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } }, { - "id": 867, + "id": 885, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2742, + "id": 2785, "name": "MessageOptions" }, "defaultValue": "..." @@ -18062,7 +18309,7 @@ } }, { - "id": 995, + "id": 1015, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -18072,13 +18319,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1433, + "line": 1451, "character": 17 } ], "signatures": [ { - "id": 996, + "id": 1016, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -18088,7 +18335,7 @@ }, "parameters": [ { - "id": 997, + "id": 1017, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -18103,7 +18350,7 @@ "defaultValue": "false" }, { - "id": 998, + "id": 1018, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -18137,7 +18384,7 @@ } }, { - "id": 1009, + "id": 1029, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -18147,13 +18394,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1519, + "line": 1537, "character": 17 } ], "signatures": [ { - "id": 1010, + "id": 1030, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -18190,7 +18437,7 @@ } }, { - "id": 856, + "id": 872, "name": "render", "kind": 2048, "kindString": "Method", @@ -18200,13 +18447,13 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 225, + "line": 226, "character": 17 } ], "signatures": [ { - "id": 857, + "id": 873, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -18220,7 +18467,7 @@ "typeArguments": [ { "type": "reference", - "id": 844, + "id": 860, "name": "SageEmbed" } ], @@ -18238,7 +18485,7 @@ } }, { - "id": 1013, + "id": 1033, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -18248,13 +18495,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1567, + "line": 1585, "character": 17 } ], "signatures": [ { - "id": 1014, + "id": 1034, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -18284,7 +18531,7 @@ } }, { - "id": 1015, + "id": 1035, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18294,13 +18541,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1636, + "line": 1654, "character": 11 } ], "signatures": [ { - "id": 1016, + "id": 1036, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18330,7 +18577,7 @@ } }, { - "id": 980, + "id": 998, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18340,13 +18587,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1350, + "line": 1353, "character": 17 } ], "signatures": [ { - "id": 981, + "id": 999, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18357,28 +18604,40 @@ }, "typeParameter": [ { - "id": 982, + "id": 1000, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2097, + "id": 2137, "name": "HostEvent" } }, { - "id": 983, + "id": 1001, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} + }, + { + "id": 1002, + "name": "ContextT", + "kind": 131072, + "kindString": "Type parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 2214, + "name": "ContextType" + } } ], "parameters": [ { - "id": 984, + "id": 1003, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18392,7 +18651,7 @@ } }, { - "id": 985, + "id": 1004, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18415,6 +18674,19 @@ "name": "TriggerPayload" }, "defaultValue": "..." + }, + { + "id": 1005, + "name": "context", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "name": "ContextT" + } } ], "type": { @@ -18430,6 +18702,10 @@ { "type": "reference", "name": "HostEventT" + }, + { + "type": "reference", + "name": "ContextT" } ], "name": "TriggerResponse" @@ -18449,7 +18725,7 @@ } }, { - "id": 986, + "id": 1006, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18459,13 +18735,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1400, "character": 17 } ], "signatures": [ { - "id": 987, + "id": 1007, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18476,21 +18752,21 @@ }, "typeParameter": [ { - "id": 988, + "id": 1008, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3003, + "id": 3046, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 989, + "id": 1009, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18504,7 +18780,7 @@ } }, { - "id": 990, + "id": 1010, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -18557,37 +18833,38 @@ "title": "Constructors", "kind": 512, "children": [ - 845 + 861 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1005, - 1024, - 854, - 991, + 1025, + 1044, + 874, + 870, + 1011, + 1039, 1019, - 999, - 1007, - 1017, - 962, - 863, - 995, - 1009, - 856, - 1013, - 1015, + 1027, + 1037, 980, - 986 + 881, + 1015, + 1029, + 872, + 1033, + 1035, + 998, + 1006 ] } ], "sources": [ { "fileName": "embed/sage.ts", - "line": 143, + "line": 144, "character": 13 } ], @@ -18599,7 +18876,7 @@ ] }, { - "id": 241, + "id": 245, "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", @@ -18619,7 +18896,7 @@ }, "children": [ { - "id": 242, + "id": 246, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -18627,20 +18904,20 @@ "sources": [ { "fileName": "embed/search-bar.tsx", - "line": 116, + "line": 117, "character": 4 } ], "signatures": [ { - "id": 243, + "id": 247, "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 244, + "id": 248, "name": "domSelector", "kind": 32768, "kindString": "Parameter", @@ -18651,21 +18928,21 @@ } }, { - "id": 245, + "id": 249, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2439, + "id": 2480, "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 241, + "id": 245, "name": "SearchBarEmbed" }, "overwrites": { @@ -18680,7 +18957,7 @@ } }, { - "id": 399, + "id": 407, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18690,13 +18967,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1485, + "line": 1503, "character": 11 } ], "signatures": [ { - "id": 400, + "id": 408, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18726,7 +19003,7 @@ } }, { - "id": 418, + "id": 426, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18736,13 +19013,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1699, + "line": 1717, "character": 17 } ], "signatures": [ { - "id": 419, + "id": 427, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18758,7 +19035,7 @@ }, "parameters": [ { - "id": 420, + "id": 428, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18779,7 +19056,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1915, "name": "AnswerService" } ], @@ -18797,7 +19074,60 @@ } }, { - "id": 385, + "id": 264, + "name": "getCurrentContext", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/search-bar.tsx", + "line": 208, + "character": 17 + } + ], + "signatures": [ + { + "id": 265, + "name": "getCurrentContext", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Get the current context of the embedded search bar.", + "returns": "The current context object containing the page type and object ids.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl\n" + } + ] + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "PageContextOptions" + } + ], + "name": "Promise" + }, + "overwrites": { + "type": "reference", + "name": "TsEmbed.getCurrentContext" + } + } + ], + "overwrites": { + "type": "reference", + "name": "TsEmbed.getCurrentContext" + } + }, + { + "id": 393, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18807,13 +19137,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1420, + "line": 1424, "character": 11 } ], "signatures": [ { - "id": 386, + "id": 394, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -18834,7 +19164,7 @@ } }, { - "id": 413, + "id": 421, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -18844,13 +19174,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1686, + "line": 1704, "character": 11 } ], "signatures": [ { - "id": 414, + "id": 422, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -18872,14 +19202,14 @@ "type": { "type": "reflection", "declaration": { - "id": 415, + "id": 423, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 417, + "id": 425, "name": "child", "kind": 1024, "kindString": "Property", @@ -18891,7 +19221,7 @@ "defaultValue": "..." }, { - "id": 416, + "id": 424, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -18908,8 +19238,8 @@ "title": "Properties", "kind": 1024, "children": [ - 417, - 416 + 425, + 424 ] } ] @@ -18927,7 +19257,7 @@ } }, { - "id": 393, + "id": 401, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -18937,13 +19267,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1455, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 394, + "id": 402, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -18959,7 +19289,7 @@ }, "parameters": [ { - "id": 395, + "id": 403, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -18967,20 +19297,20 @@ "type": { "type": "reflection", "declaration": { - "id": 396, + "id": 404, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 397, + "id": 405, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 398, + "id": 406, "name": "key", "kind": 32768, "flags": {}, @@ -19025,7 +19355,7 @@ } }, { - "id": 401, + "id": 409, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -19035,13 +19365,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1508, + "line": 1526, "character": 11 } ], "signatures": [ { - "id": 402, + "id": 410, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -19062,7 +19392,7 @@ } }, { - "id": 411, + "id": 419, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -19072,13 +19402,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1655, + "line": 1673, "character": 11 } ], "signatures": [ { - "id": 412, + "id": 420, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -19102,7 +19432,7 @@ } }, { - "id": 356, + "id": 362, "name": "off", "kind": 2048, "kindString": "Method", @@ -19112,13 +19442,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1240, + "line": 1243, "character": 11 } ], "signatures": [ { - "id": 357, + "id": 363, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -19134,7 +19464,7 @@ }, "parameters": [ { - "id": 358, + "id": 364, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19144,12 +19474,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 359, + "id": 365, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19159,7 +19489,7 @@ }, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } } @@ -19180,7 +19510,7 @@ } }, { - "id": 350, + "id": 356, "name": "on", "kind": 2048, "kindString": "Method", @@ -19190,13 +19520,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1211, + "line": 1214, "character": 11 } ], "signatures": [ { - "id": 351, + "id": 357, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -19216,7 +19546,7 @@ }, "parameters": [ { - "id": 352, + "id": 358, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19226,12 +19556,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 353, + "id": 359, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -19241,12 +19571,12 @@ }, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } }, { - "id": 354, + "id": 360, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -19256,13 +19586,13 @@ }, "type": { "type": "reference", - "id": 2742, + "id": 2785, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 355, + "id": 361, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -19291,7 +19621,7 @@ } }, { - "id": 389, + "id": 397, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19301,13 +19631,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1433, + "line": 1451, "character": 17 } ], "signatures": [ { - "id": 390, + "id": 398, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19317,7 +19647,7 @@ }, "parameters": [ { - "id": 391, + "id": 399, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19332,7 +19662,7 @@ "defaultValue": "false" }, { - "id": 392, + "id": 400, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -19366,7 +19696,7 @@ } }, { - "id": 403, + "id": 411, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19376,13 +19706,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1519, + "line": 1537, "character": 17 } ], "signatures": [ { - "id": 404, + "id": 412, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19419,7 +19749,7 @@ } }, { - "id": 252, + "id": 256, "name": "render", "kind": 2048, "kindString": "Method", @@ -19429,13 +19759,13 @@ "sources": [ { "fileName": "embed/search-bar.tsx", - "line": 182, + "line": 183, "character": 17 } ], "signatures": [ { - "id": 253, + "id": 257, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -19448,7 +19778,7 @@ "typeArguments": [ { "type": "reference", - "id": 241, + "id": 245, "name": "SearchBarEmbed" } ], @@ -19466,7 +19796,7 @@ } }, { - "id": 407, + "id": 415, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19476,13 +19806,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1567, + "line": 1585, "character": 17 } ], "signatures": [ { - "id": 408, + "id": 416, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -19512,7 +19842,7 @@ } }, { - "id": 409, + "id": 417, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -19522,13 +19852,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1636, + "line": 1654, "character": 11 } ], "signatures": [ { - "id": 410, + "id": 418, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -19558,7 +19888,7 @@ } }, { - "id": 374, + "id": 380, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -19568,13 +19898,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1350, + "line": 1353, "character": 17 } ], "signatures": [ { - "id": 375, + "id": 381, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -19585,28 +19915,40 @@ }, "typeParameter": [ { - "id": 376, + "id": 382, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2097, + "id": 2137, "name": "HostEvent" } }, { - "id": 377, + "id": 383, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} + }, + { + "id": 384, + "name": "ContextT", + "kind": 131072, + "kindString": "Type parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 2214, + "name": "ContextType" + } } ], "parameters": [ { - "id": 378, + "id": 385, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19620,7 +19962,7 @@ } }, { - "id": 379, + "id": 386, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19643,6 +19985,19 @@ "name": "TriggerPayload" }, "defaultValue": "..." + }, + { + "id": 387, + "name": "context", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "name": "ContextT" + } } ], "type": { @@ -19658,6 +20013,10 @@ { "type": "reference", "name": "HostEventT" + }, + { + "type": "reference", + "name": "ContextT" } ], "name": "TriggerResponse" @@ -19677,7 +20036,7 @@ } }, { - "id": 380, + "id": 388, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19687,13 +20046,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1400, "character": 17 } ], "signatures": [ { - "id": 381, + "id": 389, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -19704,21 +20063,21 @@ }, "typeParameter": [ { - "id": 382, + "id": 390, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3003, + "id": 3046, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 383, + "id": 391, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -19732,7 +20091,7 @@ } }, { - "id": 384, + "id": 392, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -19785,36 +20144,37 @@ "title": "Constructors", "kind": 512, "children": [ - 242 + 246 ] }, { "title": "Methods", "kind": 2048, "children": [ - 399, - 418, - 385, - 413, + 407, + 426, + 264, 393, + 421, 401, - 411, - 356, - 350, - 389, - 403, - 252, - 407, 409, - 374, - 380 + 419, + 362, + 356, + 397, + 411, + 256, + 415, + 417, + 380, + 388 ] } ], "sources": [ { "fileName": "embed/search-bar.tsx", - "line": 108, + "line": 109, "character": 13 } ], @@ -19851,6 +20211,7 @@ { "fileName": "embed/search.ts", "line": 342, + "line": 342, "character": 4 } ], @@ -19870,7 +20231,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2741, + "id": 2784, "name": "DOMSelector" } }, @@ -19882,7 +20243,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2382, + "id": 2422, "name": "SearchViewConfig" } } @@ -19904,7 +20265,7 @@ } }, { - "id": 219, + "id": 223, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -19914,13 +20275,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1485, + "line": 1503, "character": 11 } ], "signatures": [ { - "id": 220, + "id": 224, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -19950,7 +20311,7 @@ } }, { - "id": 238, + "id": 242, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -19960,13 +20321,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1699, + "line": 1717, "character": 17 } ], "signatures": [ { - "id": 239, + "id": 243, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -19982,7 +20343,7 @@ }, "parameters": [ { - "id": 240, + "id": 244, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -20003,7 +20364,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1915, "name": "AnswerService" } ], @@ -20020,6 +20381,59 @@ "name": "TsEmbed.getAnswerService" } }, + { + "id": 82, + "name": "getCurrentContext", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 538, + "character": 17 + } + ], + "signatures": [ + { + "id": 83, + "name": "getCurrentContext", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Get the current context of the embedded search.", + "returns": "The current context object containing the page type and object ids.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl\n" + } + ] + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "PageContextOptions" + } + ], + "name": "Promise" + }, + "overwrites": { + "type": "reference", + "name": "TsEmbed.getCurrentContext" + } + } + ], + "overwrites": { + "type": "reference", + "name": "TsEmbed.getCurrentContext" + } + }, { "id": 78, "name": "getIFrameSrc", @@ -20031,7 +20445,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 508, + "line": 503, "character": 11 } ], @@ -20053,7 +20467,7 @@ ] }, { - "id": 205, + "id": 209, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -20063,13 +20477,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1420, + "line": 1424, "character": 11 } ], "signatures": [ { - "id": 206, + "id": 210, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -20090,7 +20504,7 @@ } }, { - "id": 233, + "id": 237, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -20100,13 +20514,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1686, + "line": 1704, "character": 11 } ], "signatures": [ { - "id": 234, + "id": 238, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -20128,14 +20542,14 @@ "type": { "type": "reflection", "declaration": { - "id": 235, + "id": 239, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 237, + "id": 241, "name": "child", "kind": 1024, "kindString": "Property", @@ -20147,7 +20561,7 @@ "defaultValue": "..." }, { - "id": 236, + "id": 240, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -20164,8 +20578,8 @@ "title": "Properties", "kind": 1024, "children": [ - 237, - 236 + 241, + 240 ] } ] @@ -20183,7 +20597,7 @@ } }, { - "id": 213, + "id": 217, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -20193,13 +20607,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1455, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 214, + "id": 218, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -20215,7 +20629,7 @@ }, "parameters": [ { - "id": 215, + "id": 219, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -20223,20 +20637,20 @@ "type": { "type": "reflection", "declaration": { - "id": 216, + "id": 220, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 217, + "id": 221, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 218, + "id": 222, "name": "key", "kind": 32768, "flags": {}, @@ -20281,7 +20695,7 @@ } }, { - "id": 221, + "id": 225, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -20291,13 +20705,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1508, + "line": 1526, "character": 11 } ], "signatures": [ { - "id": 222, + "id": 226, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -20318,7 +20732,7 @@ } }, { - "id": 231, + "id": 235, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -20328,13 +20742,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1655, + "line": 1673, "character": 11 } ], "signatures": [ { - "id": 232, + "id": 236, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -20358,7 +20772,7 @@ } }, { - "id": 176, + "id": 178, "name": "off", "kind": 2048, "kindString": "Method", @@ -20368,13 +20782,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1240, + "line": 1243, "character": 11 } ], "signatures": [ { - "id": 177, + "id": 179, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -20390,7 +20804,7 @@ }, "parameters": [ { - "id": 178, + "id": 180, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -20400,12 +20814,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 179, + "id": 181, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -20415,7 +20829,7 @@ }, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } } @@ -20436,7 +20850,7 @@ } }, { - "id": 170, + "id": 172, "name": "on", "kind": 2048, "kindString": "Method", @@ -20446,13 +20860,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1211, + "line": 1214, "character": 11 } ], "signatures": [ { - "id": 171, + "id": 173, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -20472,7 +20886,7 @@ }, "parameters": [ { - "id": 172, + "id": 174, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -20482,12 +20896,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 173, + "id": 175, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -20497,12 +20911,12 @@ }, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } }, { - "id": 174, + "id": 176, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -20512,13 +20926,13 @@ }, "type": { "type": "reference", - "id": 2742, + "id": 2785, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 175, + "id": 177, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -20547,7 +20961,7 @@ } }, { - "id": 209, + "id": 213, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -20557,13 +20971,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1433, + "line": 1451, "character": 17 } ], "signatures": [ { - "id": 210, + "id": 214, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -20573,7 +20987,7 @@ }, "parameters": [ { - "id": 211, + "id": 215, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -20588,7 +21002,7 @@ "defaultValue": "false" }, { - "id": 212, + "id": 216, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -20622,7 +21036,7 @@ } }, { - "id": 223, + "id": 227, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -20632,13 +21046,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1519, + "line": 1537, "character": 17 } ], "signatures": [ { - "id": 224, + "id": 228, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -20685,7 +21099,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 519, + "line": 514, "character": 17 } ], @@ -20722,7 +21136,7 @@ } }, { - "id": 227, + "id": 231, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -20732,13 +21146,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1567, + "line": 1585, "character": 17 } ], "signatures": [ { - "id": 228, + "id": 232, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -20768,7 +21182,7 @@ } }, { - "id": 229, + "id": 233, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -20778,13 +21192,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1636, + "line": 1654, "character": 11 } ], "signatures": [ { - "id": 230, + "id": 234, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -20814,7 +21228,7 @@ } }, { - "id": 194, + "id": 196, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -20824,13 +21238,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1350, + "line": 1353, "character": 17 } ], "signatures": [ { - "id": 195, + "id": 197, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -20841,28 +21255,40 @@ }, "typeParameter": [ { - "id": 196, + "id": 198, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2097, + "id": 2137, "name": "HostEvent" } }, { - "id": 197, + "id": 199, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} + }, + { + "id": 200, + "name": "ContextT", + "kind": 131072, + "kindString": "Type parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 2214, + "name": "ContextType" + } } ], "parameters": [ { - "id": 198, + "id": 201, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -20876,7 +21302,7 @@ } }, { - "id": 199, + "id": 202, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -20899,6 +21325,19 @@ "name": "TriggerPayload" }, "defaultValue": "..." + }, + { + "id": 203, + "name": "context", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "name": "ContextT" + } } ], "type": { @@ -20914,6 +21353,10 @@ { "type": "reference", "name": "HostEventT" + }, + { + "type": "reference", + "name": "ContextT" } ], "name": "TriggerResponse" @@ -20933,7 +21376,7 @@ } }, { - "id": 200, + "id": 204, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -20943,13 +21386,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1400, "character": 17 } ], "signatures": [ { - "id": 201, + "id": 205, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -20960,21 +21403,21 @@ }, "typeParameter": [ { - "id": 202, + "id": 206, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3003, + "id": 3046, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 203, + "id": 207, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -20988,7 +21431,7 @@ } }, { - "id": 204, + "id": 208, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -21048,23 +21491,24 @@ "title": "Methods", "kind": 2048, "children": [ - 219, - 238, + 223, + 242, + 82, 78, - 205, - 233, - 213, - 221, - 231, - 176, - 170, 209, - 223, - 80, + 237, + 217, + 225, + 235, + 178, + 172, + 213, 227, - 229, - 194, - 200 + 80, + 231, + 233, + 196, + 204 ] } ], @@ -21072,6 +21516,7 @@ { "fileName": "embed/search.ts", "line": 336, + "line": 336, "character": 13 } ], @@ -21083,7 +21528,7 @@ ] }, { - "id": 1244, + "id": 1268, "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", @@ -21107,7 +21552,7 @@ }, "children": [ { - "id": 1245, + "id": 1269, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -21121,35 +21566,35 @@ ], "signatures": [ { - "id": 1246, + "id": 1270, "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1247, + "id": 1271, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1276, + "id": 1300, "name": "SpotterAgentEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1244, + "id": 1268, "name": "SpotterAgentEmbed" } } ] }, { - "id": 1249, + "id": 1273, "name": "sendMessage", "kind": 2048, "kindString": "Method", @@ -21165,14 +21610,14 @@ ], "signatures": [ { - "id": 1250, + "id": 1274, "name": "sendMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1251, + "id": 1275, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -21192,14 +21637,14 @@ { "type": "reflection", "declaration": { - "id": 1252, + "id": 1276, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1254, + "id": 1278, "name": "container", "kind": 1024, "kindString": "Property", @@ -21210,7 +21655,7 @@ } }, { - "id": 1253, + "id": 1277, "name": "error", "kind": 1024, "kindString": "Property", @@ -21221,7 +21666,7 @@ } }, { - "id": 1255, + "id": 1279, "name": "viz", "kind": 1024, "kindString": "Property", @@ -21238,9 +21683,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1254, - 1253, - 1255 + 1278, + 1277, + 1279 ] } ] @@ -21249,14 +21694,14 @@ { "type": "reflection", "declaration": { - "id": 1256, + "id": 1280, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1257, + "id": 1281, "name": "container", "kind": 1024, "kindString": "Property", @@ -21267,7 +21712,7 @@ } }, { - "id": 1259, + "id": 1283, "name": "error", "kind": 1024, "kindString": "Property", @@ -21278,7 +21723,7 @@ } }, { - "id": 1258, + "id": 1282, "name": "viz", "kind": 1024, "kindString": "Property", @@ -21295,9 +21740,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1257, - 1259, - 1258 + 1281, + 1283, + 1282 ] } ] @@ -21312,7 +21757,7 @@ ] }, { - "id": 1260, + "id": 1284, "name": "sendMessageData", "kind": 2048, "kindString": "Method", @@ -21328,7 +21773,7 @@ ], "signatures": [ { - "id": 1261, + "id": 1285, "name": "sendMessageData", "kind": 4096, "kindString": "Call signature", @@ -21339,7 +21784,7 @@ }, "parameters": [ { - "id": 1262, + "id": 1286, "name": "userMessage", "kind": 32768, "kindString": "Parameter", @@ -21362,14 +21807,14 @@ { "type": "reflection", "declaration": { - "id": 1263, + "id": 1287, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1265, + "id": 1289, "name": "data", "kind": 1024, "kindString": "Property", @@ -21381,7 +21826,7 @@ "defaultValue": "..." }, { - "id": 1264, + "id": 1288, "name": "error", "kind": 1024, "kindString": "Property", @@ -21397,8 +21842,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1265, - 1264 + 1289, + 1288 ] } ] @@ -21407,14 +21852,14 @@ { "type": "reflection", "declaration": { - "id": 1266, + "id": 1290, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1267, + "id": 1291, "name": "data", "kind": 1024, "kindString": "Property", @@ -21422,14 +21867,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1268, + "id": 1292, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1274, + "id": 1298, "name": "acGenNo", "kind": 1024, "kindString": "Property", @@ -21441,7 +21886,7 @@ "defaultValue": "..." }, { - "id": 1273, + "id": 1297, "name": "acSessionId", "kind": 1024, "kindString": "Property", @@ -21453,7 +21898,7 @@ "defaultValue": "..." }, { - "id": 1269, + "id": 1293, "name": "convId", "kind": 1024, "kindString": "Property", @@ -21465,7 +21910,7 @@ "defaultValue": "..." }, { - "id": 1272, + "id": 1296, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -21477,7 +21922,7 @@ "defaultValue": "..." }, { - "id": 1270, + "id": 1294, "name": "messageId", "kind": 1024, "kindString": "Property", @@ -21489,7 +21934,7 @@ "defaultValue": "..." }, { - "id": 1271, + "id": 1295, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -21506,12 +21951,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1274, - 1273, - 1269, - 1272, - 1270, - 1271 + 1298, + 1297, + 1293, + 1296, + 1294, + 1295 ] } ] @@ -21520,7 +21965,7 @@ "defaultValue": "..." }, { - "id": 1275, + "id": 1299, "name": "error", "kind": 1024, "kindString": "Property", @@ -21536,8 +21981,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1267, - 1275 + 1291, + 1299 ] } ] @@ -21557,15 +22002,15 @@ "title": "Constructors", "kind": 512, "children": [ - 1245 + 1269 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1249, - 1260 + 1273, + 1284 ] } ], @@ -21579,13 +22024,13 @@ "extendedBy": [ { "type": "reference", - "id": 1340, + "id": 1368, "name": "BodylessConversation" } ] }, { - "id": 1371, + "id": 1399, "name": "SpotterEmbed", "kind": 128, "kindString": "Class", @@ -21609,7 +22054,7 @@ }, "children": [ { - "id": 1372, + "id": 1400, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -21617,20 +22062,20 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 230, + "line": 231, "character": 4 } ], "signatures": [ { - "id": 1373, + "id": 1401, "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1374, + "id": 1402, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -21641,21 +22086,21 @@ } }, { - "id": 1375, + "id": 1403, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1544, + "id": 1576, "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1371, + "id": 1399, "name": "SpotterEmbed" }, "overwrites": { @@ -21670,7 +22115,7 @@ } }, { - "id": 1522, + "id": 1554, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -21680,13 +22125,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1485, + "line": 1503, "character": 11 } ], "signatures": [ { - "id": 1523, + "id": 1555, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -21716,7 +22161,7 @@ } }, { - "id": 1541, + "id": 1573, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -21726,13 +22171,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1699, + "line": 1717, "character": 17 } ], "signatures": [ { - "id": 1542, + "id": 1574, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -21748,7 +22193,7 @@ }, "parameters": [ { - "id": 1543, + "id": 1575, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -21769,7 +22214,7 @@ "typeArguments": [ { "type": "reference", - "id": 1875, + "id": 1915, "name": "AnswerService" } ], @@ -21787,7 +22232,60 @@ } }, { - "id": 1379, + "id": 1411, + "name": "getCurrentContext", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 347, + "character": 17 + } + ], + "signatures": [ + { + "id": 1412, + "name": "getCurrentContext", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Get the current context of the embedded SpotterEmbed.", + "returns": "The current context object containing the page type and object ids.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl\n" + } + ] + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "PageContextOptions" + } + ], + "name": "Promise" + }, + "overwrites": { + "type": "reference", + "name": "TsEmbed.getCurrentContext" + } + } + ], + "overwrites": { + "type": "reference", + "name": "TsEmbed.getCurrentContext" + } + }, + { + "id": 1407, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -21797,13 +22295,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 293, + "line": 294, "character": 11 } ], "signatures": [ { - "id": 1380, + "id": 1408, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -21824,7 +22322,7 @@ } }, { - "id": 1536, + "id": 1568, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -21834,13 +22332,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1686, + "line": 1704, "character": 11 } ], "signatures": [ { - "id": 1537, + "id": 1569, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -21862,14 +22360,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1538, + "id": 1570, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1540, + "id": 1572, "name": "child", "kind": 1024, "kindString": "Property", @@ -21881,7 +22379,7 @@ "defaultValue": "..." }, { - "id": 1539, + "id": 1571, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -21898,8 +22396,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1540, - 1539 + 1572, + 1571 ] } ] @@ -21917,7 +22415,7 @@ } }, { - "id": 1516, + "id": 1548, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -21927,13 +22425,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1455, + "line": 1473, "character": 11 } ], "signatures": [ { - "id": 1517, + "id": 1549, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -21949,7 +22447,7 @@ }, "parameters": [ { - "id": 1518, + "id": 1550, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -21957,20 +22455,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1519, + "id": 1551, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1520, + "id": 1552, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1521, + "id": 1553, "name": "key", "kind": 32768, "flags": {}, @@ -22015,7 +22513,7 @@ } }, { - "id": 1524, + "id": 1556, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -22025,13 +22523,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1508, + "line": 1526, "character": 11 } ], "signatures": [ { - "id": 1525, + "id": 1557, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -22052,7 +22550,7 @@ } }, { - "id": 1534, + "id": 1566, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -22062,13 +22560,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1655, + "line": 1673, "character": 11 } ], "signatures": [ { - "id": 1535, + "id": 1567, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -22092,7 +22590,7 @@ } }, { - "id": 1481, + "id": 1511, "name": "off", "kind": 2048, "kindString": "Method", @@ -22102,13 +22600,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1240, + "line": 1243, "character": 11 } ], "signatures": [ { - "id": 1482, + "id": 1512, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -22124,7 +22622,7 @@ }, "parameters": [ { - "id": 1483, + "id": 1513, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -22134,12 +22632,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 1484, + "id": 1514, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -22149,7 +22647,7 @@ }, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } } @@ -22170,7 +22668,7 @@ } }, { - "id": 1475, + "id": 1505, "name": "on", "kind": 2048, "kindString": "Method", @@ -22180,13 +22678,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1211, + "line": 1214, "character": 11 } ], "signatures": [ { - "id": 1476, + "id": 1506, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -22206,7 +22704,7 @@ }, "parameters": [ { - "id": 1477, + "id": 1507, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -22216,12 +22714,12 @@ }, "type": { "type": "reference", - "id": 1999, + "id": 2039, "name": "EmbedEvent" } }, { - "id": 1478, + "id": 1508, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -22231,12 +22729,12 @@ }, "type": { "type": "reference", - "id": 2745, + "id": 2788, "name": "MessageCallback" } }, { - "id": 1479, + "id": 1509, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -22246,13 +22744,13 @@ }, "type": { "type": "reference", - "id": 2742, + "id": 2785, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1480, + "id": 1510, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -22281,7 +22779,7 @@ } }, { - "id": 1512, + "id": 1544, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -22291,13 +22789,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1433, + "line": 1451, "character": 17 } ], "signatures": [ { - "id": 1513, + "id": 1545, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -22307,7 +22805,7 @@ }, "parameters": [ { - "id": 1514, + "id": 1546, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -22322,7 +22820,7 @@ "defaultValue": "false" }, { - "id": 1515, + "id": 1547, "name": "replaceExistingPreRender", "kind": 32768, "kindString": "Parameter", @@ -22356,7 +22854,7 @@ } }, { - "id": 1526, + "id": 1558, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -22366,13 +22864,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1519, + "line": 1537, "character": 17 } ], "signatures": [ { - "id": 1527, + "id": 1559, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -22409,7 +22907,7 @@ } }, { - "id": 1381, + "id": 1409, "name": "render", "kind": 2048, "kindString": "Method", @@ -22419,13 +22917,13 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 333, + "line": 334, "character": 17 } ], "signatures": [ { - "id": 1382, + "id": 1410, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -22435,7 +22933,7 @@ "typeArguments": [ { "type": "reference", - "id": 1371, + "id": 1399, "name": "SpotterEmbed" } ], @@ -22453,7 +22951,7 @@ } }, { - "id": 1530, + "id": 1562, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -22463,13 +22961,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1567, + "line": 1585, "character": 17 } ], "signatures": [ { - "id": 1531, + "id": 1563, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -22499,7 +22997,7 @@ } }, { - "id": 1532, + "id": 1564, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -22509,13 +23007,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1636, + "line": 1654, "character": 11 } ], "signatures": [ { - "id": 1533, + "id": 1565, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -22545,7 +23043,7 @@ } }, { - "id": 1499, + "id": 1529, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -22555,13 +23053,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1350, + "line": 1353, "character": 17 } ], "signatures": [ { - "id": 1500, + "id": 1530, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -22572,28 +23070,40 @@ }, "typeParameter": [ { - "id": 1501, + "id": 1531, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2097, + "id": 2137, "name": "HostEvent" } }, { - "id": 1502, + "id": 1532, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", "flags": {} + }, + { + "id": 1533, + "name": "ContextT", + "kind": 131072, + "kindString": "Type parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 2214, + "name": "ContextType" + } } ], "parameters": [ { - "id": 1503, + "id": 1534, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -22607,7 +23117,7 @@ } }, { - "id": 1504, + "id": 1535, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -22630,6 +23140,19 @@ "name": "TriggerPayload" }, "defaultValue": "..." + }, + { + "id": 1536, + "name": "context", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "reference", + "name": "ContextT" + } } ], "type": { @@ -22645,6 +23168,10 @@ { "type": "reference", "name": "HostEventT" + }, + { + "type": "reference", + "name": "ContextT" } ], "name": "TriggerResponse" @@ -22664,7 +23191,7 @@ } }, { - "id": 1505, + "id": 1537, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -22674,13 +23201,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1396, + "line": 1400, "character": 17 } ], "signatures": [ { - "id": 1506, + "id": 1538, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -22691,21 +23218,21 @@ }, "typeParameter": [ { - "id": 1507, + "id": 1539, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 3003, + "id": 3046, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1508, + "id": 1540, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -22719,7 +23246,7 @@ } }, { - "id": 1509, + "id": 1541, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -22772,36 +23299,37 @@ "title": "Constructors", "kind": 512, "children": [ - 1372 + 1400 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1522, - 1541, - 1379, - 1536, - 1516, - 1524, - 1534, - 1481, - 1475, - 1512, - 1526, - 1381, - 1530, - 1532, - 1499, - 1505 + 1554, + 1573, + 1411, + 1407, + 1568, + 1548, + 1556, + 1566, + 1511, + 1505, + 1544, + 1558, + 1409, + 1562, + 1564, + 1529, + 1537 ] } ], "sources": [ { "fileName": "embed/conversation.ts", - "line": 229, + "line": 230, "character": 13 } ], @@ -22814,13 +23342,13 @@ "extendedBy": [ { "type": "reference", - "id": 1632, + "id": 1668, "name": "ConversationEmbed" } ] }, { - "id": 2620, + "id": 2663, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -22836,7 +23364,7 @@ }, "children": [ { - "id": 2661, + "id": 2702, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -22867,20 +23395,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2662, + "id": 2703, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2663, + "id": 2704, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2664, + "id": 2705, "name": "key", "kind": 32768, "flags": {}, @@ -22916,7 +23444,7 @@ } }, { - "id": 2688, + "id": 2731, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -22944,7 +23472,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1317, + "line": 1345, "character": 4 } ], @@ -22958,7 +23486,7 @@ } }, { - "id": 2640, + "id": 2683, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -22985,7 +23513,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 505, + "line": 506, "character": 4 } ], @@ -22995,7 +23523,7 @@ } }, { - "id": 2685, + "id": 2728, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -23019,13 +23547,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1304, "character": 4 } ], "type": { "type": "reference", - "id": 2326, + "id": 2366, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -23034,7 +23562,7 @@ } }, { - "id": 2706, + "id": 2748, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -23058,7 +23586,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1553, + "line": 1565, "character": 4 } ], @@ -23072,7 +23600,7 @@ } }, { - "id": 2679, + "id": 2720, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -23113,7 +23641,7 @@ } }, { - "id": 2665, + "id": 2706, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -23142,7 +23670,7 @@ ], "type": { "type": "reference", - "id": 2758, + "id": 2801, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -23151,7 +23679,7 @@ } }, { - "id": 2641, + "id": 2684, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -23179,18 +23707,18 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 526, + "line": 527, "character": 4 } ], "type": { "type": "reference", - "id": 3019, + "id": 3062, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2689, + "id": 2732, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -23218,7 +23746,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1361, "character": 4 } ], @@ -23232,7 +23760,7 @@ } }, { - "id": 2623, + "id": 2666, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -23260,7 +23788,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 213, + "line": 214, "character": 4 } ], @@ -23270,7 +23798,7 @@ } }, { - "id": 2673, + "id": 2714, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -23308,7 +23836,7 @@ } }, { - "id": 2657, + "id": 2698, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -23346,7 +23874,7 @@ } }, { - "id": 2656, + "id": 2697, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -23378,7 +23906,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -23388,7 +23916,7 @@ } }, { - "id": 2639, + "id": 2682, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -23415,7 +23943,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 498, + "line": 499, "character": 4 } ], @@ -23425,7 +23953,7 @@ } }, { - "id": 2669, + "id": 2710, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -23466,7 +23994,7 @@ } }, { - "id": 2700, + "id": 2742, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -23494,7 +24022,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1451, + "line": 1463, "character": 4 } ], @@ -23508,7 +24036,7 @@ } }, { - "id": 2705, + "id": 2747, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -23536,7 +24064,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1537, + "line": 1549, "character": 4 } ], @@ -23550,7 +24078,7 @@ } }, { - "id": 2690, + "id": 2733, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -23578,7 +24106,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1349, + "line": 1377, "character": 4 } ], @@ -23592,7 +24120,7 @@ } }, { - "id": 2624, + "id": 2667, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -23618,7 +24146,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 229, + "line": 230, "character": 4 } ], @@ -23628,7 +24156,7 @@ } }, { - "id": 2636, + "id": 2679, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -23656,7 +24184,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 439, + "line": 440, "character": 4 } ], @@ -23666,7 +24194,7 @@ } }, { - "id": 2670, + "id": 2711, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -23704,7 +24232,7 @@ } }, { - "id": 2686, + "id": 2729, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -23728,7 +24256,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1289, + "line": 1317, "character": 4 } ], @@ -23742,7 +24270,7 @@ } }, { - "id": 2687, + "id": 2730, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -23766,7 +24294,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1302, + "line": 1330, "character": 4 } ], @@ -23780,7 +24308,7 @@ } }, { - "id": 2672, + "id": 2713, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -23817,7 +24345,7 @@ } }, { - "id": 2653, + "id": 2694, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -23847,7 +24375,7 @@ ], "type": { "type": "reference", - "id": 2717, + "id": 2760, "name": "FrameParams" }, "inheritedFrom": { @@ -23856,7 +24384,7 @@ } }, { - "id": 2637, + "id": 2680, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -23880,7 +24408,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 462, + "line": 463, "character": 4 } ], @@ -23890,7 +24418,7 @@ } }, { - "id": 2658, + "id": 2699, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -23926,7 +24454,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -23936,7 +24464,7 @@ } }, { - "id": 2695, + "id": 2737, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -23960,7 +24488,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1212, + "line": 1240, "character": 4 } ], @@ -23968,7 +24496,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2723, + "id": 2766, "name": "HomeLeftNavItem" } }, @@ -23978,7 +24506,7 @@ } }, { - "id": 2693, + "id": 2735, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -24002,7 +24530,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1171, + "line": 1199, "character": 4 } ], @@ -24010,7 +24538,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2734, + "id": 2777, "name": "HomepageModule" } }, @@ -24020,7 +24548,7 @@ } }, { - "id": 2692, + "id": 2734, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -24044,7 +24572,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1150, + "line": 1178, "character": 4 } ], @@ -24052,7 +24580,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 3011, + "id": 3054, "name": "ListPageColumns" } }, @@ -24062,7 +24590,7 @@ } }, { - "id": 2628, + "id": 2671, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -24090,7 +24618,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 306, + "line": 307, "character": 4 } ], @@ -24100,7 +24628,7 @@ } }, { - "id": 2625, + "id": 2668, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -24128,7 +24656,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 245, + "line": 246, "character": 4 } ], @@ -24138,7 +24666,7 @@ } }, { - "id": 2622, + "id": 2665, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -24166,7 +24694,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 195, + "line": 196, "character": 4 } ], @@ -24176,7 +24704,7 @@ } }, { - "id": 2703, + "id": 2745, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -24204,7 +24732,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1504, + "line": 1516, "character": 4 } ], @@ -24218,7 +24746,7 @@ } }, { - "id": 2696, + "id": 2738, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -24246,7 +24774,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1387, + "line": 1399, "character": 4 } ], @@ -24260,7 +24788,7 @@ } }, { - "id": 2627, + "id": 2670, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -24288,7 +24816,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 284, + "line": 285, "character": 4 } ], @@ -24298,7 +24826,7 @@ } }, { - "id": 2626, + "id": 2669, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -24326,7 +24854,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 265, + "line": 266, "character": 4 } ], @@ -24336,7 +24864,7 @@ } }, { - "id": 2634, + "id": 2677, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -24360,7 +24888,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 415, + "line": 416, "character": 4 } ], @@ -24373,7 +24901,7 @@ } }, { - "id": 2629, + "id": 2672, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -24401,7 +24929,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 324, + "line": 325, "character": 4 } ], @@ -24411,7 +24939,7 @@ } }, { - "id": 2633, + "id": 2676, "name": "hideTagFilterChips", "kind": 1024, "kindString": "Property", @@ -24435,7 +24963,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 398, + "line": 399, "character": 4 } ], @@ -24445,7 +24973,7 @@ } }, { - "id": 2642, + "id": 2685, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -24465,18 +24993,18 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 533, + "line": 534, "character": 4 } ], "type": { "type": "reference", - "id": 2968, + "id": 3011, "name": "HomePageSearchBarMode" } }, { - "id": 2666, + "id": 2707, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -24514,7 +25042,7 @@ } }, { - "id": 2682, + "id": 2725, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -24537,7 +25065,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6585, + "line": 6557, "character": 4 } ], @@ -24551,7 +25079,7 @@ } }, { - "id": 2681, + "id": 2724, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -24574,7 +25102,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6568, + "line": 6540, "character": 4 } ], @@ -24591,7 +25119,7 @@ } }, { - "id": 2707, + "id": 2750, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -24615,7 +25143,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1571, + "line": 1599, "character": 4 } ], @@ -24629,7 +25157,7 @@ } }, { - "id": 2709, + "id": 2752, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -24653,7 +25181,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1602, + "line": 1630, "character": 4 } ], @@ -24667,41 +25195,7 @@ } }, { - "id": 2647, - "name": "isGranularXLSXCSVSchedulesEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag is used to enable/disable the granular XLSX/CSV schedules feature", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.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 isGranularXLSXCSVSchedulesEnabled: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 616, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2708, + "id": 2751, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -24725,7 +25219,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1586, + "line": 1614, "character": 4 } ], @@ -24739,7 +25233,7 @@ } }, { - "id": 2701, + "id": 2743, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -24767,7 +25261,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1468, + "line": 1480, "character": 4 } ], @@ -24781,7 +25275,7 @@ } }, { - "id": 2699, + "id": 2741, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -24805,7 +25299,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1434, + "line": 1446, "character": 4 } ], @@ -24819,7 +25313,7 @@ } }, { - "id": 2711, + "id": 2754, "name": "isLiveboardMasterpiecesEnabled", "kind": 1024, "kindString": "Property", @@ -24847,7 +25341,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1634, + "line": 1662, "character": 4 } ], @@ -24861,7 +25355,7 @@ } }, { - "id": 2644, + "id": 2687, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -24885,7 +25379,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 565, + "line": 566, "character": 4 } ], @@ -24895,41 +25389,7 @@ } }, { - "id": 2646, - "name": "isLiveboardXLSXCSVDownloadEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag is used to enable/disable the XLSX/CSV download option for Liveboards", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.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 isLiveboardXLSXCSVDownloadEnabled: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 599, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2680, + "id": 2723, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -24949,7 +25409,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6552, + "line": 6524, "character": 4 } ], @@ -24963,7 +25423,7 @@ } }, { - "id": 2645, + "id": 2688, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -24987,7 +25447,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 582, + "line": 583, "character": 4 } ], @@ -24997,45 +25457,7 @@ } }, { - "id": 2691, - "name": "isThisPeriodInDateFiltersEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To enable **Include current period** checkbox for date filters.\nControls the visibility of the option to include\nthe current time period in filter results.", - "text": "Supported embed types: `AppEmbed`, `SearchBarEmbed`, `LiveboardEmbed`, `SearchEmbed`", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n isThisPeriodInDateFiltersEnabled: true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot: 26.4.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1365, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "AllEmbedViewConfig.isThisPeriodInDateFiltersEnabled" - } - }, - { - "id": 2643, + "id": 2686, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -25063,7 +25485,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 548, + "line": 549, "character": 4 } ], @@ -25073,7 +25495,7 @@ } }, { - "id": 2648, + "id": 2689, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -25100,7 +25522,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 634, + "line": 601, "character": 4 } ], @@ -25110,7 +25532,7 @@ } }, { - "id": 2649, + "id": 2690, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -25134,7 +25556,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 658, + "line": 625, "character": 4 } ], @@ -25144,7 +25566,7 @@ } }, { - "id": 2675, + "id": 2716, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -25182,7 +25604,45 @@ } }, { - "id": 2660, + "id": 2749, + "name": "liveboardXLSXCSVDownload", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag is used to enable or disable the XLSX/CSV download option for Liveboards.\nTo enable this feature on your instance, contact ThoughtSpot Support.", + "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.41.0 | ThoughtSpot: 26.3.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 liveboardXLSXCSVDownload: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1581, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.liveboardXLSXCSVDownload" + } + }, + { + "id": 2701, "name": "locale", "kind": 1024, "kindString": "Property", @@ -25220,7 +25680,7 @@ } }, { - "id": 2651, + "id": 2692, "name": "minimumHeight", "kind": 1024, "kindString": "Property", @@ -25247,7 +25707,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 691, + "line": 658, "character": 4 } ], @@ -25257,7 +25717,7 @@ } }, { - "id": 2638, + "id": 2681, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -25284,7 +25744,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 478, + "line": 479, "character": 4 } ], @@ -25294,7 +25754,7 @@ } }, { - "id": 2674, + "id": 2715, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -25332,7 +25792,7 @@ } }, { - "id": 2631, + "id": 2674, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -25356,18 +25816,18 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 362, + "line": 363, "character": 4 } ], "type": { "type": "reference", - "id": 1958, + "id": 1998, "name": "Page" } }, { - "id": 2630, + "id": 2673, "name": "path", "kind": 1024, "kindString": "Property", @@ -25391,7 +25851,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 344, + "line": 345, "character": 4 } ], @@ -25401,7 +25861,7 @@ } }, { - "id": 2668, + "id": 2709, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -25439,7 +25899,7 @@ } }, { - "id": 2676, + "id": 2717, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -25477,7 +25937,7 @@ } }, { - "id": 2694, + "id": 2736, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -25501,7 +25961,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1191, + "line": 1219, "character": 4 } ], @@ -25509,7 +25969,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2734, + "id": 2777, "name": "HomepageModule" } }, @@ -25519,7 +25979,7 @@ } }, { - "id": 2683, + "id": 2726, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -25543,7 +26003,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1240, + "line": 1268, "character": 4 } ], @@ -25551,7 +26011,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 2019, "name": "RuntimeFilter" } }, @@ -25561,7 +26021,7 @@ } }, { - "id": 2684, + "id": 2727, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -25585,7 +26045,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1261, + "line": 1289, "character": 4 } ], @@ -25593,7 +26053,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2942, + "id": 2985, "name": "RuntimeParameter" } }, @@ -25603,7 +26063,48 @@ } }, { - "id": 2678, + "id": 2721, + "name": "shouldBypassPayloadValidation", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to bypass host events payload validation", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.46.0 | 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": 1136, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.shouldBypassPayloadValidation" + } + }, + { + "id": 2719, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -25640,7 +26141,7 @@ } }, { - "id": 2698, + "id": 2740, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -25668,7 +26169,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1419, + "line": 1431, "character": 4 } ], @@ -25682,7 +26183,7 @@ } }, { - "id": 2704, + "id": 2746, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -25710,7 +26211,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1521, + "line": 1533, "character": 4 } ], @@ -25724,7 +26225,7 @@ } }, { - "id": 2697, + "id": 2739, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -25752,7 +26253,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1403, + "line": 1415, "character": 4 } ], @@ -25766,7 +26267,7 @@ } }, { - "id": 2702, + "id": 2744, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -25794,7 +26295,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1485, + "line": 1497, "character": 4 } ], @@ -25808,7 +26309,7 @@ } }, { - "id": 2710, + "id": 2753, "name": "showMaskedFilterChip", "kind": 1024, "kindString": "Property", @@ -25836,7 +26337,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1618, + "line": 1646, "character": 4 } ], @@ -25850,7 +26351,7 @@ } }, { - "id": 2621, + "id": 2664, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -25878,7 +26379,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 173, + "line": 174, "character": 4 } ], @@ -25888,7 +26389,7 @@ } }, { - "id": 2632, + "id": 2675, "name": "tag", "kind": 1024, "kindString": "Property", @@ -25912,7 +26413,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 378, + "line": 379, "character": 4 } ], @@ -25922,7 +26423,7 @@ } }, { - "id": 2650, + "id": 2691, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -25950,7 +26451,7 @@ "sources": [ { "fileName": "embed/app.ts", - "line": 674, + "line": 641, "character": 4 } ], @@ -25960,7 +26461,48 @@ } }, { - "id": 2659, + "id": 2722, + "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.46.0 | 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": 1150, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "AllEmbedViewConfig.useHostEventsV2" + } + }, + { + "id": 2700, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -25996,7 +26538,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -26011,94 +26553,94 @@ "title": "Properties", "kind": 1024, "children": [ - 2661, - 2688, - 2640, - 2685, + 2702, + 2731, + 2683, + 2728, + 2748, + 2720, 2706, + 2684, + 2732, + 2666, + 2714, + 2698, + 2697, + 2682, + 2710, + 2742, + 2747, + 2733, + 2667, 2679, + 2711, + 2729, + 2730, + 2713, + 2694, + 2680, + 2699, + 2737, + 2735, + 2734, + 2671, + 2668, 2665, - 2641, - 2689, - 2623, - 2673, - 2657, - 2656, - 2639, - 2669, - 2700, - 2705, - 2690, - 2624, - 2636, + 2745, + 2738, 2670, - 2686, - 2687, + 2669, + 2677, 2672, - 2653, - 2637, - 2658, - 2695, - 2693, + 2676, + 2685, + 2707, + 2725, + 2724, + 2750, + 2752, + 2751, + 2743, + 2741, + 2754, + 2687, + 2723, + 2688, + 2686, + 2689, + 2690, + 2716, + 2749, + 2701, 2692, - 2628, - 2625, - 2622, - 2703, - 2696, - 2627, - 2626, - 2634, - 2629, - 2633, - 2642, - 2666, - 2682, 2681, - 2707, + 2715, + 2674, + 2673, 2709, - 2647, - 2708, - 2701, - 2699, - 2711, - 2644, - 2646, - 2680, - 2645, - 2691, - 2643, - 2648, - 2649, + 2717, + 2736, + 2726, + 2727, + 2721, + 2719, + 2740, + 2746, + 2739, + 2744, + 2753, + 2664, 2675, - 2660, - 2651, - 2638, - 2674, - 2631, - 2630, - 2668, - 2676, - 2694, - 2683, - 2684, - 2678, - 2698, - 2704, - 2697, - 2702, - 2710, - 2621, - 2632, - 2650, - 2659 + 2691, + 2722, + 2700 ] } ], "sources": [ { "fileName": "embed/app.ts", - "line": 156, + "line": 157, "character": 17 } ], @@ -26110,7 +26652,7 @@ ] }, { - "id": 1822, + "id": 1862, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -26126,14 +26668,14 @@ }, "children": [ { - "id": 1859, + "id": 1899, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1860, + "id": 1900, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -26143,19 +26685,19 @@ }, "parameters": [ { - "id": 1861, + "id": 1901, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1821, + "id": 1861, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1862, + "id": 1902, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -26179,14 +26721,14 @@ ] }, { - "id": 1863, + "id": 1903, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1864, + "id": 1904, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -26196,7 +26738,7 @@ }, "parameters": [ { - "id": 1865, + "id": 1905, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -26204,12 +26746,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1812, + "id": 1852, "name": "AuthStatus" } }, { - "id": 1866, + "id": 1906, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26218,21 +26760,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1867, + "id": 1907, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1868, + "id": 1908, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1869, + "id": 1909, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -26258,7 +26800,7 @@ } }, { - "id": 1870, + "id": 1910, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -26270,7 +26812,7 @@ } }, { - "id": 1871, + "id": 1911, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -26286,21 +26828,21 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1862, "name": "AuthEventEmitter" } } ] }, { - "id": 1823, + "id": 1863, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1824, + "id": 1864, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -26310,7 +26852,7 @@ }, "parameters": [ { - "id": 1825, + "id": 1865, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -26318,12 +26860,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1813, + "id": 1853, "name": "FAILURE" } }, { - "id": 1826, + "id": 1866, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26334,28 +26876,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1827, + "id": 1867, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1828, + "id": 1868, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1829, + "id": 1869, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1805, + "id": 1845, "name": "AuthFailureType" } } @@ -26372,12 +26914,12 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1862, "name": "AuthEventEmitter" } }, { - "id": 1830, + "id": 1870, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -26387,7 +26929,7 @@ }, "parameters": [ { - "id": 1831, + "id": 1871, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -26398,29 +26940,29 @@ "types": [ { "type": "reference", - "id": 1814, + "id": 1854, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1817, + "id": 1857, "name": "LOGOUT" }, { "type": "reference", - "id": 1818, + "id": 1858, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1819, + "id": 1859, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1832, + "id": 1872, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26431,14 +26973,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1833, + "id": 1873, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1834, + "id": 1874, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -26455,31 +26997,31 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1862, "name": "AuthEventEmitter" } }, { - "id": 1835, + "id": 1875, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1836, + "id": 1876, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1816, + "id": 1856, "name": "SUCCESS" } }, { - "id": 1837, + "id": 1877, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26487,21 +27029,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1838, + "id": 1878, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1839, + "id": 1879, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1840, + "id": 1880, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -26524,40 +27066,40 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1862, "name": "AuthEventEmitter" } } ] }, { - "id": 1841, + "id": 1881, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1842, + "id": 1882, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1843, + "id": 1883, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1813, + "id": 1853, "name": "FAILURE" } }, { - "id": 1844, + "id": 1884, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26565,28 +27107,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1845, + "id": 1885, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1846, + "id": 1886, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1847, + "id": 1887, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1805, + "id": 1845, "name": "AuthFailureType" } } @@ -26603,19 +27145,19 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1862, "name": "AuthEventEmitter" } }, { - "id": 1848, + "id": 1888, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1849, + "id": 1889, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -26625,29 +27167,29 @@ "types": [ { "type": "reference", - "id": 1814, + "id": 1854, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1817, + "id": 1857, "name": "LOGOUT" }, { "type": "reference", - "id": 1818, + "id": 1858, "name": "WAITING_FOR_POPUP" }, { "type": "reference", - "id": 1819, + "id": 1859, "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1850, + "id": 1890, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26655,14 +27197,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1851, + "id": 1891, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1852, + "id": 1892, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -26679,31 +27221,31 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1862, "name": "AuthEventEmitter" } }, { - "id": 1853, + "id": 1893, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1854, + "id": 1894, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1816, + "id": 1856, "name": "SUCCESS" } }, { - "id": 1855, + "id": 1895, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -26711,21 +27253,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1856, + "id": 1896, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1857, + "id": 1897, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1858, + "id": 1898, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -26748,21 +27290,21 @@ ], "type": { "type": "reference", - "id": 1822, + "id": 1862, "name": "AuthEventEmitter" } } ] }, { - "id": 1872, + "id": 1912, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1873, + "id": 1913, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -26772,7 +27314,7 @@ }, "parameters": [ { - "id": 1874, + "id": 1914, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -26782,14 +27324,14 @@ }, "type": { "type": "reference", - "id": 1812, + "id": 1852, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1822, + "id": 1862, "name": "AuthEventEmitter" } } @@ -26801,11 +27343,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1859, + 1899, + 1903, 1863, - 1823, - 1841, - 1872 + 1881, + 1912 ] } ], @@ -26818,7 +27360,7 @@ ] }, { - "id": 1308, + "id": 1334, "name": "BodylessConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -26838,7 +27380,7 @@ }, "children": [ { - "id": 1319, + "id": 1345, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -26869,20 +27411,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1320, + "id": 1346, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1321, + "id": 1347, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1322, + "id": 1348, "name": "key", "kind": 32768, "flags": {}, @@ -26914,12 +27456,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1287, + "id": 1311, "name": "SpotterAgentEmbedViewConfig.additionalFlags" } }, { - "id": 1336, + "id": 1362, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -26956,12 +27498,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1304, + "id": 1328, "name": "SpotterAgentEmbedViewConfig.customActions" } }, { - "id": 1323, + "id": 1349, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -26990,17 +27532,17 @@ ], "type": { "type": "reference", - "id": 2758, + "id": 2801, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1291, + "id": 1315, "name": "SpotterAgentEmbedViewConfig.customizations" } }, { - "id": 1331, + "id": 1357, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -27034,12 +27576,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1299, + "id": 1323, "name": "SpotterAgentEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1315, + "id": 1341, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -27073,12 +27615,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1283, + "id": 1307, "name": "SpotterAgentEmbedViewConfig.disabledActionReason" } }, { - "id": 1314, + "id": 1340, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -27110,18 +27652,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1282, + "id": 1306, "name": "SpotterAgentEmbedViewConfig.disabledActions" } }, { - "id": 1327, + "id": 1353, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -27158,12 +27700,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1295, + "id": 1319, "name": "SpotterAgentEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1328, + "id": 1354, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -27197,12 +27739,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1296, + "id": 1320, "name": "SpotterAgentEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1330, + "id": 1356, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -27235,12 +27777,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1298, + "id": 1322, "name": "SpotterAgentEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1311, + "id": 1337, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -27270,17 +27812,17 @@ ], "type": { "type": "reference", - "id": 2717, + "id": 2760, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1279, + "id": 1303, "name": "SpotterAgentEmbedViewConfig.frameParams" } }, { - "id": 1316, + "id": 1342, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -27316,18 +27858,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1284, + "id": 1308, "name": "SpotterAgentEmbedViewConfig.hiddenActions" } }, { - "id": 1324, + "id": 1350, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -27361,12 +27903,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1292, + "id": 1316, "name": "SpotterAgentEmbedViewConfig.insertAsSibling" } }, { - "id": 1339, + "id": 1367, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -27389,7 +27931,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6585, + "line": 6557, "character": 4 } ], @@ -27399,12 +27941,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1307, + "id": 1333, "name": "SpotterAgentEmbedViewConfig.interceptTimeout" } }, { - "id": 1338, + "id": 1366, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -27427,7 +27969,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6568, + "line": 6540, "character": 4 } ], @@ -27440,12 +27982,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1306, + "id": 1332, "name": "SpotterAgentEmbedViewConfig.interceptUrls" } }, { - "id": 1337, + "id": 1365, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -27465,7 +28007,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6552, + "line": 6524, "character": 4 } ], @@ -27475,12 +28017,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1305, + "id": 1331, "name": "SpotterAgentEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" } }, { - "id": 1333, + "id": 1359, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -27514,12 +28056,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1301, + "id": 1325, "name": "SpotterAgentEmbedViewConfig.linkOverride" } }, { - "id": 1318, + "id": 1344, "name": "locale", "kind": 1024, "kindString": "Property", @@ -27553,12 +28095,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1286, + "id": 1310, "name": "SpotterAgentEmbedViewConfig.locale" } }, { - "id": 1332, + "id": 1358, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -27592,12 +28134,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1300, + "id": 1324, "name": "SpotterAgentEmbedViewConfig.overrideOrgId" } }, { - "id": 1326, + "id": 1352, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -27631,12 +28173,54 @@ }, "inheritedFrom": { "type": "reference", - "id": 1294, + "id": 1318, "name": "SpotterAgentEmbedViewConfig.preRenderId" } }, { - "id": 1335, + "id": 1363, + "name": "shouldBypassPayloadValidation", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to bypass host events payload validation", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.46.0 | 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": 1136, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1329, + "name": "SpotterAgentEmbedViewConfig.shouldBypassPayloadValidation" + } + }, + { + "id": 1361, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -27669,12 +28253,54 @@ }, "inheritedFrom": { "type": "reference", - "id": 1303, + "id": 1327, "name": "SpotterAgentEmbedViewConfig.showAlerts" } }, { - "id": 1317, + "id": 1364, + "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.46.0 | 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": 1150, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1330, + "name": "SpotterAgentEmbedViewConfig.useHostEventsV2" + } + }, + { + "id": 1343, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -27710,18 +28336,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1285, + "id": 1309, "name": "SpotterAgentEmbedViewConfig.visibleActions" } }, { - "id": 1309, + "id": 1335, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -27742,7 +28368,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1277, + "id": 1301, "name": "SpotterAgentEmbedViewConfig.worksheetId" } } @@ -27752,28 +28378,30 @@ "title": "Properties", "kind": 1024, "children": [ - 1319, - 1336, - 1323, - 1331, - 1315, - 1314, - 1327, - 1328, - 1330, - 1311, - 1316, - 1324, - 1339, - 1338, + 1345, + 1362, + 1349, + 1357, + 1341, + 1340, + 1353, + 1354, + 1356, 1337, - 1333, - 1318, - 1332, - 1326, - 1335, - 1317, - 1309 + 1342, + 1350, + 1367, + 1366, + 1365, + 1359, + 1344, + 1358, + 1352, + 1363, + 1361, + 1364, + 1343, + 1335 ] } ], @@ -27787,13 +28415,13 @@ "extendedTypes": [ { "type": "reference", - "id": 1276, + "id": 1300, "name": "SpotterAgentEmbedViewConfig" } ] }, { - "id": 1588, + "id": 1622, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -27813,7 +28441,7 @@ }, "children": [ { - "id": 1611, + "id": 1645, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -27844,20 +28472,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1612, + "id": 1646, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1613, + "id": 1647, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1614, + "id": 1648, "name": "key", "kind": 32768, "flags": {}, @@ -27889,12 +28517,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1567, + "id": 1599, "name": "SpotterEmbedViewConfig.additionalFlags" } }, { - "id": 1628, + "id": 1662, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -27931,12 +28559,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1584, + "id": 1616, "name": "SpotterEmbedViewConfig.customActions" } }, { - "id": 1615, + "id": 1649, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -27965,17 +28593,17 @@ ], "type": { "type": "reference", - "id": 2758, + "id": 2801, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "id": 1571, + "id": 1603, "name": "SpotterEmbedViewConfig.customizations" } }, { - "id": 1593, + "id": 1627, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -28003,7 +28631,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 75, + "line": 76, "character": 4 } ], @@ -28013,12 +28641,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1549, + "id": 1581, "name": "SpotterEmbedViewConfig.dataPanelV2" } }, { - "id": 1623, + "id": 1657, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -28052,12 +28680,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1579, + "id": 1611, "name": "SpotterEmbedViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1591, + "id": 1625, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -28081,7 +28709,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 45, + "line": 46, "character": 4 } ], @@ -28091,12 +28719,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1547, + "id": 1579, "name": "SpotterEmbedViewConfig.disableSourceSelection" } }, { - "id": 1607, + "id": 1641, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -28130,12 +28758,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1563, + "id": 1595, "name": "SpotterEmbedViewConfig.disabledActionReason" } }, { - "id": 1606, + "id": 1640, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -28167,18 +28795,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1562, + "id": 1594, "name": "SpotterEmbedViewConfig.disabledActions" } }, { - "id": 1619, + "id": 1653, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -28215,12 +28843,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1575, + "id": 1607, "name": "SpotterEmbedViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1600, + "id": 1634, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -28248,7 +28876,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 186, + "line": 187, "character": 4 } ], @@ -28258,12 +28886,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1556, + "id": 1588, "name": "SpotterEmbedViewConfig.enablePastConversationsSidebar" } }, { - "id": 1620, + "id": 1654, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -28297,12 +28925,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1576, + "id": 1608, "name": "SpotterEmbedViewConfig.enableV2Shell_experimental" } }, { - "id": 1597, + "id": 1631, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -28326,7 +28954,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 139, + "line": 140, "character": 4 } ], @@ -28336,12 +28964,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1553, + "id": 1585, "name": "SpotterEmbedViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1599, + "id": 1633, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -28365,7 +28993,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 170, + "line": 171, "character": 4 } ], @@ -28375,12 +29003,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1555, + "id": 1587, "name": "SpotterEmbedViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1622, + "id": 1656, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -28413,12 +29041,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1578, + "id": 1610, "name": "SpotterEmbedViewConfig.exposeTranslationIDs" } }, { - "id": 1603, + "id": 1637, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -28448,17 +29076,17 @@ ], "type": { "type": "reference", - "id": 2717, + "id": 2760, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "id": 1559, + "id": 1591, "name": "SpotterEmbedViewConfig.frameParams" } }, { - "id": 1608, + "id": 1642, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -28494,18 +29122,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1564, + "id": 1596, "name": "SpotterEmbedViewConfig.hiddenActions" } }, { - "id": 1595, + "id": 1629, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -28529,7 +29157,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 106, + "line": 107, "character": 4 } ], @@ -28539,12 +29167,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1551, + "id": 1583, "name": "SpotterEmbedViewConfig.hideSampleQuestions" } }, { - "id": 1592, + "id": 1626, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -28568,7 +29196,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 59, + "line": 60, "character": 4 } ], @@ -28578,12 +29206,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1548, + "id": 1580, "name": "SpotterEmbedViewConfig.hideSourceSelection" } }, { - "id": 1616, + "id": 1650, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -28617,12 +29245,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1572, + "id": 1604, "name": "SpotterEmbedViewConfig.insertAsSibling" } }, { - "id": 1631, + "id": 1667, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -28645,7 +29273,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6585, + "line": 6557, "character": 4 } ], @@ -28655,12 +29283,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1587, + "id": 1621, "name": "SpotterEmbedViewConfig.interceptTimeout" } }, { - "id": 1630, + "id": 1666, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -28683,7 +29311,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6568, + "line": 6540, "character": 4 } ], @@ -28696,12 +29324,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1586, + "id": 1620, "name": "SpotterEmbedViewConfig.interceptUrls" } }, { - "id": 1629, + "id": 1665, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -28721,7 +29349,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6552, + "line": 6524, "character": 4 } ], @@ -28731,12 +29359,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1585, + "id": 1619, "name": "SpotterEmbedViewConfig.isOnBeforeGetVizDataInterceptEnabled" } }, { - "id": 1625, + "id": 1659, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -28770,12 +29398,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1581, + "id": 1613, "name": "SpotterEmbedViewConfig.linkOverride" } }, { - "id": 1610, + "id": 1644, "name": "locale", "kind": 1024, "kindString": "Property", @@ -28809,12 +29437,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1566, + "id": 1598, "name": "SpotterEmbedViewConfig.locale" } }, { - "id": 1624, + "id": 1658, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -28848,12 +29476,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1580, + "id": 1612, "name": "SpotterEmbedViewConfig.overrideOrgId" } }, { - "id": 1618, + "id": 1652, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -28887,12 +29515,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1574, + "id": 1606, "name": "SpotterEmbedViewConfig.preRenderId" } }, { - "id": 1596, + "id": 1630, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -28916,7 +29544,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 127, + "line": 128, "character": 4 } ], @@ -28924,18 +29552,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 2019, "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "id": 1552, + "id": 1584, "name": "SpotterEmbedViewConfig.runtimeFilters" } }, { - "id": 1598, + "id": 1632, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -28959,7 +29587,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 158, + "line": 159, "character": 4 } ], @@ -28967,18 +29595,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2942, + "id": 2985, "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "id": 1554, + "id": 1586, "name": "SpotterEmbedViewConfig.runtimeParameters" } }, { - "id": 1590, + "id": 1624, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -28991,7 +29619,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 30, + "line": 31, "character": 4 } ], @@ -29001,12 +29629,54 @@ }, "inheritedFrom": { "type": "reference", - "id": 1546, + "id": 1578, "name": "SpotterEmbedViewConfig.searchOptions" } }, { - "id": 1627, + "id": 1663, + "name": "shouldBypassPayloadValidation", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to bypass host events payload validation", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.46.0 | 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": 1136, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1617, + "name": "SpotterEmbedViewConfig.shouldBypassPayloadValidation" + } + }, + { + "id": 1661, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -29039,12 +29709,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1583, + "id": 1615, "name": "SpotterEmbedViewConfig.showAlerts" } }, { - "id": 1594, + "id": 1628, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -29068,7 +29738,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 91, + "line": 92, "character": 4 } ], @@ -29078,12 +29748,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 1550, + "id": 1582, "name": "SpotterEmbedViewConfig.showSpotterLimitations" } }, { - "id": 1601, + "id": 1635, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -29111,7 +29781,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 202, + "line": 203, "character": 4 } ], @@ -29121,12 +29791,54 @@ }, "inheritedFrom": { "type": "reference", - "id": 1557, + "id": 1589, "name": "SpotterEmbedViewConfig.updatedSpotterChatPrompt" } }, { - "id": 1609, + "id": 1664, + "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.46.0 | 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": 1150, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 1618, + "name": "SpotterEmbedViewConfig.useHostEventsV2" + } + }, + { + "id": 1643, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -29162,18 +29874,18 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "id": 1565, + "id": 1597, "name": "SpotterEmbedViewConfig.visibleActions" } }, { - "id": 1589, + "id": 1623, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -29184,7 +29896,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 26, + "line": 27, "character": 4 } ], @@ -29194,7 +29906,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 1545, + "id": 1577, "name": "SpotterEmbedViewConfig.worksheetId" } } @@ -29204,60 +29916,62 @@ "title": "Properties", "kind": 1024, "children": [ - 1611, - 1628, - 1615, - 1593, - 1623, - 1591, - 1607, - 1606, - 1619, - 1600, - 1620, - 1597, - 1599, - 1622, - 1603, - 1608, - 1595, - 1592, - 1616, + 1645, + 1662, + 1649, + 1627, + 1657, + 1625, + 1641, + 1640, + 1653, + 1634, + 1654, 1631, - 1630, + 1633, + 1656, + 1637, + 1642, 1629, - 1625, - 1610, + 1626, + 1650, + 1667, + 1666, + 1665, + 1659, + 1644, + 1658, + 1652, + 1630, + 1632, 1624, - 1618, - 1596, - 1598, - 1590, - 1627, - 1594, - 1601, - 1609, - 1589 + 1663, + 1661, + 1628, + 1635, + 1664, + 1643, + 1623 ] } ], "sources": [ { "fileName": "embed/conversation.ts", - "line": 212, + "line": 213, "character": 17 } ], "extendedTypes": [ { "type": "reference", - "id": 1544, + "id": 1576, "name": "SpotterEmbedViewConfig" } ] }, { - "id": 2983, + "id": 3026, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -29272,7 +29986,7 @@ }, "children": [ { - "id": 2984, + "id": 3027, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -29282,21 +29996,21 @@ "sources": [ { "fileName": "types.ts", - "line": 6215, + "line": 6179, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2985, + "id": 3028, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2986, + "id": 3029, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -29304,18 +30018,18 @@ "sources": [ { "fileName": "types.ts", - "line": 6216, + "line": 6180, "character": 8 } ], "type": { "type": "reference", - "id": 2980, + "id": 3023, "name": "VizPoint" } }, { - "id": 2987, + "id": 3030, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -29323,7 +30037,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6217, + "line": 6181, "character": 8 } ], @@ -29331,7 +30045,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2980, + "id": 3023, "name": "VizPoint" } } @@ -29342,8 +30056,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2986, - 2987 + 3029, + 3030 ] } ] @@ -29351,7 +30065,7 @@ } }, { - "id": 2988, + "id": 3031, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -29359,21 +30073,21 @@ "sources": [ { "fileName": "types.ts", - "line": 6219, + "line": 6183, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2989, + "id": 3032, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2997, + "id": 3040, "name": "columns", "kind": 1024, "kindString": "Property", @@ -29381,7 +30095,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6227, + "line": 6191, "character": 8 } ], @@ -29394,7 +30108,7 @@ } }, { - "id": 2998, + "id": 3041, "name": "data", "kind": 1024, "kindString": "Property", @@ -29402,7 +30116,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6228, + "line": 6192, "character": 8 } ], @@ -29415,7 +30129,7 @@ } }, { - "id": 2991, + "id": 3034, "name": "id", "kind": 1024, "kindString": "Property", @@ -29423,7 +30137,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6221, + "line": 6185, "character": 8 } ], @@ -29433,7 +30147,7 @@ } }, { - "id": 2990, + "id": 3033, "name": "name", "kind": 1024, "kindString": "Property", @@ -29441,7 +30155,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6220, + "line": 6184, "character": 8 } ], @@ -29451,7 +30165,7 @@ } }, { - "id": 2992, + "id": 3035, "name": "sources", "kind": 1024, "kindString": "Property", @@ -29459,21 +30173,21 @@ "sources": [ { "fileName": "types.ts", - "line": 6222, + "line": 6186, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2993, + "id": 3036, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2994, + "id": 3037, "name": "header", "kind": 1024, "kindString": "Property", @@ -29481,21 +30195,21 @@ "sources": [ { "fileName": "types.ts", - "line": 6223, + "line": 6187, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2995, + "id": 3038, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2996, + "id": 3039, "name": "guid", "kind": 1024, "kindString": "Property", @@ -29503,7 +30217,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6224, + "line": 6188, "character": 16 } ], @@ -29518,7 +30232,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2996 + 3039 ] } ] @@ -29531,7 +30245,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2994 + 3037 ] } ] @@ -29544,23 +30258,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2997, - 2998, - 2991, - 2990, - 2992 + 3040, + 3041, + 3034, + 3033, + 3035 ] } ], "indexSignature": { - "id": 2999, + "id": 3042, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 3000, + "id": 3043, "name": "key", "kind": 32768, "flags": {}, @@ -29579,7 +30293,7 @@ } }, { - "id": 3001, + "id": 3044, "name": "session", "kind": 1024, "kindString": "Property", @@ -29587,18 +30301,18 @@ "sources": [ { "fileName": "types.ts", - "line": 6231, + "line": 6195, "character": 4 } ], "type": { "type": "reference", - "id": 1948, + "id": 1988, "name": "SessionInterface" } }, { - "id": 3002, + "id": 3045, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -29608,7 +30322,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6232, + "line": 6196, "character": 4 } ], @@ -29623,23 +30337,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2984, - 2988, - 3001, - 3002 + 3027, + 3031, + 3044, + 3045 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6214, + "line": 6178, "character": 17 } ] }, { - "id": 2780, + "id": 2823, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -29649,7 +30363,7 @@ }, "children": [ { - "id": 2834, + "id": 2877, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -29672,7 +30386,7 @@ } }, { - "id": 2833, + "id": 2876, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -29695,7 +30409,7 @@ } }, { - "id": 2803, + "id": 2846, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -29718,7 +30432,7 @@ } }, { - "id": 2804, + "id": 2847, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -29741,7 +30455,7 @@ } }, { - "id": 2806, + "id": 2849, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -29764,7 +30478,7 @@ } }, { - "id": 2805, + "id": 2848, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -29787,7 +30501,7 @@ } }, { - "id": 2785, + "id": 2828, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -29810,7 +30524,7 @@ } }, { - "id": 2846, + "id": 2889, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -29833,7 +30547,7 @@ } }, { - "id": 2847, + "id": 2890, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -29856,7 +30570,7 @@ } }, { - "id": 2844, + "id": 2887, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -29879,7 +30593,7 @@ } }, { - "id": 2845, + "id": 2888, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -29902,7 +30616,7 @@ } }, { - "id": 2808, + "id": 2851, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -29925,7 +30639,7 @@ } }, { - "id": 2813, + "id": 2856, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -29948,7 +30662,7 @@ } }, { - "id": 2810, + "id": 2853, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -29971,7 +30685,7 @@ } }, { - "id": 2812, + "id": 2855, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -29994,7 +30708,7 @@ } }, { - "id": 2811, + "id": 2854, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -30017,7 +30731,7 @@ } }, { - "id": 2809, + "id": 2852, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -30040,7 +30754,7 @@ } }, { - "id": 2818, + "id": 2861, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -30063,7 +30777,7 @@ } }, { - "id": 2815, + "id": 2858, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -30086,7 +30800,7 @@ } }, { - "id": 2817, + "id": 2860, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -30109,7 +30823,7 @@ } }, { - "id": 2816, + "id": 2859, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -30132,7 +30846,7 @@ } }, { - "id": 2814, + "id": 2857, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -30155,7 +30869,7 @@ } }, { - "id": 2822, + "id": 2865, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -30178,7 +30892,7 @@ } }, { - "id": 2821, + "id": 2864, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -30201,7 +30915,7 @@ } }, { - "id": 2820, + "id": 2863, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -30224,7 +30938,7 @@ } }, { - "id": 2819, + "id": 2862, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -30247,7 +30961,7 @@ } }, { - "id": 2807, + "id": 2850, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -30270,7 +30984,7 @@ } }, { - "id": 2940, + "id": 2983, "name": "--ts-var-cca-modal-summary-header-background", "kind": 1024, "kindString": "Property", @@ -30293,7 +31007,7 @@ } }, { - "id": 2935, + "id": 2978, "name": "--ts-var-change-analysis-insights-background", "kind": 1024, "kindString": "Property", @@ -30316,7 +31030,7 @@ } }, { - "id": 2930, + "id": 2973, "name": "--ts-var-chart-heatmap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -30339,7 +31053,7 @@ } }, { - "id": 2929, + "id": 2972, "name": "--ts-var-chart-heatmap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -30362,7 +31076,7 @@ } }, { - "id": 2932, + "id": 2975, "name": "--ts-var-chart-treemap-legend-label-color", "kind": 1024, "kindString": "Property", @@ -30385,7 +31099,7 @@ } }, { - "id": 2931, + "id": 2974, "name": "--ts-var-chart-treemap-legend-title-color", "kind": 1024, "kindString": "Property", @@ -30408,7 +31122,7 @@ } }, { - "id": 2869, + "id": 2912, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -30431,7 +31145,7 @@ } }, { - "id": 2872, + "id": 2915, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -30454,7 +31168,7 @@ } }, { - "id": 2867, + "id": 2910, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -30477,7 +31191,7 @@ } }, { - "id": 2870, + "id": 2913, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -30500,7 +31214,7 @@ } }, { - "id": 2871, + "id": 2914, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -30523,7 +31237,7 @@ } }, { - "id": 2866, + "id": 2909, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -30546,7 +31260,7 @@ } }, { - "id": 2868, + "id": 2911, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -30569,7 +31283,7 @@ } }, { - "id": 2839, + "id": 2882, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -30592,7 +31306,7 @@ } }, { - "id": 2838, + "id": 2881, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -30615,7 +31329,7 @@ } }, { - "id": 2841, + "id": 2884, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -30638,7 +31352,7 @@ } }, { - "id": 2840, + "id": 2883, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -30661,7 +31375,7 @@ } }, { - "id": 2837, + "id": 2880, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -30684,7 +31398,7 @@ } }, { - "id": 2835, + "id": 2878, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -30707,7 +31421,7 @@ } }, { - "id": 2836, + "id": 2879, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -30730,7 +31444,7 @@ } }, { - "id": 2842, + "id": 2885, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -30753,7 +31467,7 @@ } }, { - "id": 2843, + "id": 2886, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -30776,7 +31490,7 @@ } }, { - "id": 2854, + "id": 2897, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -30799,7 +31513,7 @@ } }, { - "id": 2855, + "id": 2898, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -30822,7 +31536,7 @@ } }, { - "id": 2858, + "id": 2901, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -30845,7 +31559,7 @@ } }, { - "id": 2856, + "id": 2899, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -30868,7 +31582,7 @@ } }, { - "id": 2857, + "id": 2900, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -30891,7 +31605,7 @@ } }, { - "id": 2865, + "id": 2908, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -30914,7 +31628,7 @@ } }, { - "id": 2864, + "id": 2907, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -30937,7 +31651,7 @@ } }, { - "id": 2863, + "id": 2906, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -30960,7 +31674,7 @@ } }, { - "id": 2862, + "id": 2905, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -30983,7 +31697,7 @@ } }, { - "id": 2928, + "id": 2971, "name": "--ts-var-kpi-analyze-text-color", "kind": 1024, "kindString": "Property", @@ -31006,7 +31720,7 @@ } }, { - "id": 2927, + "id": 2970, "name": "--ts-var-kpi-comparison-color", "kind": 1024, "kindString": "Property", @@ -31029,7 +31743,7 @@ } }, { - "id": 2926, + "id": 2969, "name": "--ts-var-kpi-hero-color", "kind": 1024, "kindString": "Property", @@ -31052,7 +31766,7 @@ } }, { - "id": 2934, + "id": 2977, "name": "--ts-var-kpi-negative-change-color", "kind": 1024, "kindString": "Property", @@ -31075,7 +31789,7 @@ } }, { - "id": 2933, + "id": 2976, "name": "--ts-var-kpi-positive-change-color", "kind": 1024, "kindString": "Property", @@ -31098,7 +31812,7 @@ } }, { - "id": 2860, + "id": 2903, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -31121,7 +31835,7 @@ } }, { - "id": 2859, + "id": 2902, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -31144,7 +31858,7 @@ } }, { - "id": 2887, + "id": 2930, "name": "--ts-var-liveboard-answer-viz-padding", "kind": 1024, "kindString": "Property", @@ -31167,7 +31881,7 @@ } }, { - "id": 2900, + "id": 2943, "name": "--ts-var-liveboard-chip--active-background", "kind": 1024, "kindString": "Property", @@ -31191,7 +31905,7 @@ } }, { - "id": 2899, + "id": 2942, "name": "--ts-var-liveboard-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -31215,7 +31929,7 @@ } }, { - "id": 2897, + "id": 2940, "name": "--ts-var-liveboard-chip-background", "kind": 1024, "kindString": "Property", @@ -31239,7 +31953,7 @@ } }, { - "id": 2898, + "id": 2941, "name": "--ts-var-liveboard-chip-color", "kind": 1024, "kindString": "Property", @@ -31263,7 +31977,7 @@ } }, { - "id": 2905, + "id": 2948, "name": "--ts-var-liveboard-cross-filter-layout-background", "kind": 1024, "kindString": "Property", @@ -31286,7 +32000,7 @@ } }, { - "id": 2903, + "id": 2946, "name": "--ts-var-liveboard-dual-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -31309,7 +32023,7 @@ } }, { - "id": 2902, + "id": 2945, "name": "--ts-var-liveboard-edit-bar-background", "kind": 1024, "kindString": "Property", @@ -31332,7 +32046,7 @@ } }, { - "id": 2888, + "id": 2931, "name": "--ts-var-liveboard-group-background", "kind": 1024, "kindString": "Property", @@ -31356,7 +32070,7 @@ } }, { - "id": 2889, + "id": 2932, "name": "--ts-var-liveboard-group-border-color", "kind": 1024, "kindString": "Property", @@ -31380,7 +32094,7 @@ } }, { - "id": 2893, + "id": 2936, "name": "--ts-var-liveboard-group-description-font-color", "kind": 1024, "kindString": "Property", @@ -31404,7 +32118,7 @@ } }, { - "id": 2881, + "id": 2924, "name": "--ts-var-liveboard-group-padding", "kind": 1024, "kindString": "Property", @@ -31428,7 +32142,7 @@ } }, { - "id": 2896, + "id": 2939, "name": "--ts-var-liveboard-group-tile-background", "kind": 1024, "kindString": "Property", @@ -31452,7 +32166,7 @@ } }, { - "id": 2895, + "id": 2938, "name": "--ts-var-liveboard-group-tile-description-font-color", "kind": 1024, "kindString": "Property", @@ -31476,7 +32190,7 @@ } }, { - "id": 2886, + "id": 2929, "name": "--ts-var-liveboard-group-tile-padding", "kind": 1024, "kindString": "Property", @@ -31500,7 +32214,7 @@ } }, { - "id": 2894, + "id": 2937, "name": "--ts-var-liveboard-group-tile-title-font-color", "kind": 1024, "kindString": "Property", @@ -31524,7 +32238,7 @@ } }, { - "id": 2884, + "id": 2927, "name": "--ts-var-liveboard-group-tile-title-font-size", "kind": 1024, "kindString": "Property", @@ -31548,7 +32262,7 @@ } }, { - "id": 2885, + "id": 2928, "name": "--ts-var-liveboard-group-tile-title-font-weight", "kind": 1024, "kindString": "Property", @@ -31572,7 +32286,7 @@ } }, { - "id": 2892, + "id": 2935, "name": "--ts-var-liveboard-group-title-font-color", "kind": 1024, "kindString": "Property", @@ -31596,7 +32310,7 @@ } }, { - "id": 2882, + "id": 2925, "name": "--ts-var-liveboard-group-title-font-size", "kind": 1024, "kindString": "Property", @@ -31620,7 +32334,7 @@ } }, { - "id": 2883, + "id": 2926, "name": "--ts-var-liveboard-group-title-font-weight", "kind": 1024, "kindString": "Property", @@ -31644,7 +32358,7 @@ } }, { - "id": 2919, + "id": 2962, "name": "--ts-var-liveboard-header-action-button-active-color", "kind": 1024, "kindString": "Property", @@ -31667,7 +32381,7 @@ } }, { - "id": 2916, + "id": 2959, "name": "--ts-var-liveboard-header-action-button-background", "kind": 1024, "kindString": "Property", @@ -31690,7 +32404,7 @@ } }, { - "id": 2917, + "id": 2960, "name": "--ts-var-liveboard-header-action-button-font-color", "kind": 1024, "kindString": "Property", @@ -31713,7 +32427,7 @@ } }, { - "id": 2918, + "id": 2961, "name": "--ts-var-liveboard-header-action-button-hover-color", "kind": 1024, "kindString": "Property", @@ -31736,7 +32450,7 @@ } }, { - "id": 2874, + "id": 2917, "name": "--ts-var-liveboard-header-background", "kind": 1024, "kindString": "Property", @@ -31759,7 +32473,7 @@ } }, { - "id": 2925, + "id": 2968, "name": "--ts-var-liveboard-header-badge-active-color", "kind": 1024, "kindString": "Property", @@ -31782,7 +32496,7 @@ } }, { - "id": 2920, + "id": 2963, "name": "--ts-var-liveboard-header-badge-background", "kind": 1024, "kindString": "Property", @@ -31805,7 +32519,7 @@ } }, { - "id": 2921, + "id": 2964, "name": "--ts-var-liveboard-header-badge-font-color", "kind": 1024, "kindString": "Property", @@ -31828,7 +32542,7 @@ } }, { - "id": 2924, + "id": 2967, "name": "--ts-var-liveboard-header-badge-hover-color", "kind": 1024, "kindString": "Property", @@ -31851,7 +32565,7 @@ } }, { - "id": 2922, + "id": 2965, "name": "--ts-var-liveboard-header-badge-modified-background", "kind": 1024, "kindString": "Property", @@ -31874,7 +32588,7 @@ } }, { - "id": 2923, + "id": 2966, "name": "--ts-var-liveboard-header-badge-modified-font-color", "kind": 1024, "kindString": "Property", @@ -31897,7 +32611,7 @@ } }, { - "id": 2875, + "id": 2918, "name": "--ts-var-liveboard-header-font-color", "kind": 1024, "kindString": "Property", @@ -31920,7 +32634,7 @@ } }, { - "id": 2873, + "id": 2916, "name": "--ts-var-liveboard-layout-background", "kind": 1024, "kindString": "Property", @@ -31943,7 +32657,7 @@ } }, { - "id": 2891, + "id": 2934, "name": "--ts-var-liveboard-notetitle-body-font-color", "kind": 1024, "kindString": "Property", @@ -31966,7 +32680,7 @@ } }, { - "id": 2890, + "id": 2933, "name": "--ts-var-liveboard-notetitle-heading-font-color", "kind": 1024, "kindString": "Property", @@ -31989,7 +32703,7 @@ } }, { - "id": 2904, + "id": 2947, "name": "--ts-var-liveboard-single-column-breakpoint", "kind": 1024, "kindString": "Property", @@ -32012,7 +32726,7 @@ } }, { - "id": 2906, + "id": 2949, "name": "--ts-var-liveboard-tab-active-border-color", "kind": 1024, "kindString": "Property", @@ -32035,7 +32749,7 @@ } }, { - "id": 2907, + "id": 2950, "name": "--ts-var-liveboard-tab-hover-color", "kind": 1024, "kindString": "Property", @@ -32058,7 +32772,7 @@ } }, { - "id": 2877, + "id": 2920, "name": "--ts-var-liveboard-tile-background", "kind": 1024, "kindString": "Property", @@ -32081,7 +32795,7 @@ } }, { - "id": 2876, + "id": 2919, "name": "--ts-var-liveboard-tile-border-color", "kind": 1024, "kindString": "Property", @@ -32104,7 +32818,7 @@ } }, { - "id": 2878, + "id": 2921, "name": "--ts-var-liveboard-tile-border-radius", "kind": 1024, "kindString": "Property", @@ -32127,7 +32841,7 @@ } }, { - "id": 2879, + "id": 2922, "name": "--ts-var-liveboard-tile-padding", "kind": 1024, "kindString": "Property", @@ -32150,7 +32864,7 @@ } }, { - "id": 2880, + "id": 2923, "name": "--ts-var-liveboard-tile-table-header-background", "kind": 1024, "kindString": "Property", @@ -32173,7 +32887,7 @@ } }, { - "id": 2908, + "id": 2951, "name": "--ts-var-liveboard-tile-title-fontsize", "kind": 1024, "kindString": "Property", @@ -32196,7 +32910,7 @@ } }, { - "id": 2909, + "id": 2952, "name": "--ts-var-liveboard-tile-title-fontweight", "kind": 1024, "kindString": "Property", @@ -32219,7 +32933,7 @@ } }, { - "id": 2852, + "id": 2895, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -32242,7 +32956,7 @@ } }, { - "id": 2849, + "id": 2892, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -32265,7 +32979,7 @@ } }, { - "id": 2848, + "id": 2891, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -32288,7 +33002,7 @@ } }, { - "id": 2850, + "id": 2893, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -32311,7 +33025,7 @@ } }, { - "id": 2853, + "id": 2896, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -32334,7 +33048,7 @@ } }, { - "id": 2851, + "id": 2894, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -32357,7 +33071,7 @@ } }, { - "id": 2786, + "id": 2829, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -32380,7 +33094,7 @@ } }, { - "id": 2787, + "id": 2830, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -32403,7 +33117,7 @@ } }, { - "id": 2914, + "id": 2957, "name": "--ts-var-parameter-chip-active-background", "kind": 1024, "kindString": "Property", @@ -32426,7 +33140,7 @@ } }, { - "id": 2915, + "id": 2958, "name": "--ts-var-parameter-chip-active-text-color", "kind": 1024, "kindString": "Property", @@ -32449,7 +33163,7 @@ } }, { - "id": 2910, + "id": 2953, "name": "--ts-var-parameter-chip-background", "kind": 1024, "kindString": "Property", @@ -32472,7 +33186,7 @@ } }, { - "id": 2912, + "id": 2955, "name": "--ts-var-parameter-chip-hover-background", "kind": 1024, "kindString": "Property", @@ -32495,7 +33209,7 @@ } }, { - "id": 2913, + "id": 2956, "name": "--ts-var-parameter-chip-hover-text-color", "kind": 1024, "kindString": "Property", @@ -32518,7 +33232,7 @@ } }, { - "id": 2911, + "id": 2954, "name": "--ts-var-parameter-chip-text-color", "kind": 1024, "kindString": "Property", @@ -32541,7 +33255,7 @@ } }, { - "id": 2781, + "id": 2824, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -32564,7 +33278,7 @@ } }, { - "id": 2782, + "id": 2825, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -32587,7 +33301,7 @@ } }, { - "id": 2783, + "id": 2826, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -32610,7 +33324,7 @@ } }, { - "id": 2784, + "id": 2827, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -32633,7 +33347,7 @@ } }, { - "id": 2795, + "id": 2838, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -32656,7 +33370,7 @@ } }, { - "id": 2799, + "id": 2842, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -32679,7 +33393,7 @@ } }, { - "id": 2800, + "id": 2843, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -32702,7 +33416,7 @@ } }, { - "id": 2798, + "id": 2841, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -32725,7 +33439,7 @@ } }, { - "id": 2794, + "id": 2837, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -32748,7 +33462,7 @@ } }, { - "id": 2797, + "id": 2840, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -32771,7 +33485,7 @@ } }, { - "id": 2791, + "id": 2834, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -32794,7 +33508,7 @@ } }, { - "id": 2792, + "id": 2835, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -32817,7 +33531,7 @@ } }, { - "id": 2793, + "id": 2836, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -32840,7 +33554,7 @@ } }, { - "id": 2788, + "id": 2831, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -32863,7 +33577,7 @@ } }, { - "id": 2789, + "id": 2832, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -32886,7 +33600,7 @@ } }, { - "id": 2790, + "id": 2833, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -32909,7 +33623,7 @@ } }, { - "id": 2796, + "id": 2839, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -32932,7 +33646,7 @@ } }, { - "id": 2861, + "id": 2904, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -32955,7 +33669,7 @@ } }, { - "id": 2901, + "id": 2944, "name": "--ts-var-side-panel-width", "kind": 1024, "kindString": "Property", @@ -32978,7 +33692,7 @@ } }, { - "id": 2939, + "id": 2982, "name": "--ts-var-spotiq-analyze-crosscorrelation-card-background", "kind": 1024, "kindString": "Property", @@ -33001,7 +33715,7 @@ } }, { - "id": 2936, + "id": 2979, "name": "--ts-var-spotiq-analyze-forecasting-card-background", "kind": 1024, "kindString": "Property", @@ -33024,7 +33738,7 @@ } }, { - "id": 2937, + "id": 2980, "name": "--ts-var-spotiq-analyze-outlier-card-background", "kind": 1024, "kindString": "Property", @@ -33047,7 +33761,7 @@ } }, { - "id": 2938, + "id": 2981, "name": "--ts-var-spotiq-analyze-trend-card-background", "kind": 1024, "kindString": "Property", @@ -33070,7 +33784,7 @@ } }, { - "id": 2941, + "id": 2984, "name": "--ts-var-spotter-chat-width", "kind": 1024, "kindString": "Property", @@ -33093,7 +33807,7 @@ } }, { - "id": 2801, + "id": 2844, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -33116,7 +33830,7 @@ } }, { - "id": 2802, + "id": 2845, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -33139,7 +33853,7 @@ } }, { - "id": 2831, + "id": 2874, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -33162,7 +33876,7 @@ } }, { - "id": 2829, + "id": 2872, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -33185,7 +33899,7 @@ } }, { - "id": 2830, + "id": 2873, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -33208,7 +33922,7 @@ } }, { - "id": 2826, + "id": 2869, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -33231,7 +33945,7 @@ } }, { - "id": 2827, + "id": 2870, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -33254,7 +33968,7 @@ } }, { - "id": 2828, + "id": 2871, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -33277,7 +33991,7 @@ } }, { - "id": 2832, + "id": 2875, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -33300,7 +34014,7 @@ } }, { - "id": 2823, + "id": 2866, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -33323,7 +34037,7 @@ } }, { - "id": 2824, + "id": 2867, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -33346,7 +34060,7 @@ } }, { - "id": 2825, + "id": 2868, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -33374,167 +34088,167 @@ "title": "Properties", "kind": 1024, "children": [ - 2834, - 2833, - 2803, - 2804, - 2806, - 2805, - 2785, + 2877, + 2876, 2846, 2847, - 2844, - 2845, - 2808, - 2813, - 2810, - 2812, - 2811, - 2809, - 2818, - 2815, - 2817, - 2816, - 2814, - 2822, - 2821, - 2820, - 2819, - 2807, - 2940, - 2935, - 2930, - 2929, - 2932, - 2931, - 2869, - 2872, - 2867, - 2870, - 2871, - 2866, - 2868, - 2839, - 2838, - 2841, - 2840, - 2837, - 2835, - 2836, - 2842, - 2843, - 2854, + 2849, + 2848, + 2828, + 2889, + 2890, + 2887, + 2888, + 2851, + 2856, + 2853, 2855, + 2854, + 2852, + 2861, 2858, - 2856, + 2860, + 2859, 2857, 2865, 2864, 2863, 2862, - 2928, - 2927, - 2926, - 2934, - 2933, - 2860, - 2859, - 2887, - 2900, - 2899, + 2850, + 2983, + 2978, + 2973, + 2972, + 2975, + 2974, + 2912, + 2915, + 2910, + 2913, + 2914, + 2909, + 2911, + 2882, + 2881, + 2884, + 2883, + 2880, + 2878, + 2879, + 2885, + 2886, 2897, 2898, + 2901, + 2899, + 2900, + 2908, + 2907, + 2906, 2905, + 2971, + 2970, + 2969, + 2977, + 2976, 2903, 2902, - 2888, - 2889, - 2893, - 2881, - 2896, - 2895, - 2886, - 2894, - 2884, - 2885, - 2892, - 2882, - 2883, - 2919, - 2916, + 2930, + 2943, + 2942, + 2940, + 2941, + 2948, + 2946, + 2945, + 2931, + 2932, + 2936, + 2924, + 2939, + 2938, + 2929, + 2937, + 2927, + 2928, + 2935, + 2925, + 2926, + 2962, + 2959, + 2960, + 2961, 2917, + 2968, + 2963, + 2964, + 2967, + 2965, + 2966, 2918, - 2874, - 2925, + 2916, + 2934, + 2933, + 2947, + 2949, + 2950, 2920, + 2919, 2921, - 2924, 2922, 2923, - 2875, - 2873, + 2951, + 2952, + 2895, + 2892, 2891, - 2890, - 2904, - 2906, - 2907, - 2877, - 2876, - 2878, - 2879, - 2880, - 2908, - 2909, - 2852, - 2849, - 2848, - 2850, - 2853, - 2851, - 2786, - 2787, - 2914, - 2915, - 2910, - 2912, - 2913, - 2911, - 2781, - 2782, - 2783, - 2784, - 2795, - 2799, - 2800, - 2798, - 2794, - 2797, - 2791, - 2792, - 2793, - 2788, - 2789, - 2790, - 2796, - 2861, - 2901, - 2939, - 2936, - 2937, - 2938, - 2941, - 2801, - 2802, - 2831, + 2893, + 2896, + 2894, 2829, 2830, + 2957, + 2958, + 2953, + 2955, + 2956, + 2954, + 2824, + 2825, 2826, 2827, - 2828, + 2838, + 2842, + 2843, + 2841, + 2837, + 2840, + 2834, + 2835, + 2836, + 2831, 2832, - 2823, - 2824, - 2825 + 2833, + 2839, + 2904, + 2944, + 2982, + 2979, + 2980, + 2981, + 2984, + 2844, + 2845, + 2874, + 2872, + 2873, + 2869, + 2870, + 2871, + 2875, + 2866, + 2867, + 2868 ] } ], @@ -33547,7 +34261,7 @@ ] }, { - "id": 2768, + "id": 2811, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -33557,7 +34271,7 @@ }, "children": [ { - "id": 2770, + "id": 2813, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -33573,12 +34287,12 @@ ], "type": { "type": "reference", - "id": 2771, + "id": 2814, "name": "customCssInterface" } }, { - "id": 2769, + "id": 2812, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -33603,8 +34317,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2770, - 2769 + 2813, + 2812 ] } ], @@ -33617,7 +34331,7 @@ ] }, { - "id": 2758, + "id": 2801, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -33633,7 +34347,7 @@ }, "children": [ { - "id": 2760, + "id": 2803, "name": "content", "kind": 1024, "kindString": "Property", @@ -33650,14 +34364,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2761, + "id": 2804, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2763, + "id": 2806, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -33687,7 +34401,7 @@ } }, { - "id": 2764, + "id": 2807, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -33707,7 +34421,7 @@ } }, { - "id": 2762, + "id": 2805, "name": "strings", "kind": 1024, "kindString": "Property", @@ -33750,21 +34464,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2763, - 2764, - 2762 + 2806, + 2807, + 2805 ] } ], "indexSignature": { - "id": 2765, + "id": 2808, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2766, + "id": 2809, "name": "key", "kind": 32768, "flags": {}, @@ -33783,7 +34497,7 @@ } }, { - "id": 2767, + "id": 2810, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -33803,7 +34517,7 @@ } }, { - "id": 2759, + "id": 2802, "name": "style", "kind": 1024, "kindString": "Property", @@ -33819,7 +34533,7 @@ ], "type": { "type": "reference", - "id": 2768, + "id": 2811, "name": "CustomStyles" } } @@ -33829,9 +34543,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2760, - 2767, - 2759 + 2803, + 2810, + 2802 ] } ], @@ -33844,7 +34558,7 @@ ] }, { - "id": 2330, + "id": 2370, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -33860,7 +34574,7 @@ }, "children": [ { - "id": 2372, + "id": 2412, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33890,20 +34604,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2373, + "id": 2413, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2374, + "id": 2414, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2375, + "id": 2415, "name": "key", "kind": 32768, "flags": {}, @@ -33935,7 +34649,7 @@ } }, { - "id": 2333, + "id": 2373, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -33958,7 +34672,7 @@ } }, { - "id": 2354, + "id": 2394, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -34000,7 +34714,7 @@ } }, { - "id": 2356, + "id": 2396, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -34029,7 +34743,7 @@ } }, { - "id": 2332, + "id": 2372, "name": "authType", "kind": 1024, "kindString": "Property", @@ -34046,12 +34760,12 @@ ], "type": { "type": "reference", - "id": 1967, + "id": 2007, "name": "AuthType" } }, { - "id": 2345, + "id": 2385, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -34080,7 +34794,7 @@ } }, { - "id": 2357, + "id": 2397, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -34113,7 +34827,7 @@ } }, { - "id": 2348, + "id": 2388, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -34142,7 +34856,7 @@ } }, { - "id": 2381, + "id": 2421, "name": "cleanupTimeout", "kind": 1024, "kindString": "Property", @@ -34175,7 +34889,7 @@ } }, { - "id": 2369, + "id": 2409, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -34204,7 +34918,7 @@ } }, { - "id": 2379, + "id": 2419, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -34240,7 +34954,7 @@ } }, { - "id": 2376, + "id": 2416, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -34283,7 +34997,7 @@ } }, { - "id": 2353, + "id": 2393, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -34308,12 +35022,12 @@ ], "type": { "type": "reference", - "id": 2758, + "id": 2801, "name": "CustomisationsInterface" } }, { - "id": 2367, + "id": 2407, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -34342,7 +35056,7 @@ } }, { - "id": 2350, + "id": 2390, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -34372,7 +35086,7 @@ } }, { - "id": 2378, + "id": 2418, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -34409,7 +35123,7 @@ } }, { - "id": 2371, + "id": 2411, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -34438,7 +35152,7 @@ } }, { - "id": 2346, + "id": 2386, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -34471,7 +35185,7 @@ } }, { - "id": 2377, + "id": 2417, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -34491,7 +35205,7 @@ } }, { - "id": 2366, + "id": 2406, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -34520,7 +35234,7 @@ } }, { - "id": 2344, + "id": 2384, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -34549,7 +35263,7 @@ } }, { - "id": 2339, + "id": 2379, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -34583,7 +35297,7 @@ } }, { - "id": 2365, + "id": 2405, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -34616,12 +35330,12 @@ ], "type": { "type": "reference", - "id": 2945, + "id": 2988, "name": "LogLevel" } }, { - "id": 2347, + "id": 2387, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -34650,7 +35364,7 @@ } }, { - "id": 2338, + "id": 2378, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -34683,7 +35397,7 @@ } }, { - "id": 2368, + "id": 2408, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -34712,7 +35426,7 @@ } }, { - "id": 2337, + "id": 2377, "name": "password", "kind": 1024, "kindString": "Property", @@ -34736,7 +35450,7 @@ } }, { - "id": 2363, + "id": 2403, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -34765,7 +35479,7 @@ } }, { - "id": 2349, + "id": 2389, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -34798,7 +35512,7 @@ } }, { - "id": 2340, + "id": 2380, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -34828,7 +35542,7 @@ } }, { - "id": 2342, + "id": 2382, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -34857,7 +35571,7 @@ } }, { - "id": 2364, + "id": 2404, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -34886,7 +35600,7 @@ } }, { - "id": 2343, + "id": 2383, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -34915,7 +35629,7 @@ } }, { - "id": 2352, + "id": 2392, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -34938,7 +35652,7 @@ } }, { - "id": 2351, + "id": 2391, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -34967,7 +35681,7 @@ } }, { - "id": 2331, + "id": 2371, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -34988,7 +35702,7 @@ } }, { - "id": 2355, + "id": 2395, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -35011,7 +35725,7 @@ } }, { - "id": 2336, + "id": 2376, "name": "username", "kind": 1024, "kindString": "Property", @@ -35034,7 +35748,7 @@ } }, { - "id": 2380, + "id": 2420, "name": "waitForCleanupOnDestroy", "kind": 1024, "kindString": "Property", @@ -35067,7 +35781,7 @@ } }, { - "id": 2334, + "id": 2374, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -35083,7 +35797,7 @@ ], "signatures": [ { - "id": 2335, + "id": 2375, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -35111,52 +35825,52 @@ "title": "Properties", "kind": 1024, "children": [ + 2412, + 2373, + 2394, + 2396, 2372, - 2333, - 2354, - 2356, - 2332, - 2345, - 2357, - 2348, - 2381, - 2369, + 2385, + 2397, + 2388, + 2421, + 2409, + 2419, + 2416, + 2393, + 2407, + 2390, + 2418, + 2411, + 2386, + 2417, + 2406, + 2384, 2379, - 2376, - 2353, - 2367, - 2350, + 2405, + 2387, 2378, - 2371, - 2346, + 2408, 2377, - 2366, - 2344, - 2339, - 2365, - 2347, - 2338, - 2368, - 2337, - 2363, - 2349, - 2340, - 2342, - 2364, - 2343, - 2352, - 2351, - 2331, - 2355, - 2336, - 2380 + 2403, + 2389, + 2380, + 2382, + 2404, + 2383, + 2392, + 2391, + 2371, + 2395, + 2376, + 2420 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2334 + 2374 ] } ], @@ -35169,7 +35883,7 @@ ] }, { - "id": 2717, + "id": 2760, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -35185,7 +35899,7 @@ }, "children": [ { - "id": 2719, + "id": 2762, "name": "height", "kind": 1024, "kindString": "Property", @@ -35217,7 +35931,7 @@ } }, { - "id": 2720, + "id": 2763, "name": "loading", "kind": 1024, "kindString": "Property", @@ -35253,7 +35967,7 @@ } }, { - "id": 2718, + "id": 2761, "name": "width", "kind": 1024, "kindString": "Property", @@ -35290,9 +36004,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2719, - 2720, - 2718 + 2762, + 2763, + 2761 ] } ], @@ -35304,7 +36018,7 @@ } ], "indexSignature": { - "id": 2721, + "id": 2764, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -35314,7 +36028,7 @@ }, "parameters": [ { - "id": 2722, + "id": 2765, "name": "key", "kind": 32768, "flags": {}, @@ -35348,7 +36062,7 @@ } }, { - "id": 2485, + "id": 2527, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -35364,7 +36078,7 @@ }, "children": [ { - "id": 2497, + "id": 2539, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -35388,7 +36102,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 210, + "line": 211, "character": 4 } ], @@ -35398,7 +36112,7 @@ } }, { - "id": 2522, + "id": 2562, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -35429,20 +36143,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2523, + "id": 2563, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2524, + "id": 2564, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2525, + "id": 2565, "name": "key", "kind": 32768, "flags": {}, @@ -35478,7 +36192,7 @@ } }, { - "id": 2549, + "id": 2591, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -35506,7 +36220,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1317, + "line": 1345, "character": 4 } ], @@ -35520,7 +36234,7 @@ } }, { - "id": 2546, + "id": 2588, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -35544,13 +36258,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1304, "character": 4 } ], "type": { "type": "reference", - "id": 2326, + "id": 2366, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -35559,7 +36273,7 @@ } }, { - "id": 2563, + "id": 2604, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -35583,7 +36297,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1553, + "line": 1565, "character": 4 } ], @@ -35597,7 +36311,7 @@ } }, { - "id": 2540, + "id": 2580, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -35638,7 +36352,7 @@ } }, { - "id": 2526, + "id": 2566, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -35667,7 +36381,7 @@ ], "type": { "type": "reference", - "id": 2758, + "id": 2801, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -35676,7 +36390,7 @@ } }, { - "id": 2550, + "id": 2592, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -35704,7 +36418,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1361, "character": 4 } ], @@ -35718,7 +36432,7 @@ } }, { - "id": 2487, + "id": 2529, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -35750,7 +36464,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 80, + "line": 81, "character": 4 } ], @@ -35760,7 +36474,7 @@ } }, { - "id": 2534, + "id": 2574, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -35798,7 +36512,7 @@ } }, { - "id": 2518, + "id": 2558, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -35836,7 +36550,7 @@ } }, { - "id": 2517, + "id": 2557, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -35868,7 +36582,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -35878,7 +36592,7 @@ } }, { - "id": 2530, + "id": 2570, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -35919,7 +36633,7 @@ } }, { - "id": 2557, + "id": 2598, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -35947,7 +36661,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1451, + "line": 1463, "character": 4 } ], @@ -35961,7 +36675,7 @@ } }, { - "id": 2562, + "id": 2603, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -35989,7 +36703,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1537, + "line": 1549, "character": 4 } ], @@ -36003,7 +36717,7 @@ } }, { - "id": 2551, + "id": 2593, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36031,7 +36745,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1349, + "line": 1377, "character": 4 } ], @@ -36045,7 +36759,7 @@ } }, { - "id": 2531, + "id": 2571, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36083,7 +36797,7 @@ } }, { - "id": 2489, + "id": 2531, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -36109,7 +36823,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 109, + "line": 110, "character": 4 } ], @@ -36119,7 +36833,7 @@ } }, { - "id": 2547, + "id": 2589, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -36143,7 +36857,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1289, + "line": 1317, "character": 4 } ], @@ -36157,7 +36871,7 @@ } }, { - "id": 2548, + "id": 2590, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -36181,7 +36895,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1302, + "line": 1330, "character": 4 } ], @@ -36195,7 +36909,7 @@ } }, { - "id": 2533, + "id": 2573, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -36232,7 +36946,7 @@ } }, { - "id": 2514, + "id": 2554, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -36262,7 +36976,7 @@ ], "type": { "type": "reference", - "id": 2717, + "id": 2760, "name": "FrameParams" }, "inheritedFrom": { @@ -36271,7 +36985,7 @@ } }, { - "id": 2486, + "id": 2528, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -36295,7 +37009,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 61, + "line": 62, "character": 4 } ], @@ -36305,7 +37019,7 @@ } }, { - "id": 2519, + "id": 2559, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -36341,7 +37055,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -36351,7 +37065,7 @@ } }, { - "id": 2503, + "id": 2545, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -36375,7 +37089,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 310, + "line": 311, "character": 4 } ], @@ -36388,7 +37102,7 @@ } }, { - "id": 2560, + "id": 2601, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -36416,7 +37130,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1504, + "line": 1516, "character": 4 } ], @@ -36430,7 +37144,7 @@ } }, { - "id": 2553, + "id": 2594, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -36458,7 +37172,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1387, + "line": 1399, "character": 4 } ], @@ -36472,7 +37186,7 @@ } }, { - "id": 2498, + "id": 2540, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -36496,7 +37210,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 224, + "line": 225, "character": 4 } ], @@ -36506,7 +37220,7 @@ } }, { - "id": 2527, + "id": 2567, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -36544,7 +37258,7 @@ } }, { - "id": 2543, + "id": 2585, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -36567,7 +37281,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6585, + "line": 6557, "character": 4 } ], @@ -36581,7 +37295,7 @@ } }, { - "id": 2542, + "id": 2584, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -36604,7 +37318,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6568, + "line": 6540, "character": 4 } ], @@ -36621,7 +37335,7 @@ } }, { - "id": 2564, + "id": 2606, "name": "isCentralizedLiveboardFilterUXEnabled", "kind": 1024, "kindString": "Property", @@ -36645,7 +37359,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1571, + "line": 1599, "character": 4 } ], @@ -36659,7 +37373,7 @@ } }, { - "id": 2566, + "id": 2608, "name": "isEnhancedFilterInteractivityEnabled", "kind": 1024, "kindString": "Property", @@ -36683,7 +37397,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1602, + "line": 1630, "character": 4 } ], @@ -36697,41 +37411,7 @@ } }, { - "id": 2508, - "name": "isGranularXLSXCSVSchedulesEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag is used to enable/disable the granular XLSX/CSV schedules feature", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.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 isGranularXLSXCSVSchedulesEnabled: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 394, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2565, + "id": 2607, "name": "isLinkParametersEnabled", "kind": 1024, "kindString": "Property", @@ -36755,7 +37435,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1586, + "line": 1614, "character": 4 } ], @@ -36769,7 +37449,7 @@ } }, { - "id": 2558, + "id": 2599, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -36797,7 +37477,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1468, + "line": 1480, "character": 4 } ], @@ -36811,7 +37491,7 @@ } }, { - "id": 2556, + "id": 2597, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -36835,7 +37515,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1434, + "line": 1446, "character": 4 } ], @@ -36849,7 +37529,7 @@ } }, { - "id": 2568, + "id": 2610, "name": "isLiveboardMasterpiecesEnabled", "kind": 1024, "kindString": "Property", @@ -36877,7 +37557,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1634, + "line": 1662, "character": 4 } ], @@ -36891,7 +37571,7 @@ } }, { - "id": 2505, + "id": 2547, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -36915,41 +37595,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 346, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2507, - "name": "isLiveboardXLSXCSVDownloadEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag is used to enable/disable the XLSX/CSV download option for Liveboards", - "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.46.0 | ThoughtSpot: 26.3.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 isLiveboardXLSXCSVDownloadEnabled: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 378, + "line": 347, "character": 4 } ], @@ -36959,7 +37605,7 @@ } }, { - "id": 2541, + "id": 2583, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -36979,7 +37625,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6552, + "line": 6524, "character": 4 } ], @@ -36993,7 +37639,7 @@ } }, { - "id": 2506, + "id": 2548, "name": "isPNGInScheduledEmailsEnabled", "kind": 1024, "kindString": "Property", @@ -37017,55 +37663,17 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 362, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2552, - "name": "isThisPeriodInDateFiltersEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To enable **Include current period** checkbox for date filters.\nControls the visibility of the option to include\nthe current time period in filter results.", - "text": "Supported embed types: `AppEmbed`, `SearchBarEmbed`, `LiveboardEmbed`, `SearchEmbed`", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n isThisPeriodInDateFiltersEnabled: true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot: 26.4.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1365, + "line": 363, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "LiveboardOtherViewConfig.isThisPeriodInDateFiltersEnabled" } }, { - "id": 2509, + "id": 2549, "name": "lazyLoadingForFullHeight", "kind": 1024, "kindString": "Property", @@ -37092,7 +37700,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 411, + "line": 380, "character": 4 } ], @@ -37102,7 +37710,7 @@ } }, { - "id": 2510, + "id": 2550, "name": "lazyLoadingMargin", "kind": 1024, "kindString": "Property", @@ -37126,7 +37734,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 434, + "line": 403, "character": 4 } ], @@ -37136,7 +37744,7 @@ } }, { - "id": 2536, + "id": 2576, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37174,7 +37782,7 @@ } }, { - "id": 2490, + "id": 2532, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -37198,7 +37806,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 123, + "line": 124, "character": 4 } ], @@ -37208,7 +37816,7 @@ } }, { - "id": 2496, + "id": 2538, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -37232,7 +37840,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 195, + "line": 196, "character": 4 } ], @@ -37242,7 +37850,45 @@ } }, { - "id": 2521, + "id": 2605, + "name": "liveboardXLSXCSVDownload", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag is used to enable or disable the XLSX/CSV download option for Liveboards.\nTo enable this feature on your instance, contact ThoughtSpot Support.", + "text": "Supported embed types: `AppEmbed`, `LiveboardEmbed`", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.41.0 | ThoughtSpot: 26.3.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 liveboardXLSXCSVDownload: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1581, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "LiveboardAppEmbedViewConfig.liveboardXLSXCSVDownload" + } + }, + { + "id": 2561, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37280,7 +37926,7 @@ } }, { - "id": 2488, + "id": 2530, "name": "minimumHeight", "kind": 1024, "kindString": "Property", @@ -37307,7 +37953,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 97, + "line": 98, "character": 4 } ], @@ -37317,7 +37963,7 @@ } }, { - "id": 2535, + "id": 2575, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37355,7 +38001,7 @@ } }, { - "id": 2529, + "id": 2569, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37393,7 +38039,7 @@ } }, { - "id": 2493, + "id": 2535, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -37417,7 +38063,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 157, + "line": 158, "character": 4 } ], @@ -37427,7 +38073,7 @@ } }, { - "id": 2537, + "id": 2577, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -37465,7 +38111,7 @@ } }, { - "id": 2544, + "id": 2586, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37489,7 +38135,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1240, + "line": 1268, "character": 4 } ], @@ -37497,7 +38143,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 2019, "name": "RuntimeFilter" } }, @@ -37507,7 +38153,7 @@ } }, { - "id": 2545, + "id": 2587, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37531,7 +38177,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1261, + "line": 1289, "character": 4 } ], @@ -37539,7 +38185,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2942, + "id": 2985, "name": "RuntimeParameter" } }, @@ -37549,7 +38195,48 @@ } }, { - "id": 2539, + "id": 2581, + "name": "shouldBypassPayloadValidation", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to bypass host events payload validation", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.46.0 | 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": 1136, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.shouldBypassPayloadValidation" + } + }, + { + "id": 2579, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37586,7 +38273,7 @@ } }, { - "id": 2555, + "id": 2596, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -37614,7 +38301,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1419, + "line": 1431, "character": 4 } ], @@ -37628,7 +38315,7 @@ } }, { - "id": 2561, + "id": 2602, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -37656,7 +38343,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1521, + "line": 1533, "character": 4 } ], @@ -37670,7 +38357,7 @@ } }, { - "id": 2554, + "id": 2595, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -37698,7 +38385,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1403, + "line": 1415, "character": 4 } ], @@ -37712,7 +38399,7 @@ } }, { - "id": 2559, + "id": 2600, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -37740,7 +38427,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1485, + "line": 1497, "character": 4 } ], @@ -37754,7 +38441,7 @@ } }, { - "id": 2567, + "id": 2609, "name": "showMaskedFilterChip", "kind": 1024, "kindString": "Property", @@ -37782,7 +38469,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1618, + "line": 1646, "character": 4 } ], @@ -37796,7 +38483,7 @@ } }, { - "id": 2499, + "id": 2541, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -37820,7 +38507,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 247, + "line": 248, "character": 4 } ], @@ -37830,7 +38517,7 @@ } }, { - "id": 2511, + "id": 2551, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -37853,7 +38540,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 450, + "line": 419, "character": 4 } ], @@ -37863,7 +38550,7 @@ } }, { - "id": 2512, + "id": 2552, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -37891,7 +38578,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 465, + "line": 434, "character": 4 } ], @@ -37901,7 +38588,48 @@ } }, { - "id": 2520, + "id": 2582, + "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.46.0 | 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": 1150, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.useHostEventsV2" + } + }, + { + "id": 2560, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37937,7 +38665,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -37947,7 +38675,7 @@ } }, { - "id": 2504, + "id": 2546, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -37971,7 +38699,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 330, + "line": 331, "character": 4 } ], @@ -37984,7 +38712,7 @@ } }, { - "id": 2494, + "id": 2536, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -38008,7 +38736,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 175, + "line": 176, "character": 4 } ], @@ -38021,7 +38749,7 @@ } }, { - "id": 2492, + "id": 2534, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -38045,7 +38773,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 142, + "line": 143, "character": 4 } ], @@ -38060,82 +38788,82 @@ "title": "Properties", "kind": 1024, "children": [ - 2497, - 2522, - 2549, - 2546, - 2563, - 2540, - 2526, - 2550, - 2487, - 2534, - 2518, - 2517, - 2530, - 2557, + 2539, 2562, - 2551, + 2591, + 2588, + 2604, + 2580, + 2566, + 2592, + 2529, + 2574, + 2558, + 2557, + 2570, + 2598, + 2603, + 2593, + 2571, 2531, - 2489, + 2589, + 2590, + 2573, + 2554, + 2528, + 2559, + 2545, + 2601, + 2594, + 2540, + 2567, + 2585, + 2584, + 2606, + 2608, + 2607, + 2599, + 2597, + 2610, 2547, + 2583, 2548, - 2533, - 2514, - 2486, - 2519, - 2503, - 2560, - 2553, - 2498, - 2527, - 2543, - 2542, - 2564, - 2566, - 2508, - 2565, - 2558, - 2556, - 2568, - 2505, - 2507, + 2549, + 2550, + 2576, + 2532, + 2538, + 2605, + 2561, + 2530, + 2575, + 2569, + 2535, + 2577, + 2586, + 2587, + 2581, + 2579, + 2596, + 2602, + 2595, + 2600, + 2609, 2541, - 2506, + 2551, 2552, - 2509, - 2510, + 2582, + 2560, + 2546, 2536, - 2490, - 2496, - 2521, - 2488, - 2535, - 2529, - 2493, - 2537, - 2544, - 2545, - 2539, - 2555, - 2561, - 2554, - 2559, - 2567, - 2499, - 2511, - 2512, - 2520, - 2504, - 2494, - 2492 + 2534 ] } ], "sources": [ { "fileName": "embed/liveboard.ts", - "line": 38, + "line": 39, "character": 17 } ], @@ -38155,7 +38883,7 @@ ] }, { - "id": 1979, + "id": 2019, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -38165,7 +38893,7 @@ }, "children": [ { - "id": 1980, + "id": 2020, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -38176,7 +38904,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1847, + "line": 1875, "character": 4 } ], @@ -38186,7 +38914,7 @@ } }, { - "id": 1981, + "id": 2021, "name": "operator", "kind": 1024, "kindString": "Property", @@ -38197,18 +38925,18 @@ "sources": [ { "fileName": "types.ts", - "line": 1851, + "line": 1879, "character": 4 } ], "type": { "type": "reference", - "id": 1983, + "id": 2023, "name": "RuntimeFilterOp" } }, { - "id": 1982, + "id": 2022, "name": "values", "kind": 1024, "kindString": "Property", @@ -38219,7 +38947,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1857, + "line": 1885, "character": 4 } ], @@ -38254,22 +38982,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1980, - 1981, - 1982 + 2020, + 2021, + 2022 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1843, + "line": 1871, "character": 17 } ] }, { - "id": 2942, + "id": 2985, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -38279,7 +39007,7 @@ }, "children": [ { - "id": 2943, + "id": 2986, "name": "name", "kind": 1024, "kindString": "Property", @@ -38290,7 +39018,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1867, + "line": 1895, "character": 4 } ], @@ -38300,7 +39028,7 @@ } }, { - "id": 2944, + "id": 2987, "name": "value", "kind": 1024, "kindString": "Property", @@ -38311,7 +39039,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1871, + "line": 1899, "character": 4 } ], @@ -38339,21 +39067,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2943, - 2944 + 2986, + 2987 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1863, + "line": 1891, "character": 17 } ] }, { - "id": 2569, + "id": 2611, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -38373,7 +39101,7 @@ }, "children": [ { - "id": 2599, + "id": 2640, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -38404,20 +39132,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2600, + "id": 2641, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2601, + "id": 2642, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2602, + "id": 2643, "name": "key", "kind": 32768, "flags": {}, @@ -38453,7 +39181,7 @@ } }, { - "id": 2586, + "id": 2628, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -38481,7 +39209,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1317, + "line": 1345, "character": 4 } ], @@ -38495,7 +39223,7 @@ } }, { - "id": 2583, + "id": 2625, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -38519,13 +39247,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1304, "character": 4 } ], "type": { "type": "reference", - "id": 2326, + "id": 2366, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -38534,7 +39262,7 @@ } }, { - "id": 2616, + "id": 2657, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -38575,7 +39303,7 @@ } }, { - "id": 2603, + "id": 2644, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -38604,7 +39332,7 @@ ], "type": { "type": "reference", - "id": 2758, + "id": 2801, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38613,7 +39341,7 @@ } }, { - "id": 2587, + "id": 2629, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -38641,7 +39369,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1361, "character": 4 } ], @@ -38655,7 +39383,7 @@ } }, { - "id": 2579, + "id": 2621, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -38668,7 +39396,7 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 112, + "line": 113, "character": 4 } ], @@ -38678,7 +39406,7 @@ } }, { - "id": 2611, + "id": 2652, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -38716,7 +39444,7 @@ } }, { - "id": 2574, + "id": 2616, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -38735,7 +39463,7 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 75, + "line": 76, "character": 4 } ], @@ -38745,7 +39473,7 @@ } }, { - "id": 2595, + "id": 2636, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -38783,7 +39511,7 @@ } }, { - "id": 2594, + "id": 2635, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38815,7 +39543,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -38825,7 +39553,7 @@ } }, { - "id": 2607, + "id": 2648, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38866,7 +39594,7 @@ } }, { - "id": 2588, + "id": 2630, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38894,7 +39622,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1349, + "line": 1377, "character": 4 } ], @@ -38908,7 +39636,7 @@ } }, { - "id": 2608, + "id": 2649, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38946,7 +39674,7 @@ } }, { - "id": 2584, + "id": 2626, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38970,7 +39698,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1289, + "line": 1317, "character": 4 } ], @@ -38984,7 +39712,7 @@ } }, { - "id": 2585, + "id": 2627, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -39008,7 +39736,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1302, + "line": 1330, "character": 4 } ], @@ -39022,7 +39750,7 @@ } }, { - "id": 2610, + "id": 2651, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -39059,7 +39787,7 @@ } }, { - "id": 2591, + "id": 2632, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -39089,7 +39817,7 @@ ], "type": { "type": "reference", - "id": 2717, + "id": 2760, "name": "FrameParams" }, "inheritedFrom": { @@ -39098,7 +39826,7 @@ } }, { - "id": 2596, + "id": 2637, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -39134,7 +39862,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -39144,7 +39872,7 @@ } }, { - "id": 2576, + "id": 2618, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -39163,7 +39891,7 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 85, + "line": 86, "character": 4 } ], @@ -39173,7 +39901,7 @@ } }, { - "id": 2573, + "id": 2615, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -39192,7 +39920,7 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 70, + "line": 71, "character": 4 } ], @@ -39202,7 +39930,7 @@ } }, { - "id": 2578, + "id": 2620, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -39226,7 +39954,7 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 108, + "line": 109, "character": 4 } ], @@ -39236,7 +39964,7 @@ } }, { - "id": 2572, + "id": 2614, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -39259,7 +39987,7 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 64, + "line": 65, "character": 4 } ], @@ -39269,7 +39997,7 @@ } }, { - "id": 2575, + "id": 2617, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -39288,7 +40016,7 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 80, + "line": 81, "character": 4 } ], @@ -39298,7 +40026,7 @@ } }, { - "id": 2604, + "id": 2645, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -39336,7 +40064,7 @@ } }, { - "id": 2619, + "id": 2662, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -39359,7 +40087,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6585, + "line": 6557, "character": 4 } ], @@ -39373,7 +40101,7 @@ } }, { - "id": 2618, + "id": 2661, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -39396,7 +40124,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6568, + "line": 6540, "character": 4 } ], @@ -39413,7 +40141,7 @@ } }, { - "id": 2617, + "id": 2660, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -39433,7 +40161,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6552, + "line": 6524, "character": 4 } ], @@ -39447,45 +40175,7 @@ } }, { - "id": 2589, - "name": "isThisPeriodInDateFiltersEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To enable **Include current period** checkbox for date filters.\nControls the visibility of the option to include\nthe current time period in filter results.", - "text": "Supported embed types: `AppEmbed`, `SearchBarEmbed`, `LiveboardEmbed`, `SearchEmbed`", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n isThisPeriodInDateFiltersEnabled: true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot: 26.4.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1365, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "SearchLiveboardCommonViewConfig.isThisPeriodInDateFiltersEnabled" - } - }, - { - "id": 2613, + "id": 2654, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -39523,7 +40213,7 @@ } }, { - "id": 2598, + "id": 2639, "name": "locale", "kind": 1024, "kindString": "Property", @@ -39561,7 +40251,7 @@ } }, { - "id": 2612, + "id": 2653, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -39599,7 +40289,7 @@ } }, { - "id": 2606, + "id": 2647, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -39637,7 +40327,7 @@ } }, { - "id": 2581, + "id": 2623, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -39661,7 +40351,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1240, + "line": 1268, "character": 4 } ], @@ -39669,7 +40359,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 2019, "name": "RuntimeFilter" } }, @@ -39679,7 +40369,7 @@ } }, { - "id": 2582, + "id": 2624, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -39703,7 +40393,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1261, + "line": 1289, "character": 4 } ], @@ -39711,7 +40401,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2942, + "id": 2985, "name": "RuntimeParameter" } }, @@ -39721,7 +40411,7 @@ } }, { - "id": 2580, + "id": 2622, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -39745,7 +40435,7 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 134, + "line": 135, "character": 4 } ], @@ -39755,7 +40445,48 @@ } }, { - "id": 2615, + "id": 2658, + "name": "shouldBypassPayloadValidation", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to bypass host events payload validation", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.46.0 | 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": 1136, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.shouldBypassPayloadValidation" + } + }, + { + "id": 2656, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -39792,7 +40523,7 @@ } }, { - "id": 2570, + "id": 2612, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -39811,7 +40542,7 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 48, + "line": 49, "character": 4 } ], @@ -39821,7 +40552,7 @@ } }, { - "id": 2577, + "id": 2619, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -39840,7 +40571,7 @@ "sources": [ { "fileName": "embed/sage.ts", - "line": 92, + "line": 93, "character": 4 } ], @@ -39850,7 +40581,48 @@ } }, { - "id": 2597, + "id": 2659, + "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.46.0 | 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": 1150, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.useHostEventsV2" + } + }, + { + "id": 2638, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -39886,7 +40658,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -39901,53 +40673,54 @@ "title": "Properties", "kind": 1024, "children": [ - 2599, - 2586, - 2583, + 2640, + 2628, + 2625, + 2657, + 2644, + 2629, + 2621, + 2652, 2616, - 2603, - 2587, - 2579, - 2611, - 2574, - 2595, - 2594, - 2607, - 2588, - 2608, - 2584, - 2585, - 2610, - 2591, - 2596, - 2576, - 2573, - 2578, - 2572, - 2575, - 2604, - 2619, + 2636, + 2635, + 2648, + 2630, + 2649, + 2626, + 2627, + 2651, + 2632, + 2637, 2618, + 2615, + 2620, + 2614, 2617, - 2589, - 2613, - 2598, + 2645, + 2662, + 2661, + 2660, + 2654, + 2639, + 2653, + 2647, + 2623, + 2624, + 2622, + 2658, + 2656, 2612, - 2606, - 2581, - 2582, - 2580, - 2615, - 2570, - 2577, - 2597 + 2619, + 2659, + 2638 ] } ], "sources": [ { "fileName": "embed/sage.ts", - "line": 38, + "line": 39, "character": 17 } ], @@ -39994,7 +40767,7 @@ ] }, { - "id": 2439, + "id": 2480, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -40009,7 +40782,7 @@ }, "children": [ { - "id": 2454, + "id": 2495, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -40040,20 +40813,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2455, + "id": 2496, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2456, + "id": 2497, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2457, + "id": 2498, "name": "key", "kind": 32768, "flags": {}, @@ -40089,7 +40862,7 @@ } }, { - "id": 2481, + "id": 2524, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -40117,7 +40890,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1317, + "line": 1345, "character": 4 } ], @@ -40131,7 +40904,7 @@ } }, { - "id": 2478, + "id": 2521, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -40155,13 +40928,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1304, "character": 4 } ], "type": { "type": "reference", - "id": 2326, + "id": 2366, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -40170,7 +40943,7 @@ } }, { - "id": 2472, + "id": 2513, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -40211,7 +40984,7 @@ } }, { - "id": 2458, + "id": 2499, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -40240,7 +41013,7 @@ ], "type": { "type": "reference", - "id": 2758, + "id": 2801, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -40249,7 +41022,7 @@ } }, { - "id": 2482, + "id": 2525, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -40277,7 +41050,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1361, "character": 4 } ], @@ -40291,7 +41064,7 @@ } }, { - "id": 2441, + "id": 2482, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -40315,7 +41088,7 @@ "sources": [ { "fileName": "embed/search-bar.tsx", - "line": 39, + "line": 40, "character": 4 } ], @@ -40325,7 +41098,7 @@ } }, { - "id": 2440, + "id": 2481, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -40353,7 +41126,7 @@ "sources": [ { "fileName": "embed/search-bar.tsx", - "line": 25, + "line": 26, "character": 4 } ], @@ -40366,7 +41139,7 @@ } }, { - "id": 2466, + "id": 2507, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -40404,7 +41177,7 @@ } }, { - "id": 2450, + "id": 2491, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -40442,7 +41215,7 @@ } }, { - "id": 2449, + "id": 2490, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -40474,7 +41247,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -40484,7 +41257,7 @@ } }, { - "id": 2462, + "id": 2503, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -40525,7 +41298,7 @@ } }, { - "id": 2483, + "id": 2526, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -40553,7 +41326,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1349, + "line": 1377, "character": 4 } ], @@ -40567,7 +41340,7 @@ } }, { - "id": 2463, + "id": 2504, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -40605,7 +41378,7 @@ } }, { - "id": 2479, + "id": 2522, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -40629,7 +41402,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1289, + "line": 1317, "character": 4 } ], @@ -40643,7 +41416,7 @@ } }, { - "id": 2480, + "id": 2523, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -40667,7 +41440,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1302, + "line": 1330, "character": 4 } ], @@ -40681,7 +41454,7 @@ } }, { - "id": 2444, + "id": 2485, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -40705,7 +41478,7 @@ "sources": [ { "fileName": "embed/search-bar.tsx", - "line": 96, + "line": 97, "character": 4 } ], @@ -40715,7 +41488,7 @@ } }, { - "id": 2465, + "id": 2506, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -40752,7 +41525,7 @@ } }, { - "id": 2446, + "id": 2487, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -40782,7 +41555,7 @@ ], "type": { "type": "reference", - "id": 2717, + "id": 2760, "name": "FrameParams" }, "inheritedFrom": { @@ -40791,7 +41564,7 @@ } }, { - "id": 2451, + "id": 2492, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -40827,7 +41600,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -40837,7 +41610,7 @@ } }, { - "id": 2459, + "id": 2500, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -40875,7 +41648,7 @@ } }, { - "id": 2475, + "id": 2518, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -40898,7 +41671,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6585, + "line": 6557, "character": 4 } ], @@ -40912,7 +41685,7 @@ } }, { - "id": 2474, + "id": 2517, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -40935,7 +41708,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6568, + "line": 6540, "character": 4 } ], @@ -40952,7 +41725,7 @@ } }, { - "id": 2473, + "id": 2516, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -40972,7 +41745,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6552, + "line": 6524, "character": 4 } ], @@ -40986,45 +41759,7 @@ } }, { - "id": 2484, - "name": "isThisPeriodInDateFiltersEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To enable **Include current period** checkbox for date filters.\nControls the visibility of the option to include\nthe current time period in filter results.", - "text": "Supported embed types: `AppEmbed`, `SearchBarEmbed`, `LiveboardEmbed`, `SearchEmbed`", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n isThisPeriodInDateFiltersEnabled: true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot: 26.4.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1365, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "SearchLiveboardCommonViewConfig.isThisPeriodInDateFiltersEnabled" - } - }, - { - "id": 2468, + "id": 2509, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -41062,7 +41797,7 @@ } }, { - "id": 2453, + "id": 2494, "name": "locale", "kind": 1024, "kindString": "Property", @@ -41100,7 +41835,7 @@ } }, { - "id": 2467, + "id": 2508, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -41138,7 +41873,7 @@ } }, { - "id": 2461, + "id": 2502, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -41176,7 +41911,7 @@ } }, { - "id": 2469, + "id": 2510, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -41214,7 +41949,7 @@ } }, { - "id": 2476, + "id": 2519, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -41238,7 +41973,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1240, + "line": 1268, "character": 4 } ], @@ -41246,7 +41981,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 2019, "name": "RuntimeFilter" } }, @@ -41256,7 +41991,7 @@ } }, { - "id": 2477, + "id": 2520, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -41280,7 +42015,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1261, + "line": 1289, "character": 4 } ], @@ -41288,7 +42023,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2942, + "id": 2985, "name": "RuntimeParameter" } }, @@ -41298,7 +42033,7 @@ } }, { - "id": 2443, + "id": 2484, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -41322,7 +42057,7 @@ "sources": [ { "fileName": "embed/search-bar.tsx", - "line": 78, + "line": 79, "character": 4 } ], @@ -41332,7 +42067,48 @@ } }, { - "id": 2471, + "id": 2514, + "name": "shouldBypassPayloadValidation", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to bypass host events payload validation", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.46.0 | 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": 1136, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.shouldBypassPayloadValidation" + } + }, + { + "id": 2512, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -41369,7 +42145,48 @@ } }, { - "id": 2442, + "id": 2515, + "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.46.0 | 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": 1150, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseViewConfig.useHostEventsV2" + } + }, + { + "id": 2483, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -41393,7 +42210,7 @@ "sources": [ { "fileName": "embed/search-bar.tsx", - "line": 53, + "line": 54, "character": 4 } ], @@ -41403,7 +42220,7 @@ } }, { - "id": 2452, + "id": 2493, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -41439,7 +42256,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -41454,49 +42271,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2454, - 2481, - 2478, - 2472, - 2458, + 2495, + 2524, + 2521, + 2513, + 2499, + 2525, 2482, - 2441, - 2440, - 2466, - 2450, - 2449, - 2462, - 2483, - 2463, - 2479, - 2480, - 2444, - 2465, - 2446, - 2451, - 2459, - 2475, - 2474, - 2473, + 2481, + 2507, + 2491, + 2490, + 2503, + 2526, + 2504, + 2522, + 2523, + 2485, + 2506, + 2487, + 2492, + 2500, + 2518, + 2517, + 2516, + 2509, + 2494, + 2508, + 2502, + 2510, + 2519, + 2520, 2484, - 2468, - 2453, - 2467, - 2461, - 2469, - 2476, - 2477, - 2443, - 2471, - 2442, - 2452 + 2514, + 2512, + 2515, + 2483, + 2493 ] } ], "sources": [ { "fileName": "embed/search-bar.tsx", - "line": 9, + "line": 10, "character": 17 } ], @@ -41512,7 +42330,7 @@ ] }, { - "id": 2382, + "id": 2422, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -41528,7 +42346,7 @@ }, "children": [ { - "id": 2418, + "id": 2457, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -41559,20 +42377,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2419, + "id": 2458, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2420, + "id": 2459, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2421, + "id": 2460, "name": "key", "kind": 32768, "flags": {}, @@ -41608,7 +42426,7 @@ } }, { - "id": 2394, + "id": 2434, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -41633,6 +42451,7 @@ { "fileName": "embed/search.ts", "line": 251, + "line": 251, "character": 4 } ], @@ -41642,7 +42461,7 @@ } }, { - "id": 2384, + "id": 2424, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -41666,7 +42485,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 103, + "line": 104, "character": 4 } ], @@ -41676,7 +42495,7 @@ } }, { - "id": 2383, + "id": 2423, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -41700,7 +42519,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 88, + "line": 89, "character": 4 } ], @@ -41710,7 +42529,7 @@ } }, { - "id": 2405, + "id": 2445, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -41738,7 +42557,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1317, + "line": 1345, "character": 4 } ], @@ -41752,7 +42571,7 @@ } }, { - "id": 2397, + "id": 2437, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -41780,6 +42599,7 @@ { "fileName": "embed/search.ts", "line": 280, + "line": 280, "character": 4 } ], @@ -41789,7 +42609,7 @@ } }, { - "id": 2402, + "id": 2442, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -41813,13 +42633,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1276, + "line": 1304, "character": 4 } ], "type": { "type": "reference", - "id": 2326, + "id": 2366, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -41828,7 +42648,7 @@ } }, { - "id": 2435, + "id": 2474, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -41869,7 +42689,7 @@ } }, { - "id": 2422, + "id": 2461, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -41898,7 +42718,7 @@ ], "type": { "type": "reference", - "id": 2758, + "id": 2801, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -41907,7 +42727,7 @@ } }, { - "id": 2398, + "id": 2438, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -41936,6 +42756,7 @@ { "fileName": "embed/search.ts", "line": 301, + "line": 301, "character": 4 } ], @@ -41945,7 +42766,7 @@ } }, { - "id": 2406, + "id": 2446, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -41973,7 +42794,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1333, + "line": 1361, "character": 4 } ], @@ -41987,7 +42808,7 @@ } }, { - "id": 2390, + "id": 2430, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -42012,6 +42833,7 @@ { "fileName": "embed/search.ts", "line": 191, + "line": 191, "character": 4 } ], @@ -42021,7 +42843,7 @@ } }, { - "id": 2389, + "id": 2429, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -42045,6 +42867,7 @@ { "fileName": "embed/search.ts", "line": 177, + "line": 177, "character": 4 } ], @@ -42057,7 +42880,7 @@ } }, { - "id": 2430, + "id": 2469, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -42095,7 +42918,7 @@ } }, { - "id": 2414, + "id": 2453, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -42133,7 +42956,7 @@ } }, { - "id": 2413, + "id": 2452, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -42165,7 +42988,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -42175,7 +42998,7 @@ } }, { - "id": 2426, + "id": 2465, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -42216,7 +43039,7 @@ } }, { - "id": 2407, + "id": 2447, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -42244,7 +43067,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1349, + "line": 1377, "character": 4 } ], @@ -42258,7 +43081,7 @@ } }, { - "id": 2387, + "id": 2427, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -42282,7 +43105,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 147, + "line": 148, "character": 4 } ], @@ -42292,7 +43115,7 @@ } }, { - "id": 2427, + "id": 2466, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -42330,7 +43153,7 @@ } }, { - "id": 2403, + "id": 2443, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -42354,7 +43177,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1289, + "line": 1317, "character": 4 } ], @@ -42368,7 +43191,7 @@ } }, { - "id": 2404, + "id": 2444, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -42392,7 +43215,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1302, + "line": 1330, "character": 4 } ], @@ -42406,7 +43229,7 @@ } }, { - "id": 2393, + "id": 2433, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -42431,6 +43254,7 @@ { "fileName": "embed/search.ts", "line": 237, + "line": 237, "character": 4 } ], @@ -42440,7 +43264,7 @@ } }, { - "id": 2429, + "id": 2468, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -42477,7 +43301,7 @@ } }, { - "id": 2399, + "id": 2439, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -42506,6 +43330,7 @@ { "fileName": "embed/search.ts", "line": 317, + "line": 317, "character": 4 } ], @@ -42515,7 +43340,7 @@ } }, { - "id": 2388, + "id": 2428, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -42540,6 +43365,7 @@ { "fileName": "embed/search.ts", "line": 162, + "line": 162, "character": 4 } ], @@ -42549,7 +43375,7 @@ } }, { - "id": 2410, + "id": 2449, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -42579,7 +43405,7 @@ ], "type": { "type": "reference", - "id": 2717, + "id": 2760, "name": "FrameParams" }, "inheritedFrom": { @@ -42588,7 +43414,7 @@ } }, { - "id": 2415, + "id": 2454, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -42624,7 +43450,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -42634,7 +43460,7 @@ } }, { - "id": 2385, + "id": 2425, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -42658,7 +43484,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 117, + "line": 118, "character": 4 } ], @@ -42668,7 +43494,7 @@ } }, { - "id": 2386, + "id": 2426, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -42692,7 +43518,7 @@ "sources": [ { "fileName": "embed/search.ts", - "line": 133, + "line": 134, "character": 4 } ], @@ -42702,7 +43528,7 @@ } }, { - "id": 2395, + "id": 2435, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -42727,6 +43553,7 @@ { "fileName": "embed/search.ts", "line": 266, + "line": 266, "character": 4 } ], @@ -42736,7 +43563,7 @@ } }, { - "id": 2423, + "id": 2462, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -42774,7 +43601,7 @@ } }, { - "id": 2438, + "id": 2479, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -42797,7 +43624,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6585, + "line": 6557, "character": 4 } ], @@ -42811,7 +43638,7 @@ } }, { - "id": 2437, + "id": 2478, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -42834,7 +43661,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6568, + "line": 6540, "character": 4 } ], @@ -42851,7 +43678,7 @@ } }, { - "id": 2436, + "id": 2477, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -42871,7 +43698,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6552, + "line": 6524, "character": 4 } ], @@ -42885,45 +43712,7 @@ } }, { - "id": 2408, - "name": "isThisPeriodInDateFiltersEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To enable **Include current period** checkbox for date filters.\nControls the visibility of the option to include\nthe current time period in filter results.", - "text": "Supported embed types: `AppEmbed`, `SearchBarEmbed`, `LiveboardEmbed`, `SearchEmbed`", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ('#tsEmbed', {\n ... // other embed view config\n isThisPeriodInDateFiltersEnabled: true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.45.0 | ThoughtSpot: 26.4.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1365, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "SearchLiveboardCommonViewConfig.isThisPeriodInDateFiltersEnabled" - } - }, - { - "id": 2432, + "id": 2471, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -42961,7 +43750,7 @@ } }, { - "id": 2417, + "id": 2456, "name": "locale", "kind": 1024, "kindString": "Property", @@ -42999,7 +43788,7 @@ } }, { - "id": 2431, + "id": 2470, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -43037,7 +43826,7 @@ } }, { - "id": 2425, + "id": 2464, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -43075,7 +43864,7 @@ } }, { - "id": 2400, + "id": 2440, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -43099,7 +43888,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1240, + "line": 1268, "character": 4 } ], @@ -43107,7 +43896,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 2019, "name": "RuntimeFilter" } }, @@ -43117,7 +43906,7 @@ } }, { - "id": 2401, + "id": 2441, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -43141,7 +43930,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1261, + "line": 1289, "character": 4 } ], @@ -43149,7 +43938,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2942, + "id": 2985, "name": "RuntimeParameter" } }, @@ -43159,7 +43948,7 @@ } }, { - "id": 2392, + "id": 2432, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -43180,6 +43969,7 @@ { "fileName": "embed/search.ts", "line": 219, + "line": 219, "character": 4 } ], @@ -43189,7 +43979,7 @@ } }, { - "id": 2391, + "id": 2431, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -43209,6 +43999,7 @@ { "fileName": "embed/search.ts", "line": 198, + "line": 198, "character": 4 } ], @@ -43218,7 +44009,48 @@ } }, { - "id": 2434, + "id": 2475, + "name": "shouldBypassPayloadValidation", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to bypass host events payload validation", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.46.0 | 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": 1136, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.shouldBypassPayloadValidation" + } + }, + { + "id": 2473, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -43255,7 +44087,48 @@ } }, { - "id": 2396, + "id": 2476, + "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.46.0 | 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": 1150, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.useHostEventsV2" + } + }, + { + "id": 2436, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -43276,6 +44149,7 @@ { "fileName": "embed/search.ts", "line": 273, + "line": 273, "character": 4 } ], @@ -43285,7 +44159,7 @@ } }, { - "id": 2416, + "id": 2455, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -43321,7 +44195,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -43336,19 +44210,17 @@ "title": "Properties", "kind": 1024, "children": [ - 2418, - 2394, - 2384, - 2383, - 2405, - 2397, - 2402, - 2435, - 2422, - 2398, - 2406, - 2390, - 2389, + 2457, + 2434, + 2424, + 2423, + 2445, + 2437, + 2442, + 2474, + 2461, + 2438, + 2446, 2430, 2414, 2413, @@ -43360,36 +44232,48 @@ 2404, 2393, 2429, - 2399, - 2388, - 2410, - 2415, - 2385, - 2386, - 2395, - 2423, - 2438, - 2437, - 2436, - 2408, + 2469, + 2453, + 2452, + 2465, + 2447, + 2427, + 2466, + 2443, + 2444, + 2433, + 2468, + 2439, + 2428, + 2449, + 2454, + 2425, + 2426, + 2435, + 2462, + 2479, + 2478, + 2477, + 2471, + 2456, + 2470, + 2464, + 2440, + 2441, 2432, - 2417, 2431, - 2425, - 2400, - 2401, - 2392, - 2391, - 2434, - 2396, - 2416 + 2475, + 2473, + 2476, + 2436, + 2455 ] } ], "sources": [ { "fileName": "embed/search.ts", - "line": 72, + "line": 73, "character": 17 } ], @@ -43415,14 +44299,14 @@ ] }, { - "id": 1948, + "id": 1988, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1951, + "id": 1991, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -43437,14 +44321,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1952, + "id": 1992, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1954, + "id": 1994, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -43462,7 +44346,7 @@ } }, { - "id": 1953, + "id": 1993, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -43485,8 +44369,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1954, - 1953 + 1994, + 1993 ] } ] @@ -43494,7 +44378,7 @@ } }, { - "id": 1950, + "id": 1990, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -43512,7 +44396,7 @@ } }, { - "id": 1949, + "id": 1989, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -43535,9 +44419,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1951, - 1950, - 1949 + 1991, + 1990, + 1989 ] } ], @@ -43550,7 +44434,7 @@ ] }, { - "id": 1276, + "id": 1300, "name": "SpotterAgentEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -43566,7 +44450,7 @@ }, "children": [ { - "id": 1287, + "id": 1311, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -43597,20 +44481,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1288, + "id": 1312, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1289, + "id": 1313, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1290, + "id": 1314, "name": "key", "kind": 32768, "flags": {}, @@ -43646,7 +44530,7 @@ } }, { - "id": 1304, + "id": 1328, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -43687,7 +44571,7 @@ } }, { - "id": 1291, + "id": 1315, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -43716,7 +44600,7 @@ ], "type": { "type": "reference", - "id": 2758, + "id": 2801, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -43725,7 +44609,7 @@ } }, { - "id": 1299, + "id": 1323, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -43763,7 +44647,7 @@ } }, { - "id": 1283, + "id": 1307, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -43801,7 +44685,7 @@ } }, { - "id": 1282, + "id": 1306, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -43833,7 +44717,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -43843,7 +44727,7 @@ } }, { - "id": 1295, + "id": 1319, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -43884,7 +44768,7 @@ } }, { - "id": 1296, + "id": 1320, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -43922,7 +44806,7 @@ } }, { - "id": 1298, + "id": 1322, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -43959,7 +44843,7 @@ } }, { - "id": 1279, + "id": 1303, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -43989,7 +44873,7 @@ ], "type": { "type": "reference", - "id": 2717, + "id": 2760, "name": "FrameParams" }, "inheritedFrom": { @@ -43998,7 +44882,7 @@ } }, { - "id": 1284, + "id": 1308, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -44034,7 +44918,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -44044,7 +44928,7 @@ } }, { - "id": 1292, + "id": 1316, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -44082,7 +44966,7 @@ } }, { - "id": 1307, + "id": 1333, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -44105,7 +44989,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6585, + "line": 6557, "character": 4 } ], @@ -44119,7 +45003,7 @@ } }, { - "id": 1306, + "id": 1332, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -44142,7 +45026,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6568, + "line": 6540, "character": 4 } ], @@ -44159,7 +45043,7 @@ } }, { - "id": 1305, + "id": 1331, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -44179,7 +45063,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6552, + "line": 6524, "character": 4 } ], @@ -44193,7 +45077,7 @@ } }, { - "id": 1301, + "id": 1325, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -44231,7 +45115,7 @@ } }, { - "id": 1286, + "id": 1310, "name": "locale", "kind": 1024, "kindString": "Property", @@ -44269,7 +45153,7 @@ } }, { - "id": 1300, + "id": 1324, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -44307,7 +45191,7 @@ } }, { - "id": 1294, + "id": 1318, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -44345,7 +45229,48 @@ } }, { - "id": 1303, + "id": 1329, + "name": "shouldBypassPayloadValidation", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to bypass host events payload validation", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.46.0 | 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": 1136, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.shouldBypassPayloadValidation" + } + }, + { + "id": 1327, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -44382,7 +45307,48 @@ } }, { - "id": 1285, + "id": 1330, + "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.46.0 | 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": 1150, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.useHostEventsV2" + } + }, + { + "id": 1309, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -44418,7 +45384,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -44428,7 +45394,7 @@ } }, { - "id": 1277, + "id": 1301, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -44454,28 +45420,30 @@ "title": "Properties", "kind": 1024, "children": [ - 1287, - 1304, - 1291, - 1299, - 1283, - 1282, - 1295, - 1296, - 1298, - 1279, - 1284, - 1292, + 1311, + 1328, + 1315, + 1323, 1307, 1306, - 1305, - 1301, - 1286, - 1300, - 1294, + 1319, + 1320, + 1322, 1303, - 1285, - 1277 + 1308, + 1316, + 1333, + 1332, + 1331, + 1325, + 1310, + 1324, + 1318, + 1329, + 1327, + 1330, + 1309, + 1301 ] } ], @@ -44505,13 +45473,13 @@ "extendedBy": [ { "type": "reference", - "id": 1308, + "id": 1334, "name": "BodylessConversationViewConfig" } ] }, { - "id": 1544, + "id": 1576, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -44527,7 +45495,7 @@ }, "children": [ { - "id": 1567, + "id": 1599, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -44558,20 +45526,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1568, + "id": 1600, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1569, + "id": 1601, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1570, + "id": 1602, "name": "key", "kind": 32768, "flags": {}, @@ -44607,7 +45575,7 @@ } }, { - "id": 1584, + "id": 1616, "name": "customActions", "kind": 1024, "kindString": "Property", @@ -44648,7 +45616,7 @@ } }, { - "id": 1571, + "id": 1603, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -44677,7 +45645,7 @@ ], "type": { "type": "reference", - "id": 2758, + "id": 2801, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -44686,7 +45654,7 @@ } }, { - "id": 1549, + "id": 1581, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -44714,7 +45682,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 75, + "line": 76, "character": 4 } ], @@ -44724,7 +45692,7 @@ } }, { - "id": 1579, + "id": 1611, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -44762,7 +45730,7 @@ } }, { - "id": 1547, + "id": 1579, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -44786,7 +45754,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 45, + "line": 46, "character": 4 } ], @@ -44796,7 +45764,7 @@ } }, { - "id": 1563, + "id": 1595, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -44834,7 +45802,7 @@ } }, { - "id": 1562, + "id": 1594, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -44866,7 +45834,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -44876,7 +45844,7 @@ } }, { - "id": 1575, + "id": 1607, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -44917,7 +45885,7 @@ } }, { - "id": 1556, + "id": 1588, "name": "enablePastConversationsSidebar", "kind": 1024, "kindString": "Property", @@ -44945,7 +45913,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 186, + "line": 187, "character": 4 } ], @@ -44955,7 +45923,7 @@ } }, { - "id": 1576, + "id": 1608, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -44993,7 +45961,7 @@ } }, { - "id": 1553, + "id": 1585, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -45017,7 +45985,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 139, + "line": 140, "character": 4 } ], @@ -45027,7 +45995,7 @@ } }, { - "id": 1555, + "id": 1587, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -45051,7 +46019,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 170, + "line": 171, "character": 4 } ], @@ -45061,7 +46029,7 @@ } }, { - "id": 1578, + "id": 1610, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -45098,7 +46066,7 @@ } }, { - "id": 1559, + "id": 1591, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -45128,7 +46096,7 @@ ], "type": { "type": "reference", - "id": 2717, + "id": 2760, "name": "FrameParams" }, "inheritedFrom": { @@ -45137,7 +46105,7 @@ } }, { - "id": 1564, + "id": 1596, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -45173,7 +46141,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -45183,7 +46151,7 @@ } }, { - "id": 1551, + "id": 1583, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -45207,7 +46175,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 106, + "line": 107, "character": 4 } ], @@ -45217,7 +46185,7 @@ } }, { - "id": 1548, + "id": 1580, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -45241,7 +46209,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 59, + "line": 60, "character": 4 } ], @@ -45251,7 +46219,7 @@ } }, { - "id": 1572, + "id": 1604, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -45289,7 +46257,7 @@ } }, { - "id": 1587, + "id": 1621, "name": "interceptTimeout", "kind": 1024, "kindString": "Property", @@ -45312,7 +46280,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6585, + "line": 6557, "character": 4 } ], @@ -45326,7 +46294,7 @@ } }, { - "id": 1586, + "id": 1620, "name": "interceptUrls", "kind": 1024, "kindString": "Property", @@ -45349,7 +46317,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6568, + "line": 6540, "character": 4 } ], @@ -45366,7 +46334,7 @@ } }, { - "id": 1585, + "id": 1619, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -45386,7 +46354,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6552, + "line": 6524, "character": 4 } ], @@ -45400,7 +46368,7 @@ } }, { - "id": 1581, + "id": 1613, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -45438,7 +46406,7 @@ } }, { - "id": 1566, + "id": 1598, "name": "locale", "kind": 1024, "kindString": "Property", @@ -45476,7 +46444,7 @@ } }, { - "id": 1580, + "id": 1612, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -45514,7 +46482,7 @@ } }, { - "id": 1574, + "id": 1606, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -45552,7 +46520,7 @@ } }, { - "id": 1552, + "id": 1584, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -45576,7 +46544,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 127, + "line": 128, "character": 4 } ], @@ -45584,13 +46552,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 1979, + "id": 2019, "name": "RuntimeFilter" } } }, { - "id": 1554, + "id": 1586, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -45614,7 +46582,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 158, + "line": 159, "character": 4 } ], @@ -45622,13 +46590,13 @@ "type": "array", "elementType": { "type": "reference", - "id": 2942, + "id": 2985, "name": "RuntimeParameter" } } }, { - "id": 1546, + "id": 1578, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -45641,7 +46609,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 30, + "line": 31, "character": 4 } ], @@ -45651,7 +46619,48 @@ } }, { - "id": 1583, + "id": 1617, + "name": "shouldBypassPayloadValidation", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to bypass host events payload validation", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.46.0 | 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": 1136, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.shouldBypassPayloadValidation" + } + }, + { + "id": 1615, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -45688,7 +46697,7 @@ } }, { - "id": 1550, + "id": 1582, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -45712,7 +46721,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 91, + "line": 92, "character": 4 } ], @@ -45722,7 +46731,7 @@ } }, { - "id": 1557, + "id": 1589, "name": "updatedSpotterChatPrompt", "kind": 1024, "kindString": "Property", @@ -45750,7 +46759,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 202, + "line": 203, "character": 4 } ], @@ -45760,7 +46769,48 @@ } }, { - "id": 1565, + "id": 1618, + "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.46.0 | 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": 1150, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.useHostEventsV2" + } + }, + { + "id": 1597, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -45796,7 +46846,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2177, + "id": 2223, "name": "Action" } }, @@ -45806,7 +46856,7 @@ } }, { - "id": 1545, + "id": 1577, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -45817,7 +46867,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 26, + "line": 27, "character": 4 } ], @@ -45832,47 +46882,49 @@ "title": "Properties", "kind": 1024, "children": [ - 1567, - 1584, - 1571, - 1549, + 1599, + 1616, + 1603, + 1581, + 1611, 1579, - 1547, - 1563, - 1562, - 1575, - 1556, - 1576, - 1553, - 1555, - 1578, - 1559, - 1564, - 1551, - 1548, - 1572, - 1587, - 1586, + 1595, + 1594, + 1607, + 1588, + 1608, 1585, - 1581, - 1566, - 1580, - 1574, - 1552, - 1554, - 1546, + 1587, + 1610, + 1591, + 1596, 1583, - 1550, - 1557, - 1565, - 1545 + 1580, + 1604, + 1621, + 1620, + 1619, + 1613, + 1598, + 1612, + 1606, + 1584, + 1586, + 1578, + 1617, + 1615, + 1582, + 1589, + 1618, + 1597, + 1577 ] } ], "sources": [ { "fileName": "embed/conversation.ts", - "line": 21, + "line": 22, "character": 17 } ], @@ -45895,20 +46947,20 @@ "extendedBy": [ { "type": "reference", - "id": 1588, + "id": 1622, "name": "ConversationViewConfig" } ] }, { - "id": 1955, + "id": 1995, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1956, + "id": 1996, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -45926,7 +46978,7 @@ } }, { - "id": 1957, + "id": 1997, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -45949,8 +47001,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1956, - 1957 + 1996, + 1997 ] } ], @@ -45963,14 +47015,14 @@ ] }, { - "id": 2980, + "id": 3023, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2981, + "id": 3024, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -45978,7 +47030,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6207, + "line": 6171, "character": 4 } ], @@ -45991,7 +47043,7 @@ } }, { - "id": 2982, + "id": 3025, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -45999,7 +47051,7 @@ "sources": [ { "fileName": "types.ts", - "line": 6208, + "line": 6172, "character": 4 } ], @@ -46017,21 +47069,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2981, - 2982 + 3024, + 3025 ] } ], "sources": [ { "fileName": "types.ts", - "line": 6206, + "line": 6170, "character": 17 } ] }, { - "id": 2771, + "id": 2814, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -46041,7 +47093,7 @@ }, "children": [ { - "id": 2773, + "id": 2816, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -46071,20 +47123,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2774, + "id": 2817, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2775, + "id": 2818, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2776, + "id": 2819, "name": "selector", "kind": 32768, "flags": {}, @@ -46097,7 +47149,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2777, + "id": 2820, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -46110,14 +47162,14 @@ } ], "indexSignature": { - "id": 2778, + "id": 2821, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2779, + "id": 2822, "name": "declaration", "kind": 32768, "flags": {}, @@ -46139,7 +47191,7 @@ } }, { - "id": 2772, + "id": 2815, "name": "variables", "kind": 1024, "kindString": "Property", @@ -46158,7 +47210,7 @@ ], "type": { "type": "reference", - "id": 2780, + "id": 2823, "name": "CustomCssVariables" } } @@ -46168,8 +47220,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2773, - 2772 + 2816, + 2815 ] } ], @@ -46474,7 +47526,7 @@ ] }, { - "id": 2741, + "id": 2784, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -46501,7 +47553,7 @@ } }, { - "id": 2745, + "id": 2788, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -46509,14 +47561,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1671, + "line": 1699, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2746, + "id": 2789, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -46533,13 +47585,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1671, + "line": 1699, "character": 30 } ], "signatures": [ { - "id": 2747, + "id": 2790, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -46549,19 +47601,19 @@ }, "parameters": [ { - "id": 2748, + "id": 2791, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2753, + "id": 2796, "name": "MessagePayload" } }, { - "id": 2749, + "id": 2792, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -46571,7 +47623,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2750, + "id": 2793, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -46579,13 +47631,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1678, + "line": 1706, "character": 16 } ], "signatures": [ { - "id": 2751, + "id": 2794, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -46595,7 +47647,7 @@ }, "parameters": [ { - "id": 2752, + "id": 2795, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -46626,7 +47678,7 @@ } }, { - "id": 2742, + "id": 2785, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -46643,21 +47695,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1660, + "line": 1688, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2743, + "id": 2786, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2744, + "id": 2787, "name": "start", "kind": 1024, "kindString": "Property", @@ -46670,7 +47722,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1665, + "line": 1693, "character": 4 } ], @@ -46685,14 +47737,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2744 + 2787 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1660, + "line": 1688, "character": 29 } ] @@ -46700,7 +47752,7 @@ } }, { - "id": 2753, + "id": 2796, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -46717,21 +47769,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1647, + "line": 1675, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2754, + "id": 2797, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2756, + "id": 2799, "name": "data", "kind": 1024, "kindString": "Property", @@ -46739,7 +47791,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1651, + "line": 1679, "character": 4 } ], @@ -46749,7 +47801,7 @@ } }, { - "id": 2757, + "id": 2800, "name": "status", "kind": 1024, "kindString": "Property", @@ -46759,7 +47811,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1653, + "line": 1681, "character": 4 } ], @@ -46769,7 +47821,7 @@ } }, { - "id": 2755, + "id": 2798, "name": "type", "kind": 1024, "kindString": "Property", @@ -46777,7 +47829,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1649, + "line": 1677, "character": 4 } ], @@ -46792,16 +47844,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2756, - 2757, - 2755 + 2799, + 2800, + 2798 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1647, + "line": 1675, "character": 29 } ] @@ -46859,7 +47911,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1875, + "id": 1915, "name": "AnswerService" } } @@ -47121,7 +48173,7 @@ ], "type": { "type": "reference", - "id": 1875, + "id": 1915, "name": "AnswerService" } }, @@ -47208,7 +48260,7 @@ }, "type": { "type": "reference", - "id": 2330, + "id": 2370, "name": "EmbedConfig" } } @@ -47308,14 +48360,14 @@ }, "type": { "type": "reference", - "id": 2330, + "id": 2370, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1822, + "id": 1862, "name": "AuthEventEmitter" } } @@ -47455,7 +48507,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2712, + "id": 2755, "name": "PrefetchFeatures" } } @@ -47583,7 +48635,7 @@ ] }, { - "id": 3053, + "id": 3096, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -47599,7 +48651,7 @@ ], "signatures": [ { - "id": 3054, + "id": 3097, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -47793,7 +48845,7 @@ ] }, { - "id": 2952, + "id": 2995, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -47807,7 +48859,7 @@ ], "signatures": [ { - "id": 2953, + "id": 2996, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -47817,7 +48869,7 @@ }, "parameters": [ { - "id": 2954, + "id": 2997, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -47829,7 +48881,7 @@ } }, { - "id": 2955, + "id": 2998, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -47840,7 +48892,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2956, + "id": 2999, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -47863,77 +48915,78 @@ "title": "Enumerations", "kind": 4, "children": [ - 2177, - 1820, - 1805, - 1812, - 1967, - 2326, - 3027, - 3023, - 3019, - 2173, - 3036, - 1999, - 3049, - 2723, - 2974, - 2968, - 2734, - 2097, - 3032, - 2977, + 2223, + 1860, + 1845, + 1852, + 2007, + 2366, + 2214, + 3070, + 3066, + 3062, + 2219, + 3079, + 2039, + 3092, + 2766, + 3017, 3011, - 2945, - 1958, - 2712, - 2972, - 1983, - 3003 + 2777, + 2137, + 3075, + 3020, + 3054, + 2988, + 1998, + 2755, + 3015, + 2023, + 3046 ] }, { "title": "Classes", "kind": 128, "children": [ - 1875, - 1027, - 1340, - 1632, - 614, - 844, - 241, + 1915, + 1047, + 1368, + 1668, + 626, + 860, + 245, 58, - 1244, - 1371 + 1268, + 1399 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2620, - 1822, - 1308, - 1588, - 2983, - 2780, - 2768, - 2758, - 2330, - 2717, - 2485, - 1979, - 2942, - 2569, - 2439, - 2382, - 1948, - 1276, - 1544, - 1955, - 2980, - 2771, + 2663, + 1862, + 1334, + 1622, + 3026, + 2823, + 2811, + 2801, + 2370, + 2760, + 2527, + 2019, + 2985, + 2611, + 2480, + 2422, + 1988, + 1300, + 1576, + 1995, + 3023, + 2814, 21, 28 ] @@ -47942,10 +48995,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2741, - 2745, - 2742, - 2753 + 2784, + 2788, + 2785, + 2796 ] }, { @@ -47962,9 +49015,9 @@ 4, 7, 25, - 3053, + 3096, 40, - 2952 + 2995 ] } ],