From fc346e54d79d3b0061314de21ece23b0336ca2e7 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 24 Apr 2025 14:34:39 +0530 Subject: [PATCH 01/29] Renamed conversationEmbed --- src/embed/bodyless-conversation.spec.ts | 6 +- src/embed/conversation.spec.ts | 32 +- src/embed/conversation.ts | 20 +- src/embed/ts-embed.spec.ts | 2 - src/index.ts | 6 +- src/react/all-types-export.ts | 2 +- src/react/index.tsx | 29 +- static/typedoc/typedoc.json | 15088 ++++++++++++---------- 8 files changed, 7979 insertions(+), 7206 deletions(-) diff --git a/src/embed/bodyless-conversation.spec.ts b/src/embed/bodyless-conversation.spec.ts index 811ccb1b..108cc144 100644 --- a/src/embed/bodyless-conversation.spec.ts +++ b/src/embed/bodyless-conversation.spec.ts @@ -121,8 +121,8 @@ describe('BodylessConversation', () => { worksheetId: 'worksheetId', }; - const conversationEmbed = new BodylessConversation(viewConfig); - const result = await conversationEmbed.sendMessage('userMessage'); + const spotterEmbed = new BodylessConversation(viewConfig); + const result = await spotterEmbed.sendMessage('userMessage'); const iframeSrc = getIFrameSrc(result.container); expectUrlToHaveParamsWithValues(iframeSrc, { sessionId: 'sessionId', @@ -134,7 +134,7 @@ describe('BodylessConversation', () => { fetchMock.mockRejectOnce( new Error('error'), ); - const errorResult = await conversationEmbed.sendMessage('userMessage'); + const errorResult = await spotterEmbed.sendMessage('userMessage'); expect(errorResult.error instanceof Error).toBeTruthy(); }); }); diff --git a/src/embed/conversation.spec.ts b/src/embed/conversation.spec.ts index c615a784..a4b37b5f 100644 --- a/src/embed/conversation.spec.ts +++ b/src/embed/conversation.spec.ts @@ -1,6 +1,6 @@ import { - ConversationEmbed, - ConversationViewConfig, + SpotterEmbed, + SpotterEmbedViewConfig, } from './conversation'; import * as authInstance from '../auth'; import { init } from '../index'; @@ -28,14 +28,14 @@ beforeAll(() => { describe('ConversationEmbed', () => { it('should render the conversation embed', async () => { - const viewConfig: ConversationViewConfig = { + const viewConfig: SpotterEmbedViewConfig = { worksheetId: 'worksheetId', searchOptions: { searchQuery: 'searchQuery', }, }; - const conversationEmbed = new ConversationEmbed(getRootEl(), viewConfig); + const conversationEmbed = new SpotterEmbed(getRootEl(), viewConfig); await conversationEmbed.render(); expectUrlMatchesWithParams( getIFrameSrc(), @@ -44,7 +44,7 @@ describe('ConversationEmbed', () => { }); it('should render the conversation embed with worksheets disabled', async () => { - const viewConfig: ConversationViewConfig = { + const viewConfig: SpotterEmbedViewConfig = { worksheetId: 'worksheetId', searchOptions: { searchQuery: 'searchQuery', @@ -52,7 +52,7 @@ describe('ConversationEmbed', () => { disableSourceSelection: true, }; - const conversationEmbed = new ConversationEmbed(getRootEl(), viewConfig); + const conversationEmbed = new SpotterEmbed(getRootEl(), viewConfig); await conversationEmbed.render(); expectUrlMatchesWithParams( getIFrameSrc(), @@ -61,7 +61,7 @@ describe('ConversationEmbed', () => { }); it('should render the conversation embed with spotter limitations text if flag is set', async () => { - const viewConfig: ConversationViewConfig = { + const viewConfig: SpotterEmbedViewConfig = { worksheetId: 'worksheetId', searchOptions: { searchQuery: 'searchQuery', @@ -69,7 +69,7 @@ describe('ConversationEmbed', () => { showSpotterLimitations: true, }; - const conversationEmbed = new ConversationEmbed(getRootEl(), viewConfig); + const conversationEmbed = new SpotterEmbed(getRootEl(), viewConfig); await conversationEmbed.render(); expectUrlMatchesWithParams( getIFrameSrc(), @@ -78,7 +78,7 @@ describe('ConversationEmbed', () => { }); it('should render the conversation embed with sample questions hidden', async () => { - const viewConfig: ConversationViewConfig = { + const viewConfig: SpotterEmbedViewConfig = { worksheetId: 'worksheetId', searchOptions: { searchQuery: 'searchQuery', @@ -86,7 +86,7 @@ describe('ConversationEmbed', () => { hideSampleQuestions: true, }; - const conversationEmbed = new ConversationEmbed(getRootEl(), viewConfig); + const conversationEmbed = new SpotterEmbed(getRootEl(), viewConfig); await conversationEmbed.render(); expectUrlMatchesWithParams( getIFrameSrc(), @@ -95,7 +95,7 @@ describe('ConversationEmbed', () => { }); it('should render the conversation embed with worksheets hidden', async () => { - const viewConfig: ConversationViewConfig = { + const viewConfig: SpotterEmbedViewConfig = { worksheetId: 'worksheetId', searchOptions: { searchQuery: 'searchQuery', @@ -103,7 +103,7 @@ describe('ConversationEmbed', () => { hideSourceSelection: true, }; - const conversationEmbed = new ConversationEmbed(getRootEl(), viewConfig); + const conversationEmbed = new SpotterEmbed(getRootEl(), viewConfig); await conversationEmbed.render(); expectUrlMatchesWithParams( getIFrameSrc(), @@ -112,13 +112,13 @@ describe('ConversationEmbed', () => { }); it('should handle error when worksheetId is not provided', async () => { - const viewConfig: ConversationViewConfig = { + const viewConfig: SpotterEmbedViewConfig = { worksheetId: '', searchOptions: { searchQuery: 'searchQuery', }, }; - const conversationEmbed = new ConversationEmbed(getRootEl(), viewConfig); + const conversationEmbed = new SpotterEmbed(getRootEl(), viewConfig); (conversationEmbed as any).handleError = jest.fn(); await conversationEmbed.render(); expect((conversationEmbed as any).handleError).toHaveBeenCalledWith( @@ -127,7 +127,7 @@ describe('ConversationEmbed', () => { }); it('should render the conversation embed if data panel v2 flag is true', async () => { - const viewConfig: ConversationViewConfig = { + const viewConfig: SpotterEmbedViewConfig = { worksheetId: 'worksheetId', searchOptions: { searchQuery: 'searchQuery', @@ -135,7 +135,7 @@ describe('ConversationEmbed', () => { dataPanelV2: true, }; - const conversationEmbed = new ConversationEmbed(getRootEl(), viewConfig); + const conversationEmbed = new SpotterEmbed(getRootEl(), viewConfig); await conversationEmbed.render(); expectUrlMatchesWithParams( getIFrameSrc(), diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index e396a95d..2307e8ea 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -15,10 +15,10 @@ export interface SearchOptions { } /** - * The configuration for the embedded conversationEmbed options. + * The configuration for the embedded spotterEmbed options. * @group Embed components */ -export interface ConversationViewConfig extends ViewConfig { +export interface SpotterEmbedViewConfig extends ViewConfig { /** * The ID of the worksheet to use for the conversation. */ @@ -32,7 +32,7 @@ export interface ConversationViewConfig extends ViewConfig { * but still display the selected data source. * @example * ```js - * const embed = new ConversationEmbed('#tsEmbed', { + * const embed = new SpotterEmbed('#tsEmbed', { * ... // other options * disableSourceSelection : true, * }) @@ -44,7 +44,7 @@ export interface ConversationViewConfig extends ViewConfig { * hideSourceSelection : Hide data source selection * @example * ```js - * const embed = new ConversationEmbed('#tsEmbed', { + * const embed = new SpotterEmbed('#tsEmbed', { * ... // other options * hideSourceSelection : true, * }) @@ -71,7 +71,7 @@ export interface ConversationViewConfig extends ViewConfig { * default is false. * @example * ```js - * const embed = new ConversationEmbed('#tsEmbed', { + * const embed = new SpotterEmbed('#tsEmbed', { * ... // other options * showSpotterLimitations : true, * }) @@ -84,7 +84,7 @@ export interface ConversationViewConfig extends ViewConfig { * the initial screen of the conversation. * @example * ```js - * const embed = new ConversationEmbed('#tsEmbed', { + * const embed = new SpotterEmbed('#tsEmbed', { * ... // other options * hideSampleQuestions : true, * }) @@ -99,7 +99,7 @@ export interface ConversationViewConfig extends ViewConfig { * @group Embed components * @example * ```js - * const conversation = new ConversationEmbed('#tsEmbed', { + * const conversation = new SpotterEmbed('#tsEmbed', { * worksheetId: 'worksheetId', * searchOptions: { * searchQuery: 'searchQuery', @@ -109,8 +109,8 @@ export interface ConversationViewConfig extends ViewConfig { * ``` * @version SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl */ -export class ConversationEmbed extends TsEmbed { - constructor(container: HTMLElement, protected viewConfig: ConversationViewConfig) { +export class SpotterEmbed extends TsEmbed { + constructor(container: HTMLElement, protected viewConfig: SpotterEmbedViewConfig) { viewConfig.embedComponentType = 'conversation'; super(container, viewConfig); } @@ -163,7 +163,7 @@ export class ConversationEmbed extends TsEmbed { return `${this.getEmbedBasePath(query)}/embed/${path}${tsPostHashParams}`; } - public async render(): Promise { + public async render(): Promise { await super.render(); const src = this.getIframeSrc(); diff --git a/src/embed/ts-embed.spec.ts b/src/embed/ts-embed.spec.ts index f8b68739..a1dd40bf 100644 --- a/src/embed/ts-embed.spec.ts +++ b/src/embed/ts-embed.spec.ts @@ -14,8 +14,6 @@ import { AppViewConfig, SageEmbed, SageViewConfig, - ConversationViewConfig, - ConversationEmbed, SearchViewConfig, AnswerService, } from '../index'; diff --git a/src/index.ts b/src/index.ts index a63784ff..8854ee01 100644 --- a/src/index.ts +++ b/src/index.ts @@ -24,7 +24,7 @@ import { PinboardEmbed, LiveboardViewConfig, LiveboardEmbed } from './embed/live import { SearchEmbed, SearchViewConfig } from './embed/search'; import { SearchBarEmbed, SearchBarViewConfig } from './embed/search-bar'; import { BodylessConversation, BodylessConversationViewConfig } from './embed/bodyless-conversation'; -import { ConversationEmbed, ConversationViewConfig } from './embed/conversation'; +import { SpotterEmbed, SpotterEmbedViewConfig } from './embed/conversation'; import { AuthFailureType, AuthStatus, AuthEvent, AuthEventEmitter, } from './auth'; @@ -87,8 +87,8 @@ export { AppEmbed, BodylessConversation, BodylessConversationViewConfig, - ConversationEmbed, - ConversationViewConfig, + SpotterEmbed, + SpotterEmbedViewConfig, AuthFailureType, AuthStatus, AuthEvent, diff --git a/src/react/all-types-export.ts b/src/react/all-types-export.ts index c93101f2..ad5dd97d 100644 --- a/src/react/all-types-export.ts +++ b/src/react/all-types-export.ts @@ -9,7 +9,7 @@ export { PreRenderedAppEmbed, SageEmbed, PreRenderedSageEmbed, - ConversationEmbed, + SpotterEmbed, PreRenderedConversationEmbed, useEmbedRef, useInit, diff --git a/src/react/index.tsx b/src/react/index.tsx index 5b476488..cc21f216 100644 --- a/src/react/index.tsx +++ b/src/react/index.tsx @@ -13,7 +13,7 @@ import { TsEmbed } from '../embed/ts-embed'; import { EmbedConfig, EmbedEvent, ViewConfig } from '../types'; import { EmbedProps, getViewPropsAndListeners } from './util'; -import { ConversationEmbed as _ConversationEmbed, ConversationViewConfig } from '../embed/conversation'; +import { SpotterEmbed as _SpotterEmbed, SpotterEmbedViewConfig } from '../embed/conversation'; import { init } from '../embed/base'; const componentFactory = ( @@ -334,14 +334,14 @@ export const PreRenderedSageEmbed = componentFactory< SageViewConfig >(_SageEmbed, true); -interface ConversationEmbedProps extends EmbedProps, ConversationViewConfig { } +interface SpotterEmbedProps extends EmbedProps, SpotterEmbedViewConfig { } /** * React component for LLM based conversation BI. * @example * ```tsx * function Sage() { - * return " @@ -351,15 +351,16 @@ interface ConversationEmbedProps extends EmbedProps, ConversationViewConfig { } * } * ``` */ -export const ConversationEmbed = componentFactory< - typeof _ConversationEmbed, ConversationEmbedProps, ConversationViewConfig>( - _ConversationEmbed, - ); +export const SpotterEmbed = componentFactory< + typeof _SpotterEmbed, + SpotterEmbedProps, + SpotterEmbedViewConfig +>(_SpotterEmbed); /** * React component for PreRendered Conversation embed. * - * PreRenderedConversationEmbed will preRender the ConversationEmbed and will be hidden by + * PreRenderedConversationEmbed will preRender the SpotterEmbed and will be hidden by * default. * * SageEmbed with preRenderId passed will call showPreRender on the embed. @@ -370,22 +371,22 @@ export const ConversationEmbed = componentFactory< * } * ``` * function MyComponent() { - * return + * return * } * ``` */ export const PreRenderedConversationEmbed = componentFactory< - typeof _ConversationEmbed, - SageEmbedProps & PreRenderProps, - ConversationViewConfig ->(_ConversationEmbed, true); + typeof _SpotterEmbed, + SpotterEmbedProps & PreRenderProps, + SpotterEmbedViewConfig +>(_SpotterEmbed, true); type EmbedComponent = typeof SearchEmbed | typeof AppEmbed | typeof LiveboardEmbed | typeof SearchBarEmbed | typeof SageEmbed - | typeof ConversationEmbed; + | typeof SpotterEmbed; /** * Get a reference to the embed component to trigger events on the component. diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 286ec9be..8fc282a8 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 1635, + "id": 1641, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 1747, + "id": 1753, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4599, + "line": 4653, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 1655, + "id": 1661, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3756, + "line": 3810, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 1648, + "id": 1654, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3685, + "line": 3739, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 1647, + "id": 1653, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3674, + "line": 3728, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 1653, + "id": 1659, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3737, + "line": 3791, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 1654, + "id": 1660, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3746, + "line": 3800, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 1656, + "id": 1662, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3766, + "line": 3820, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 1730, + "id": 1736, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4404, + "line": 4458, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 1703, + "id": 1709, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4126, + "line": 4180, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1744, + "id": 1750, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4566, + "line": 4620, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 1702, + "id": 1708, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4114, + "line": 4168, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1701, + "id": 1707, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4102, + "line": 4156, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1743, + "id": 1749, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4555, + "line": 4609, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 1714, + "id": 1720, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4239, + "line": 4293, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 1717, + "id": 1723, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4273, + "line": 4327, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 1722, + "id": 1728, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4328, + "line": 4382, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 1716, + "id": 1722, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4262, + "line": 4316, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 1719, + "id": 1725, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4296, + "line": 4350, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 1723, + "id": 1729, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4338, + "line": 4392, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 1720, + "id": 1726, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4307, + "line": 4361, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 1725, + "id": 1731, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4360, + "line": 4414, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 1721, + "id": 1727, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4317, + "line": 4371, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 1718, + "id": 1724, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4284, + "line": 4338, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 1724, + "id": 1730, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4348, + "line": 4402, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 1715, + "id": 1721, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4250, + "line": 4304, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 1756, + "id": 1762, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4697, + "line": 4751, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 1652, + "id": 1658, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3728, + "line": 3782, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 1651, + "id": 1657, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3719, + "line": 3773, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 1650, + "id": 1656, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3707, + "line": 3761, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 1763, + "id": 1769, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4773, + "line": 4827, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 1649, + "id": 1655, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3696, + "line": 3750, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 1694, + "id": 1700, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4053, + "line": 4107, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 1642, + "id": 1648, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3633, + "line": 3687, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1693, + "id": 1699, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4052, + "line": 4106, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1764, + "id": 1770, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4783, + "line": 4837, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 1741, + "id": 1747, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4530, + "line": 4584, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 1705, + "id": 1711, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4146, + "line": 4200, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1710, + "id": 1716, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4197, + "line": 4251, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 1761, + "id": 1767, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4754, + "line": 4808, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 1753, + "id": 1759, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4666, + "line": 4720, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 1755, + "id": 1761, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4685, + "line": 4739, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 1664, + "id": 1670, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3816, + "line": 3870, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1667, + "id": 1673, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3849, + "line": 3903, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1666, + "id": 1672, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3839, + "line": 3893, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1665, + "id": 1671, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3826, + "line": 3880, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1668, + "id": 1674, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3859, + "line": 3913, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1698, + "id": 1704, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4069, + "line": 4123, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 1692, + "id": 1698, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4042, + "line": 4096, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1691, + "id": 1697, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4033, + "line": 4087, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1676, + "id": 1682, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3935, + "line": 3989, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1641, + "id": 1647, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3624, + "line": 3678, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 1704, + "id": 1710, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4135, + "line": 4189, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 1696, + "id": 1702, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4058, + "line": 4112, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 1760, + "id": 1766, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4743, + "line": 4797, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 1733, + "id": 1739, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4437, + "line": 4491, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 1748, + "id": 1754, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4612, + "line": 4666, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 1673, + "id": 1679, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3903, + "line": 3957, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1677, + "id": 1683, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3943, + "line": 3997, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 1762, + "id": 1768, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4764, + "line": 4818, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 1731, + "id": 1737, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4414, + "line": 4468, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 1690, + "id": 1696, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1624,14 +1624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4022, + "line": 4076, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1670, + "id": 1676, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1649,14 +1649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3875, + "line": 3929, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1671, + "id": 1677, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1673,14 +1673,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3885, + "line": 3939, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 1754, + "id": 1760, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4676, + "line": 4730, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 1684, + "id": 1690, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1725,14 +1725,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3984, + "line": 4038, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1739, + "id": 1745, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1753,14 +1753,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4498, + "line": 4552, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 1640, + "id": 1646, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1777,14 +1777,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3615, + "line": 3669, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1737, + "id": 1743, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1801,14 +1801,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4478, + "line": 4532, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1709, + "id": 1715, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1829,14 +1829,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4187, + "line": 4241, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1752, + "id": 1758, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1857,14 +1857,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4655, + "line": 4709, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 1729, + "id": 1735, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4394, + "line": 4448, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 1735, + "id": 1741, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1912,14 +1912,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4458, + "line": 4512, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 1736, + "id": 1742, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1936,14 +1936,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4467, + "line": 4521, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 1746, + "id": 1752, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -1964,14 +1964,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4588, + "line": 4642, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 1749, + "id": 1755, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1992,14 +1992,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4623, + "line": 4677, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 1738, + "id": 1744, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4488, + "line": 4542, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 1687, + "id": 1693, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2044,14 +2044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4001, + "line": 4055, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1674, + "id": 1680, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2068,14 +2068,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3913, + "line": 3967, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1757, + "id": 1763, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2096,14 +2096,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4709, + "line": 4763, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 1700, + "id": 1706, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2121,14 +2121,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4092, + "line": 4146, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 1678, + "id": 1684, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2145,14 +2145,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3953, + "line": 4007, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1713, + "id": 1719, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2173,14 +2173,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4228, + "line": 4282, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 1745, + "id": 1751, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2201,14 +2201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4577, + "line": 4631, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 1727, + "id": 1733, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4374, + "line": 4428, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 1706, + "id": 1712, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2260,14 +2260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4156, + "line": 4210, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 1699, + "id": 1705, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2284,14 +2284,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4078, + "line": 4132, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 1728, + "id": 1734, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2312,14 +2312,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4384, + "line": 4438, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 1758, + "id": 1764, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2340,14 +2340,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4721, + "line": 4775, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 1734, + "id": 1740, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2368,14 +2368,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4449, + "line": 4503, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 1636, + "id": 1642, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2392,14 +2392,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3584, + "line": 3638, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1639, + "id": 1645, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2416,14 +2416,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3602, + "line": 3656, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1644, + "id": 1650, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2440,14 +2440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3647, + "line": 3701, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1645, + "id": 1651, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2464,14 +2464,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3656, + "line": 3710, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1697, + "id": 1703, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2479,14 +2479,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4059, + "line": 4113, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 1646, + "id": 1652, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2503,14 +2503,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3665, + "line": 3719, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1661, + "id": 1667, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2521,14 +2521,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3791, + "line": 3845, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 1732, + "id": 1738, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2549,14 +2549,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4424, + "line": 4478, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 1663, + "id": 1669, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2573,14 +2573,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3806, + "line": 3860, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1658, + "id": 1664, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2597,14 +2597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3779, + "line": 3833, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1759, + "id": 1765, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2625,14 +2625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4732, + "line": 4786, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 1689, + "id": 1695, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2649,14 +2649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4014, + "line": 4068, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1708, + "id": 1714, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2677,14 +2677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4177, + "line": 4231, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1707, + "id": 1713, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2705,14 +2705,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4166, + "line": 4220, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1711, + "id": 1717, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4207, + "line": 4261, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 1712, + "id": 1718, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4217, + "line": 4271, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 1740, + "id": 1746, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2793,14 +2793,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4517, + "line": 4571, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 1675, + "id": 1681, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3925, + "line": 3979, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 1751, + "id": 1757, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4645, + "line": 4699, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 1672, + "id": 1678, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -2869,14 +2869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3894, + "line": 3948, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1742, + "id": 1748, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4541, + "line": 4595, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 1750, + "id": 1756, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2925,7 +2925,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4634, + "line": 4688, "character": 4 } ], @@ -2937,130 +2937,130 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1747, - 1655, - 1648, - 1647, - 1653, + 1753, + 1661, 1654, - 1656, - 1730, - 1703, - 1744, - 1702, - 1701, - 1743, - 1714, - 1717, - 1722, - 1716, - 1719, - 1723, + 1653, + 1659, + 1660, + 1662, + 1736, + 1709, + 1750, + 1708, + 1707, + 1749, 1720, + 1723, + 1728, + 1722, 1725, - 1721, - 1718, + 1729, + 1726, + 1731, + 1727, 1724, - 1715, - 1756, - 1652, - 1651, - 1650, - 1763, - 1649, - 1694, - 1642, - 1693, - 1764, - 1741, - 1705, - 1710, - 1761, - 1753, - 1755, - 1664, - 1667, - 1666, - 1665, - 1668, - 1698, - 1692, - 1691, - 1676, - 1641, - 1704, - 1696, - 1760, - 1733, - 1748, - 1673, - 1677, + 1730, + 1721, 1762, - 1731, - 1690, + 1658, + 1657, + 1656, + 1769, + 1655, + 1700, + 1648, + 1699, + 1770, + 1747, + 1711, + 1716, + 1767, + 1759, + 1761, 1670, + 1673, + 1672, 1671, - 1754, - 1684, + 1674, + 1704, + 1698, + 1697, + 1682, + 1647, + 1710, + 1702, + 1766, 1739, - 1640, + 1754, + 1679, + 1683, + 1768, 1737, - 1709, - 1752, - 1729, - 1735, - 1736, - 1746, - 1749, - 1738, - 1687, - 1674, - 1757, - 1700, - 1678, - 1713, + 1696, + 1676, + 1677, + 1760, + 1690, 1745, - 1727, - 1706, - 1699, - 1728, - 1758, - 1734, - 1636, - 1639, - 1644, - 1645, - 1697, 1646, - 1661, - 1732, - 1663, - 1658, - 1759, - 1689, - 1708, - 1707, - 1711, + 1743, + 1715, + 1758, + 1735, + 1741, + 1742, + 1752, + 1755, + 1744, + 1693, + 1680, + 1763, + 1706, + 1684, + 1719, + 1751, + 1733, 1712, + 1705, + 1734, + 1764, 1740, - 1675, - 1751, - 1672, - 1742, - 1750 + 1642, + 1645, + 1650, + 1651, + 1703, + 1652, + 1667, + 1738, + 1669, + 1664, + 1765, + 1695, + 1714, + 1713, + 1717, + 1718, + 1746, + 1681, + 1757, + 1678, + 1748, + 1756 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3575, + "line": 3629, "character": 12 } ] }, { - "id": 1310, + "id": 1316, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3076,7 +3076,7 @@ }, "children": [ { - "id": 1311, + "id": 1317, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3099,7 +3099,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1311 + 1317 ] } ], @@ -3112,7 +3112,7 @@ ] }, { - "id": 1297, + "id": 1303, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3128,7 +3128,7 @@ }, "children": [ { - "id": 1300, + "id": 1306, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3143,7 +3143,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1302, + "id": 1308, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3158,7 +3158,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1299, + "id": 1305, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3173,7 +3173,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1301, + "id": 1307, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3188,7 +3188,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1298, + "id": 1304, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3208,11 +3208,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1300, - 1302, - 1299, - 1301, - 1298 + 1306, + 1308, + 1305, + 1307, + 1304 ] } ], @@ -3225,7 +3225,7 @@ ] }, { - "id": 1303, + "id": 1309, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3241,7 +3241,7 @@ }, "children": [ { - "id": 1304, + "id": 1310, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3259,7 +3259,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1308, + "id": 1314, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3277,7 +3277,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1305, + "id": 1311, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3295,7 +3295,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1307, + "id": 1313, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3313,7 +3313,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1309, + "id": 1315, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3342,11 +3342,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1304, - 1308, - 1305, - 1307, - 1309 + 1310, + 1314, + 1311, + 1313, + 1315 ] } ], @@ -3359,7 +3359,7 @@ ] }, { - "id": 1457, + "id": 1463, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3375,7 +3375,7 @@ }, "children": [ { - "id": 1468, + "id": 1474, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3394,7 +3394,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1459, + "id": 1465, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3423,7 +3423,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1458, + "id": 1464, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3447,7 +3447,7 @@ "defaultValue": "\"None\"" }, { - "id": 1464, + "id": 1470, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3465,7 +3465,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1462, + "id": 1468, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3498,7 +3498,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1466, + "id": 1472, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3522,7 +3522,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1467, + "id": 1473, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3555,13 +3555,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1468, - 1459, - 1458, + 1474, + 1465, 1464, - 1462, - 1466, - 1467 + 1470, + 1468, + 1472, + 1473 ] } ], @@ -3574,7 +3574,7 @@ ] }, { - "id": 1765, + "id": 1771, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3584,7 +3584,7 @@ }, "children": [ { - "id": 1768, + "id": 1774, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3592,14 +3592,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4804, + "line": 4858, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 1766, + "id": 1772, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3607,14 +3607,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4802, + "line": 4856, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 1767, + "id": 1773, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3622,7 +3622,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4803, + "line": 4857, "character": 4 } ], @@ -3634,22 +3634,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1768, - 1766, - 1767 + 1774, + 1772, + 1773 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4801, + "line": 4855, "character": 12 } ] }, { - "id": 1631, + "id": 1637, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -3659,7 +3659,7 @@ }, "children": [ { - "id": 1633, + "id": 1639, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -3670,14 +3670,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3427, + "line": 3479, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 1634, + "id": 1640, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -3688,14 +3688,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3431, + "line": 3483, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 1632, + "id": 1638, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -3706,7 +3706,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3423, + "line": 3475, "character": 4 } ], @@ -3718,22 +3718,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1633, - 1634, - 1632 + 1639, + 1640, + 1638 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3419, + "line": 3471, "character": 12 } ] }, { - "id": 1489, + "id": 1495, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -3758,7 +3758,7 @@ }, "children": [ { - "id": 1517, + "id": 1523, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -3779,14 +3779,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1721, + "line": 1773, "character": 4 } ], "defaultValue": "\"*\"" }, { - "id": 1497, + "id": 1503, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -3811,14 +3811,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1487, + "line": 1539, "character": 4 } ], "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1540, + "id": 1546, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -3839,14 +3839,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2027, + "line": 2079, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1502, + "id": 1508, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -3871,14 +3871,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1579, + "line": 1631, "character": 4 } ], "defaultValue": "\"alert\"" }, { - "id": 1537, + "id": 1543, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -3899,14 +3899,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2000, + "line": 2052, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1524, + "id": 1530, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -3927,14 +3927,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1825, + "line": 1877, "character": 4 } ], "defaultValue": "\"answerDelete\"" }, { - "id": 1563, + "id": 1569, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -3967,14 +3967,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2236, + "line": 2288, "character": 4 } ], "defaultValue": "\"AskSageInit\"" }, { - "id": 1503, + "id": 1509, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -3995,14 +3995,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1592, + "line": 1644, "character": 4 } ], "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1491, + "id": 1497, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4027,14 +4027,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1389, + "line": 1441, "character": 4 } ], "defaultValue": "\"authInit\"" }, { - "id": 1547, + "id": 1553, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4055,14 +4055,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2103, + "line": 2155, "character": 4 } ], "defaultValue": "\"cancel\"" }, { - "id": 1535, + "id": 1541, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4083,14 +4083,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1978, + "line": 2030, "character": 4 } ], "defaultValue": "\"copyAEdit\"" }, { - "id": 1549, + "id": 1555, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4111,14 +4111,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2123, + "line": 2175, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1530, + "id": 1536, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4139,14 +4139,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1915, + "line": 1967, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1557, + "id": 1563, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4163,14 +4163,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2187, + "line": 2239, "character": 4 } ], "defaultValue": "\"createConnection\"" }, { - "id": 1568, + "id": 1574, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4188,14 +4188,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2367, + "line": 2419, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 1569, + "id": 1575, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4212,14 +4212,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2372, + "line": 2424, "character": 5 } ], "defaultValue": "\"createModel\"" }, { - "id": 1562, + "id": 1568, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4236,14 +4236,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2227, + "line": 2279, "character": 4 } ], "defaultValue": "\"createWorksheet\"" }, { - "id": 1550, + "id": 1556, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4264,14 +4264,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2134, + "line": 2186, "character": 4 } ], "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1498, + "id": 1504, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4300,14 +4300,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1504, + "line": 1556, "character": 4 } ], "defaultValue": "\"customAction\"" }, { - "id": 1493, + "id": 1499, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4336,14 +4336,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1417, + "line": 1469, "character": 4 } ], "defaultValue": "\"data\"" }, { - "id": 1496, + "id": 1502, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4368,14 +4368,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1475, + "line": 1527, "character": 4 } ], "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1545, + "id": 1551, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4396,14 +4396,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2085, + "line": 2137, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1561, + "id": 1567, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4428,14 +4428,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2222, + "line": 2274, "character": 4 } ], "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1515, + "id": 1521, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4456,14 +4456,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1688, + "line": 1740, "character": 4 } ], "defaultValue": "\"dialog-close\"" }, { - "id": 1514, + "id": 1520, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -4484,14 +4484,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1677, + "line": 1729, "character": 4 } ], "defaultValue": "\"dialog-open\"" }, { - "id": 1519, + "id": 1525, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -4513,14 +4513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1755, + "line": 1807, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1522, + "id": 1528, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -4541,14 +4541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1797, + "line": 1849, "character": 4 } ], "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1521, + "id": 1527, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -4569,14 +4569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1783, + "line": 1835, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1520, + "id": 1526, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -4597,14 +4597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1769, + "line": 1821, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1523, + "id": 1529, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -4625,14 +4625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1811, + "line": 1863, "character": 4 } ], "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1529, + "id": 1535, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -4653,14 +4653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1904, + "line": 1956, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1528, + "id": 1534, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -4681,14 +4681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1892, + "line": 1944, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1495, + "id": 1501, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -4725,14 +4725,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1463, + "line": 1515, "character": 4 } ], "defaultValue": "\"drillDown\"" }, { - "id": 1542, + "id": 1548, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -4753,14 +4753,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2049, + "line": 2101, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1532, + "id": 1538, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -4781,14 +4781,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1938, + "line": 1990, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1501, + "id": 1507, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -4818,14 +4818,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1569, + "line": 1621, "character": 4 } ], "defaultValue": "\"Error\"" }, { - "id": 1548, + "id": 1554, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -4846,14 +4846,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2113, + "line": 2165, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1533, + "id": 1539, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -4874,14 +4874,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1953, + "line": 2005, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1553, + "id": 1559, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4898,14 +4898,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2164, + "line": 2216, "character": 4 } ], "defaultValue": "\"filterChanged\"" }, { - "id": 1509, + "id": 1515, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -4926,14 +4926,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1634, + "line": 1686, "character": 4 } ], "defaultValue": "\"getDataClick\"" }, { - "id": 1490, + "id": 1496, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -4954,14 +4954,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1377, + "line": 1429, "character": 4 } ], "defaultValue": "\"init\"" }, { - "id": 1539, + "id": 1545, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -4982,14 +4982,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2016, + "line": 2068, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1516, + "id": 1522, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5014,14 +5014,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1710, + "line": 1762, "character": 4 } ], "defaultValue": "\"PinboardRendered\"" }, { - "id": 1492, + "id": 1498, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5046,14 +5046,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1403, + "line": 1455, "character": 4 } ], "defaultValue": "\"load\"" }, { - "id": 1543, + "id": 1549, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5074,14 +5074,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2060, + "line": 2112, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1512, + "id": 1518, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5102,14 +5102,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1660, + "line": 1712, "character": 4 } ], "defaultValue": "\"noCookieAccess\"" }, { - "id": 1565, + "id": 1571, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5139,14 +5139,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2300, + "line": 2352, "character": 4 } ], "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 1566, + "id": 1572, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5163,14 +5163,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2311, + "line": 2363, "character": 4 } ], "defaultValue": "\"parameterChanged\"" }, { - "id": 1525, + "id": 1531, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5191,14 +5191,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1844, + "line": 1896, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1544, + "id": 1550, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5223,14 +5223,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2075, + "line": 2127, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1494, + "id": 1500, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5251,14 +5251,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1426, + "line": 1478, "character": 4 } ], "defaultValue": "\"queryChanged\"" }, { - "id": 1564, + "id": 1570, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5275,14 +5275,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2241, + "line": 2293, "character": 4 } ], "defaultValue": "\"rename\"" }, { - "id": 1560, + "id": 1566, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5315,14 +5315,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2215, + "line": 2267, "character": 4 } ], "defaultValue": "\"resetLiveboard\"" }, { - "id": 1510, + "id": 1516, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -5343,14 +5343,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1644, + "line": 1696, "character": 4 } ], "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1554, + "id": 1560, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -5367,14 +5367,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2170, + "line": 2222, "character": 4 } ], "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1555, + "id": 1561, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -5391,14 +5391,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2177, + "line": 2229, "character": 4 } ], "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1518, + "id": 1524, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -5419,14 +5419,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1739, + "line": 1791, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1534, + "id": 1540, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -5447,14 +5447,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1964, + "line": 2016, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1559, + "id": 1565, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5487,14 +5487,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2206, + "line": 2258, "character": 4 } ], "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1541, + "id": 1547, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -5515,14 +5515,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2038, + "line": 2090, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1546, + "id": 1552, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -5543,14 +5543,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2094, + "line": 2146, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1527, + "id": 1533, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -5571,14 +5571,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1880, + "line": 1932, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1536, + "id": 1542, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -5599,14 +5599,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1989, + "line": 2041, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1526, + "id": 1532, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -5627,14 +5627,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1862, + "line": 1914, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1567, + "id": 1573, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -5656,14 +5656,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2354, + "line": 2406, "character": 5 } ], "defaultValue": "\"TableVizRendered\"" }, { - "id": 1556, + "id": 1562, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -5680,14 +5680,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2182, + "line": 2234, "character": 4 } ], "defaultValue": "\"updateConnection\"" }, { - "id": 1558, + "id": 1564, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5720,14 +5720,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2197, + "line": 2249, "character": 4 } ], "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1531, + "id": 1537, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -5748,14 +5748,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1926, + "line": 1978, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1500, + "id": 1506, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -5784,14 +5784,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1535, + "line": 1587, "character": 4 } ], "defaultValue": "\"vizPointClick\"" }, { - "id": 1499, + "id": 1505, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -5816,14 +5816,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1516, + "line": 1568, "character": 4 } ], "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1551, + "id": 1557, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -5844,7 +5844,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2145, + "line": 2197, "character": 4 } ], @@ -5856,90 +5856,90 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1517, - 1497, - 1540, - 1502, - 1537, - 1524, - 1563, + 1523, 1503, - 1491, - 1547, - 1535, - 1549, + 1546, + 1508, + 1543, 1530, - 1557, - 1568, 1569, - 1562, - 1550, - 1498, - 1493, - 1496, - 1545, - 1561, - 1515, - 1514, - 1519, - 1522, + 1509, + 1497, + 1553, + 1541, + 1555, + 1536, + 1563, + 1574, + 1575, + 1568, + 1556, + 1504, + 1499, + 1502, + 1551, + 1567, 1521, 1520, - 1523, - 1529, + 1525, 1528, - 1495, - 1542, - 1532, + 1527, + 1526, + 1529, + 1535, + 1534, 1501, 1548, - 1533, - 1553, - 1509, - 1490, - 1539, - 1516, - 1492, - 1543, - 1512, - 1565, - 1566, - 1525, - 1544, - 1494, - 1564, - 1560, - 1510, + 1538, + 1507, 1554, - 1555, - 1518, - 1534, + 1539, 1559, - 1541, - 1546, - 1527, - 1536, - 1526, - 1567, - 1556, - 1558, + 1515, + 1496, + 1545, + 1522, + 1498, + 1549, + 1518, + 1571, + 1572, 1531, + 1550, 1500, - 1499, - 1551 + 1570, + 1566, + 1516, + 1560, + 1561, + 1524, + 1540, + 1565, + 1547, + 1552, + 1533, + 1542, + 1532, + 1573, + 1562, + 1564, + 1537, + 1506, + 1505, + 1557 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1364, + "line": 1416, "character": 12 } ] }, { - "id": 2091, + "id": 2107, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -5949,7 +5949,7 @@ }, "children": [ { - "id": 2095, + "id": 2111, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -5972,7 +5972,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2093, + "id": 2109, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -5995,7 +5995,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2098, + "id": 2114, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6018,7 +6018,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2094, + "id": 2110, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6041,7 +6041,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2096, + "id": 2112, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6064,7 +6064,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2092, + "id": 2108, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6087,7 +6087,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2097, + "id": 2113, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6115,13 +6115,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2095, - 2093, - 2098, - 2094, - 2096, - 2092, - 2097 + 2111, + 2109, + 2114, + 2110, + 2112, + 2108, + 2113 ] } ], @@ -6134,14 +6134,14 @@ ] }, { - "id": 2262, + "id": 2280, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2264, + "id": 2282, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -6156,7 +6156,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2265, + "id": 2283, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -6171,7 +6171,7 @@ "defaultValue": "\"none\"" }, { - "id": 2263, + "id": 2281, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -6191,9 +6191,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2264, - 2265, - 2263 + 2282, + 2283, + 2281 ] } ], @@ -6206,7 +6206,7 @@ ] }, { - "id": 2099, + "id": 2115, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -6222,7 +6222,7 @@ }, "children": [ { - "id": 2102, + "id": 2118, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -6233,14 +6233,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1274, + "line": 1297, "character": 4 } ], "defaultValue": "\"FAVORITE\"" }, { - "id": 2105, + "id": 2121, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -6251,14 +6251,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1286, + "line": 1309, "character": 4 } ], "defaultValue": "\"LEARNING\"" }, { - "id": 2103, + "id": 2119, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -6269,14 +6269,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1278, + "line": 1301, "character": 4 } ], "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2100, + "id": 2116, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -6287,14 +6287,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1266, + "line": 1289, "character": 4 } ], "defaultValue": "\"SEARCH\"" }, { - "id": 2104, + "id": 2120, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -6305,14 +6305,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1282, + "line": 1305, "character": 4 } ], "defaultValue": "\"TRENDING\"" }, { - "id": 2101, + "id": 2117, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -6323,7 +6323,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1270, + "line": 1293, "character": 4 } ], @@ -6335,25 +6335,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2102, - 2105, - 2103, - 2100, - 2104, - 2101 + 2118, + 2121, + 2119, + 2116, + 2120, + 2117 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1262, + "line": 1285, "character": 12 } ] }, { - "id": 1570, + "id": 1576, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -6382,7 +6382,7 @@ }, "children": [ { - "id": 1581, + "id": 1587, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -6408,14 +6408,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2621, + "line": 2673, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 1621, + "id": 1627, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -6436,14 +6436,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3298, + "line": 3350, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 1598, + "id": 1604, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -6469,14 +6469,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2899, + "line": 2951, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1595, + "id": 1601, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -6506,14 +6506,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2843, + "line": 2895, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1602, + "id": 1608, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -6539,14 +6539,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2966, + "line": 3018, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1604, + "id": 1610, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -6571,14 +6571,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3002, + "line": 3054, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1606, + "id": 1612, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -6599,14 +6599,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3034, + "line": 3086, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1591, + "id": 1597, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -6628,14 +6628,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2779, + "line": 2831, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1605, + "id": 1611, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -6656,14 +6656,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3017, + "line": 3069, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1607, + "id": 1613, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -6684,14 +6684,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3051, + "line": 3103, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1572, + "id": 1578, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -6736,14 +6736,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2499, + "line": 2551, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 1597, + "id": 1603, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -6770,14 +6770,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2882, + "line": 2934, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1589, + "id": 1595, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -6798,14 +6798,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2757, + "line": 2809, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1594, + "id": 1600, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -6831,14 +6831,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2826, + "line": 2878, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1588, + "id": 1594, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -6859,14 +6859,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2747, + "line": 2799, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1620, + "id": 1626, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -6891,14 +6891,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3288, + "line": 3340, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 1614, + "id": 1620, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -6919,14 +6919,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3147, + "line": 3199, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 1575, + "id": 1581, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -6947,14 +6947,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2521, + "line": 2573, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 1625, + "id": 1631, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -6971,14 +6971,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3347, + "line": 3399, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 1600, + "id": 1606, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -7003,14 +7003,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2930, + "line": 2982, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 1616, + "id": 1622, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -7031,14 +7031,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3231, + "line": 3283, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 1585, + "id": 1591, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -7059,14 +7059,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2719, + "line": 2771, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1592, + "id": 1598, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -7099,14 +7099,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2802, + "line": 2854, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1596, + "id": 1602, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7140,14 +7140,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2864, + "line": 2916, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1612, + "id": 1618, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -7173,14 +7173,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3124, + "line": 3176, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1579, + "id": 1585, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -7206,14 +7206,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2594, + "line": 2646, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 1580, + "id": 1586, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -7239,14 +7239,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2611, + "line": 2663, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 1584, + "id": 1590, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -7303,14 +7303,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2709, + "line": 2761, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1599, + "id": 1605, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -7336,14 +7336,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2916, + "line": 2968, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1593, + "id": 1599, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -7368,14 +7368,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2816, + "line": 2868, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1582, + "id": 1588, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -7401,14 +7401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2631, + "line": 2683, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 1623, + "id": 1629, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -7429,14 +7429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3323, + "line": 3375, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 1613, + "id": 1619, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -7457,14 +7457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3136, + "line": 3188, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 1609, + "id": 1615, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -7485,14 +7485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3077, + "line": 3129, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1628, + "id": 1634, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -7518,14 +7518,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3386, + "line": 3438, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 1586, + "id": 1592, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -7546,14 +7546,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2728, + "line": 2780, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1587, + "id": 1593, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -7574,14 +7574,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2737, + "line": 2789, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1571, + "id": 1577, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7613,14 +7613,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2449, + "line": 2501, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 1577, + "id": 1583, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -7646,14 +7646,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2546, + "line": 2598, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 1618, + "id": 1624, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -7679,14 +7679,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3257, + "line": 3309, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 1617, + "id": 1623, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -7712,14 +7712,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3244, + "line": 3296, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 1576, + "id": 1582, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -7745,14 +7745,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2534, + "line": 2586, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 1608, + "id": 1614, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -7773,14 +7773,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3064, + "line": 3116, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1601, + "id": 1607, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -7806,14 +7806,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2949, + "line": 3001, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1603, + "id": 1609, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -7839,14 +7839,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2986, + "line": 3038, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1611, + "id": 1617, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -7872,14 +7872,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3108, + "line": 3160, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1610, + "id": 1616, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -7905,14 +7905,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3092, + "line": 3144, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1630, + "id": 1636, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -7938,14 +7938,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3411, + "line": 3463, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 1622, + "id": 1628, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -7966,14 +7966,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3314, + "line": 3366, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 1615, + "id": 1621, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -8012,14 +8012,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3218, + "line": 3270, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 1624, + "id": 1630, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -8036,14 +8036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3337, + "line": 3389, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 1626, + "id": 1632, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8060,14 +8060,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3355, + "line": 3407, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 1578, + "id": 1584, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -8098,14 +8098,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2582, + "line": 2634, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 1619, + "id": 1625, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -8136,14 +8136,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3271, + "line": 3323, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 1590, + "id": 1596, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -8164,14 +8164,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2766, + "line": 2818, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1583, + "id": 1589, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -8192,7 +8192,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2647, + "line": 2699, "character": 4 } ], @@ -8204,75 +8204,203 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1581, - 1621, - 1598, - 1595, - 1602, + 1587, + 1627, 1604, - 1606, - 1591, - 1605, - 1607, - 1572, + 1601, + 1608, + 1610, + 1612, 1597, - 1589, + 1611, + 1613, + 1578, + 1603, + 1595, + 1600, 1594, - 1588, + 1626, 1620, - 1614, - 1575, - 1625, - 1600, - 1616, + 1581, + 1631, + 1606, + 1622, + 1591, + 1598, + 1602, + 1618, 1585, - 1592, - 1596, - 1612, - 1579, - 1580, - 1584, + 1586, + 1590, + 1605, 1599, + 1588, + 1629, + 1619, + 1615, + 1634, + 1592, 1593, - 1582, + 1577, + 1583, + 1624, 1623, - 1613, + 1582, + 1614, + 1607, 1609, - 1628, - 1586, - 1587, - 1571, - 1577, - 1618, 1617, - 1576, - 1608, - 1601, - 1603, - 1611, - 1610, + 1616, + 1636, + 1628, + 1621, 1630, - 1622, - 1615, - 1624, - 1626, - 1578, - 1619, - 1590, - 1583 + 1632, + 1584, + 1625, + 1596, + 1589 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 2481, + "character": 12 + } + ] + }, + { + "id": 2314, + "name": "ListPageColumns", + "kind": 4, + "kindString": "Enumeration", + "flags": {}, + "comment": { + "shortText": "List page columns that can be hidden.\n**Note**: This option is applicable only in full app embedding.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" + } + ] + }, + "children": [ + { + "id": 2317, + "name": "Author", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Author" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1330, + "character": 4 + } + ], + "defaultValue": "\"AUTHOR\"" + }, + { + "id": 2318, + "name": "DateSort", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Last viewed/Last modified" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1334, + "character": 4 + } + ], + "defaultValue": "\"DATE_SORT\"" + }, + { + "id": 2315, + "name": "Favourite", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Favourite" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1322, + "character": 4 + } + ], + "defaultValue": "\"FAVOURITE\"" + }, + { + "id": 2319, + "name": "Share", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Share" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1338, + "character": 4 + } + ], + "defaultValue": "\"SHARE\"" + }, + { + "id": 2316, + "name": "Tags", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Tags" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1326, + "character": 4 + } + ], + "defaultValue": "\"TAGS\"" + } + ], + "groups": [ + { + "title": "Enumeration members", + "kind": 16, + "children": [ + 2317, + 2318, + 2315, + 2319, + 2316 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2429, + "line": 1318, "character": 12 } ] }, { - "id": 2239, + "id": 2257, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -8282,7 +8410,7 @@ }, "children": [ { - "id": 2244, + "id": 2262, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -8303,14 +8431,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4926, + "line": 4980, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2241, + "id": 2259, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -8331,14 +8459,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4887, + "line": 4941, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2243, + "id": 2261, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -8359,14 +8487,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4912, + "line": 4966, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2240, + "id": 2258, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -8387,14 +8515,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4875, + "line": 4929, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2245, + "id": 2263, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -8415,14 +8543,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4938, + "line": 4992, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2242, + "id": 2260, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -8443,7 +8571,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4899, + "line": 4953, "character": 4 } ], @@ -8455,25 +8583,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2244, - 2241, - 2243, - 2240, - 2245, - 2242 + 2262, + 2259, + 2261, + 2258, + 2263, + 2260 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4862, + "line": 4916, "character": 12 } ] }, { - "id": 1448, + "id": 1454, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -8483,7 +8611,7 @@ }, "children": [ { - "id": 1451, + "id": 1457, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -8501,7 +8629,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1454, + "id": 1460, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -8519,7 +8647,7 @@ "defaultValue": "\"data\"" }, { - "id": 1449, + "id": 1455, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -8537,7 +8665,7 @@ "defaultValue": "\"home\"" }, { - "id": 1452, + "id": 1458, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -8555,7 +8683,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1456, + "id": 1462, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -8573,7 +8701,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1450, + "id": 1456, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8591,7 +8719,7 @@ "defaultValue": "\"search\"" }, { - "id": 1455, + "id": 1461, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -8614,13 +8742,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1451, - 1454, - 1449, - 1452, + 1457, + 1460, + 1455, + 1458, + 1462, 1456, - 1450, - 1455 + 1461 ] } ], @@ -8633,14 +8761,14 @@ ] }, { - "id": 2080, + "id": 2096, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2081, + "id": 2097, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -8648,14 +8776,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4791, + "line": 4845, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2083, + "id": 2099, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8663,14 +8791,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4793, + "line": 4847, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2082, + "id": 2098, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8678,14 +8806,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4792, + "line": 4846, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2084, + "id": 2100, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8693,7 +8821,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4794, + "line": 4848, "character": 4 } ], @@ -8705,23 +8833,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2081, - 2083, - 2082, - 2084 + 2097, + 2099, + 2098, + 2100 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4790, + "line": 4844, "character": 12 } ] }, { - "id": 1473, + "id": 1479, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -8731,7 +8859,7 @@ }, "children": [ { - "id": 1481, + "id": 1487, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -8742,14 +8870,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1223, + "line": 1246, "character": 4 } ], "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1486, + "id": 1492, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -8760,14 +8888,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1243, + "line": 1266, "character": 4 } ], "defaultValue": "\"BW\"" }, { - "id": 1485, + "id": 1491, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -8778,14 +8906,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1239, + "line": 1262, "character": 4 } ], "defaultValue": "\"BW_INC\"" }, { - "id": 1483, + "id": 1489, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -8796,14 +8924,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1231, + "line": 1254, "character": 4 } ], "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1484, + "id": 1490, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -8814,14 +8942,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1235, + "line": 1258, "character": 4 } ], "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1480, + "id": 1486, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -8832,14 +8960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1219, + "line": 1242, "character": 4 } ], "defaultValue": "\"CONTAINS\"" }, { - "id": 1482, + "id": 1488, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -8850,14 +8978,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1227, + "line": 1250, "character": 4 } ], "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1474, + "id": 1480, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -8868,14 +8996,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1195, + "line": 1218, "character": 4 } ], "defaultValue": "\"EQ\"" }, { - "id": 1479, + "id": 1485, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -8886,14 +9014,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1215, + "line": 1238, "character": 4 } ], "defaultValue": "\"GE\"" }, { - "id": 1478, + "id": 1484, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -8904,14 +9032,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1211, + "line": 1234, "character": 4 } ], "defaultValue": "\"GT\"" }, { - "id": 1487, + "id": 1493, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -8922,14 +9050,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1247, + "line": 1270, "character": 4 } ], "defaultValue": "\"IN\"" }, { - "id": 1477, + "id": 1483, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -8940,14 +9068,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1207, + "line": 1230, "character": 4 } ], "defaultValue": "\"LE\"" }, { - "id": 1476, + "id": 1482, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -8958,14 +9086,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1203, + "line": 1226, "character": 4 } ], "defaultValue": "\"LT\"" }, { - "id": 1475, + "id": 1481, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -8976,14 +9104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1199, + "line": 1222, "character": 4 } ], "defaultValue": "\"NE\"" }, { - "id": 1488, + "id": 1494, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -8994,7 +9122,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1251, + "line": 1274, "character": 4 } ], @@ -9006,41 +9134,41 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1481, + 1487, + 1492, + 1491, + 1489, + 1490, 1486, + 1488, + 1480, 1485, - 1483, 1484, - 1480, + 1493, + 1483, 1482, - 1474, - 1479, - 1478, - 1487, - 1477, - 1476, - 1475, - 1488 + 1481, + 1494 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1191, + "line": 1214, "character": 12 } ] }, { - "id": 2289, + "id": 2307, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2294, + "id": 2312, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -9055,7 +9183,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2293, + "id": 2311, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -9070,7 +9198,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2292, + "id": 2310, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -9085,7 +9213,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2295, + "id": 2313, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -9100,7 +9228,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2290, + "id": 2308, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -9115,7 +9243,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2291, + "id": 2309, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -9135,12 +9263,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2294, - 2293, - 2292, - 2295, - 2290, - 2291 + 2312, + 2311, + 2310, + 2313, + 2308, + 2309 ] } ], @@ -9153,7 +9281,7 @@ ] }, { - "id": 1365, + "id": 1371, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -9181,7 +9309,7 @@ }, "children": [ { - "id": 1366, + "id": 1372, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -9198,7 +9326,7 @@ ], "signatures": [ { - "id": 1367, + "id": 1373, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -9208,7 +9336,7 @@ }, "parameters": [ { - "id": 1368, + "id": 1374, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -9216,12 +9344,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1438, + "id": 1444, "name": "SessionInterface" } }, { - "id": 1369, + "id": 1375, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -9233,7 +9361,7 @@ } }, { - "id": 1370, + "id": 1376, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -9245,7 +9373,7 @@ } }, { - "id": 1371, + "id": 1377, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -9259,7 +9387,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2266, + "id": 2284, "name": "VizPoint" } } @@ -9267,14 +9395,14 @@ ], "type": { "type": "reference", - "id": 1365, + "id": 1371, "name": "AnswerService" } } ] }, { - "id": 1380, + "id": 1386, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -9290,7 +9418,7 @@ ], "signatures": [ { - "id": 1381, + "id": 1387, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -9301,7 +9429,7 @@ }, "parameters": [ { - "id": 1382, + "id": 1388, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -9330,7 +9458,7 @@ ] }, { - "id": 1383, + "id": 1389, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -9346,7 +9474,7 @@ ], "signatures": [ { - "id": 1384, + "id": 1390, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -9362,7 +9490,7 @@ }, "parameters": [ { - "id": 1385, + "id": 1391, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -9391,7 +9519,7 @@ ] }, { - "id": 1432, + "id": 1438, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -9407,14 +9535,14 @@ ], "signatures": [ { - "id": 1433, + "id": 1439, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1434, + "id": 1440, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -9439,7 +9567,7 @@ ] }, { - "id": 1386, + "id": 1392, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -9455,7 +9583,7 @@ ], "signatures": [ { - "id": 1387, + "id": 1393, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -9466,7 +9594,7 @@ }, "parameters": [ { - "id": 1388, + "id": 1394, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -9478,7 +9606,7 @@ } }, { - "id": 1389, + "id": 1395, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -9486,12 +9614,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1473, + "id": 1479, "name": "RuntimeFilterOp" } }, { - "id": 1390, + "id": 1396, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -9537,7 +9665,7 @@ ] }, { - "id": 1422, + "id": 1428, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -9553,7 +9681,7 @@ ], "signatures": [ { - "id": 1423, + "id": 1429, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -9564,7 +9692,7 @@ }, "parameters": [ { - "id": 1424, + "id": 1430, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -9578,7 +9706,7 @@ } }, { - "id": 1425, + "id": 1431, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -9606,7 +9734,7 @@ ] }, { - "id": 1400, + "id": 1406, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -9622,7 +9750,7 @@ ], "signatures": [ { - "id": 1401, + "id": 1407, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -9633,7 +9761,7 @@ }, "parameters": [ { - "id": 1402, + "id": 1408, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -9646,7 +9774,7 @@ "defaultValue": "'en-us'" }, { - "id": 1403, + "id": 1409, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -9675,7 +9803,7 @@ ] }, { - "id": 1393, + "id": 1399, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -9691,7 +9819,7 @@ ], "signatures": [ { - "id": 1394, + "id": 1400, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -9702,7 +9830,7 @@ }, "parameters": [ { - "id": 1395, + "id": 1401, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -9715,7 +9843,7 @@ "defaultValue": "0" }, { - "id": 1396, + "id": 1402, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -9734,14 +9862,14 @@ { "type": "reflection", "declaration": { - "id": 1397, + "id": 1403, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1398, + "id": 1404, "name": "columns", "kind": 1024, "kindString": "Property", @@ -9752,7 +9880,7 @@ } }, { - "id": 1399, + "id": 1405, "name": "data", "kind": 1024, "kindString": "Property", @@ -9768,8 +9896,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1398, - 1399 + 1404, + 1405 ] } ] @@ -9782,7 +9910,7 @@ ] }, { - "id": 1404, + "id": 1410, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -9798,7 +9926,7 @@ ], "signatures": [ { - "id": 1405, + "id": 1411, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -9809,7 +9937,7 @@ }, "parameters": [ { - "id": 1406, + "id": 1412, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -9822,7 +9950,7 @@ "defaultValue": "'en-us'" }, { - "id": 1407, + "id": 1413, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -9837,7 +9965,7 @@ "defaultValue": "false" }, { - "id": 1408, + "id": 1414, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -9866,7 +9994,7 @@ ] }, { - "id": 1428, + "id": 1434, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -9882,7 +10010,7 @@ ], "signatures": [ { - "id": 1429, + "id": 1435, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -9901,7 +10029,7 @@ ] }, { - "id": 1409, + "id": 1415, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -9917,7 +10045,7 @@ ], "signatures": [ { - "id": 1410, + "id": 1416, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -9928,7 +10056,7 @@ }, "parameters": [ { - "id": 1411, + "id": 1417, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -9941,7 +10069,7 @@ "defaultValue": "'en-us'" }, { - "id": 1412, + "id": 1418, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -9962,7 +10090,7 @@ ] }, { - "id": 1413, + "id": 1419, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -9978,7 +10106,7 @@ ], "signatures": [ { - "id": 1414, + "id": 1420, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -9988,7 +10116,7 @@ }, "parameters": [ { - "id": 1415, + "id": 1421, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -10001,7 +10129,7 @@ "defaultValue": "'en-us'" }, { - "id": 1416, + "id": 1422, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -10014,7 +10142,7 @@ "defaultValue": "false" }, { - "id": 1417, + "id": 1423, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -10037,7 +10165,7 @@ ] }, { - "id": 1391, + "id": 1397, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -10053,7 +10181,7 @@ ], "signatures": [ { - "id": 1392, + "id": 1398, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -10072,7 +10200,7 @@ ] }, { - "id": 1426, + "id": 1432, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -10088,7 +10216,7 @@ ], "signatures": [ { - "id": 1427, + "id": 1433, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -10099,14 +10227,14 @@ }, "type": { "type": "reference", - "id": 1438, + "id": 1444, "name": "SessionInterface" } } ] }, { - "id": 1375, + "id": 1381, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -10122,7 +10250,7 @@ ], "signatures": [ { - "id": 1376, + "id": 1382, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -10144,7 +10272,7 @@ ] }, { - "id": 1430, + "id": 1436, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -10160,7 +10288,7 @@ ], "signatures": [ { - "id": 1431, + "id": 1437, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -10179,7 +10307,7 @@ ] }, { - "id": 1418, + "id": 1424, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -10195,7 +10323,7 @@ ], "signatures": [ { - "id": 1419, + "id": 1425, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -10215,7 +10343,7 @@ }, "parameters": [ { - "id": 1420, + "id": 1426, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -10230,7 +10358,7 @@ } }, { - "id": 1421, + "id": 1427, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -10242,7 +10370,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1445, + "id": 1451, "name": "UnderlyingDataPoint" } } @@ -10253,7 +10381,7 @@ "typeArguments": [ { "type": "reference", - "id": 1365, + "id": 1371, "name": "AnswerService" } ], @@ -10263,7 +10391,7 @@ ] }, { - "id": 1377, + "id": 1383, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -10279,7 +10407,7 @@ ], "signatures": [ { - "id": 1378, + "id": 1384, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -10290,7 +10418,7 @@ }, "parameters": [ { - "id": 1379, + "id": 1385, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -10319,7 +10447,7 @@ ] }, { - "id": 1435, + "id": 1441, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -10335,14 +10463,14 @@ ], "signatures": [ { - "id": 1436, + "id": 1442, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1437, + "id": 1443, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -10366,31 +10494,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1366 + 1372 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1380, - 1383, - 1432, 1386, - 1422, - 1400, - 1393, - 1404, + 1389, + 1438, + 1392, 1428, - 1409, - 1413, - 1391, - 1426, - 1375, - 1430, - 1418, - 1377, - 1435 + 1406, + 1399, + 1410, + 1434, + 1415, + 1419, + 1397, + 1432, + 1381, + 1436, + 1424, + 1383, + 1441 ] } ], @@ -10447,7 +10575,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2106, + "id": 2122, "name": "DOMSelector" } }, @@ -10459,7 +10587,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2013, + "id": 2027, "name": "AppViewConfig" } } @@ -10491,7 +10619,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1196, + "line": 1207, "character": 11 } ], @@ -10537,7 +10665,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1373, + "line": 1384, "character": 17 } ], @@ -10580,7 +10708,7 @@ "typeArguments": [ { "type": "reference", - "id": 1365, + "id": 1371, "name": "AnswerService" } ], @@ -10640,7 +10768,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1138, + "line": 1149, "character": 11 } ], @@ -10677,7 +10805,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1360, + "line": 1371, "character": 11 } ], @@ -10770,7 +10898,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1166, + "line": 1177, "character": 11 } ], @@ -10868,7 +10996,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1205, + "line": 1216, "character": 11 } ], @@ -10905,7 +11033,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1332, + "line": 1343, "character": 11 } ], @@ -11023,7 +11151,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1050, + "line": 1061, "character": 11 } ], @@ -11055,7 +11183,7 @@ }, "type": { "type": "reference", - "id": 1489, + "id": 1495, "name": "EmbedEvent" } }, @@ -11070,7 +11198,7 @@ }, "type": { "type": "reference", - "id": 2110, + "id": 2126, "name": "MessageCallback" } } @@ -11101,7 +11229,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1439, + "line": 1450, "character": 11 } ], @@ -11137,7 +11265,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1489, + "id": 1495, "name": "EmbedEvent" } }, @@ -11149,7 +11277,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2110, + "id": 2126, "name": "MessageCallback" } }, @@ -11161,7 +11289,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2107, + "id": 2123, "name": "MessageOptions" }, "defaultValue": "..." @@ -11193,7 +11321,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1150, + "line": 1161, "character": 17 } ], @@ -11256,7 +11384,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1216, + "line": 1227, "character": 17 } ], @@ -11356,7 +11484,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1264, + "line": 1275, "character": 17 } ], @@ -11402,7 +11530,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1313, + "line": 1324, "character": 11 } ], @@ -11448,7 +11576,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1089, + "line": 1100, "character": 17 } ], @@ -11472,7 +11600,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1570, + "id": 1576, "name": "HostEvent" } }, @@ -11567,7 +11695,7 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1115, + "line": 1126, "character": 17 } ], @@ -11591,7 +11719,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2289, + "id": 2307, "name": "UIPassthroughEvent" } } @@ -11760,7 +11888,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1065, + "id": 1067, "name": "BodylessConversationViewConfig" } } @@ -11844,6 +11972,18 @@ "type": "intrinsic", "name": "any" } + }, + { + "id": 1062, + "name": "viz", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + }, + "defaultValue": "..." } ], "groups": [ @@ -11852,7 +11992,8 @@ "kind": 1024, "children": [ 1061, - 1060 + 1060, + 1062 ] } ] @@ -11861,14 +12002,14 @@ { "type": "reflection", "declaration": { - "id": 1062, + "id": 1063, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1063, + "id": 1064, "name": "container", "kind": 1024, "kindString": "Property", @@ -11879,7 +12020,7 @@ } }, { - "id": 1064, + "id": 1066, "name": "error", "kind": 1024, "kindString": "Property", @@ -11888,6 +12029,18 @@ "type": "intrinsic", "name": "undefined" } + }, + { + "id": 1065, + "name": "viz", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "name": "ConversationMessage" + }, + "defaultValue": "..." } ], "groups": [ @@ -11895,8 +12048,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1063, - 1064 + 1064, + 1066, + 1065 ] } ] @@ -11936,92 +12090,89 @@ ] }, { - "id": 1105, - "name": "ConversationEmbed", + "id": 528, + "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot AI Conversation.", + "shortText": "Embed a ThoughtSpot Liveboard or visualization. When rendered it already\nwaits for the authentication to complete, so you need not wait for\n`AuthStatus.SUCCESS`.", "tags": [ - { - "tag": "group", - "text": "Embed components" - }, { "tag": "example", - "text": "\n```js\nconst conversation = new ConversationEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" + "text": "\n```js\nimport { .. } from '@thoughtspot/visual-embed-sdk';\ninit({ ... });\nconst embed = new LiveboardEmbed(\"#container\", {\n liveboardId: ,\n// .. other params here.\n})\n```" }, { - "tag": "version", - "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" + "tag": "group", + "text": "Embed components\n" } ] }, "children": [ { - "id": 1106, + "id": 529, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 113, + "fileName": "embed/liveboard.ts", + "line": 433, "character": 4 } ], "signatures": [ { - "id": 1107, - "name": "new ConversationEmbed", + "id": 530, + "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1108, - "name": "container", + "id": 531, + "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "HTMLElement" + "id": 2122, + "name": "DOMSelector" } }, { - "id": 1109, + "id": 532, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1252, - "name": "ConversationViewConfig" + "id": 1915, + "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 1105, - "name": "ConversationEmbed" + "id": 528, + "name": "LiveboardEmbed" }, "overwrites": { "type": "reference", - "name": "TsEmbed.constructor" + "name": "V1Embed.constructor" } } ], "overwrites": { "type": "reference", - "name": "TsEmbed.constructor" + "name": "V1Embed.constructor" } }, { - "id": 1230, + "id": 695, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -12031,13 +12182,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1196, + "line": 1207, "character": 11 } ], "signatures": [ { - "id": 1231, + "id": 696, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -12057,17 +12208,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.destroy" + "name": "V1Embed.destroy" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.destroy" + "name": "V1Embed.destroy" } }, { - "id": 1249, + "id": 712, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -12077,13 +12228,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1373, + "line": 1384, "character": 17 } ], "signatures": [ { - "id": 1250, + "id": 713, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -12099,7 +12250,7 @@ }, "parameters": [ { - "id": 1251, + "id": 714, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12120,7 +12271,7 @@ "typeArguments": [ { "type": "reference", - "id": 1365, + "id": 1371, "name": "AnswerService" } ], @@ -12128,17 +12279,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getAnswerService" + "name": "V1Embed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getAnswerService" + "name": "V1Embed.getAnswerService" } }, { - "id": 1111, + "id": 684, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12147,14 +12298,14 @@ }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 118, + "fileName": "embed/ts-embed.ts", + "line": 1149, "character": 11 } ], "signatures": [ { - "id": 1112, + "id": 685, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12163,19 +12314,52 @@ "type": "intrinsic", "name": "string" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getIframeSrc" + "name": "V1Embed.getIframeSrc" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getIframeSrc" + "name": "V1Embed.getIframeSrc" } }, { - "id": 1244, + "id": 578, + "name": "getLiveboardUrl", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 720, + "character": 11 + } + ], + "signatures": [ + { + "id": 579, + "name": "getLiveboardUrl", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Returns the full url of the Liveboard/visualization which can be used to open\nthis Liveboard inside the full Thoughtspot application in a new tab.", + "returns": "url string\n" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 707, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12185,13 +12369,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1360, + "line": 1371, "character": 11 } ], "signatures": [ { - "id": 1245, + "id": 708, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12213,14 +12397,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1246, + "id": 709, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1248, + "id": 711, "name": "child", "kind": 1024, "kindString": "Property", @@ -12232,7 +12416,7 @@ "defaultValue": "..." }, { - "id": 1247, + "id": 710, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12249,8 +12433,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1248, - 1247 + 711, + 710 ] } ] @@ -12258,17 +12442,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getPreRenderIds" + "name": "V1Embed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getPreRenderIds" + "name": "V1Embed.getPreRenderIds" } }, { - "id": 1224, + "id": 689, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12278,13 +12462,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1166, + "line": 1177, "character": 11 } ], "signatures": [ { - "id": 1225, + "id": 690, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12300,7 +12484,7 @@ }, "parameters": [ { - "id": 1226, + "id": 691, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12308,20 +12492,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1227, + "id": 692, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1228, + "id": 693, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1229, + "id": 694, "name": "key", "kind": 32768, "flags": {}, @@ -12356,17 +12540,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" + "name": "V1Embed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" + "name": "V1Embed.getThoughtSpotPostUrlParams" } }, { - "id": 1232, + "id": 697, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12376,13 +12560,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1205, + "line": 1216, "character": 11 } ], "signatures": [ { - "id": 1233, + "id": 698, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12393,17 +12577,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getUnderlyingFrameElement" + "name": "V1Embed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getUnderlyingFrameElement" + "name": "V1Embed.getUnderlyingFrameElement" } }, { - "id": 1242, + "id": 705, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12413,13 +12597,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1332, + "line": 1343, "character": 11 } ], "signatures": [ { - "id": 1243, + "id": 706, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12433,17 +12617,85 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.hidePreRender" + "name": "V1Embed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.hidePreRender" + "name": "V1Embed.hidePreRender" } }, { - "id": 1204, + "id": 573, + "name": "navigateToLiveboard", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 701, + "character": 11 + } + ], + "signatures": [ + { + "id": 574, + "name": "navigateToLiveboard", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 575, + "name": "liveboardId", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 576, + "name": "vizId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 577, + "name": "activeTabId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + }, + { + "id": 675, "name": "off", "kind": 2048, "kindString": "Method", @@ -12453,13 +12705,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1050, + "line": 1061, "character": 11 } ], "signatures": [ { - "id": 1205, + "id": 676, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12475,7 +12727,7 @@ }, "parameters": [ { - "id": 1206, + "id": 677, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12485,12 +12737,12 @@ }, "type": { "type": "reference", - "id": 1489, + "id": 1495, "name": "EmbedEvent" } }, { - "id": 1207, + "id": 678, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12500,7 +12752,7 @@ }, "type": { "type": "reference", - "id": 2110, + "id": 2126, "name": "MessageCallback" } } @@ -12511,17 +12763,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.off" + "name": "V1Embed.off" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.off" + "name": "V1Embed.off" } }, { - "id": 1198, + "id": 585, "name": "on", "kind": 2048, "kindString": "Method", @@ -12531,20 +12783,23 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1021, + "line": 1450, "character": 11 } ], "signatures": [ { - "id": 1199, + "id": 586, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", "tags": [ + { + "tag": "inheritdoc", + "text": "" + }, { "tag": "example", "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" @@ -12557,63 +12812,41 @@ }, "parameters": [ { - "id": 1200, + "id": 587, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "The message type" - }, "type": { "type": "reference", - "id": 1489, + "id": 1495, "name": "EmbedEvent" } }, { - "id": 1201, + "id": 588, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "A callback as a function" - }, "type": { "type": "reference", - "id": 2110, + "id": 2126, "name": "MessageCallback" } }, { - "id": 1202, + "id": 589, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "The message options" - }, "type": { "type": "reference", - "id": 2107, + "id": 2123, "name": "MessageOptions" }, "defaultValue": "..." - }, - { - "id": 1203, - "name": "isRegisteredBySDK", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "defaultValue": "false" } ], "type": { @@ -12622,17 +12855,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.on" + "name": "V1Embed.on" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.on" + "name": "V1Embed.on" } }, { - "id": 1221, + "id": 686, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -12642,13 +12875,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1150, + "line": 1161, "character": 17 } ], "signatures": [ { - "id": 1222, + "id": 687, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -12658,7 +12891,7 @@ }, "parameters": [ { - "id": 1223, + "id": 688, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -12685,17 +12918,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.preRender" + "name": "V1Embed.preRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.preRender" + "name": "V1Embed.preRender" } }, { - "id": 1234, + "id": 699, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -12705,13 +12938,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1216, + "line": 1227, "character": 17 } ], "signatures": [ { - "id": 1235, + "id": 700, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -12738,17 +12971,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.prerenderGeneric" + "name": "V1Embed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.prerenderGeneric" + "name": "V1Embed.prerenderGeneric" } }, { - "id": 1113, + "id": 571, "name": "render", "kind": 2048, "kindString": "Method", @@ -12757,42 +12990,45 @@ }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 166, + "fileName": "embed/liveboard.ts", + "line": 691, "character": 17 } ], "signatures": [ { - "id": 1114, + "id": 572, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Render an embedded ThoughtSpot Liveboard or visualization" + }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 1105, - "name": "ConversationEmbed" + "id": 528, + "name": "LiveboardEmbed" } ], "name": "Promise" }, "overwrites": { "type": "reference", - "name": "TsEmbed.render" + "name": "V1Embed.render" } } ], "overwrites": { "type": "reference", - "name": "TsEmbed.render" + "name": "V1Embed.render" } }, { - "id": 1238, + "id": 701, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -12802,13 +13038,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1264, + "line": 1275, "character": 17 } ], "signatures": [ { - "id": 1239, + "id": 702, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -12828,17 +13064,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.showPreRender" + "name": "V1Embed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.showPreRender" + "name": "V1Embed.showPreRender" } }, { - "id": 1240, + "id": 703, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -12848,13 +13084,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1313, + "line": 1324, "character": 11 } ], "signatures": [ { - "id": 1241, + "id": 704, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -12874,17 +13110,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.syncPreRenderStyle" + "name": "V1Embed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.syncPreRenderStyle" + "name": "V1Embed.syncPreRenderStyle" } }, { - "id": 1208, + "id": 565, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -12893,14 +13129,14 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1089, - "character": 17 + "fileName": "embed/liveboard.ts", + "line": 671, + "character": 11 } ], "signatures": [ { - "id": 1209, + "id": 566, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -12911,19 +13147,19 @@ }, "typeParameter": [ { - "id": 1210, + "id": 567, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1570, + "id": 1576, "name": "HostEvent" } }, { - "id": 1211, + "id": 568, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -12932,7 +13168,7 @@ ], "parameters": [ { - "id": 1212, + "id": 569, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12946,7 +13182,7 @@ } }, { - "id": 1213, + "id": 570, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -12991,19 +13227,19 @@ ], "name": "Promise" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "TsEmbed.trigger" + "name": "V1Embed.trigger" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "TsEmbed.trigger" + "name": "V1Embed.trigger" } }, { - "id": 1214, + "id": 679, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -13013,13 +13249,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1115, + "line": 1126, "character": 17 } ], "signatures": [ { - "id": 1215, + "id": 680, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -13030,21 +13266,21 @@ }, "typeParameter": [ { - "id": 1216, + "id": 681, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2289, + "id": 2307, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1217, + "id": 682, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -13058,7 +13294,7 @@ } }, { - "id": 1218, + "id": 683, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13096,13 +13332,13 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.triggerUIPassThrough" + "name": "V1Embed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.triggerUIPassThrough" + "name": "V1Embed.triggerUIPassThrough" } } ], @@ -13111,58 +13347,60 @@ "title": "Constructors", "kind": 512, "children": [ - 1106 + 529 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1230, - 1249, - 1111, - 1244, - 1224, - 1232, - 1242, - 1204, - 1198, - 1221, - 1234, - 1113, - 1238, - 1240, - 1208, - 1214 + 695, + 712, + 684, + 578, + 707, + 689, + 697, + 705, + 573, + 675, + 585, + 686, + 699, + 571, + 701, + 703, + 565, + 679 ] } ], "sources": [ { - "fileName": "embed/conversation.ts", - "line": 112, + "fileName": "embed/liveboard.ts", + "line": 427, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "name": "TsEmbed" + "name": "V1Embed" } ] }, { - "id": 528, - "name": "LiveboardEmbed", + "id": 715, + "name": "SageEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed a ThoughtSpot Liveboard or visualization. When rendered it already\nwaits for the authentication to complete, so you need not wait for\n`AuthStatus.SUCCESS`.", + "shortText": "Embed ThoughtSpot LLM and GPT-based Natural Language Search component.", "tags": [ { - "tag": "example", - "text": "\n```js\nimport { .. } from '@thoughtspot/visual-embed-sdk';\ninit({ ... });\nconst embed = new LiveboardEmbed(\"#container\", {\n liveboardId: ,\n// .. other params here.\n})\n```" + "tag": "version:", + "text": "SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl, 9.5.1-sw" }, { "tag": "group", @@ -13172,55 +13410,55 @@ }, "children": [ { - "id": 529, + "id": 716, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 433, + "fileName": "embed/sage.ts", + "line": 139, "character": 4 } ], "signatures": [ { - "id": 530, - "name": "new LiveboardEmbed", + "id": 717, + "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 531, + "id": 718, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2106, + "id": 2122, "name": "DOMSelector" } }, { - "id": 532, + "id": 719, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1905, - "name": "LiveboardViewConfig" + "id": 1980, + "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 528, - "name": "LiveboardEmbed" + "id": 715, + "name": "SageEmbed" }, "overwrites": { "type": "reference", @@ -13234,7 +13472,7 @@ } }, { - "id": 695, + "id": 850, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13244,13 +13482,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1196, + "line": 1207, "character": 11 } ], "signatures": [ { - "id": 696, + "id": 851, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13280,7 +13518,7 @@ } }, { - "id": 712, + "id": 869, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13290,13 +13528,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1373, + "line": 1384, "character": 17 } ], "signatures": [ { - "id": 713, + "id": 870, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13312,7 +13550,7 @@ }, "parameters": [ { - "id": 714, + "id": 871, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13333,7 +13571,7 @@ "typeArguments": [ { "type": "reference", - "id": 1365, + "id": 1371, "name": "AnswerService" } ], @@ -13351,8 +13589,8 @@ } }, { - "id": 684, - "name": "getIframeSrc", + "id": 723, + "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", "flags": { @@ -13360,36 +13598,32 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1138, + "fileName": "embed/sage.ts", + "line": 183, "character": 11 } ], "signatures": [ { - "id": 685, - "name": "getIframeSrc", + "id": 724, + "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Construct the URL of the embedded ThoughtSpot sage to be\nloaded in the iframe", + "returns": "iframe url\n" + }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.getIframeSrc" } } - ], - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.getIframeSrc" - } + ] }, { - "id": 578, - "name": "getLiveboardUrl", + "id": 837, + "name": "getIframeSrc", "kind": 2048, "kindString": "Method", "flags": { @@ -13397,31 +13631,35 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 720, + "fileName": "embed/ts-embed.ts", + "line": 1149, "character": 11 } ], "signatures": [ { - "id": 579, - "name": "getLiveboardUrl", + "id": 838, + "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Returns the full url of the Liveboard/visualization which can be used to open\nthis Liveboard inside the full Thoughtspot application in a new tab.", - "returns": "url string\n" - }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "V1Embed.getIframeSrc" } } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "V1Embed.getIframeSrc" + } }, { - "id": 707, + "id": 864, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13431,13 +13669,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1360, + "line": 1371, "character": 11 } ], "signatures": [ { - "id": 708, + "id": 865, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -13459,14 +13697,14 @@ "type": { "type": "reflection", "declaration": { - "id": 709, + "id": 866, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 711, + "id": 868, "name": "child", "kind": 1024, "kindString": "Property", @@ -13478,7 +13716,7 @@ "defaultValue": "..." }, { - "id": 710, + "id": 867, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -13495,8 +13733,8 @@ "title": "Properties", "kind": 1024, "children": [ - 711, - 710 + 868, + 867 ] } ] @@ -13514,7 +13752,7 @@ } }, { - "id": 689, + "id": 844, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -13524,13 +13762,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1166, + "line": 1177, "character": 11 } ], "signatures": [ { - "id": 690, + "id": 845, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -13546,7 +13784,7 @@ }, "parameters": [ { - "id": 691, + "id": 846, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -13554,20 +13792,20 @@ "type": { "type": "reflection", "declaration": { - "id": 692, + "id": 847, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 693, + "id": 848, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 694, + "id": 849, "name": "key", "kind": 32768, "flags": {}, @@ -13612,7 +13850,7 @@ } }, { - "id": 697, + "id": 852, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -13622,13 +13860,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1205, + "line": 1216, "character": 11 } ], "signatures": [ { - "id": 698, + "id": 853, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -13649,7 +13887,7 @@ } }, { - "id": 705, + "id": 862, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -13659,13 +13897,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1332, + "line": 1343, "character": 11 } ], "signatures": [ { - "id": 706, + "id": 863, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -13689,75 +13927,7 @@ } }, { - "id": 573, - "name": "navigateToLiveboard", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 701, - "character": 11 - } - ], - "signatures": [ - { - "id": 574, - "name": "navigateToLiveboard", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 575, - "name": "liveboardId", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 576, - "name": "vizId", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 577, - "name": "activeTabId", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - }, - { - "id": 675, + "id": 822, "name": "off", "kind": 2048, "kindString": "Method", @@ -13767,13 +13937,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1050, + "line": 1061, "character": 11 } ], "signatures": [ { - "id": 676, + "id": 823, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -13789,7 +13959,7 @@ }, "parameters": [ { - "id": 677, + "id": 824, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -13799,12 +13969,12 @@ }, "type": { "type": "reference", - "id": 1489, + "id": 1495, "name": "EmbedEvent" } }, { - "id": 678, + "id": 825, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -13814,7 +13984,7 @@ }, "type": { "type": "reference", - "id": 2110, + "id": 2126, "name": "MessageCallback" } } @@ -13835,7 +14005,7 @@ } }, { - "id": 585, + "id": 732, "name": "on", "kind": 2048, "kindString": "Method", @@ -13845,13 +14015,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1439, + "line": 1450, "character": 11 } ], "signatures": [ { - "id": 586, + "id": 733, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -13874,38 +14044,38 @@ }, "parameters": [ { - "id": 587, + "id": 734, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1489, + "id": 1495, "name": "EmbedEvent" } }, { - "id": 588, + "id": 735, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2110, + "id": 2126, "name": "MessageCallback" } }, { - "id": 589, + "id": 736, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2107, + "id": 2123, "name": "MessageOptions" }, "defaultValue": "..." @@ -13927,7 +14097,7 @@ } }, { - "id": 686, + "id": 841, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -13937,13 +14107,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1150, + "line": 1161, "character": 17 } ], "signatures": [ { - "id": 687, + "id": 842, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -13953,7 +14123,7 @@ }, "parameters": [ { - "id": 688, + "id": 843, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -13990,7 +14160,7 @@ } }, { - "id": 699, + "id": 854, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14000,13 +14170,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1216, + "line": 1227, "character": 17 } ], "signatures": [ { - "id": 700, + "id": 855, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14043,7 +14213,7 @@ } }, { - "id": 571, + "id": 725, "name": "render", "kind": 2048, "kindString": "Method", @@ -14052,28 +14222,29 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 691, + "fileName": "embed/sage.ts", + "line": 208, "character": 17 } ], "signatures": [ { - "id": 572, + "id": 726, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Render an embedded ThoughtSpot Liveboard or visualization" + "shortText": "Render the embedded ThoughtSpot Sage", + "returns": "Eureka/Sage embed\n" }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 528, - "name": "LiveboardEmbed" + "id": 715, + "name": "SageEmbed" } ], "name": "Promise" @@ -14090,7 +14261,7 @@ } }, { - "id": 701, + "id": 858, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14100,13 +14271,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1264, + "line": 1275, "character": 17 } ], "signatures": [ { - "id": 702, + "id": 859, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14136,7 +14307,7 @@ } }, { - "id": 703, + "id": 860, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14146,13 +14317,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1313, + "line": 1324, "character": 11 } ], "signatures": [ { - "id": 704, + "id": 861, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14182,7 +14353,7 @@ } }, { - "id": 565, + "id": 826, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14191,14 +14362,14 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 671, - "character": 11 + "fileName": "embed/ts-embed.ts", + "line": 1100, + "character": 17 } ], "signatures": [ { - "id": 566, + "id": 827, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14209,19 +14380,19 @@ }, "typeParameter": [ { - "id": 567, + "id": 828, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1570, + "id": 1576, "name": "HostEvent" } }, { - "id": 568, + "id": 829, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -14230,7 +14401,7 @@ ], "parameters": [ { - "id": 569, + "id": 830, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14244,7 +14415,7 @@ } }, { - "id": 570, + "id": 831, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14289,19 +14460,19 @@ ], "name": "Promise" }, - "overwrites": { + "inheritedFrom": { "type": "reference", "name": "V1Embed.trigger" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", "name": "V1Embed.trigger" } }, { - "id": 679, + "id": 832, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14311,13 +14482,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1115, + "line": 1126, "character": 17 } ], "signatures": [ { - "id": 680, + "id": 833, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14328,21 +14499,21 @@ }, "typeParameter": [ { - "id": 681, + "id": 834, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2289, + "id": 2307, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 682, + "id": 835, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14356,7 +14527,7 @@ } }, { - "id": 683, + "id": 836, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -14409,38 +14580,37 @@ "title": "Constructors", "kind": 512, "children": [ - 529 + 716 ] }, { "title": "Methods", "kind": 2048, "children": [ - 695, - 712, - 684, - 578, - 707, - 689, - 697, - 705, - 573, - 675, - 585, - 686, - 699, - 571, - 701, - 703, - 565, - 679 + 850, + 869, + 723, + 837, + 864, + 844, + 852, + 862, + 822, + 732, + 841, + 854, + 725, + 858, + 860, + 826, + 832 ] } ], "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 427, + "fileName": "embed/sage.ts", + "line": 131, "character": 13 } ], @@ -14452,17 +14622,17 @@ ] }, { - "id": 715, - "name": "SageEmbed", + "id": 212, + "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot LLM and GPT-based Natural Language Search component.", + "shortText": "Embed ThoughtSpot search bar", "tags": [ { "tag": "version:", - "text": "SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl, 9.5.1-sw" + "text": "SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1-sw" }, { "tag": "group", @@ -14472,69 +14642,68 @@ }, "children": [ { - "id": 716, + "id": 213, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/sage.ts", - "line": 139, + "fileName": "embed/search-bar.tsx", + "line": 117, "character": 4 } ], "signatures": [ { - "id": 717, - "name": "new SageEmbed", + "id": 214, + "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 718, + "id": 215, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "reference", - "id": 2106, - "name": "DOMSelector" + "type": "intrinsic", + "name": "string" } }, { - "id": 719, + "id": 216, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1968, - "name": "SageViewConfig" + "id": 1877, + "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 715, - "name": "SageEmbed" + "id": 212, + "name": "SearchBarEmbed" }, "overwrites": { "type": "reference", - "name": "V1Embed.constructor" + "name": "TsEmbed.constructor" } } ], "overwrites": { "type": "reference", - "name": "V1Embed.constructor" + "name": "TsEmbed.constructor" } }, { - "id": 850, + "id": 344, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -14544,13 +14713,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1196, + "line": 1207, "character": 11 } ], "signatures": [ { - "id": 851, + "id": 345, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -14570,17 +14739,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.destroy" + "name": "TsEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.destroy" + "name": "TsEmbed.destroy" } }, { - "id": 869, + "id": 363, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -14590,13 +14759,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1373, + "line": 1384, "character": 17 } ], "signatures": [ { - "id": 870, + "id": 364, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -14612,7 +14781,7 @@ }, "parameters": [ { - "id": 871, + "id": 365, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -14633,7 +14802,7 @@ "typeArguments": [ { "type": "reference", - "id": 1365, + "id": 1371, "name": "AnswerService" } ], @@ -14641,50 +14810,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getAnswerService" + "name": "TsEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getAnswerService" + "name": "TsEmbed.getAnswerService" } }, { - "id": 723, - "name": "getIFrameSrc", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/sage.ts", - "line": 183, - "character": 11 - } - ], - "signatures": [ - { - "id": 724, - "name": "getIFrameSrc", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Construct the URL of the embedded ThoughtSpot sage to be\nloaded in the iframe", - "returns": "iframe url\n" - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - { - "id": 837, + "id": 331, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -14694,13 +14830,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1138, + "line": 1149, "character": 11 } ], "signatures": [ { - "id": 838, + "id": 332, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -14711,17 +14847,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getIframeSrc" + "name": "TsEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getIframeSrc" + "name": "TsEmbed.getIframeSrc" } }, { - "id": 864, + "id": 358, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -14731,13 +14867,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1360, + "line": 1371, "character": 11 } ], "signatures": [ { - "id": 865, + "id": 359, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -14759,14 +14895,14 @@ "type": { "type": "reflection", "declaration": { - "id": 866, + "id": 360, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 868, + "id": 362, "name": "child", "kind": 1024, "kindString": "Property", @@ -14778,7 +14914,7 @@ "defaultValue": "..." }, { - "id": 867, + "id": 361, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -14795,8 +14931,8 @@ "title": "Properties", "kind": 1024, "children": [ - 868, - 867 + 362, + 361 ] } ] @@ -14804,17 +14940,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getPreRenderIds" + "name": "TsEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getPreRenderIds" + "name": "TsEmbed.getPreRenderIds" } }, { - "id": 844, + "id": 338, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -14824,13 +14960,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1166, + "line": 1177, "character": 11 } ], "signatures": [ { - "id": 845, + "id": 339, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -14846,7 +14982,7 @@ }, "parameters": [ { - "id": 846, + "id": 340, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -14854,20 +14990,20 @@ "type": { "type": "reflection", "declaration": { - "id": 847, + "id": 341, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 848, + "id": 342, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 849, + "id": 343, "name": "key", "kind": 32768, "flags": {}, @@ -14902,17 +15038,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getThoughtSpotPostUrlParams" + "name": "TsEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getThoughtSpotPostUrlParams" + "name": "TsEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 852, + "id": 346, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -14922,13 +15058,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1205, + "line": 1216, "character": 11 } ], "signatures": [ { - "id": 853, + "id": 347, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -14939,17 +15075,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getUnderlyingFrameElement" + "name": "TsEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getUnderlyingFrameElement" + "name": "TsEmbed.getUnderlyingFrameElement" } }, { - "id": 862, + "id": 356, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -14959,13 +15095,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1332, + "line": 1343, "character": 11 } ], "signatures": [ { - "id": 863, + "id": 357, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -14979,17 +15115,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.hidePreRender" + "name": "TsEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.hidePreRender" + "name": "TsEmbed.hidePreRender" } }, { - "id": 822, + "id": 316, "name": "off", "kind": 2048, "kindString": "Method", @@ -14999,13 +15135,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1050, + "line": 1061, "character": 11 } ], "signatures": [ { - "id": 823, + "id": 317, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -15021,7 +15157,7 @@ }, "parameters": [ { - "id": 824, + "id": 318, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15031,12 +15167,12 @@ }, "type": { "type": "reference", - "id": 1489, + "id": 1495, "name": "EmbedEvent" } }, { - "id": 825, + "id": 319, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15046,7 +15182,7 @@ }, "type": { "type": "reference", - "id": 2110, + "id": 2126, "name": "MessageCallback" } } @@ -15057,17 +15193,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.off" + "name": "TsEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.off" + "name": "TsEmbed.off" } }, { - "id": 732, + "id": 310, "name": "on", "kind": 2048, "kindString": "Method", @@ -15077,23 +15213,20 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1439, + "line": 1032, "character": 11 } ], "signatures": [ { - "id": 733, + "id": 311, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { + "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", "tags": [ - { - "tag": "inheritdoc", - "text": "" - }, { "tag": "example", "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" @@ -15106,41 +15239,63 @@ }, "parameters": [ { - "id": 734, + "id": 312, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "The message type" + }, "type": { "type": "reference", - "id": 1489, + "id": 1495, "name": "EmbedEvent" } }, { - "id": 735, + "id": 313, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "A callback as a function" + }, "type": { "type": "reference", - "id": 2110, + "id": 2126, "name": "MessageCallback" } }, { - "id": 736, + "id": 314, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "The message options" + }, "type": { "type": "reference", - "id": 2107, + "id": 2123, "name": "MessageOptions" }, "defaultValue": "..." + }, + { + "id": 315, + "name": "isRegisteredBySDK", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" } ], "type": { @@ -15149,17 +15304,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.on" + "name": "TsEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.on" + "name": "TsEmbed.on" } }, { - "id": 841, + "id": 335, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15169,13 +15324,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1150, + "line": 1161, "character": 17 } ], "signatures": [ { - "id": 842, + "id": 336, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -15185,7 +15340,7 @@ }, "parameters": [ { - "id": 843, + "id": 337, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -15212,17 +15367,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.preRender" + "name": "TsEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.preRender" + "name": "TsEmbed.preRender" } }, { - "id": 854, + "id": 348, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -15232,13 +15387,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1216, + "line": 1227, "character": 17 } ], "signatures": [ { - "id": 855, + "id": 349, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -15265,17 +15420,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.prerenderGeneric" + "name": "TsEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.prerenderGeneric" + "name": "TsEmbed.prerenderGeneric" } }, { - "id": 725, + "id": 221, "name": "render", "kind": 2048, "kindString": "Method", @@ -15284,46 +15439,45 @@ }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 208, + "fileName": "embed/search-bar.tsx", + "line": 176, "character": 17 } ], "signatures": [ { - "id": 726, + "id": 222, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Render the embedded ThoughtSpot Sage", - "returns": "Eureka/Sage embed\n" + "shortText": "Render the embedded ThoughtSpot search" }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 715, - "name": "SageEmbed" + "id": 212, + "name": "SearchBarEmbed" } ], "name": "Promise" }, "overwrites": { "type": "reference", - "name": "V1Embed.render" + "name": "TsEmbed.render" } } ], "overwrites": { "type": "reference", - "name": "V1Embed.render" + "name": "TsEmbed.render" } }, { - "id": 858, + "id": 352, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -15333,13 +15487,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1264, + "line": 1275, "character": 17 } ], "signatures": [ { - "id": 859, + "id": 353, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -15359,17 +15513,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.showPreRender" + "name": "TsEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.showPreRender" + "name": "TsEmbed.showPreRender" } }, { - "id": 860, + "id": 354, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -15379,13 +15533,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1313, + "line": 1324, "character": 11 } ], "signatures": [ { - "id": 861, + "id": 355, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -15405,17 +15559,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.syncPreRenderStyle" + "name": "TsEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.syncPreRenderStyle" + "name": "TsEmbed.syncPreRenderStyle" } }, { - "id": 826, + "id": 320, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -15425,13 +15579,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1089, + "line": 1100, "character": 17 } ], "signatures": [ { - "id": 827, + "id": 321, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -15442,19 +15596,19 @@ }, "typeParameter": [ { - "id": 828, + "id": 322, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1570, + "id": 1576, "name": "HostEvent" } }, { - "id": 829, + "id": 323, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -15463,7 +15617,7 @@ ], "parameters": [ { - "id": 830, + "id": 324, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15477,7 +15631,7 @@ } }, { - "id": 831, + "id": 325, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -15524,17 +15678,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.trigger" + "name": "TsEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.trigger" + "name": "TsEmbed.trigger" } }, { - "id": 832, + "id": 326, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -15544,13 +15698,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1115, + "line": 1126, "character": 17 } ], "signatures": [ { - "id": 833, + "id": 327, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -15561,21 +15715,21 @@ }, "typeParameter": [ { - "id": 834, + "id": 328, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2289, + "id": 2307, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 835, + "id": 329, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -15589,7 +15743,7 @@ } }, { - "id": 836, + "id": 330, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -15627,13 +15781,13 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.triggerUIPassThrough" + "name": "TsEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.triggerUIPassThrough" + "name": "TsEmbed.triggerUIPassThrough" } } ], @@ -15642,60 +15796,55 @@ "title": "Constructors", "kind": 512, "children": [ - 716 + 213 ] }, { "title": "Methods", "kind": 2048, "children": [ - 850, - 869, - 723, - 837, - 864, - 844, - 852, - 862, - 822, - 732, - 841, - 854, - 725, - 858, - 860, - 826, - 832 + 344, + 363, + 331, + 358, + 338, + 346, + 356, + 316, + 310, + 335, + 348, + 221, + 352, + 354, + 320, + 326 ] } ], "sources": [ { - "fileName": "embed/sage.ts", - "line": 131, + "fileName": "embed/search-bar.tsx", + "line": 109, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "name": "V1Embed" + "name": "TsEmbed" } ] }, { - "id": 212, - "name": "SearchBarEmbed", + "id": 55, + "name": "SearchEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot search bar", + "shortText": "Embed ThoughtSpot search", "tags": [ - { - "tag": "version:", - "text": "SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1-sw" - }, { "tag": "group", "text": "Embed components\n" @@ -15704,54 +15853,55 @@ }, "children": [ { - "id": 213, + "id": 56, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 117, + "fileName": "embed/search.ts", + "line": 321, "character": 4 } ], "signatures": [ { - "id": 214, - "name": "new SearchBarEmbed", + "id": 57, + "name": "new SearchEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 215, + "id": 58, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2122, + "name": "DOMSelector" } }, { - "id": 216, + "id": 59, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1869, - "name": "SearchBarViewConfig" + "id": 1823, + "name": "SearchViewConfig" } } ], "type": { "type": "reference", - "id": 212, - "name": "SearchBarEmbed" + "id": 55, + "name": "SearchEmbed" }, "overwrites": { "type": "reference", @@ -15765,7 +15915,7 @@ } }, { - "id": 344, + "id": 190, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -15775,13 +15925,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1196, + "line": 1207, "character": 11 } ], "signatures": [ { - "id": 345, + "id": 191, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -15811,7 +15961,7 @@ } }, { - "id": 363, + "id": 209, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -15821,13 +15971,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1373, + "line": 1384, "character": 17 } ], "signatures": [ { - "id": 364, + "id": 210, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -15843,7 +15993,7 @@ }, "parameters": [ { - "id": 365, + "id": 211, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15864,7 +16014,7 @@ "typeArguments": [ { "type": "reference", - "id": 1365, + "id": 1371, "name": "AnswerService" } ], @@ -15882,7 +16032,39 @@ } }, { - "id": 331, + "id": 73, + "name": "getIFrameSrc", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 473, + "character": 11 + } + ], + "signatures": [ + { + "id": 74, + "name": "getIFrameSrc", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Construct the URL of the embedded ThoughtSpot search to be\nloaded in the iframe" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 177, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -15892,13 +16074,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1138, + "line": 1149, "character": 11 } ], "signatures": [ { - "id": 332, + "id": 178, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15919,7 +16101,7 @@ } }, { - "id": 358, + "id": 204, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15929,13 +16111,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1360, + "line": 1371, "character": 11 } ], "signatures": [ { - "id": 359, + "id": 205, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15957,14 +16139,14 @@ "type": { "type": "reflection", "declaration": { - "id": 360, + "id": 206, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 362, + "id": 208, "name": "child", "kind": 1024, "kindString": "Property", @@ -15976,7 +16158,7 @@ "defaultValue": "..." }, { - "id": 361, + "id": 207, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15993,8 +16175,8 @@ "title": "Properties", "kind": 1024, "children": [ - 362, - 361 + 208, + 207 ] } ] @@ -16012,7 +16194,7 @@ } }, { - "id": 338, + "id": 184, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16022,13 +16204,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1166, + "line": 1177, "character": 11 } ], "signatures": [ { - "id": 339, + "id": 185, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16044,7 +16226,7 @@ }, "parameters": [ { - "id": 340, + "id": 186, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16052,20 +16234,20 @@ "type": { "type": "reflection", "declaration": { - "id": 341, + "id": 187, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 342, + "id": 188, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 343, + "id": 189, "name": "key", "kind": 32768, "flags": {}, @@ -16110,7 +16292,7 @@ } }, { - "id": 346, + "id": 192, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16120,13 +16302,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1205, + "line": 1216, "character": 11 } ], "signatures": [ { - "id": 347, + "id": 193, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16147,7 +16329,7 @@ } }, { - "id": 356, + "id": 202, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16157,13 +16339,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1332, + "line": 1343, "character": 11 } ], "signatures": [ { - "id": 357, + "id": 203, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16187,7 +16369,7 @@ } }, { - "id": 316, + "id": 162, "name": "off", "kind": 2048, "kindString": "Method", @@ -16197,13 +16379,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1050, + "line": 1061, "character": 11 } ], "signatures": [ { - "id": 317, + "id": 163, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16219,7 +16401,7 @@ }, "parameters": [ { - "id": 318, + "id": 164, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16229,12 +16411,12 @@ }, "type": { "type": "reference", - "id": 1489, + "id": 1495, "name": "EmbedEvent" } }, { - "id": 319, + "id": 165, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16244,7 +16426,7 @@ }, "type": { "type": "reference", - "id": 2110, + "id": 2126, "name": "MessageCallback" } } @@ -16265,7 +16447,7 @@ } }, { - "id": 310, + "id": 156, "name": "on", "kind": 2048, "kindString": "Method", @@ -16275,13 +16457,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1021, + "line": 1032, "character": 11 } ], "signatures": [ { - "id": 311, + "id": 157, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16301,7 +16483,7 @@ }, "parameters": [ { - "id": 312, + "id": 158, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16311,12 +16493,12 @@ }, "type": { "type": "reference", - "id": 1489, + "id": 1495, "name": "EmbedEvent" } }, { - "id": 313, + "id": 159, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16326,12 +16508,12 @@ }, "type": { "type": "reference", - "id": 2110, + "id": 2126, "name": "MessageCallback" } }, { - "id": 314, + "id": 160, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -16341,13 +16523,13 @@ }, "type": { "type": "reference", - "id": 2107, + "id": 2123, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 315, + "id": 161, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -16376,7 +16558,7 @@ } }, { - "id": 335, + "id": 181, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -16386,13 +16568,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1150, + "line": 1161, "character": 17 } ], "signatures": [ { - "id": 336, + "id": 182, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -16402,7 +16584,7 @@ }, "parameters": [ { - "id": 337, + "id": 183, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -16439,7 +16621,7 @@ } }, { - "id": 348, + "id": 194, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -16449,13 +16631,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1216, + "line": 1227, "character": 17 } ], "signatures": [ { - "id": 349, + "id": 195, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -16492,7 +16674,7 @@ } }, { - "id": 221, + "id": 75, "name": "render", "kind": 2048, "kindString": "Method", @@ -16501,14 +16683,14 @@ }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 176, + "fileName": "embed/search.ts", + "line": 484, "character": 17 } ], "signatures": [ { - "id": 222, + "id": 76, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -16521,8 +16703,8 @@ "typeArguments": [ { "type": "reference", - "id": 212, - "name": "SearchBarEmbed" + "id": 55, + "name": "SearchEmbed" } ], "name": "Promise" @@ -16539,7 +16721,7 @@ } }, { - "id": 352, + "id": 198, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -16549,13 +16731,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1264, + "line": 1275, "character": 17 } ], "signatures": [ { - "id": 353, + "id": 199, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -16585,7 +16767,7 @@ } }, { - "id": 354, + "id": 200, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -16595,13 +16777,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1313, + "line": 1324, "character": 11 } ], "signatures": [ { - "id": 355, + "id": 201, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -16631,7 +16813,7 @@ } }, { - "id": 320, + "id": 166, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -16641,13 +16823,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1089, + "line": 1100, "character": 17 } ], "signatures": [ { - "id": 321, + "id": 167, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -16658,19 +16840,19 @@ }, "typeParameter": [ { - "id": 322, + "id": 168, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1570, + "id": 1576, "name": "HostEvent" } }, { - "id": 323, + "id": 169, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -16679,7 +16861,7 @@ ], "parameters": [ { - "id": 324, + "id": 170, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16693,7 +16875,7 @@ } }, { - "id": 325, + "id": 171, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -16750,7 +16932,7 @@ } }, { - "id": 326, + "id": 172, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -16760,13 +16942,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1115, + "line": 1126, "character": 17 } ], "signatures": [ { - "id": 327, + "id": 173, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -16777,21 +16959,21 @@ }, "typeParameter": [ { - "id": 328, + "id": 174, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2289, + "id": 2307, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 329, + "id": 175, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -16805,7 +16987,7 @@ } }, { - "id": 330, + "id": 176, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -16858,36 +17040,37 @@ "title": "Constructors", "kind": 512, "children": [ - 213 + 56 ] }, { "title": "Methods", "kind": 2048, "children": [ - 344, - 363, - 331, - 358, - 338, - 346, - 356, - 316, - 310, - 335, - 348, - 221, - 352, - 354, - 320, - 326 + 190, + 209, + 73, + 177, + 204, + 184, + 192, + 202, + 162, + 156, + 181, + 194, + 75, + 198, + 200, + 166, + 172 ] } ], "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 109, + "fileName": "embed/search.ts", + "line": 315, "character": 13 } ], @@ -16899,71 +17082,78 @@ ] }, { - "id": 55, - "name": "SearchEmbed", + "id": 1109, + "name": "SpotterEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot search", + "shortText": "Embed ThoughtSpot AI Conversation.", "tags": [ { "tag": "group", - "text": "Embed components\n" + "text": "Embed components" + }, + { + "tag": "example", + "text": "\n```js\nconst conversation = new SpotterEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" } ] }, "children": [ { - "id": 56, + "id": 1110, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/search.ts", - "line": 321, + "fileName": "embed/conversation.ts", + "line": 113, "character": 4 } ], "signatures": [ { - "id": 57, - "name": "new SearchEmbed", + "id": 1111, + "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 58, - "name": "domSelector", + "id": 1112, + "name": "container", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2106, - "name": "DOMSelector" + "name": "HTMLElement" } }, { - "id": 59, + "id": 1113, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1817, - "name": "SearchViewConfig" + "id": 1256, + "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 55, - "name": "SearchEmbed" + "id": 1109, + "name": "SpotterEmbed" }, "overwrites": { "type": "reference", @@ -16977,7 +17167,7 @@ } }, { - "id": 190, + "id": 1234, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16987,13 +17177,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1196, + "line": 1207, "character": 11 } ], "signatures": [ { - "id": 191, + "id": 1235, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17023,7 +17213,7 @@ } }, { - "id": 209, + "id": 1253, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17033,13 +17223,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1373, + "line": 1384, "character": 17 } ], "signatures": [ { - "id": 210, + "id": 1254, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -17055,7 +17245,7 @@ }, "parameters": [ { - "id": 211, + "id": 1255, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17076,7 +17266,7 @@ "typeArguments": [ { "type": "reference", - "id": 1365, + "id": 1371, "name": "AnswerService" } ], @@ -17094,39 +17284,7 @@ } }, { - "id": 73, - "name": "getIFrameSrc", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 473, - "character": 11 - } - ], - "signatures": [ - { - "id": 74, - "name": "getIFrameSrc", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Construct the URL of the embedded ThoughtSpot search to be\nloaded in the iframe" - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - { - "id": 177, + "id": 1115, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -17135,14 +17293,14 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1138, + "fileName": "embed/conversation.ts", + "line": 118, "character": 11 } ], "signatures": [ { - "id": 178, + "id": 1116, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -17151,19 +17309,19 @@ "type": "intrinsic", "name": "string" }, - "inheritedFrom": { + "overwrites": { "type": "reference", "name": "TsEmbed.getIframeSrc" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", "name": "TsEmbed.getIframeSrc" } }, { - "id": 204, + "id": 1248, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -17173,13 +17331,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1360, + "line": 1371, "character": 11 } ], "signatures": [ { - "id": 205, + "id": 1249, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -17201,14 +17359,14 @@ "type": { "type": "reflection", "declaration": { - "id": 206, + "id": 1250, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 208, + "id": 1252, "name": "child", "kind": 1024, "kindString": "Property", @@ -17220,7 +17378,7 @@ "defaultValue": "..." }, { - "id": 207, + "id": 1251, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17237,8 +17395,8 @@ "title": "Properties", "kind": 1024, "children": [ - 208, - 207 + 1252, + 1251 ] } ] @@ -17256,7 +17414,7 @@ } }, { - "id": 184, + "id": 1228, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17266,13 +17424,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1166, + "line": 1177, "character": 11 } ], "signatures": [ { - "id": 185, + "id": 1229, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17288,7 +17446,7 @@ }, "parameters": [ { - "id": 186, + "id": 1230, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17296,20 +17454,20 @@ "type": { "type": "reflection", "declaration": { - "id": 187, + "id": 1231, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 188, + "id": 1232, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 189, + "id": 1233, "name": "key", "kind": 32768, "flags": {}, @@ -17354,7 +17512,7 @@ } }, { - "id": 192, + "id": 1236, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17364,13 +17522,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1205, + "line": 1216, "character": 11 } ], "signatures": [ { - "id": 193, + "id": 1237, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17391,7 +17549,7 @@ } }, { - "id": 202, + "id": 1246, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -17401,13 +17559,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1332, + "line": 1343, "character": 11 } ], "signatures": [ { - "id": 203, + "id": 1247, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -17431,7 +17589,7 @@ } }, { - "id": 162, + "id": 1208, "name": "off", "kind": 2048, "kindString": "Method", @@ -17441,13 +17599,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1050, + "line": 1061, "character": 11 } ], "signatures": [ { - "id": 163, + "id": 1209, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -17463,7 +17621,7 @@ }, "parameters": [ { - "id": 164, + "id": 1210, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17473,12 +17631,12 @@ }, "type": { "type": "reference", - "id": 1489, + "id": 1495, "name": "EmbedEvent" } }, { - "id": 165, + "id": 1211, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -17488,7 +17646,7 @@ }, "type": { "type": "reference", - "id": 2110, + "id": 2126, "name": "MessageCallback" } } @@ -17509,7 +17667,7 @@ } }, { - "id": 156, + "id": 1202, "name": "on", "kind": 2048, "kindString": "Method", @@ -17519,13 +17677,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1021, + "line": 1032, "character": 11 } ], "signatures": [ { - "id": 157, + "id": 1203, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -17545,7 +17703,7 @@ }, "parameters": [ { - "id": 158, + "id": 1204, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17555,12 +17713,12 @@ }, "type": { "type": "reference", - "id": 1489, + "id": 1495, "name": "EmbedEvent" } }, { - "id": 159, + "id": 1205, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -17570,12 +17728,12 @@ }, "type": { "type": "reference", - "id": 2110, + "id": 2126, "name": "MessageCallback" } }, { - "id": 160, + "id": 1206, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -17585,13 +17743,13 @@ }, "type": { "type": "reference", - "id": 2107, + "id": 2123, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 161, + "id": 1207, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -17620,7 +17778,7 @@ } }, { - "id": 181, + "id": 1225, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -17630,13 +17788,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1150, + "line": 1161, "character": 17 } ], "signatures": [ { - "id": 182, + "id": 1226, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -17646,7 +17804,7 @@ }, "parameters": [ { - "id": 183, + "id": 1227, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -17683,7 +17841,7 @@ } }, { - "id": 194, + "id": 1238, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -17693,13 +17851,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1216, + "line": 1227, "character": 17 } ], "signatures": [ { - "id": 195, + "id": 1239, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17736,7 +17894,7 @@ } }, { - "id": 75, + "id": 1117, "name": "render", "kind": 2048, "kindString": "Method", @@ -17745,28 +17903,25 @@ }, "sources": [ { - "fileName": "embed/search.ts", - "line": 484, + "fileName": "embed/conversation.ts", + "line": 166, "character": 17 } ], "signatures": [ { - "id": 76, + "id": 1118, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Render the embedded ThoughtSpot search" - }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 55, - "name": "SearchEmbed" + "id": 1109, + "name": "SpotterEmbed" } ], "name": "Promise" @@ -17783,7 +17938,7 @@ } }, { - "id": 198, + "id": 1242, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17793,13 +17948,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1264, + "line": 1275, "character": 17 } ], "signatures": [ { - "id": 199, + "id": 1243, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17829,7 +17984,7 @@ } }, { - "id": 200, + "id": 1244, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -17839,13 +17994,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1313, + "line": 1324, "character": 11 } ], "signatures": [ { - "id": 201, + "id": 1245, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17875,7 +18030,7 @@ } }, { - "id": 166, + "id": 1212, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17885,13 +18040,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1089, + "line": 1100, "character": 17 } ], "signatures": [ { - "id": 167, + "id": 1213, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17902,19 +18057,19 @@ }, "typeParameter": [ { - "id": 168, + "id": 1214, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1570, + "id": 1576, "name": "HostEvent" } }, { - "id": 169, + "id": 1215, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -17923,7 +18078,7 @@ ], "parameters": [ { - "id": 170, + "id": 1216, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17937,7 +18092,7 @@ } }, { - "id": 171, + "id": 1217, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17994,7 +18149,7 @@ } }, { - "id": 172, + "id": 1218, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18004,13 +18159,13 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1115, + "line": 1126, "character": 17 } ], "signatures": [ { - "id": 173, + "id": 1219, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18021,21 +18176,21 @@ }, "typeParameter": [ { - "id": 174, + "id": 1220, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2289, + "id": 2307, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 175, + "id": 1221, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18049,7 +18204,7 @@ } }, { - "id": 176, + "id": 1222, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -18102,37 +18257,36 @@ "title": "Constructors", "kind": 512, "children": [ - 56 + 1110 ] }, { "title": "Methods", "kind": 2048, "children": [ - 190, - 209, - 73, - 177, - 204, - 184, - 192, - 202, - 162, - 156, - 181, - 194, - 75, - 198, - 200, - 166, - 172 + 1234, + 1253, + 1115, + 1248, + 1228, + 1236, + 1246, + 1208, + 1202, + 1225, + 1238, + 1117, + 1242, + 1244, + 1212, + 1218 ] } ], "sources": [ { - "fileName": "embed/search.ts", - "line": 315, + "fileName": "embed/conversation.ts", + "line": 112, "character": 13 } ], @@ -18144,7 +18298,7 @@ ] }, { - "id": 2013, + "id": 2027, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -18160,7 +18314,7 @@ }, "children": [ { - "id": 2044, + "id": 2058, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -18183,27 +18337,27 @@ "sources": [ { "fileName": "types.ts", - "line": 841, + "line": 843, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2045, + "id": 2059, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2046, + "id": 2060, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2047, + "id": 2061, "name": "key", "kind": 32768, "flags": {}, @@ -18239,7 +18393,7 @@ } }, { - "id": 2077, + "id": 2093, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -18266,7 +18420,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1074, + "line": 1076, "character": 4 } ], @@ -18280,7 +18434,7 @@ } }, { - "id": 2033, + "id": 2047, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -18317,7 +18471,7 @@ } }, { - "id": 2058, + "id": 2073, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -18340,13 +18494,13 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 875, "character": 4 } ], "type": { "type": "reference", - "id": 1765, + "id": 1771, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -18355,7 +18509,7 @@ } }, { - "id": 2043, + "id": 2057, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -18378,13 +18532,13 @@ "sources": [ { "fileName": "types.ts", - "line": 848, + "line": 850, "character": 4 } ], "type": { "type": "reference", - "id": 2123, + "id": 2139, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -18393,7 +18547,7 @@ } }, { - "id": 2034, + "id": 2048, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -18430,7 +18584,7 @@ } }, { - "id": 2078, + "id": 2094, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -18457,7 +18611,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1099, + "line": 1107, "character": 4 } ], @@ -18471,7 +18625,7 @@ } }, { - "id": 2016, + "id": 2030, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -18508,7 +18662,7 @@ } }, { - "id": 2061, + "id": 2076, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -18531,7 +18685,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1086, + "line": 1094, "character": 4 } ], @@ -18545,7 +18699,7 @@ } }, { - "id": 2052, + "id": 2067, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -18568,7 +18722,7 @@ "sources": [ { "fileName": "types.ts", - "line": 725, + "line": 727, "character": 4 } ], @@ -18582,7 +18736,7 @@ } }, { - "id": 2051, + "id": 2066, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -18605,7 +18759,7 @@ "sources": [ { "fileName": "types.ts", - "line": 712, + "line": 714, "character": 4 } ], @@ -18613,7 +18767,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1635, + "id": 1641, "name": "Action" } }, @@ -18623,7 +18777,7 @@ } }, { - "id": 2073, + "id": 2089, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -18650,7 +18804,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1033, + "line": 1035, "character": 4 } ], @@ -18664,7 +18818,7 @@ } }, { - "id": 2035, + "id": 2049, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -18701,7 +18855,7 @@ } }, { - "id": 2032, + "id": 2046, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -18734,7 +18888,7 @@ } }, { - "id": 2079, + "id": 2095, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -18761,7 +18915,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1112, + "line": 1120, "character": 4 } ], @@ -18775,7 +18929,7 @@ } }, { - "id": 2017, + "id": 2031, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -18811,7 +18965,7 @@ } }, { - "id": 2025, + "id": 2039, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -18848,7 +19002,7 @@ } }, { - "id": 2076, + "id": 2092, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -18871,7 +19025,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 1064, "character": 4 } ], @@ -18885,7 +19039,7 @@ } }, { - "id": 2072, + "id": 2088, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -18909,7 +19063,7 @@ "sources": [ { "fileName": "types.ts", - "line": 911, + "line": 913, "character": 4 } ], @@ -18923,7 +19077,7 @@ } }, { - "id": 2075, + "id": 2091, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -18947,7 +19101,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1048, + "line": 1050, "character": 4 } ], @@ -18961,7 +19115,44 @@ } }, { - "id": 2065, + "id": 2078, + "name": "exposeTranslationIDs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to expose translation IDs on the embedded app.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1082, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.exposeTranslationIDs" + } + }, + { + "id": 2081, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -18984,13 +19175,13 @@ "sources": [ { "fileName": "types.ts", - "line": 688, + "line": 690, "character": 4 } ], "type": { "type": "reference", - "id": 2085, + "id": 2101, "name": "FrameParams" }, "inheritedFrom": { @@ -18999,7 +19190,7 @@ } }, { - "id": 2026, + "id": 2040, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -19033,7 +19224,7 @@ } }, { - "id": 2053, + "id": 2068, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -19060,7 +19251,7 @@ "sources": [ { "fileName": "types.ts", - "line": 740, + "line": 742, "character": 4 } ], @@ -19068,7 +19259,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1635, + "id": 1641, "name": "Action" } }, @@ -19078,7 +19269,7 @@ } }, { - "id": 2050, + "id": 2064, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -19101,7 +19292,7 @@ "sources": [ { "fileName": "types.ts", - "line": 997, + "line": 999, "character": 4 } ], @@ -19109,7 +19300,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2107, "name": "HomeLeftNavItem" } }, @@ -19119,7 +19310,7 @@ } }, { - "id": 2048, + "id": 2062, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -19143,7 +19334,7 @@ "sources": [ { "fileName": "types.ts", - "line": 944, + "line": 946, "character": 4 } ], @@ -19151,7 +19342,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2099, + "id": 2115, "name": "HomepageModule" } }, @@ -19161,7 +19352,49 @@ } }, { - "id": 2055, + "id": 2065, + "name": "hiddenListColumns", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1151, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2314, + "name": "ListPageColumns" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenListColumns" + } + }, + { + "id": 2070, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -19184,7 +19417,7 @@ "sources": [ { "fileName": "types.ts", - "line": 927, + "line": 929, "character": 4 } ], @@ -19201,7 +19434,7 @@ } }, { - "id": 2018, + "id": 2032, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -19239,7 +19472,7 @@ } }, { - "id": 2015, + "id": 2029, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -19277,7 +19510,7 @@ } }, { - "id": 2040, + "id": 2054, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -19314,7 +19547,7 @@ } }, { - "id": 2027, + "id": 2041, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -19351,7 +19584,7 @@ } }, { - "id": 2023, + "id": 2037, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -19387,7 +19620,7 @@ } }, { - "id": 2019, + "id": 2033, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -19425,7 +19658,7 @@ } }, { - "id": 2037, + "id": 2051, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -19450,12 +19683,12 @@ ], "type": { "type": "reference", - "id": 2262, + "id": 2280, "name": "HomePageSearchBarMode" } }, { - "id": 2070, + "id": 2086, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -19478,7 +19711,7 @@ "sources": [ { "fileName": "types.ts", - "line": 861, + "line": 863, "character": 4 } ], @@ -19492,7 +19725,7 @@ } }, { - "id": 2038, + "id": 2052, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -19529,7 +19762,7 @@ } }, { - "id": 2031, + "id": 2045, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -19562,7 +19795,7 @@ } }, { - "id": 2036, + "id": 2050, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -19591,7 +19824,7 @@ } }, { - "id": 2042, + "id": 2056, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -19628,7 +19861,7 @@ } }, { - "id": 2059, + "id": 2074, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -19651,7 +19884,7 @@ "sources": [ { "fileName": "types.ts", - "line": 885, + "line": 887, "character": 4 } ], @@ -19665,7 +19898,7 @@ } }, { - "id": 2057, + "id": 2072, "name": "locale", "kind": 1024, "kindString": "Property", @@ -19688,7 +19921,7 @@ "sources": [ { "fileName": "types.ts", - "line": 820, + "line": 822, "character": 4 } ], @@ -19702,7 +19935,7 @@ } }, { - "id": 2030, + "id": 2044, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -19739,7 +19972,7 @@ } }, { - "id": 2062, + "id": 2077, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -19762,7 +19995,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1128, + "line": 1136, "character": 4 } ], @@ -19776,7 +20009,7 @@ } }, { - "id": 2021, + "id": 2035, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -19806,12 +20039,12 @@ ], "type": { "type": "reference", - "id": 1448, + "id": 1454, "name": "Page" } }, { - "id": 2020, + "id": 2034, "name": "path", "kind": 1024, "kindString": "Property", @@ -19845,7 +20078,7 @@ } }, { - "id": 2063, + "id": 2079, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -19868,7 +20101,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1012, + "line": 1014, "character": 4 } ], @@ -19882,7 +20115,7 @@ } }, { - "id": 2049, + "id": 2063, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -19906,7 +20139,7 @@ "sources": [ { "fileName": "types.ts", - "line": 961, + "line": 963, "character": 4 } ], @@ -19914,7 +20147,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2099, + "id": 2115, "name": "HomepageModule" } }, @@ -19924,7 +20157,7 @@ } }, { - "id": 2068, + "id": 2084, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -19947,7 +20180,7 @@ "sources": [ { "fileName": "types.ts", - "line": 790, + "line": 792, "character": 4 } ], @@ -19955,7 +20188,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1469, + "id": 1475, "name": "RuntimeFilter" } }, @@ -19965,7 +20198,7 @@ } }, { - "id": 2069, + "id": 2085, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -19988,7 +20221,7 @@ "sources": [ { "fileName": "types.ts", - "line": 808, + "line": 810, "character": 4 } ], @@ -19996,7 +20229,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2236, + "id": 2254, "name": "RuntimeParameter" } }, @@ -20006,7 +20239,7 @@ } }, { - "id": 2056, + "id": 2071, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -20029,7 +20262,7 @@ "sources": [ { "fileName": "types.ts", - "line": 771, + "line": 773, "character": 4 } ], @@ -20043,7 +20276,7 @@ } }, { - "id": 2029, + "id": 2043, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -20080,7 +20313,7 @@ } }, { - "id": 2041, + "id": 2055, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -20117,7 +20350,7 @@ } }, { - "id": 2028, + "id": 2042, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -20154,7 +20387,7 @@ } }, { - "id": 2039, + "id": 2053, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -20191,7 +20424,7 @@ } }, { - "id": 2014, + "id": 2028, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -20228,7 +20461,7 @@ } }, { - "id": 2022, + "id": 2036, "name": "tag", "kind": 1024, "kindString": "Property", @@ -20261,7 +20494,7 @@ } }, { - "id": 2054, + "id": 2069, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -20289,7 +20522,7 @@ "sources": [ { "fileName": "types.ts", - "line": 758, + "line": 760, "character": 4 } ], @@ -20297,7 +20530,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1635, + "id": 1641, "name": "Action" } }, @@ -20312,62 +20545,64 @@ "title": "Properties", "kind": 1024, "children": [ - 2044, - 2077, - 2033, 2058, - 2043, - 2034, - 2078, - 2016, - 2061, - 2052, - 2051, + 2093, + 2047, 2073, - 2035, - 2032, - 2079, - 2017, - 2025, - 2076, - 2072, - 2075, - 2065, - 2026, - 2053, - 2050, - 2048, - 2055, - 2018, - 2015, - 2040, - 2027, - 2023, - 2019, - 2037, - 2070, - 2038, - 2031, - 2036, - 2042, - 2059, 2057, + 2048, + 2094, 2030, - 2062, - 2021, - 2020, - 2063, + 2076, + 2067, + 2066, + 2089, 2049, + 2046, + 2095, + 2031, + 2039, + 2092, + 2088, + 2091, + 2078, + 2081, + 2040, 2068, - 2069, - 2056, + 2064, + 2062, + 2065, + 2070, + 2032, 2029, + 2054, 2041, + 2037, + 2033, + 2051, + 2086, + 2052, + 2045, + 2050, + 2056, + 2074, + 2072, + 2044, + 2077, + 2035, + 2034, + 2079, + 2063, + 2084, + 2085, + 2071, + 2043, + 2055, + 2042, + 2053, 2028, - 2039, - 2014, - 2022, - 2054 + 2036, + 2069 ] } ], @@ -20396,7 +20631,7 @@ ] }, { - "id": 1312, + "id": 1318, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -20412,14 +20647,14 @@ }, "children": [ { - "id": 1349, + "id": 1355, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1350, + "id": 1356, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -20429,19 +20664,19 @@ }, "parameters": [ { - "id": 1351, + "id": 1357, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1311, + "id": 1317, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1352, + "id": 1358, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -20465,14 +20700,14 @@ ] }, { - "id": 1353, + "id": 1359, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1354, + "id": 1360, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -20482,7 +20717,7 @@ }, "parameters": [ { - "id": 1355, + "id": 1361, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -20490,12 +20725,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1303, + "id": 1309, "name": "AuthStatus" } }, { - "id": 1356, + "id": 1362, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -20504,21 +20739,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1357, + "id": 1363, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1358, + "id": 1364, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1359, + "id": 1365, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -20544,7 +20779,7 @@ } }, { - "id": 1360, + "id": 1366, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -20556,7 +20791,7 @@ } }, { - "id": 1361, + "id": 1367, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -20572,21 +20807,21 @@ ], "type": { "type": "reference", - "id": 1312, + "id": 1318, "name": "AuthEventEmitter" } } ] }, { - "id": 1313, + "id": 1319, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1314, + "id": 1320, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -20596,7 +20831,7 @@ }, "parameters": [ { - "id": 1315, + "id": 1321, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -20604,12 +20839,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1304, + "id": 1310, "name": "FAILURE" } }, { - "id": 1316, + "id": 1322, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -20620,28 +20855,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1317, + "id": 1323, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1318, + "id": 1324, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1319, + "id": 1325, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1297, + "id": 1303, "name": "AuthFailureType" } } @@ -20658,12 +20893,12 @@ ], "type": { "type": "reference", - "id": 1312, + "id": 1318, "name": "AuthEventEmitter" } }, { - "id": 1320, + "id": 1326, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -20673,7 +20908,7 @@ }, "parameters": [ { - "id": 1321, + "id": 1327, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -20684,24 +20919,24 @@ "types": [ { "type": "reference", - "id": 1305, + "id": 1311, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1308, + "id": 1314, "name": "LOGOUT" }, { "type": "reference", - "id": 1309, + "id": 1315, "name": "WAITING_FOR_POPUP" } ] } }, { - "id": 1322, + "id": 1328, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -20712,14 +20947,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1323, + "id": 1329, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1324, + "id": 1330, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -20736,31 +20971,31 @@ ], "type": { "type": "reference", - "id": 1312, + "id": 1318, "name": "AuthEventEmitter" } }, { - "id": 1325, + "id": 1331, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1326, + "id": 1332, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1307, + "id": 1313, "name": "SUCCESS" } }, { - "id": 1327, + "id": 1333, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -20768,21 +21003,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1328, + "id": 1334, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1329, + "id": 1335, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1330, + "id": 1336, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -20805,40 +21040,40 @@ ], "type": { "type": "reference", - "id": 1312, + "id": 1318, "name": "AuthEventEmitter" } } ] }, { - "id": 1331, + "id": 1337, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1332, + "id": 1338, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1333, + "id": 1339, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1304, + "id": 1310, "name": "FAILURE" } }, { - "id": 1334, + "id": 1340, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -20846,28 +21081,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1335, + "id": 1341, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1336, + "id": 1342, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1337, + "id": 1343, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1297, + "id": 1303, "name": "AuthFailureType" } } @@ -20884,19 +21119,19 @@ ], "type": { "type": "reference", - "id": 1312, + "id": 1318, "name": "AuthEventEmitter" } }, { - "id": 1338, + "id": 1344, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1339, + "id": 1345, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -20906,24 +21141,24 @@ "types": [ { "type": "reference", - "id": 1305, + "id": 1311, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1308, + "id": 1314, "name": "LOGOUT" }, { "type": "reference", - "id": 1309, + "id": 1315, "name": "WAITING_FOR_POPUP" } ] } }, { - "id": 1340, + "id": 1346, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -20931,14 +21166,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1341, + "id": 1347, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1342, + "id": 1348, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -20955,31 +21190,31 @@ ], "type": { "type": "reference", - "id": 1312, + "id": 1318, "name": "AuthEventEmitter" } }, { - "id": 1343, + "id": 1349, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1344, + "id": 1350, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1307, + "id": 1313, "name": "SUCCESS" } }, { - "id": 1345, + "id": 1351, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -20987,21 +21222,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1346, + "id": 1352, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1347, + "id": 1353, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1348, + "id": 1354, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -21024,21 +21259,21 @@ ], "type": { "type": "reference", - "id": 1312, + "id": 1318, "name": "AuthEventEmitter" } } ] }, { - "id": 1362, + "id": 1368, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1363, + "id": 1369, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -21048,7 +21283,7 @@ }, "parameters": [ { - "id": 1364, + "id": 1370, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -21058,14 +21293,14 @@ }, "type": { "type": "reference", - "id": 1303, + "id": 1309, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1312, + "id": 1318, "name": "AuthEventEmitter" } } @@ -21077,11 +21312,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1349, - 1353, - 1313, - 1331, - 1362 + 1355, + 1359, + 1319, + 1337, + 1368 ] } ], @@ -21094,7 +21329,7 @@ ] }, { - "id": 1065, + "id": 1067, "name": "BodylessConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -21110,7 +21345,7 @@ }, "children": [ { - "id": 1079, + "id": 1081, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -21133,27 +21368,27 @@ "sources": [ { "fileName": "types.ts", - "line": 841, + "line": 843, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1080, + "id": 1082, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1081, + "id": 1083, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1082, + "id": 1084, "name": "key", "kind": 32768, "flags": {}, @@ -21189,7 +21424,7 @@ } }, { - "id": 1100, + "id": 1102, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -21216,7 +21451,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1074, + "line": 1076, "character": 4 } ], @@ -21230,7 +21465,7 @@ } }, { - "id": 1085, + "id": 1087, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -21253,13 +21488,13 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 875, "character": 4 } ], "type": { "type": "reference", - "id": 1765, + "id": 1771, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -21268,7 +21503,7 @@ } }, { - "id": 1083, + "id": 1085, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -21291,13 +21526,13 @@ "sources": [ { "fileName": "types.ts", - "line": 848, + "line": 850, "character": 4 } ], "type": { "type": "reference", - "id": 2123, + "id": 2139, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -21306,7 +21541,7 @@ } }, { - "id": 1102, + "id": 1105, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -21333,7 +21568,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1099, + "line": 1107, "character": 4 } ], @@ -21347,7 +21582,7 @@ } }, { - "id": 1101, + "id": 1104, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -21370,7 +21605,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1086, + "line": 1094, "character": 4 } ], @@ -21384,7 +21619,7 @@ } }, { - "id": 1072, + "id": 1074, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -21407,7 +21642,7 @@ "sources": [ { "fileName": "types.ts", - "line": 725, + "line": 727, "character": 4 } ], @@ -21421,7 +21656,7 @@ } }, { - "id": 1071, + "id": 1073, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -21444,7 +21679,7 @@ "sources": [ { "fileName": "types.ts", - "line": 712, + "line": 714, "character": 4 } ], @@ -21452,7 +21687,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1635, + "id": 1641, "name": "Action" } }, @@ -21462,7 +21697,7 @@ } }, { - "id": 1096, + "id": 1098, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -21489,7 +21724,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1033, + "line": 1035, "character": 4 } ], @@ -21503,7 +21738,7 @@ } }, { - "id": 1103, + "id": 1106, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -21530,7 +21765,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1112, + "line": 1120, "character": 4 } ], @@ -21544,7 +21779,7 @@ } }, { - "id": 1099, + "id": 1101, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -21567,7 +21802,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 1064, "character": 4 } ], @@ -21581,7 +21816,7 @@ } }, { - "id": 1089, + "id": 1091, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -21605,7 +21840,7 @@ "sources": [ { "fileName": "types.ts", - "line": 911, + "line": 913, "character": 4 } ], @@ -21619,7 +21854,7 @@ } }, { - "id": 1098, + "id": 1100, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -21643,7 +21878,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1048, + "line": 1050, "character": 4 } ], @@ -21657,7 +21892,44 @@ } }, { - "id": 1068, + "id": 1103, + "name": "exposeTranslationIDs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to expose translation IDs on the embedded app.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1082, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.exposeTranslationIDs" + } + }, + { + "id": 1070, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -21680,13 +21952,13 @@ "sources": [ { "fileName": "types.ts", - "line": 688, + "line": 690, "character": 4 } ], "type": { "type": "reference", - "id": 2085, + "id": 2101, "name": "FrameParams" }, "inheritedFrom": { @@ -21695,7 +21967,7 @@ } }, { - "id": 1073, + "id": 1075, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -21722,7 +21994,7 @@ "sources": [ { "fileName": "types.ts", - "line": 740, + "line": 742, "character": 4 } ], @@ -21730,7 +22002,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1635, + "id": 1641, "name": "Action" } }, @@ -21740,7 +22012,7 @@ } }, { - "id": 1094, + "id": 1096, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -21763,7 +22035,7 @@ "sources": [ { "fileName": "types.ts", - "line": 997, + "line": 999, "character": 4 } ], @@ -21771,7 +22043,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2091, + "id": 2107, "name": "HomeLeftNavItem" } }, @@ -21781,7 +22053,7 @@ } }, { - "id": 1091, + "id": 1093, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -21805,7 +22077,7 @@ "sources": [ { "fileName": "types.ts", - "line": 944, + "line": 946, "character": 4 } ], @@ -21813,7 +22085,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2099, + "id": 2115, "name": "HomepageModule" } }, @@ -21823,7 +22095,49 @@ } }, { - "id": 1090, + "id": 1108, + "name": "hiddenListColumns", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1151, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2314, + "name": "ListPageColumns" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenListColumns" + } + }, + { + "id": 1092, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -21846,7 +22160,7 @@ "sources": [ { "fileName": "types.ts", - "line": 927, + "line": 929, "character": 4 } ], @@ -21863,7 +22177,7 @@ } }, { - "id": 1084, + "id": 1086, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -21886,7 +22200,7 @@ "sources": [ { "fileName": "types.ts", - "line": 861, + "line": 863, "character": 4 } ], @@ -21900,7 +22214,7 @@ } }, { - "id": 1086, + "id": 1088, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -21923,7 +22237,7 @@ "sources": [ { "fileName": "types.ts", - "line": 885, + "line": 887, "character": 4 } ], @@ -21937,7 +22251,7 @@ } }, { - "id": 1078, + "id": 1080, "name": "locale", "kind": 1024, "kindString": "Property", @@ -21960,7 +22274,7 @@ "sources": [ { "fileName": "types.ts", - "line": 820, + "line": 822, "character": 4 } ], @@ -21974,7 +22288,7 @@ } }, { - "id": 1104, + "id": 1107, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -21997,7 +22311,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1128, + "line": 1136, "character": 4 } ], @@ -22011,7 +22325,7 @@ } }, { - "id": 1095, + "id": 1097, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -22034,7 +22348,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1012, + "line": 1014, "character": 4 } ], @@ -22048,7 +22362,7 @@ } }, { - "id": 1092, + "id": 1094, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -22072,7 +22386,7 @@ "sources": [ { "fileName": "types.ts", - "line": 961, + "line": 963, "character": 4 } ], @@ -22080,7 +22394,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2099, + "id": 2115, "name": "HomepageModule" } }, @@ -22090,7 +22404,7 @@ } }, { - "id": 1076, + "id": 1078, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -22113,7 +22427,7 @@ "sources": [ { "fileName": "types.ts", - "line": 790, + "line": 792, "character": 4 } ], @@ -22121,7 +22435,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1469, + "id": 1475, "name": "RuntimeFilter" } }, @@ -22131,7 +22445,7 @@ } }, { - "id": 1077, + "id": 1079, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -22154,7 +22468,7 @@ "sources": [ { "fileName": "types.ts", - "line": 808, + "line": 810, "character": 4 } ], @@ -22162,7 +22476,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2236, + "id": 2254, "name": "RuntimeParameter" } }, @@ -22172,7 +22486,7 @@ } }, { - "id": 1075, + "id": 1077, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -22195,7 +22509,7 @@ "sources": [ { "fileName": "types.ts", - "line": 771, + "line": 773, "character": 4 } ], @@ -22209,7 +22523,7 @@ } }, { - "id": 1074, + "id": 1076, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -22237,7 +22551,7 @@ "sources": [ { "fileName": "types.ts", - "line": 758, + "line": 760, "character": 4 } ], @@ -22245,7 +22559,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1635, + "id": 1641, "name": "Action" } }, @@ -22255,7 +22569,7 @@ } }, { - "id": 1093, + "id": 1095, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -22279,7 +22593,7 @@ "sources": [ { "fileName": "types.ts", - "line": 979, + "line": 981, "character": 4 } ], @@ -22296,7 +22610,7 @@ } }, { - "id": 1066, + "id": 1068, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -22322,36 +22636,38 @@ "title": "Properties", "kind": 1024, "children": [ - 1079, - 1100, - 1085, - 1083, + 1081, 1102, - 1101, - 1072, - 1071, - 1096, - 1103, - 1099, - 1089, - 1098, - 1068, + 1087, + 1085, + 1105, + 1104, + 1074, 1073, - 1094, + 1098, + 1106, + 1101, 1091, - 1090, - 1084, + 1100, + 1103, + 1070, + 1075, + 1096, + 1093, + 1108, + 1092, 1086, + 1088, + 1080, + 1107, + 1097, + 1094, 1078, - 1104, - 1095, - 1092, - 1076, + 1079, 1077, - 1075, - 1074, - 1093, - 1066 + 1076, + 1095, + 1068 ] } ], @@ -22370,66 +22686,310 @@ ] }, { - "id": 1252, - "name": "ConversationViewConfig", + "id": 2287, + "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { - "shortText": "The configuration for the embedded conversationEmbed options.", "tags": [ { "tag": "group", - "text": "Embed components\n" + "text": "Events\n" } ] }, "children": [ { - "id": 1272, - "name": "additionalFlags", + "id": 2288, + "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" - } - ] - }, "sources": [ { "fileName": "types.ts", - "line": 841, + "line": 4889, + "character": 4 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2289, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2290, + "name": "clickedPoint", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4890, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 2284, + "name": "VizPoint" + } + }, + { + "id": 2291, + "name": "selectedPoints", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4891, + "character": 8 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2284, + "name": "VizPoint" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2290, + 2291 + ] + } + ] + } + } + }, + { + "id": 2292, + "name": "embedAnswerData", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4893, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1273, + "id": 2293, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, + "children": [ + { + "id": 2301, + "name": "columns", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4901, + "character": 8 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + }, + { + "id": 2302, + "name": "data", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4902, + "character": 8 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + }, + { + "id": 2295, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4895, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2294, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4894, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2296, + "name": "sources", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4896, + "character": 8 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2297, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2298, + "name": "header", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4897, + "character": 12 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2299, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2300, + "name": "guid", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4898, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2300 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2298 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2301, + 2302, + 2295, + 2294, + 2296 + ] + } + ], "indexSignature": { - "id": 1274, + "id": 2303, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1275, + "id": 2304, "name": "key", "kind": 32768, "flags": {}, @@ -22440,1305 +23000,811 @@ } ], "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] + "type": "intrinsic", + "name": "any" } } } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.additionalFlags" } }, { - "id": 1293, - "name": "collapseSearchBar", + "id": 2305, + "name": "session", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", - "tags": [ - { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" - } - ] - }, + "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 1074, + "line": 4905, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { "type": "reference", - "name": "ViewConfig.collapseSearchBar" + "id": 1444, + "name": "SessionInterface" } }, { - "id": 1278, - "name": "contextMenuTrigger", + "id": 2306, + "name": "vizId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" - } - ] - }, "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 4906, "character": 4 } ], "type": { - "type": "reference", - "id": 1765, - "name": "ContextMenuTriggerOptions" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.contextMenuTrigger" + "type": "intrinsic", + "name": "string" } - }, + } + ], + "groups": [ { - "id": 1276, - "name": "customizations", + "title": "Properties", + "kind": 1024, + "children": [ + 2288, + 2292, + 2305, + 2306 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 4888, + "character": 17 + } + ] + }, + { + "id": 2161, + "name": "CustomCssVariables", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The list of customization css variables. These\nare the only allowed variables possible." + }, + "children": [ + { + "id": 2215, + "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" - }, - { - "tag": "default", - "text": "''\n" - } - ] + "shortText": "Background color of the chart type element when a user hovers over a chart type on\nthe chart selection widget." }, "sources": [ { - "fileName": "types.ts", - "line": 848, + "fileName": "css-variables.ts", + "line": 291, "character": 4 } ], "type": { - "type": "reference", - "id": 2123, - "name": "CustomisationsInterface" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.customizations" + "type": "intrinsic", + "name": "string" } }, { - "id": 1257, - "name": "dataPanelV2", + "id": 2214, + "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to control Data panel experience", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | ThoughtSpot Cloud: 10.4.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" - } - ] + "shortText": "Background color of the selected chart type on the chart selection widget." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 67, + "fileName": "css-variables.ts", + "line": 285, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "overwrites": { - "type": "reference", - "name": "ViewConfig.dataPanelV2" + "name": "string" } }, { - "id": 1294, - "name": "disableRedirectionLinksInNewTab", + "id": 2184, + "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" - } - ] + "shortText": "Background color of the data panel." }, "sources": [ { - "fileName": "types.ts", - "line": 1086, + "fileName": "css-variables.ts", + "line": 127, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disableRedirectionLinksInNewTab" + "name": "string" } }, { - "id": 1255, - "name": "disableSourceSelection", + "id": 2185, + "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "disableSourceSelection : Disables data source selection\nbut still display the selected data source.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n disableSourceSelection : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" - } - ] + "shortText": "Background color of the vertical panel on the right side of the Answer page, which\nincludes the options to edit charts and tables." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 42, + "fileName": "css-variables.ts", + "line": 133, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1265, - "name": "disabledActionReason", + "id": 2187, + "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The tooltip to display for disabled actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" - } - ] + "shortText": "Background color of the currently selected chart type in the chart switcher." }, "sources": [ { - "fileName": "types.ts", - "line": 725, + "fileName": "css-variables.ts", + "line": 143, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disabledActionReason" } }, { - "id": 1264, - "name": "disabledActions", + "id": 2186, + "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" - } - ] + "shortText": "Background color of the chart switcher on search results and Answer pages." }, "sources": [ { - "fileName": "types.ts", - "line": 712, + "fileName": "css-variables.ts", + "line": 138, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1635, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disabledActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1289, - "name": "doNotTrackPreRenderSize", + "id": 2166, + "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" - } - ] + "shortText": "Font color of the text on toggle buttons such as\n**All**, **Answers**, and **Liveboards** on the Home page (Classic experience),\nthe text color of the chart and table tiles on Home page (New modular Homepage\nexperience), and title text on the AI-generated charts and tables.\nThe default color code is #2770EF." }, "sources": [ { - "fileName": "types.ts", - "line": 1033, + "fileName": "css-variables.ts", + "line": 34, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.doNotTrackPreRenderSize" + "name": "string" } }, { - "id": 1295, - "name": "enableCustomColumnGroups", + "id": 2227, + "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To enable custom column groups in data panel v2", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" - } - ] + "shortText": "Font color of the X and Y axis labels." }, "sources": [ { - "fileName": "types.ts", - "line": 1112, + "fileName": "css-variables.ts", + "line": 351, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.enableCustomColumnGroups" + "name": "string" } }, { - "id": 1292, - "name": "enableV2Shell_experimental", + "id": 2228, + "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" - } - ] + "shortText": "Font family specification for X and Y axis labels." }, "sources": [ { - "fileName": "types.ts", - "line": 1062, + "fileName": "css-variables.ts", + "line": 356, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.enableV2Shell_experimental" + "name": "string" } }, { - "id": 1282, - "name": "excludeRuntimeFiltersfromURL", + "id": 2225, + "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" - } - ] + "shortText": "Font color of axis title on charts." }, "sources": [ { - "fileName": "types.ts", - "line": 911, + "fileName": "css-variables.ts", + "line": 341, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.excludeRuntimeFiltersfromURL" + "name": "string" } }, { - "id": 1291, - "name": "excludeRuntimeParametersfromURL", + "id": 2226, + "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" - } - ] + "shortText": "Font family specification for the X and Y axis title text." }, "sources": [ { - "fileName": "types.ts", - "line": 1048, + "fileName": "css-variables.ts", + "line": 346, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.excludeRuntimeParametersfromURL" + "name": "string" } }, { - "id": 1261, - "name": "frameParams", + "id": 2189, + "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" - } - ] + "shortText": "Border-radius of small buttons such as secondary buttons.\nFor example, share and favorite buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 688, + "fileName": "css-variables.ts", + "line": 155, "character": 4 } ], "type": { - "type": "reference", - "id": 2085, - "name": "FrameParams" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.frameParams" + "type": "intrinsic", + "name": "string" } }, { - "id": 1266, - "name": "hiddenActions", + "id": 2194, + "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" - }, - { - "tag": "important", - "text": "\n" - } - ] + "shortText": "Backgroud color of the primary buttons when active." }, "sources": [ { - "fileName": "types.ts", - "line": 740, + "fileName": "css-variables.ts", + "line": 182, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1635, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1287, - "name": "hiddenHomeLeftNavItems", + "id": 2191, + "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." - }, - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" - } - ] + "shortText": "Font family specification for the text on primary buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 997, + "fileName": "css-variables.ts", + "line": 166, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2091, - "name": "HomeLeftNavItem" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenHomeLeftNavItems" + "type": "intrinsic", + "name": "string" } }, { - "id": 1284, - "name": "hiddenHomepageModules", + "id": 2193, + "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" - } - ] + "shortText": "Background color of the primary buttons on hover." }, "sources": [ { - "fileName": "types.ts", - "line": 944, + "fileName": "css-variables.ts", + "line": 177, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2099, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenHomepageModules" + "type": "intrinsic", + "name": "string" } }, { - "id": 1283, - "name": "hiddenTabs", + "id": 2192, + "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" - } - ] + "shortText": "Background color of the primary buttons. For example, the primary buttons such as\nPin* and *Save*." }, "sources": [ { - "fileName": "types.ts", - "line": 927, + "fileName": "css-variables.ts", + "line": 172, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenTabs" + "type": "intrinsic", + "name": "string" } }, { - "id": 1259, - "name": "hideSampleQuestions", + "id": 2190, + "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "hideSampleQuestions : Hide sample questions on\nthe initial screen of the conversation.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n hideSampleQuestions : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" - } - ] + "shortText": "Font color of the text on primary buttons. For example, the primary buttons on\nLiveboard*, Answer, *Data* workspace, *SpotIQ*, or *Home* page." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 94, + "fileName": "css-variables.ts", + "line": 161, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1256, - "name": "hideSourceSelection", + "id": 2199, + "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "hideSourceSelection : Hide data source selection", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n hideSourceSelection : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" - } - ] + "shortText": "Backgroud color of the secondary buttons when active." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 54, + "fileName": "css-variables.ts", + "line": 207, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1277, - "name": "insertAsSibling", + "id": 2196, + "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" - } - ] + "shortText": "Font family specification for the text on the secondary buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 861, + "fileName": "css-variables.ts", + "line": 192, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.insertAsSibling" + "name": "string" } }, { - "id": 1279, - "name": "linkOverride", + "id": 2198, + "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" - } - ] + "shortText": "Background color of the secondary button on hover." }, "sources": [ { - "fileName": "types.ts", - "line": 885, + "fileName": "css-variables.ts", + "line": 202, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.linkOverride" + "name": "string" } }, { - "id": 1271, - "name": "locale", + "id": 2197, + "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The locale settings to apply to the embedded view.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" - } - ] + "shortText": "Background color of the secondary buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 820, + "fileName": "css-variables.ts", + "line": 197, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.locale" } }, { - "id": 1296, - "name": "overrideOrgId", + "id": 2195, + "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" - } - ] + "shortText": "Font color of the text on the secondary buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 1128, + "fileName": "css-variables.ts", + "line": 187, "character": 4 } ], "type": { "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.overrideOrgId" + "name": "string" } }, { - "id": 1288, - "name": "preRenderId", + "id": 2203, + "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" - }, - { - "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" - } - ] + "shortText": "Backgroud color of the tertiary buttons when active." }, "sources": [ { - "fileName": "types.ts", - "line": 1012, + "fileName": "css-variables.ts", + "line": 228, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.preRenderId" } }, { - "id": 1285, - "name": "reorderedHomepageModules", + "id": 2202, + "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" - } - ] + "shortText": "Background color of the tertiary button when a user hovers over these buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 961, + "fileName": "css-variables.ts", + "line": 223, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2099, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.reorderedHomepageModules" + "type": "intrinsic", + "name": "string" } }, { - "id": 1269, - "name": "runtimeFilters", + "id": 2201, + "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" - } - ] + "shortText": "Background color of the tertiary button." }, "sources": [ { - "fileName": "types.ts", - "line": 790, + "fileName": "css-variables.ts", + "line": 218, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1469, - "name": "RuntimeFilter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.runtimeFilters" + "type": "intrinsic", + "name": "string" } }, { - "id": 1270, - "name": "runtimeParameters", + "id": 2200, + "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" - } - ] + "shortText": "Font color of the tertiary button. For example, the *Undo*, *Redo*, and *Reset*\nbuttons on the *Search* page." }, "sources": [ { - "fileName": "types.ts", - "line": 808, + "fileName": "css-variables.ts", + "line": 213, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2236, - "name": "RuntimeParameter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.runtimeParameters" + "type": "intrinsic", + "name": "string" } }, { - "id": 1254, - "name": "searchOptions", + "id": 2188, + "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Ability to pass a starting search query to the conversation." + "shortText": "Border-radius of main buttons.\nFor example, the *Search data* button in the top navigation panel." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 29, + "fileName": "css-variables.ts", + "line": 149, "character": 4 } ], "type": { - "type": "reference", - "name": "SearchOptions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1268, - "name": "showAlerts", + "id": 2250, + "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" - } - ] + "shortText": "Border and font color of checkbox in active state." }, "sources": [ { - "fileName": "types.ts", - "line": 771, + "fileName": "css-variables.ts", + "line": 462, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.showAlerts" + "name": "string" } }, { - "id": 1258, - "name": "showSpotterLimitations", + "id": 2253, + "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "showSpotterLimitations : show limitation text\nof the spotter underneath the chat input.\ndefault is false.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n showSpotterLimitations : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | Thoughtspot: 10.5.0.cl\n" - } - ] + "shortText": "Background color of checkbox." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 81, + "fileName": "css-variables.ts", + "line": 474, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1267, - "name": "visibleActions", + "id": 2248, + "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" - } - ] + "shortText": "Border color of checkbox." }, "sources": [ { - "fileName": "types.ts", - "line": 758, + "fileName": "css-variables.ts", + "line": 454, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1635, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.visibleActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1286, - "name": "visibleTabs", + "id": 2251, + "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", - "text": "Use either `visibleTabs` or `hiddenTabs`.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" - } - ] + "shortText": "Border color and font color of checkbox in checked state." }, "sources": [ { - "fileName": "types.ts", - "line": 979, + "fileName": "css-variables.ts", + "line": 466, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.visibleTabs" + "type": "intrinsic", + "name": "string" } }, { - "id": 1253, - "name": "worksheetId", + "id": 2252, + "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The ID of the worksheet to use for the conversation." + "shortText": "Border and font color of checkbox in disabled state." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 25, + "fileName": "css-variables.ts", + "line": 470, "character": 4 } ], @@ -23746,418 +23812,137 @@ "type": "intrinsic", "name": "string" } - } - ], - "groups": [ + }, { - "title": "Properties", + "id": 2247, + "name": "--ts-var-checkbox-error-border", "kind": 1024, - "children": [ - 1272, - 1293, - 1278, - 1276, - 1257, - 1294, - 1255, - 1265, - 1264, - 1289, - 1295, - 1292, - 1282, - 1291, - 1261, - 1266, - 1287, - 1284, - 1283, - 1259, - 1256, - 1277, - 1279, - 1271, - 1296, - 1288, - 1285, - 1269, - 1270, - 1254, - 1268, - 1258, - 1267, - 1286, - 1253 - ] - } - ], - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 21, - "character": 17 - } - ], - "extendedTypes": [ + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Border color of checkbox in error state." + }, + "sources": [ + { + "fileName": "css-variables.ts", + "line": 450, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, { - "type": "reference", - "name": "ViewConfig" - } - ] - }, - { - "id": 2269, - "name": "CustomActionPayload", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "tags": [ - { - "tag": "group", - "text": "Events\n" + "id": 2249, + "name": "--ts-var-checkbox-hover-border", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Border color of checkbox in hover state." + }, + "sources": [ + { + "fileName": "css-variables.ts", + "line": 458, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" } - ] - }, - "children": [ + }, { - "id": 2270, - "name": "contextMenuPoints", + "id": 2220, + "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Background color of the filter chips when selected." + }, "sources": [ { - "fileName": "types.ts", - "line": 4835, + "fileName": "css-variables.ts", + "line": 316, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 2271, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2272, - "name": "clickedPoint", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4836, - "character": 8 - } - ], - "type": { - "type": "reference", - "id": 2266, - "name": "VizPoint" - } - }, - { - "id": 2273, - "name": "selectedPoints", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4837, - "character": 8 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2266, - "name": "VizPoint" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2272, - 2273 - ] - } - ] - } + "type": "intrinsic", + "name": "string" } }, { - "id": 2274, - "name": "embedAnswerData", + "id": 2219, + "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Font color of the filter label when a filter chip is selected" + }, "sources": [ { - "fileName": "types.ts", - "line": 4839, + "fileName": "css-variables.ts", + "line": 311, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 2275, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2283, - "name": "columns", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4847, - "character": 8 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - }, - { - "id": 2284, - "name": "data", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4848, - "character": 8 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - }, - { - "id": 2277, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4841, - "character": 8 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2276, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4840, - "character": 8 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2278, - "name": "sources", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4842, - "character": 8 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2279, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2280, - "name": "header", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4843, - "character": 12 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2281, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2282, - "name": "guid", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4844, - "character": 16 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2282 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2280 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2283, - 2284, - 2277, - 2276, - 2278 - ] - } - ], - "indexSignature": { - "id": 2285, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 2286, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - } + "type": "intrinsic", + "name": "string" } }, { - "id": 2287, - "name": "session", + "id": 2222, + "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Background color of filter chips on hover." + }, "sources": [ { - "fileName": "types.ts", - "line": 4851, + "fileName": "css-variables.ts", + "line": 326, "character": 4 } ], "type": { - "type": "reference", - "id": 1438, - "name": "SessionInterface" + "type": "intrinsic", + "name": "string" } }, { - "id": 2288, - "name": "vizId", + "id": 2221, + "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Font color of the text on filter chips when hovered over." + }, "sources": [ { - "fileName": "types.ts", - "line": 4852, + "fileName": "css-variables.ts", + "line": 321, "character": 4 } ], @@ -24165,53 +23950,22 @@ "type": "intrinsic", "name": "string" } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2270, - 2274, - 2287, - 2288 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 4834, - "character": 17 - } - ] - }, - { - "id": 2143, - "name": "CustomCssVariables", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The list of customization css variables. These\nare the only allowed variables possible." - }, - "children": [ + }, { - "id": 2197, - "name": "--ts-var-answer-chart-hover-background", + "id": 2218, + "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the chart type element when a user hovers over a chart type on\nthe chart selection widget." + "shortText": "Background color of filter chips." }, "sources": [ { "fileName": "css-variables.ts", - "line": 291, + "line": 306, "character": 4 } ], @@ -24221,20 +23975,20 @@ } }, { - "id": 2196, - "name": "--ts-var-answer-chart-select-background", + "id": 2216, + "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the selected chart type on the chart selection widget." + "shortText": "Border-radius of filter chips." }, "sources": [ { "fileName": "css-variables.ts", - "line": 285, + "line": 296, "character": 4 } ], @@ -24244,20 +23998,20 @@ } }, { - "id": 2166, - "name": "--ts-var-answer-data-panel-background-color", + "id": 2217, + "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the data panel." + "shortText": "Shadow effect for filter chips." }, "sources": [ { "fileName": "css-variables.ts", - "line": 127, + "line": 301, "character": 4 } ], @@ -24267,20 +24021,20 @@ } }, { - "id": 2167, - "name": "--ts-var-answer-edit-panel-background-color", + "id": 2223, + "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the vertical panel on the right side of the Answer page, which\nincludes the options to edit charts and tables." + "shortText": "Font color of the text on filter chips." }, "sources": [ { "fileName": "css-variables.ts", - "line": 133, + "line": 331, "character": 4 } ], @@ -24290,20 +24044,20 @@ } }, { - "id": 2169, - "name": "--ts-var-answer-view-table-chart-switcher-active-background", + "id": 2224, + "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the currently selected chart type in the chart switcher." + "shortText": "Font family specification for the text on filter chips." }, "sources": [ { "fileName": "css-variables.ts", - "line": 143, + "line": 336, "character": 4 } ], @@ -24313,20 +24067,20 @@ } }, { - "id": 2168, - "name": "--ts-var-answer-view-table-chart-switcher-background", + "id": 2235, + "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the chart switcher on search results and Answer pages." + "shortText": "Background color of the dialogs." }, "sources": [ { "fileName": "css-variables.ts", - "line": 138, + "line": 391, "character": 4 } ], @@ -24336,20 +24090,20 @@ } }, { - "id": 2148, - "name": "--ts-var-application-color", + "id": 2236, + "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on toggle buttons such as\n**All**, **Answers**, and **Liveboards** on the Home page (Classic experience),\nthe text color of the chart and table tiles on Home page (New modular Homepage\nexperience), and title text on the AI-generated charts and tables.\nThe default color code is #2770EF." + "shortText": "Font color of the body text displayed on dialogs." }, "sources": [ { "fileName": "css-variables.ts", - "line": 34, + "line": 396, "character": 4 } ], @@ -24359,20 +24113,20 @@ } }, { - "id": 2209, - "name": "--ts-var-axis-data-label-color", + "id": 2239, + "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the X and Y axis labels." + "shortText": "Background color of the footer area on dialogs." }, "sources": [ { "fileName": "css-variables.ts", - "line": 351, + "line": 411, "character": 4 } ], @@ -24382,20 +24136,20 @@ } }, { - "id": 2210, - "name": "--ts-var-axis-data-label-font-family", + "id": 2237, + "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for X and Y axis labels." + "shortText": "Background color of the header text on dialogs." }, "sources": [ { "fileName": "css-variables.ts", - "line": 356, + "line": 401, "character": 4 } ], @@ -24405,20 +24159,20 @@ } }, { - "id": 2207, - "name": "--ts-var-axis-title-color", + "id": 2238, + "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of axis title on charts." + "shortText": "Font color of the header text on dialogs." }, "sources": [ { "fileName": "css-variables.ts", - "line": 341, + "line": 406, "character": 4 } ], @@ -24428,20 +24182,20 @@ } }, { - "id": 2208, - "name": "--ts-var-axis-title-font-family", + "id": 2246, + "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the X and Y axis title text." + "shortText": "Background for favorite carousel find your favorites card in modular home." }, "sources": [ { "fileName": "css-variables.ts", - "line": 346, + "line": 446, "character": 4 } ], @@ -24451,20 +24205,20 @@ } }, { - "id": 2171, - "name": "--ts-var-button--icon-border-radius", + "id": 2245, + "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border-radius of small buttons such as secondary buttons.\nFor example, share and favorite buttons." + "shortText": "Icon color for favorite carousel find your favorites card in modular home." }, "sources": [ { "fileName": "css-variables.ts", - "line": 155, + "line": 441, "character": 4 } ], @@ -24474,20 +24228,20 @@ } }, { - "id": 2176, - "name": "--ts-var-button--primary--active-background", + "id": 2244, + "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Backgroud color of the primary buttons when active." + "shortText": "Text color for favorite carousel find your favorites card in modular home." }, "sources": [ { "fileName": "css-variables.ts", - "line": 182, + "line": 436, "character": 4 } ], @@ -24497,20 +24251,20 @@ } }, { - "id": 2173, - "name": "--ts-var-button--primary--font-family", + "id": 2243, + "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the text on primary buttons." + "shortText": "Text color for slected item in modular home's watchlist." }, "sources": [ { "fileName": "css-variables.ts", - "line": 166, + "line": 431, "character": 4 } ], @@ -24520,20 +24274,20 @@ } }, { - "id": 2175, - "name": "--ts-var-button--primary--hover-background", + "id": 2241, + "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the primary buttons on hover." + "shortText": "Background for hover state in list" }, "sources": [ { "fileName": "css-variables.ts", - "line": 177, + "line": 421, "character": 4 } ], @@ -24543,20 +24297,20 @@ } }, { - "id": 2174, - "name": "--ts-var-button--primary-background", + "id": 2240, + "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the primary buttons. For example, the primary buttons such as\nPin* and *Save*." + "shortText": "Background for selected state in list" }, "sources": [ { "fileName": "css-variables.ts", - "line": 172, + "line": 416, "character": 4 } ], @@ -24566,20 +24320,20 @@ } }, { - "id": 2172, - "name": "--ts-var-button--primary-color", + "id": 2233, + "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on primary buttons. For example, the primary buttons on\nLiveboard*, Answer, *Data* workspace, *SpotIQ*, or *Home* page." + "shortText": "Background color for menu items on hover." }, "sources": [ { "fileName": "css-variables.ts", - "line": 161, + "line": 381, "character": 4 } ], @@ -24589,20 +24343,20 @@ } }, { - "id": 2181, - "name": "--ts-var-button--secondary--active-background", + "id": 2230, + "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Backgroud color of the secondary buttons when active." + "shortText": "Background color of menu panels." }, "sources": [ { "fileName": "css-variables.ts", - "line": 207, + "line": 366, "character": 4 } ], @@ -24612,20 +24366,20 @@ } }, { - "id": 2178, - "name": "--ts-var-button--secondary--font-family", + "id": 2229, + "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the text on the secondary buttons." + "shortText": "Font color of the menu items." }, "sources": [ { "fileName": "css-variables.ts", - "line": 192, + "line": 361, "character": 4 } ], @@ -24635,20 +24389,20 @@ } }, { - "id": 2180, - "name": "--ts-var-button--secondary--hover-background", + "id": 2231, + "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the secondary button on hover." + "shortText": "Font family specification for the menu items." }, "sources": [ { "fileName": "css-variables.ts", - "line": 202, + "line": 371, "character": 4 } ], @@ -24658,20 +24412,20 @@ } }, { - "id": 2179, - "name": "--ts-var-button--secondary-background", + "id": 2234, + "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the secondary buttons." + "shortText": "Text color for selected menu items." }, "sources": [ { "fileName": "css-variables.ts", - "line": 197, + "line": 386, "character": 4 } ], @@ -24681,20 +24435,20 @@ } }, { - "id": 2177, - "name": "--ts-var-button--secondary-color", + "id": 2232, + "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on the secondary buttons." + "shortText": "Text capitalization specification for the menu items." }, "sources": [ { "fileName": "css-variables.ts", - "line": 187, + "line": 376, "character": 4 } ], @@ -24704,20 +24458,20 @@ } }, { - "id": 2185, - "name": "--ts-var-button--tertiary--active-background", + "id": 2167, + "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Backgroud color of the tertiary buttons when active." + "shortText": "Background color of the top navigation panel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 228, + "line": 39, "character": 4 } ], @@ -24727,20 +24481,20 @@ } }, { - "id": 2184, - "name": "--ts-var-button--tertiary--hover-background", + "id": 2168, + "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the tertiary button when a user hovers over these buttons." + "shortText": "Font color of the top navigation panel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 223, + "line": 44, "character": 4 } ], @@ -24750,20 +24504,20 @@ } }, { - "id": 2183, - "name": "--ts-var-button--tertiary-background", + "id": 2162, + "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the tertiary button." + "shortText": "Background color of the Liveboard, visualization, Search, and Answer pages." }, "sources": [ { "fileName": "css-variables.ts", - "line": 218, + "line": 9, "character": 4 } ], @@ -24773,20 +24527,20 @@ } }, { - "id": 2182, - "name": "--ts-var-button--tertiary-color", + "id": 2163, + "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the tertiary button. For example, the *Undo*, *Redo*, and *Reset*\nbuttons on the *Search* page." + "shortText": "Color of the text on application pages." }, "sources": [ { "fileName": "css-variables.ts", - "line": 213, + "line": 14, "character": 4 } ], @@ -24796,20 +24550,20 @@ } }, { - "id": 2170, - "name": "--ts-var-button-border-radius", + "id": 2164, + "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border-radius of main buttons.\nFor example, the *Search data* button in the top navigation panel." + "shortText": "Font type for the text on application pages." }, "sources": [ { "fileName": "css-variables.ts", - "line": 149, + "line": 19, "character": 4 } ], @@ -24819,20 +24573,20 @@ } }, { - "id": 2232, - "name": "--ts-var-checkbox-active-color", + "id": 2165, + "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border and font color of checkbox in active state." + "shortText": "Text transformation specification for UI elements in the app." }, "sources": [ { "fileName": "css-variables.ts", - "line": 462, + "line": 24, "character": 4 } ], @@ -24842,20 +24596,20 @@ } }, { - "id": 2235, - "name": "--ts-var-checkbox-background-color", + "id": 2176, + "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of checkbox." + "shortText": "Background color of the search suggestions panel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 474, + "line": 84, "character": 4 } ], @@ -24865,20 +24619,20 @@ } }, { - "id": 2230, - "name": "--ts-var-checkbox-border-color", + "id": 2180, + "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border color of checkbox." + "shortText": "Font color of the text in the search suggestion panel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 454, + "line": 106, "character": 4 } ], @@ -24888,20 +24642,20 @@ } }, { - "id": 2233, - "name": "--ts-var-checkbox-checked-color", + "id": 2181, + "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border color and font color of checkbox in checked state." + "shortText": "Font color of the sub-text that appears below the keyword in the search suggestion\npanel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 466, + "line": 112, "character": 4 } ], @@ -24911,20 +24665,20 @@ } }, { - "id": 2234, - "name": "--ts-var-checkbox-checked-disabled", + "id": 2179, + "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border and font color of checkbox in disabled state." + "shortText": "Background color of the search suggestion block on hover." }, "sources": [ { "fileName": "css-variables.ts", - "line": 470, + "line": 101, "character": 4 } ], @@ -24934,20 +24688,20 @@ } }, { - "id": 2229, - "name": "--ts-var-checkbox-error-border", + "id": 2175, + "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border color of checkbox in error state." + "shortText": "Background color of the search bar." }, "sources": [ { "fileName": "css-variables.ts", - "line": 450, + "line": 79, "character": 4 } ], @@ -24957,20 +24711,20 @@ } }, { - "id": 2231, - "name": "--ts-var-checkbox-hover-border", + "id": 2178, + "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border color of checkbox in hover state." + "shortText": "Background color of the navigation help text that appears at the bottom of the\nsearch suggestions panel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 458, + "line": 96, "character": 4 } ], @@ -24980,20 +24734,20 @@ } }, { - "id": 2202, - "name": "--ts-var-chip--active-background", + "id": 2172, + "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the filter chips when selected." + "shortText": "Font color of the text in the Search bar." }, "sources": [ { "fileName": "css-variables.ts", - "line": 316, + "line": 64, "character": 4 } ], @@ -25003,20 +24757,20 @@ } }, { - "id": 2201, - "name": "--ts-var-chip--active-color", + "id": 2173, + "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the filter label when a filter chip is selected" + "shortText": "Font of the text in the Search bar." }, "sources": [ { "fileName": "css-variables.ts", - "line": 311, + "line": 69, "character": 4 } ], @@ -25026,20 +24780,20 @@ } }, { - "id": 2204, - "name": "--ts-var-chip--hover-background", + "id": 2174, + "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of filter chips on hover." + "shortText": "Font style of the text in the Search bar." }, "sources": [ { "fileName": "css-variables.ts", - "line": 326, + "line": 74, "character": 4 } ], @@ -25049,20 +24803,20 @@ } }, { - "id": 2203, - "name": "--ts-var-chip--hover-color", + "id": 2169, + "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on filter chips when hovered over." + "shortText": "Background color of the *Search data* button." }, "sources": [ { "fileName": "css-variables.ts", - "line": 321, + "line": 49, "character": 4 } ], @@ -25072,20 +24826,20 @@ } }, { - "id": 2200, - "name": "--ts-var-chip-background", + "id": 2170, + "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of filter chips." + "shortText": "Color of the text on the *Search data* button." }, "sources": [ { "fileName": "css-variables.ts", - "line": 306, + "line": 54, "character": 4 } ], @@ -25095,20 +24849,20 @@ } }, { - "id": 2198, - "name": "--ts-var-chip-border-radius", + "id": 2171, + "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border-radius of filter chips." + "shortText": "Font of the text on the *Search data* button." }, "sources": [ { "fileName": "css-variables.ts", - "line": 296, + "line": 59, "character": 4 } ], @@ -25118,20 +24872,20 @@ } }, { - "id": 2199, - "name": "--ts-var-chip-box-shadow", + "id": 2177, + "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Shadow effect for filter chips." + "shortText": "Background color of the navigation panel that allows you to undo, redo, and reset\nsearch operations." }, "sources": [ { "fileName": "css-variables.ts", - "line": 301, + "line": 90, "character": 4 } ], @@ -25141,20 +24895,20 @@ } }, { - "id": 2205, - "name": "--ts-var-chip-color", + "id": 2242, + "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on filter chips." + "shortText": "Background for hover state in segment control." }, "sources": [ { "fileName": "css-variables.ts", - "line": 331, + "line": 426, "character": 4 } ], @@ -25164,20 +24918,20 @@ } }, { - "id": 2206, - "name": "--ts-var-chip-title-font-family", + "id": 2182, + "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the text on filter chips." + "shortText": "Background color of the input box in the Spotter page." }, "sources": [ { "fileName": "css-variables.ts", - "line": 336, + "line": 117, "character": 4 } ], @@ -25187,20 +24941,20 @@ } }, { - "id": 2217, - "name": "--ts-var-dialog-body-background", + "id": 2183, + "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the dialogs." + "shortText": "Background color of the previously asked prompt message in the Spotter page." }, "sources": [ { "fileName": "css-variables.ts", - "line": 391, + "line": 122, "character": 4 } ], @@ -25210,20 +24964,20 @@ } }, { - "id": 2218, - "name": "--ts-var-dialog-body-color", + "id": 2212, + "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the body text displayed on dialogs." + "shortText": "Background color of the visualization tiles and header panel on a Liveboard." }, "sources": [ { "fileName": "css-variables.ts", - "line": 396, + "line": 275, "character": 4 } ], @@ -25233,20 +24987,20 @@ } }, { - "id": 2221, - "name": "--ts-var-dialog-footer-background", + "id": 2210, + "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the footer area on dialogs." + "shortText": "Border-radius for the visualization tiles and header panel on a Liveboard." }, "sources": [ { "fileName": "css-variables.ts", - "line": 411, + "line": 265, "character": 4 } ], @@ -25256,20 +25010,20 @@ } }, { - "id": 2219, - "name": "--ts-var-dialog-header-background", + "id": 2211, + "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the header text on dialogs." + "shortText": "Box shadow property for the visualization tiles and header panel on a Liveboard." }, "sources": [ { "fileName": "css-variables.ts", - "line": 401, + "line": 270, "character": 4 } ], @@ -25279,20 +25033,20 @@ } }, { - "id": 2220, - "name": "--ts-var-dialog-header-color", + "id": 2207, + "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the header text on dialogs." + "shortText": "Font color of the description text and subtitle of a visualization or Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 406, + "line": 248, "character": 4 } ], @@ -25302,20 +25056,20 @@ } }, { - "id": 2228, - "name": "--ts-var-home-favorite-suggestion-card-background", + "id": 2208, + "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background for favorite carousel find your favorites card in modular home." + "shortText": "Font family specification of description text and subtitle of a visualization or\nAnswer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 446, + "line": 254, "character": 4 } ], @@ -25325,20 +25079,20 @@ } }, { - "id": 2227, - "name": "--ts-var-home-favorite-suggestion-card-icon-color", + "id": 2209, + "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Icon color for favorite carousel find your favorites card in modular home." + "shortText": "Text transformation specification for description text and subtitle of a\nvisualization or Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 441, + "line": 260, "character": 4 } ], @@ -25348,20 +25102,20 @@ } }, { - "id": 2226, - "name": "--ts-var-home-favorite-suggestion-card-text-color", + "id": 2213, + "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text color for favorite carousel find your favorites card in modular home." + "shortText": "Background color of the legend on a visualization or Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 436, + "line": 280, "character": 4 } ], @@ -25371,20 +25125,20 @@ } }, { - "id": 2225, - "name": "--ts-var-home-watchlist-selected-text-color", + "id": 2204, + "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text color for slected item in modular home's watchlist." + "shortText": "Font color of the title text of a visualization or Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 431, + "line": 233, "character": 4 } ], @@ -25394,20 +25148,20 @@ } }, { - "id": 2223, - "name": "--ts-var-list-hover-background", + "id": 2205, + "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background for hover state in list" + "shortText": "Font family specification for the title text of a visualization/Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 421, + "line": 238, "character": 4 } ], @@ -25417,20 +25171,20 @@ } }, { - "id": 2222, - "name": "--ts-var-list-selected-background", + "id": 2206, + "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background for selected state in list" + "shortText": "Text transformation specification for visualization and Answer titles." }, "sources": [ { "fileName": "css-variables.ts", - "line": 416, + "line": 243, "character": 4 } ], @@ -25438,45 +25192,159 @@ "type": "intrinsic", "name": "string" } - }, + } + ], + "groups": [ { - "id": 2215, - "name": "--ts-var-menu--hover-background", + "title": "Properties", + "kind": 1024, + "children": [ + 2215, + 2214, + 2184, + 2185, + 2187, + 2186, + 2166, + 2227, + 2228, + 2225, + 2226, + 2189, + 2194, + 2191, + 2193, + 2192, + 2190, + 2199, + 2196, + 2198, + 2197, + 2195, + 2203, + 2202, + 2201, + 2200, + 2188, + 2250, + 2253, + 2248, + 2251, + 2252, + 2247, + 2249, + 2220, + 2219, + 2222, + 2221, + 2218, + 2216, + 2217, + 2223, + 2224, + 2235, + 2236, + 2239, + 2237, + 2238, + 2246, + 2245, + 2244, + 2243, + 2241, + 2240, + 2233, + 2230, + 2229, + 2231, + 2234, + 2232, + 2167, + 2168, + 2162, + 2163, + 2164, + 2165, + 2176, + 2180, + 2181, + 2179, + 2175, + 2178, + 2172, + 2173, + 2174, + 2169, + 2170, + 2171, + 2177, + 2242, + 2182, + 2183, + 2212, + 2210, + 2211, + 2207, + 2208, + 2209, + 2213, + 2204, + 2205, + 2206 + ] + } + ], + "sources": [ + { + "fileName": "css-variables.ts", + "line": 5, + "character": 17 + } + ] + }, + { + "id": 2149, + "name": "CustomStyles", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Styles within the {@link CustomisationsInterface}." + }, + "children": [ + { + "id": 2151, + "name": "customCSS", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Background color for menu items on hover." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 381, + "fileName": "types.ts", + "line": 259, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2152, + "name": "customCssInterface" } }, { - "id": 2212, - "name": "--ts-var-menu-background", + "id": 2150, + "name": "customCSSUrl", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Background color of menu panels." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 366, + "fileName": "types.ts", + "line": 258, "character": 4 } ], @@ -25484,45 +25352,204 @@ "type": "intrinsic", "name": "string" } - }, + } + ], + "groups": [ { - "id": 2211, - "name": "--ts-var-menu-color", + "title": "Properties", + "kind": 1024, + "children": [ + 2151, + 2150 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 257, + "character": 17 + } + ] + }, + { + "id": 2139, + "name": "CustomisationsInterface", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Configuration to define the customization on the Embedded\nThoughtSpot components.\nYou can customize styles, text strings, and icons.\nFor more information, see https://developers.thoughtspot.com/docs/custom-css.", + "tags": [ + { + "tag": "example", + "text": "\n```js\n init({\n // ...\n customizations: {\n style: {\n customCSS: {\n variables: {},\n rules_UNSTABLE: {}\n }\n },\n content: {\n strings: {\n 'LIVEBOARDS': 'Dashboards',\n 'ANSWERS': 'Visualizations',\n 'Edit': 'Modify',\n 'Show underlying data': 'Show source data',\n 'SpotIQ': 'Insights',\n 'Monitor': 'Alerts',\n }\n },\n iconSpriteUrl: 'https://my-custom-icon-sprite.svg'\n }\n })\n```\n" + } + ] + }, + "children": [ + { + "id": 2141, + "name": "content", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Font color of the menu items." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 361, + "fileName": "types.ts", + "line": 295, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 2142, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2144, + "name": "stringIDs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "types.ts", + "line": 300, + "character": 8 + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "Record" + } + }, + { + "id": 2145, + "name": "stringIDsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "types.ts", + "line": 301, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2143, + "name": "strings", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | 9.7.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 299, + "character": 8 + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2144, + 2145, + 2143 + ] + } + ], + "indexSignature": { + "id": 2146, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 2147, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + } } }, { - "id": 2213, - "name": "--ts-var-menu-font-family", + "id": 2148, + "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Font family specification for the menu items." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 371, + "fileName": "types.ts", + "line": 304, "character": 4 } ], @@ -25532,66 +25559,152 @@ } }, { - "id": 2216, - "name": "--ts-var-menu-selected-text-color", + "id": 2140, + "name": "style", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Text color for selected menu items." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 386, + "fileName": "types.ts", + "line": 294, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2149, + "name": "CustomStyles" } - }, + } + ], + "groups": [ { - "id": 2214, - "name": "--ts-var-menu-text-transform", + "title": "Properties", + "kind": 1024, + "children": [ + 2141, + 2148, + 2140 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 293, + "character": 17 + } + ] + }, + { + "id": 1775, + "name": "EmbedConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The configuration object for embedding ThoughtSpot content.\nIt includes the ThoughtSpot hostname or IP address,\nthe type of authentication, and the authentication endpoint\nif a trusted authentication server is used.", + "tags": [ + { + "tag": "group", + "text": "Authentication / Init\n" + } + ] + }, + "children": [ + { + "id": 1817, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text capitalization specification for the menu items." + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.33.5 | ThoughtSpot: *\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 376, + "fileName": "types.ts", + "line": 617, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 1818, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1819, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1820, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } } }, { - "id": 2149, - "name": "--ts-var-nav-background", + "id": 1778, + "name": "authEndpoint", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the top navigation panel." + "shortText": "[AuthServer] The trusted authentication endpoint to use to get the\nauthentication token. A `GET` request is made to the\nauthentication API endpoint, which returns the token\nas a plaintext response. For trusted authentication,\nthe `authEndpoint` or `getAuthToken` attribute is required." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 39, + "fileName": "types.ts", + "line": 330, "character": 4 } ], @@ -25601,43 +25714,68 @@ } }, { - "id": 2150, - "name": "--ts-var-nav-color", + "id": 1799, + "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the top navigation panel." + "shortText": "For `inPopup` SAMLRedirect or OIDCRedirect authentication, we need a\nbutton that the user can click to trigger the flow.\nThis attribute sets a containing element for that button.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ninit({\n authType: AuthType.SAMLRedirect,\n inPopup: true,\n authTriggerContainer: '#auth-trigger-container'\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 44, + "fileName": "types.ts", + "line": 493, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "name": "HTMLElement" + } + ] } }, { - "id": 2144, - "name": "--ts-var-root-background", + "id": 1801, + "name": "authTriggerText", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the Liveboard, visualization, Search, and Answer pages." + "shortText": "Text to show in the button which triggers the popup auth flow.\nDefault: `Authorize`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 9, + "fileName": "types.ts", + "line": 506, "character": 4 } ], @@ -25647,112 +25785,139 @@ } }, { - "id": 2145, - "name": "--ts-var-root-color", + "id": 1777, + "name": "authType", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "Color of the text on application pages." + "shortText": "The authentication mechanism to use." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 14, + "fileName": "types.ts", + "line": 322, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 1463, + "name": "AuthType" } }, { - "id": 2146, - "name": "--ts-var-root-font-family", + "id": 1790, + "name": "autoLogin", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font type for the text on application pages." + "shortText": "Re-login a user with the previous login options\nwhen a user session expires.", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 19, + "fileName": "types.ts", + "line": 421, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2147, - "name": "--ts-var-root-text-transform", + "id": 1802, + "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text transformation specification for UI elements in the app." + "shortText": "Prevent users from accessing the full application or ThoughtSpot application pages\naccess to the embedded application users\noutside of the iframe.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.22.0 | ThoughtSpot: 9.3.0.cl, 9.5.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 24, + "fileName": "types.ts", + "line": 514, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2158, - "name": "--ts-var-search-auto-complete-background", + "id": 1793, + "name": "callPrefetch", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the search suggestions panel." + "shortText": "Calls the prefetch method internally when set to `true`", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 84, + "fileName": "types.ts", + "line": 443, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2162, - "name": "--ts-var-search-auto-complete-font-color", + "id": 1814, + "name": "currencyFormat", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text in the search suggestion panel." + "shortText": "Format to be used for currency when currency format is set to infer from browser", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 106, + "fileName": "types.ts", + "line": 576, "character": 4 } ], @@ -25762,66 +25927,99 @@ } }, { - "id": 2163, - "name": "--ts-var-search-auto-complete-subtext-font-color", + "id": 1821, + "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the sub-text that appears below the keyword in the search suggestion\npanel." + "shortText": "This is an object (key/val) for customVariables being\nused by the third party tool's script.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n customVariablesForThirdPartyTools: {\n key1: 'value1',\n key2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK 1.37.0 | ThoughtSpot: 10.8.0.cl\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 112, + "fileName": "types.ts", + "line": 633, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" } }, { - "id": 2161, - "name": "--ts-var-search-bar-auto-complete-hover-background", + "id": 1798, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the search suggestion block on hover." + "shortText": "Custom style params for embed Config.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 101, + "fileName": "types.ts", + "line": 478, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2139, + "name": "CustomisationsInterface" } }, { - "id": 2157, - "name": "--ts-var-search-bar-background", + "id": 1812, + "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the search bar." + "shortText": "Overrides default/user preferred locale for date formatting", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 79, + "fileName": "types.ts", + "line": 566, "character": 4 } ], @@ -25831,204 +26029,268 @@ } }, { - "id": 2160, - "name": "--ts-var-search-bar-navigation-help-text-background", + "id": 1795, + "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the navigation help text that appears at the bottom of the\nsearch suggestions panel." + "shortText": "[AuthServer|Basic] Detect if third-party party cookies are enabled by doing an\nadditional call. This is slower and should be avoided. Listen to the\n`NO_COOKIE_ACCESS` event to handle the situation.", + "text": "This is slightly slower than letting the browser handle the cookie check, as it\ninvolves an extra network call.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.10.4 | ThoughtSpot: 8.2.0.cl, 8.4.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 96, + "fileName": "types.ts", + "line": 463, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2154, - "name": "--ts-var-search-bar-text-font-color", + "id": 1816, + "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text in the Search bar." + "shortText": "This flag is used to disable showing the login failure page in the embedded app.", + "tags": [ + { + "tag": "version", + "text": "SDK 1.32.3 | ThoughtSpot: 10.1.0.cl, 10.1.0.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 64, + "fileName": "types.ts", + "line": 597, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2155, - "name": "--ts-var-search-bar-text-font-family", + "id": 1791, + "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font of the text in the Search bar." + "shortText": "Disable redirection to the login page when the embedded session expires\nThis flag is typically used alongside the combination of authentication modes such\nas {@link AuthType.AuthServer} and auto-login behavior {@link\nEmbedConfig.autoLogin}", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.3 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 69, + "fileName": "types.ts", + "line": 431, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2156, - "name": "--ts-var-search-bar-text-font-style", + "id": 1822, + "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Font style of the text in the Search bar." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 74, + "fileName": "types.ts", + "line": 635, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2151, - "name": "--ts-var-search-data-button-background", + "id": 1811, + "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the *Search data* button." + "shortText": "Disables the Mixpanel tracking from the SDK.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.27.9\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 49, + "fileName": "types.ts", + "line": 561, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2152, - "name": "--ts-var-search-data-button-font-color", + "id": 1789, + "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Color of the text on the *Search data* button." + "shortText": "Ignore the cookie access alert when third-party cookies are blocked by the\nuser's browser. If you set this to `true`, the embedded iframe behaviour\npersists even in the case of a non-logged-in user.", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 54, + "fileName": "types.ts", + "line": 414, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2153, - "name": "--ts-var-search-data-button-font-family", + "id": 1784, + "name": "inPopup", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font of the text on the *Search data* button." + "shortText": "[SSO] For SSO Authentication, if `inPopup` is set to true, it will open\nthe SAML auth flow in a popup, instead of redirecting the browser in place.", + "text": "Need to use this with `authTriggerContainer`. Or manually trigger\nthe `AuthEvent.TRIGGER_SSO_POPUP` event on a user interaction.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.18.0\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 59, + "fileName": "types.ts", + "line": 375, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2159, - "name": "--ts-var-search-navigation-button-background", + "id": 1810, + "name": "logLevel", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the navigation panel that allows you to undo, redo, and reset\nsearch operations." + "shortText": "Suppress or show specific types of logs in the console output.\nFor example, `LogLevel.ERROR` shows only Visual Embed SDK and\nThoughtSpot application errors and suppresses\nother logs such as warnings, information alerts,\nand debug messages in the console output.", + "tags": [ + { + "tag": "default", + "text": "LogLevel.ERROR" + }, + { + "tag": "example", + "text": "\n```js\ninit({\n ...embedConfig,\n logLevel: LogLevel.SILENT\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.7 | ThoughtSpot: 9.10.0.cl\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 90, + "fileName": "types.ts", + "line": 556, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2257, + "name": "LogLevel" } }, { - "id": 2224, - "name": "--ts-var-segment-control-hover-background", + "id": 1792, + "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background for hover state in segment control." + "shortText": "This message is displayed in the embedded view when a user login fails.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.10.1 | ThoughtSpot: 8.2.0.cl, 8.4.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 426, + "fileName": "types.ts", + "line": 437, "character": 4 } ], @@ -26038,43 +26300,59 @@ } }, { - "id": 2164, - "name": "--ts-var-spotter-input-background", + "id": 1783, + "name": "noRedirect", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the input box in the Spotter page." + "shortText": "[SSO] For SSO Authentication, if `noRedirect` is set to true, it will\nopen the SAML auth flow in a popup, instead of redirecting the browser in\nplace.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "deprecated", + "text": "\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 117, + "fileName": "types.ts", + "line": 364, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2165, - "name": "--ts-var-spotter-prompt-background", + "id": 1813, + "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the previously asked prompt message in the Spotter page." + "shortText": "Overrides default/user preferred locale for number formatting", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 122, + "fileName": "types.ts", + "line": 571, "character": 4 } ], @@ -26084,20 +26362,21 @@ } }, { - "id": 2194, - "name": "--ts-var-viz-background", + "id": 1782, + "name": "password", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the visualization tiles and header panel on a Liveboard." + "shortText": "[Basic] The ThoughtSpot login password corresponding to the username", + "text": "Warning: This feature is primarily intended for developer testing. It is\nstrongly advised not to use this authentication method in production.\n" }, "sources": [ { - "fileName": "css-variables.ts", - "line": 275, + "fileName": "types.ts", + "line": 355, "character": 4 } ], @@ -26107,20 +26386,26 @@ } }, { - "id": 2192, - "name": "--ts-var-viz-border-radius", + "id": 1808, + "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border-radius for the visualization tiles and header panel on a Liveboard." + "shortText": "Pendo API key to enable Pendo tracking to your own subscription, the key\nis added as an additional key to the embed, as per this link:https://support.pendo.io/hc/en-us/articles/360032201951-Send-data-to-multiple-subscriptions[document].", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.27.0 | ThoughtSpot: 9.8.0.cl\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 265, + "fileName": "types.ts", + "line": 531, "character": 4 } ], @@ -26130,43 +26415,60 @@ } }, { - "id": 2193, - "name": "--ts-var-viz-box-shadow", + "id": 1794, + "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Box shadow property for the visualization tiles and header panel on a Liveboard." + "shortText": "When there are multiple objects embedded, queue the rendering of embedded objects\nto start after the previous embed's render is complete. This helps improve\nperformance by decreasing the load on the browser.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1" + }, + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 270, + "fileName": "types.ts", + "line": 452, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2189, - "name": "--ts-var-viz-description-color", + "id": 1785, + "name": "redirectPath", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the description text and subtitle of a visualization or Answer." + "shortText": "[SSO] For SSO Authentication, one can supply an optional path param;\nThis will be the path on the host origin where the SAML flow will be\nterminated.", + "text": "Eg: \"/dashboard\", \"#/foo\" [Do not include the host]", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.10.2 | ThoughtSpot 8.2.0.cl, 8.4.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 248, + "fileName": "types.ts", + "line": 385, "character": 4 } ], @@ -26176,135 +26478,157 @@ } }, { - "id": 2190, - "name": "--ts-var-viz-description-font-family", + "id": 1787, + "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification of description text and subtitle of a visualization or\nAnswer." + "shortText": "Boolean to define if the query parameters in the ThoughtSpot URL\nshould be encoded in base64. This provides additional security to\nThoughtSpot clusters against cross-site scripting attacks.", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 254, + "fileName": "types.ts", + "line": 396, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2191, - "name": "--ts-var-viz-description-text-transform", + "id": 1809, + "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text transformation specification for description text and subtitle of a\nvisualization or Answer." + "shortText": "If passed as true all alerts will be suppressed in the embedded app.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.2 | ThoughtSpot: *\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 260, + "fileName": "types.ts", + "line": 537, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2195, - "name": "--ts-var-viz-legend-hover-background", + "id": 1788, + "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the legend on a visualization or Answer." + "shortText": "Suppress cookie access alert when third-party cookies are blocked by the\nuser's browser. Third-party cookie blocking is the default behaviour on\nsome web browsers like Safari. If you set this attribute to `true`,\nyou are encouraged to handle `noCookieAccess` event, to show your own treatment\nin this case.", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 280, + "fileName": "types.ts", + "line": 406, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2186, - "name": "--ts-var-viz-title-color", + "id": 1797, + "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the title text of a visualization or Answer." + "shortText": "Hide `beta` alert warning message for SageEmbed." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 233, + "fileName": "types.ts", + "line": 473, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2187, - "name": "--ts-var-viz-title-font-family", + "id": 1796, + "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the title text of a visualization/Answer." + "shortText": "Hide the `beta` alert warning message for SearchEmbed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.12.0 | ThoughtSpot: 8.4.0.cl, 8.4.1.sw*\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 238, + "fileName": "types.ts", + "line": 468, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2188, - "name": "--ts-var-viz-title-text-transform", + "id": 1776, + "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "Text transformation specification for visualization and Answer titles." + "shortText": "The ThoughtSpot cluster hostname or IP address." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 243, + "fileName": "types.ts", + "line": 318, "character": 4 } ], @@ -26312,159 +26636,45 @@ "type": "intrinsic", "name": "string" } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2197, - 2196, - 2166, - 2167, - 2169, - 2168, - 2148, - 2209, - 2210, - 2207, - 2208, - 2171, - 2176, - 2173, - 2175, - 2174, - 2172, - 2181, - 2178, - 2180, - 2179, - 2177, - 2185, - 2184, - 2183, - 2182, - 2170, - 2232, - 2235, - 2230, - 2233, - 2234, - 2229, - 2231, - 2202, - 2201, - 2204, - 2203, - 2200, - 2198, - 2199, - 2205, - 2206, - 2217, - 2218, - 2221, - 2219, - 2220, - 2228, - 2227, - 2226, - 2225, - 2223, - 2222, - 2215, - 2212, - 2211, - 2213, - 2216, - 2214, - 2149, - 2150, - 2144, - 2145, - 2146, - 2147, - 2158, - 2162, - 2163, - 2161, - 2157, - 2160, - 2154, - 2155, - 2156, - 2151, - 2152, - 2153, - 2159, - 2224, - 2164, - 2165, - 2194, - 2192, - 2193, - 2189, - 2190, - 2191, - 2195, - 2186, - 2187, - 2188 - ] - } - ], - "sources": [ - { - "fileName": "css-variables.ts", - "line": 5, - "character": 17 - } - ] - }, - { - "id": 2131, - "name": "CustomStyles", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "Styles within the {@link CustomisationsInterface}." - }, - "children": [ + }, { - "id": 2133, - "name": "customCSS", + "id": 1800, + "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Specify that we want to use the `AuthEvent.TRIGGER_SSO_POPUP` event to trigger\nSAML popup. This is useful when you want to trigger the popup on a custom user\naction." + }, "sources": [ { "fileName": "types.ts", - "line": 259, + "line": 500, "character": 4 } ], "type": { - "type": "reference", - "id": 2134, - "name": "customCssInterface" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 2132, - "name": "customCSSUrl", + "id": 1781, + "name": "username", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "[AuthServer / Basic] The user name of the ThoughtSpot user. This\nattribute is required for trusted authentication." + }, "sources": [ { "fileName": "types.ts", - "line": 258, + "line": 347, "character": 4 } ], @@ -26472,6 +26682,45 @@ "type": "intrinsic", "name": "string" } + }, + { + "id": 1779, + "name": "getAuthToken", + "kind": 2048, + "kindString": "Method", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "types.ts", + "line": 342, + "character": 4 + } + ], + "signatures": [ + { + "id": 1780, + "name": "getAuthToken", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "[AuthServer] A function that invokes the trusted authentication endpoint\nand returns a Promise that resolves to the `auth token` string.\nFor trusted authentication, the `authEndpoint` or `getAuthToken`\nattribute is required.", + "text": "It is advisable to fetch a new token inside this method and not\nreuse the old issued token. When auth expires this method is\ncalled again and if it is called with an older token, the authentication\nwill not succeed.\n" + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "Promise" + } + } + ] } ], "groups": [ @@ -26479,172 +26728,173 @@ "title": "Properties", "kind": 1024, "children": [ - 2133, - 2132 + 1817, + 1778, + 1799, + 1801, + 1777, + 1790, + 1802, + 1793, + 1814, + 1821, + 1798, + 1812, + 1795, + 1816, + 1791, + 1822, + 1811, + 1789, + 1784, + 1810, + 1792, + 1783, + 1813, + 1782, + 1808, + 1794, + 1785, + 1787, + 1809, + 1788, + 1797, + 1796, + 1776, + 1800, + 1781 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 1779 ] } ], "sources": [ { "fileName": "types.ts", - "line": 257, + "line": 314, "character": 17 } ] }, { - "id": 2123, - "name": "CustomisationsInterface", + "id": 2101, + "name": "FrameParams", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { - "shortText": "Configuration to define the customization on the Embedded\nThoughtSpot components.\nYou can customize styles, text strings, and icons.\nFor more information, see https://developers.thoughtspot.com/docs/custom-css.", + "shortText": "Embedded iframe configuration", "tags": [ { - "tag": "example", - "text": "\n```js\n init({\n // ...\n customizations: {\n style: {\n customCSS: {\n variables: {},\n rules_UNSTABLE: {}\n }\n },\n content: {\n strings: {\n 'LIVEBOARDS': 'Dashboards',\n 'ANSWERS': 'Visualizations',\n 'Edit': 'Modify',\n 'Show underlying data': 'Show source data',\n 'SpotIQ': 'Insights',\n 'Monitor': 'Alerts',\n }\n },\n iconSpriteUrl: 'https://my-custom-icon-sprite.svg'\n }\n })\n```\n" + "tag": "group", + "text": "Embed components\n" } ] }, "children": [ { - "id": 2125, - "name": "content", + "id": 2103, + "name": "height", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "The height of the iframe (unit is pixels if numeric)." + }, "sources": [ { "fileName": "types.ts", - "line": 295, + "line": 653, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 2126, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2127, - "name": "strings", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | 9.7.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 299, - "character": 8 - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2127 - ] - } - ], - "indexSignature": { - "id": 2128, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 2129, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" } - } + ] } }, { - "id": 2130, - "name": "iconSpriteUrl", + "id": 2104, + "name": "loading", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Set to 'lazy' to enable lazy loading of the embedded TS frame.\nThis will defer loading of the frame until it comes into the\nviewport. This is useful for performance optimization." + }, "sources": [ { "fileName": "types.ts", - "line": 302, + "line": 659, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": "lazy" + }, + { + "type": "literal", + "value": "eager" + }, + { + "type": "literal", + "value": "auto" + } + ] } }, { - "id": 2124, - "name": "style", + "id": 2102, + "name": "width", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "The width of the iframe (unit is pixels if numeric)." + }, "sources": [ { "fileName": "types.ts", - "line": 294, + "line": 649, "character": 4 } ], "type": { - "type": "reference", - "id": 2131, - "name": "CustomStyles" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] } } ], @@ -26653,38 +26903,114 @@ "title": "Properties", "kind": 1024, "children": [ - 2125, - 2130, - 2124 + 2103, + 2104, + 2102 ] } ], "sources": [ { "fileName": "types.ts", - "line": 293, + "line": 645, "character": 17 } - ] - }, - { - "id": 1769, - "name": "EmbedConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The configuration object for embedding ThoughtSpot content.\nIt includes the ThoughtSpot hostname or IP address,\nthe type of authentication, and the authentication endpoint\nif a trusted authentication server is used.", - "tags": [ + ], + "indexSignature": { + "id": 2105, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "comment": { + "shortText": "This parameters will be passed on the iframe\nas is." + }, + "parameters": [ + { + "id": 2106, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + }, + { + "type": "intrinsic", + "name": "undefined" + } + ] + } + } + }, + { + "id": 1915, + "name": "LiveboardViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The configuration for the embedded Liveboard or visualization page view.", + "tags": [ { "tag": "group", - "text": "Authentication / Init\n" + "text": "Embed components\n" } ] }, "children": [ { - "id": 1811, + "id": 1926, + "name": "activeTabId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Set a Liveboard tab as an active tab.\nSpecify the tab ID.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n activeTabId:'id-1234',\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1-sw\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 181, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1944, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -26692,7 +27018,7 @@ "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", "tags": [ { "tag": "example", @@ -26700,34 +27026,34 @@ }, { "tag": "version", - "text": "SDK: 1.33.5 | ThoughtSpot: *\n" + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 615, + "line": 843, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1812, + "id": 1945, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1813, + "id": 1946, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1814, + "id": 1947, "name": "key", "kind": 32768, "flags": {}, @@ -26756,368 +27082,429 @@ } } } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.additionalFlags" } }, { - "id": 1772, - "name": "authEndpoint", + "id": 1977, + "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[AuthServer] The trusted authentication endpoint to use to get the\nauthentication token. A `GET` request is made to the\nauthentication API endpoint, which returns the token\nas a plaintext response. For trusted authentication,\nthe `authEndpoint` or `getAuthToken` attribute is required." + "shortText": "To set the initial state of the search bar in case of saved Answers.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 328, + "line": 1076, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.collapseSearchBar" } }, { - "id": 1793, - "name": "authTriggerContainer", + "id": 1957, + "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "For `inPopup` SAMLRedirect or OIDCRedirect authentication, we need a\nbutton that the user can click to trigger the flow.\nThis attribute sets a containing element for that button.", + "shortText": "flag to set ContextMenu Trigger to either left or right click.", "tags": [ { "tag": "example", - "text": "\n```js\ninit({\n authType: AuthType.SAMLRedirect,\n inPopup: true,\n authTriggerContainer: '#auth-trigger-container'\n})\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" }, { "tag": "version", - "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 491, + "line": 875, "character": 4 } ], "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reference", - "name": "HTMLElement" - } - ] + "type": "reference", + "id": 1771, + "name": "ContextMenuTriggerOptions" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.contextMenuTrigger" } }, { - "id": 1795, - "name": "authTriggerText", + "id": 1942, + "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text to show in the button which triggers the popup auth flow.\nDefault: `Authorize`.", + "shortText": "This flag is for show/hide checkboxes for include or exclude\ncover and filter pages in the Liveboard PDF", "tags": [ + { + "tag": "default", + "text": "true" + }, { "tag": "version", - "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + "text": "SDK: 1.38.0 | ThoughtSpot:10.8.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n coverAndFilterOptionInPDF: false,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 504, + "fileName": "embed/liveboard.ts", + "line": 409, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1771, - "name": "authType", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "comment": { - "shortText": "The authentication mechanism to use." - }, - "sources": [ - { - "fileName": "types.ts", - "line": 320, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 1457, - "name": "AuthType" + "name": "boolean" } }, { - "id": 1784, - "name": "autoLogin", + "id": 1943, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Re-login a user with the previous login options\nwhen a user session expires.", + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + }, { "tag": "default", - "text": "false\n" + "text": "''\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 419, + "line": 850, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 2139, + "name": "CustomisationsInterface" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.customizations" } }, { - "id": 1796, - "name": "blockNonEmbedFullAppAccess", + "id": 1978, + "name": "dataPanelV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Prevent users from accessing the full application or ThoughtSpot application pages\naccess to the embedded application users\noutside of the iframe.", + "shortText": "Flag to control Data panel experience", "tags": [ { "tag": "default", - "text": "true" + "text": "false" }, { "tag": "version", - "text": "SDK: 1.22.0 | ThoughtSpot: 9.3.0.cl, 9.5.1.sw\n" + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 512, + "line": 1107, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.dataPanelV2" } }, { - "id": 1787, - "name": "callPrefetch", + "id": 1917, + "name": "defaultHeight", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Calls the prefetch method internally when set to `true`", + "shortText": "This is the minimum height(in pixels) for a full-height Liveboard.\nSetting this height helps resolve issues with empty Liveboards and\nother screens navigable from a Liveboard.", "tags": [ + { + "tag": "version", + "text": "SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1" + }, { "tag": "default", - "text": "false\n" + "text": "500" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n defaultHeight: 600,\n});\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 441, + "fileName": "embed/liveboard.ts", + "line": 80, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "number" } }, { - "id": 1808, - "name": "currencyFormat", + "id": 1960, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Format to be used for currency when currency format is set to infer from browser", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + }, { "tag": "version", - "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 574, + "line": 1094, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1815, - "name": "customVariablesForThirdPartyTools", + "id": 1950, + "name": "disabledActionReason", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) for customVariables being\nused by the third party tool's script.", + "shortText": "The tooltip to display for disabled actions.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n customVariablesForThirdPartyTools: {\n key1: 'value1',\n key2: 'value2'\n }\n});\n```" + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "tag": "version", - "text": "SDK 1.37.0 | ThoughtSpot: 10.8.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 631, + "line": 727, "character": 4 } ], "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" + "name": "Omit.disabledActionReason" } }, { - "id": 1792, - "name": "customizations", + "id": 1949, + "name": "disabledActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Custom style params for embed Config.", + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", "tags": [ { "tag": "version", - "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 476, + "line": 714, "character": 4 } ], "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } + }, + "inheritedFrom": { "type": "reference", - "id": 2123, - "name": "CustomisationsInterface" + "name": "Omit.disabledActions" } }, { - "id": 1806, - "name": "dateFormatLocale", + "id": 1973, + "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides default/user preferred locale for date formatting", + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + }, + { + "tag": "example", + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 564, + "line": 1035, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1789, - "name": "detectCookieAccessSlow", + "id": 1933, + "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[AuthServer|Basic] Detect if third-party party cookies are enabled by doing an\nadditional call. This is slower and should be avoided. Listen to the\n`NO_COOKIE_ACCESS` event to handle the situation.", - "text": "This is slightly slower than letting the browser handle the cookie check, as it\ninvolves an extra network call.", + "shortText": "This flag is used to enable the 2 column layout on a Liveboard", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.10.4 | ThoughtSpot: 8.2.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.32.0 | ThoughtSpot:10.1.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n enable2ColumnLayout: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 461, + "fileName": "embed/liveboard.ts", + "line": 273, "character": 4 } ], @@ -27127,26 +27514,34 @@ } }, { - "id": 1810, - "name": "disableLoginFailurePage", + "id": 1932, + "name": "enableAskSage", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to disable showing the login failure page in the embedded app.", + "shortText": "enable or disable ask sage", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK 1.32.3 | ThoughtSpot: 10.1.0.cl, 10.1.0.sw\n" + "text": "SDK: 1.29.0 | Thoughtspot: 9.12.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableAskSage:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 595, + "fileName": "embed/liveboard.ts", + "line": 259, "character": 4 } ], @@ -27156,79 +27551,111 @@ } }, { - "id": 1785, - "name": "disableLoginRedirect", + "id": 1979, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Disable redirection to the login page when the embedded session expires\nThis flag is typically used alongside the combination of authentication modes such\nas {@link AuthType.AuthServer} and auto-login behavior {@link\nEmbedConfig.autoLogin}", + "shortText": "To enable custom column groups in data panel v2", "tags": [ { "tag": "version", - "text": "SDK: 1.9.3 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" }, { "tag": "default", - "text": "false\n" + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 429, + "line": 1120, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.enableCustomColumnGroups" } }, { - "id": 1816, - "name": "disablePreauthCache", + "id": 1976, + "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + } + ] + }, "sources": [ { "fileName": "types.ts", - "line": 633, + "line": 1064, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.enableV2Shell_experimental" } }, { - "id": 1805, - "name": "disableSDKTracking", + "id": 1918, + "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Disables the Mixpanel tracking from the SDK.", "tags": [ { - "tag": "version", - "text": "SDK: 1.27.9\n" + "tag": "deprecated", + "text": "If set to true, the context menu in visualizations will be enabled." + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n enableVizTransformations:true,\n})\n```" + }, + { + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 559, + "fileName": "embed/liveboard.ts", + "line": 92, "character": 4 } ], @@ -27238,45 +27665,54 @@ } }, { - "id": 1783, - "name": "ignoreNoCookieAccess", + "id": 1972, + "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Ignore the cookie access alert when third-party cookies are blocked by the\nuser's browser. If you set this to `true`, the embedded iframe behaviour\npersists even in the case of a non-logged-in user.", + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { "tag": "default", - "text": "false\n" + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 412, + "line": 913, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeFiltersfromURL" } }, { - "id": 1778, - "name": "inPopup", + "id": 1975, + "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[SSO] For SSO Authentication, if `inPopup` is set to true, it will open\nthe SAML auth flow in a popup, instead of redirecting the browser in place.", - "text": "Need to use this with `authTriggerContainer`. Or manually trigger\nthe `AuthEvent.TRIGGER_SSO_POPUP` event on a user interaction.", + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { "tag": "default", @@ -27284,114 +27720,127 @@ }, { "tag": "version", - "text": "SDK: 1.18.0\n" + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 373, + "line": 1050, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeParametersfromURL" } }, { - "id": 1804, - "name": "logLevel", + "id": 1962, + "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Suppress or show specific types of logs in the console output.\nFor example, `LogLevel.ERROR` shows only Visual Embed SDK and\nThoughtSpot application errors and suppresses\nother logs such as warnings, information alerts,\nand debug messages in the console output.", + "shortText": "This flag can be used to expose translation IDs on the embedded app.", "tags": [ { "tag": "default", - "text": "LogLevel.ERROR" - }, - { - "tag": "example", - "text": "\n```js\ninit({\n ...embedConfig,\n logLevel: LogLevel.SILENT\n})\n```" + "text": "false" }, { "tag": "version", - "text": "SDK: 1.26.7 | ThoughtSpot: 9.10.0.cl\n" + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 554, + "line": 1082, "character": 4 } ], "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { "type": "reference", - "id": 2239, - "name": "LogLevel" + "name": "Omit.exposeTranslationIDs" } }, { - "id": 1786, - "name": "loginFailedMessage", + "id": 1965, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This message is displayed in the embedded view when a user login fails.", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ { "tag": "version", - "text": "SDK: 1.10.1 | ThoughtSpot: 8.2.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 435, + "line": 690, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2101, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.frameParams" } }, { - "id": 1777, - "name": "noRedirect", + "id": 1916, + "name": "fullHeight", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[SSO] For SSO Authentication, if `noRedirect` is set to true, it will\nopen the SAML auth flow in a popup, instead of redirecting the browser in\nplace.", + "shortText": "If set to true, the embedded object container dynamically resizes\naccording to the height of the Liveboard.", + "text": "**Note**: Using fullHeight loads all visualizations on the\nLiveboard simultaneously, which results in multiple warehouse\nqueries and potentially a longer wait for the topmost\nvisualizations to display on the screen.\nSetting `fullHeight` to `false` fetches visualizations\nincrementally as users scroll the page to view the charts and tables.\n", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, { - "tag": "deprecated", - "text": "\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n});\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 362, + "fileName": "embed/liveboard.ts", + "line": 64, "character": 4 } ], @@ -27401,112 +27850,161 @@ } }, { - "id": 1807, - "name": "numberFormatLocale", - "kind": 1024, + "id": 1951, + "name": "hiddenActions", + "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides default/user preferred locale for number formatting", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ { "tag": "version", - "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + }, + { + "tag": "important", + "text": "\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 569, + "line": 742, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenActions" } }, { - "id": 1776, - "name": "password", + "id": 1948, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[Basic] The ThoughtSpot login password corresponding to the username", - "text": "Warning: This feature is primarily intended for developer testing. It is\nstrongly advised not to use this authentication method in production.\n" + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 353, + "line": 1151, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "id": 2314, + "name": "ListPageColumns" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenListColumns" } }, { - "id": 1802, - "name": "pendoTrackingKey", + "id": 1953, + "name": "hiddenTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Pendo API key to enable Pendo tracking to your own subscription, the key\nis added as an additional key to the embed, as per this link:https://support.pendo.io/hc/en-us/articles/360032201951-Send-data-to-multiple-subscriptions[document].", + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + }, { "tag": "version", - "text": "SDK: 1.27.0 | ThoughtSpot: 9.8.0.cl\n" + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 529, + "line": 929, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenTabs" } }, { - "id": 1788, - "name": "queueMultiRenders", + "id": 1938, + "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "When there are multiple objects embedded, queue the rendering of embedded objects\nto start after the previous embed's render is complete. This helps improve\nperformance by decreasing the load on the browser.", + "shortText": "This flag is used to enable/disable hide irrelevant filters in a Liveboard tab", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1" + "text": "SDK: 1.36.0 | ThoughtSpot:10.6.0.cl" }, { - "tag": "default", - "text": "false\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n hideIrrelevantChipsInLiveboardTabs: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 450, + "fileName": "embed/liveboard.ts", + "line": 354, "character": 4 } ], @@ -27516,56 +28014,67 @@ } }, { - "id": 1779, - "name": "redirectPath", + "id": 1928, + "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[SSO] For SSO Authentication, one can supply an optional path param;\nThis will be the path on the host origin where the SAML flow will be\nterminated.", - "text": "Eg: \"/dashboard\", \"#/foo\" [Do not include the host]", + "shortText": "Show or hide the Liveboard header.", "tags": [ { "tag": "version", - "text": "SDK: 1.10.2 | ThoughtSpot 8.2.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hideLiveboardHeader:true,\n});\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 383, + "fileName": "embed/liveboard.ts", + "line": 206, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 1781, - "name": "shouldEncodeUrlQueryParams", + "id": 1927, + "name": "hideTabPanel", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to define if the query parameters in the ThoughtSpot URL\nshould be encoded in base64. This provides additional security to\nThoughtSpot clusters against cross-site scripting attacks.", + "shortText": "Show or hide the tab panel of the embedded Liveboard.", "tags": [ { - "tag": "default", - "text": "false\n" + "tag": "version", + "text": "SDK: 1.25.0 | Thoughtspot: 9.6.0.cl, 9.8.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n hideTabPanel:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 394, + "fileName": "embed/liveboard.ts", + "line": 193, "character": 4 } ], @@ -27575,55 +28084,71 @@ } }, { - "id": 1803, - "name": "suppressErrorAlerts", + "id": 1970, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If passed as true all alerts will be suppressed in the embedded app.", + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", "tags": [ { "tag": "version", - "text": "SDK: 1.26.2 | ThoughtSpot: *\n" + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 535, + "line": 863, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.insertAsSibling" } }, { - "id": 1782, - "name": "suppressNoCookieAccessAlert", + "id": 1935, + "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Suppress cookie access alert when third-party cookies are blocked by the\nuser's browser. Third-party cookie blocking is the default behaviour on\nsome web browsers like Safari. If you set this attribute to `true`,\nyou are encouraged to handle `noCookieAccess` event, to show your own treatment\nin this case.", + "shortText": "Enables or disables the compact header feature on a Liveboard.\nCompact Liveboard header is turned off by default on Liveboards in\nThoughtSpot Embedded apps.", "tags": [ { "tag": "default", - "text": "false\n" + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot:10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n isLiveboardCompactHeaderEnabled: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 404, + "fileName": "embed/liveboard.ts", + "line": 311, "character": 4 } ], @@ -27633,20 +28158,30 @@ } }, { - "id": 1791, - "name": "suppressSageEmbedBetaWarning", + "id": 1931, + "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide `beta` alert warning message for SageEmbed." + "shortText": "Control the position and visibility of\nthe Liveboard header as the users scroll down the\nembedded Liveboard page.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other Liveboard view config\n isLiveboardHeaderSticky: true,\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 471, + "fileName": "embed/liveboard.ts", + "line": 246, "character": 4 } ], @@ -27656,47 +28191,67 @@ } }, { - "id": 1790, - "name": "suppressSearchEmbedBetaWarning", + "id": 1958, + "name": "linkOverride", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide the `beta` alert warning message for SearchEmbed.", + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", "tags": [ { "tag": "version", - "text": "SDK: 1.12.0 | ThoughtSpot: 8.4.0.cl, 8.4.1.sw*\n" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 466, + "line": 887, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.linkOverride" } }, { - "id": 1770, - "name": "thoughtSpotHost", + "id": 1919, + "name": "liveboardId", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The ThoughtSpot cluster hostname or IP address." + "shortText": "The Liveboard to display in the embedded view.\nUse either liveboardId or pinboardId to reference the Liveboard to embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n liveboardId:id of liveboard,\n})\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 316, + "fileName": "embed/liveboard.ts", + "line": 104, "character": 4 } ], @@ -27706,20 +28261,30 @@ } }, { - "id": 1794, - "name": "useEventForSAMLPopup", + "id": 1925, + "name": "liveboardV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Specify that we want to use the `AuthEvent.TRIGGER_SSO_POPUP` event to trigger\nSAML popup. This is useful when you want to trigger the popup on a custom user\naction." + "shortText": "Render embedded Liveboards and visualizations in the\nnew Liveboard experience mode.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.14.0 | ThoughtSpot: 8.6.0.cl, 8.8.1-sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n liveboardV2:true,\n})\n```\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 498, + "fileName": "embed/liveboard.ts", + "line": 168, "character": 4 } ], @@ -27729,541 +28294,442 @@ } }, { - "id": 1775, - "name": "username", + "id": 1956, + "name": "locale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[AuthServer / Basic] The user name of the ThoughtSpot user. This\nattribute is required for trusted authentication." + "shortText": "The locale settings to apply to the embedded view.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 345, + "line": 822, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.locale" } }, { - "id": 1773, - "name": "getAuthToken", - "kind": 2048, - "kindString": "Method", + "id": 1961, + "name": "overrideOrgId", + "kind": 1024, + "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + } + ] + }, "sources": [ { "fileName": "types.ts", - "line": 340, + "line": 1136, "character": 4 } ], - "signatures": [ - { - "id": 1774, - "name": "getAuthToken", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "[AuthServer] A function that invokes the trusted authentication endpoint\nand returns a Promise that resolves to the `auth token` string.\nFor trusted authentication, the `authEndpoint` or `getAuthToken`\nattribute is required.", - "text": "It is advisable to fetch a new token inside this method and not\nreuse the old issued token. When auth expires this method is\ncalled again and if it is called with an older token, the authentication\nwill not succeed.\n" - }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "Promise" - } - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1811, - 1772, - 1793, - 1795, - 1771, - 1784, - 1796, - 1787, - 1808, - 1815, - 1792, - 1806, - 1789, - 1810, - 1785, - 1816, - 1805, - 1783, - 1778, - 1804, - 1786, - 1777, - 1807, - 1776, - 1802, - 1788, - 1779, - 1781, - 1803, - 1782, - 1791, - 1790, - 1770, - 1794, - 1775 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 1773 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 312, - "character": 17 - } - ] - }, - { - "id": 2085, - "name": "FrameParams", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "Embedded iframe configuration", - "tags": [ - { - "tag": "group", - "text": "Embed components\n" + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.overrideOrgId" } - ] - }, - "children": [ + }, { - "id": 2087, - "name": "height", + "id": 1963, + "name": "preRenderId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The height of the iframe (unit is pixels if numeric)." + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 651, + "line": 1014, "character": 4 } ], "type": { - "type": "union", - "types": [ + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.preRenderId" + } + }, + { + "id": 1922, + "name": "preventLiveboardFilterRemoval", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If set to true, all filter chips from a\nLiveboard page will be read-only (no X buttons)", + "tags": [ { - "type": "intrinsic", - "name": "string" + "tag": "version", + "text": "SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1.sw" }, { - "type": "intrinsic", - "name": "number" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n preventLiveboardFilterRemoval:true,\n})\n```\n" } ] + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 134, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" } }, { - "id": 2088, - "name": "loading", + "id": 1968, + "name": "runtimeFilters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Set to 'lazy' to enable lazy loading of the embedded TS frame.\nThis will defer loading of the frame until it comes into the\nviewport. This is useful for performance optimization." + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 657, + "line": 792, "character": 4 } ], "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "lazy" - }, + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.runtimeFilters" + } + }, + { + "id": 1969, + "name": "runtimeParameters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ { - "type": "literal", - "value": "eager" + "tag": "version", + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { - "type": "literal", - "value": "auto" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 810, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2254, + "name": "RuntimeParameter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.runtimeParameters" } }, { - "id": 2086, - "name": "width", + "id": 1955, + "name": "showAlerts", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width of the iframe (unit is pixels if numeric)." + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 647, + "line": 773, "character": 4 } ], "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.showAlerts" } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2087, - 2088, - 2086 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 643, - "character": 17 - } - ], - "indexSignature": { - "id": 2089, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "comment": { - "shortText": "This parameters will be passed on the iframe\nas is." }, - "parameters": [ - { - "id": 2090, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - }, - { - "type": "intrinsic", - "name": "undefined" - } - ] - } - } - }, - { - "id": 1905, - "name": "LiveboardViewConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The configuration for the embedded Liveboard or visualization page view.", - "tags": [ - { - "tag": "group", - "text": "Embed components\n" - } - ] - }, - "children": [ { - "id": 1916, - "name": "activeTabId", + "id": 1930, + "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Set a Liveboard tab as an active tab.\nSpecify the tab ID.", + "shortText": "Show or hide the Liveboard description.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n activeTabId:'id-1234',\n})\n```" + "tag": "default", + "text": "false" }, { "tag": "version", - "text": "SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1-sw\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardDescription:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/liveboard.ts", - "line": 181, + "line": 232, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 1934, - "name": "additionalFlags", + "id": 1937, + "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "shortText": "This flag is used to show/hide the re-verify banner\nin Liveboard compact header", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + "tag": "default", + "text": "true" }, { "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardReverifyBanner: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 841, + "fileName": "embed/liveboard.ts", + "line": 340, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 1935, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 1936, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1937, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - } - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.additionalFlags" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1965, - "name": "collapseSearchBar", + "id": 1929, + "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", + "shortText": "Show or hide the Liveboard title.", "tags": [ { "tag": "default", - "text": "true" + "text": "false" }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardTitle:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1074, + "fileName": "embed/liveboard.ts", + "line": 219, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.collapseSearchBar" } }, { - "id": 1946, - "name": "contextMenuTrigger", + "id": 1936, + "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "shortText": "This flag is used to show/hide verified icon in the Liveboard compact header", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + "tag": "default", + "text": "true" }, { "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardVerifiedBadge: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 873, + "fileName": "embed/liveboard.ts", + "line": 325, "character": 4 } ], "type": { - "type": "reference", - "id": 1765, - "name": "ContextMenuTriggerOptions" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.contextMenuTrigger" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1932, - "name": "coverAndFilterOptionInPDF", + "id": 1934, + "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is for show/hide checkboxes for include or exclude\ncover and filter pages in the Liveboard PDF", + "shortText": "Show a preview image of the visualization before the visualization loads.\nOnly works for visualizations embeds with a viz id.", + "text": "Also, viz snashot should be enabled in the ThoughtSpot instance.\nContact ThoughtSpot support to enable this feature.\n\nSince, this will show preview images, be careful that it may show\nundesired data to the user when using row level security.", "tags": [ { - "tag": "default", - "text": "true" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n liveboardId: 'liveboard-id',\n vizId: 'viz-id',\n showPreviewLoader: true,\n});\nembed.render();\n```" }, { "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot:10.8.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n coverAndFilterOptionInPDF: false,\n})\n```\n" + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl\n" } ] }, "sources": [ { "fileName": "embed/liveboard.ts", - "line": 409, + "line": 294, "character": 4 } ], @@ -28273,380 +28739,583 @@ } }, { - "id": 1933, - "name": "customizations", + "id": 1952, + "name": "visibleActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", "tags": [ { "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "tag": "default", - "text": "''\n" + "tag": "important", + "text": "" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 848, + "line": 760, "character": 4 } ], "type": { - "type": "reference", - "id": 2123, - "name": "CustomisationsInterface" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.customizations" + "name": "Omit.visibleActions" } }, { - "id": 1966, - "name": "dataPanelV2", + "id": 1954, + "name": "visibleTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to control Data panel experience", + "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", + "text": "Use either `visibleTabs` or `hiddenTabs`.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1099, + "line": 981, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.dataPanelV2" + "name": "Omit.visibleTabs" } }, { - "id": 1907, - "name": "defaultHeight", + "id": 1923, + "name": "visibleVizs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is the minimum height(in pixels) for a full-height Liveboard.\nSetting this height helps resolve issues with empty Liveboards and\nother screens navigable from a Liveboard.", + "shortText": "Array of visualization IDs which should be visible when the Liveboard\nrenders. This can be changed by triggering the `SetVisibleVizs`\nevent.", "tags": [ { "tag": "version", - "text": "SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1" - }, - { - "tag": "default", - "text": "500" + "text": "SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n defaultHeight: 600,\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleVizs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n" } ] }, "sources": [ { "fileName": "embed/liveboard.ts", - "line": 80, + "line": 150, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 1949, - "name": "disableRedirectionLinksInNewTab", + "id": 1921, + "name": "vizId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "shortText": "The visualization within the Liveboard to display.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + "tag": "version", + "text": "SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw" }, { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n vizId:'430496d6-6903-4601-937e-2c691821af3c',\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1086, + "fileName": "embed/liveboard.ts", + "line": 121, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" + "name": "string" } - }, + } + ], + "groups": [ { - "id": 1939, - "name": "disabledActionReason", + "title": "Properties", + "kind": 1024, + "children": [ + 1926, + 1944, + 1977, + 1957, + 1942, + 1943, + 1978, + 1917, + 1960, + 1950, + 1949, + 1973, + 1933, + 1932, + 1979, + 1976, + 1918, + 1972, + 1975, + 1962, + 1965, + 1916, + 1951, + 1948, + 1953, + 1938, + 1928, + 1927, + 1970, + 1935, + 1931, + 1958, + 1919, + 1925, + 1956, + 1961, + 1963, + 1922, + 1968, + 1969, + 1955, + 1930, + 1937, + 1929, + 1936, + 1934, + 1952, + 1954, + 1923, + 1921 + ] + } + ], + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 39, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "hiddenHomepageModules" + }, + { + "type": "literal", + "value": "hiddenHomeLeftNavItems" + }, + { + "type": "literal", + "value": "reorderedHomepageModules" + } + ] + } + ], + "name": "Omit" + } + ] + }, + { + "id": 1475, + "name": "RuntimeFilter", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "A filter that can be applied to ThoughtSpot answers, Liveboards, or\nvisualizations at runtime." + }, + "children": [ + { + "id": 1476, + "name": "columnName", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "The tooltip to display for disabled actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" - } - ] + "shortText": "The name of the column to filter on (case-sensitive)" }, "sources": [ { "fileName": "types.ts", - "line": 725, + "line": 1349, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disabledActionReason" } }, { - "id": 1938, - "name": "disabledActions", + "id": 1477, + "name": "operator", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" - } - ] + "shortText": "The operator to apply" }, "sources": [ { "fileName": "types.ts", - "line": 712, + "line": 1353, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1635, - "name": "Action" - } - }, - "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActions" + "id": 1479, + "name": "RuntimeFilterOp" } }, { - "id": 1961, - "name": "doNotTrackPreRenderSize", + "id": 1478, + "name": "values", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" - } - ] + "shortText": "The list of operands. Some operators like EQ, LE accept\na single operand, whereas other operators like BW and IN accept multiple\noperands." }, "sources": [ { "fileName": "types.ts", - "line": 1033, + "line": 1359, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "bigint" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } } - }, + } + ], + "groups": [ { - "id": 1923, - "name": "enable2ColumnLayout", + "title": "Properties", + "kind": 1024, + "children": [ + 1476, + 1477, + 1478 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 1345, + "character": 17 + } + ] + }, + { + "id": 2254, + "name": "RuntimeParameter", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "A filter that can be applied to ThoughtSpot Answers, Liveboards, or\nvisualizations at runtime." + }, + "children": [ + { + "id": 2255, + "name": "name", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag is used to enable the 2 column layout on a Liveboard", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot:10.1.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n enable2ColumnLayout: true,\n})\n```\n" - } - ] + "flags": {}, + "comment": { + "shortText": "The name of the runtime parameter to filter on (case-sensitive)" }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 273, + "fileName": "types.ts", + "line": 1369, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1922, - "name": "enableAskSage", + "id": 2256, + "name": "value", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "comment": { + "shortText": "Values" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1373, + "character": 4 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2255, + 2256 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 1365, + "character": 17 + } + ] + }, + { + "id": 1980, + "name": "SageViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The configuration attributes for the embedded Natural language search view. Based on\nGPT and LLM.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.23.0 | ThoughtSpot: 9.8.0.cl, 9.8.0.sw" + }, + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, + "children": [ + { + "id": 1993, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "enable or disable ask sage", + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" }, { "tag": "version", - "text": "SDK: 1.29.0 | Thoughtspot: 9.12.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableAskSage:true,\n})\n```\n" + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 259, + "fileName": "types.ts", + "line": 843, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reflection", + "declaration": { + "id": 1994, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1995, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1996, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.additionalFlags" } }, { - "id": 1967, - "name": "enableCustomColumnGroups", + "id": 2024, + "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To enable custom column groups in data panel v2", + "shortText": "To set the initial state of the search bar in case of saved Answers.", "tags": [ { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" + "tag": "default", + "text": "true" }, { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1112, + "line": 1076, "character": 4 } ], @@ -28656,93 +29325,95 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableCustomColumnGroups" + "name": "Omit.collapseSearchBar" } }, { - "id": 1964, - "name": "enableV2Shell_experimental", + "id": 2004, + "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "shortText": "flag to set ContextMenu Trigger to either left or right click.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" }, { "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 875, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 1771, + "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableV2Shell_experimental" + "name": "Omit.contextMenuTrigger" } }, { - "id": 1908, - "name": "enableVizTransformations", + "id": 1992, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", "tags": [ { - "tag": "deprecated", - "text": "If set to true, the context menu in visualizations will be enabled." - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n enableVizTransformations:true,\n})\n```" + "tag": "version", + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" }, { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw\n" + "tag": "default", + "text": "''\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 92, + "fileName": "types.ts", + "line": 850, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 2139, + "name": "CustomisationsInterface" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.customizations" } }, { - "id": 1960, - "name": "excludeRuntimeFiltersfromURL", + "id": 2025, + "name": "dataPanelV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "shortText": "Flag to control Data panel experience", "tags": [ { "tag": "default", @@ -28750,14 +29421,18 @@ }, { "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 911, + "line": 1107, "character": 4 } ], @@ -28767,111 +29442,90 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeFiltersfromURL" + "name": "Omit.dataPanelV2" } }, { - "id": 1963, - "name": "excludeRuntimeParametersfromURL", + "id": 1990, + "name": "dataSource", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" - } - ] + "shortText": "The data source GUID (Worksheet GUID) to set on load." }, "sources": [ { - "fileName": "types.ts", - "line": 1048, + "fileName": "embed/sage.ts", + "line": 104, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.excludeRuntimeParametersfromURL" + "name": "string" } }, { - "id": 1953, - "name": "frameParams", + "id": 2007, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 688, + "line": 1094, "character": 4 } ], "type": { - "type": "reference", - "id": 2085, - "name": "FrameParams" + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.frameParams" + "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1906, - "name": "fullHeight", + "id": 1985, + "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, the embedded object container dynamically resizes\naccording to the height of the Liveboard.", - "text": "**Note**: Using fullHeight loads all visualizations on the\nLiveboard simultaneously, which results in multiple warehouse\nqueries and potentially a longer wait for the topmost\nvisualizations to display on the screen.\nSetting `fullHeight` to `false` fetches visualizations\nincrementally as users scroll the page to view the charts and tables.\n", + "shortText": "Disable the worksheet selection option.", "tags": [ { "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n});\n```\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 64, + "fileName": "embed/sage.ts", + "line": 76, "character": 4 } ], @@ -28881,15 +29535,15 @@ } }, { - "id": 1940, - "name": "hiddenActions", + "id": 1999, + "name": "disabledActionReason", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", + "shortText": "The tooltip to display for disabled actions.", "tags": [ { "tag": "version", @@ -28897,84 +29551,77 @@ }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" - }, - { - "tag": "important", - "text": "\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 740, + "line": 727, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1635, - "name": "Action" - } + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenActions" + "name": "Omit.disabledActionReason" } }, { - "id": 1942, - "name": "hiddenTabs", + "id": 1998, + "name": "disabledActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 927, + "line": 714, "character": 4 } ], "type": { "type": "array", "elementType": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 1641, + "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenTabs" + "name": "Omit.disabledActions" } }, { - "id": 1928, - "name": "hideIrrelevantChipsInLiveboardTabs", + "id": 2020, + "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to enable/disable hide irrelevant filters in a Liveboard tab", + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", "tags": [ { "tag": "default", @@ -28982,40 +29629,44 @@ }, { "tag": "version", - "text": "SDK: 1.36.0 | ThoughtSpot:10.6.0.cl" + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n hideIrrelevantChipsInLiveboardTabs: true,\n})\n```\n" + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 354, + "fileName": "types.ts", + "line": 1035, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1918, - "name": "hideLiveboardHeader", + "id": 2026, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the Liveboard header.", + "shortText": "To enable custom column groups in data panel v2", "tags": [ { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" }, { "tag": "default", @@ -29023,80 +29674,51 @@ }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hideLiveboardHeader:true,\n});\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 206, + "fileName": "types.ts", + "line": 1120, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - } - }, - { - "id": 1917, - "name": "hideTabPanel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show or hide the tab panel of the embedded Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.25.0 | Thoughtspot: 9.6.0.cl, 9.8.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n hideTabPanel:true,\n})\n```\n" - } - ] }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 193, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "inheritedFrom": { + "type": "reference", + "name": "Omit.enableCustomColumnGroups" } }, { - "id": 1958, - "name": "insertAsSibling", + "id": 2023, + "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", "tags": [ { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 861, + "line": 1064, "character": 4 } ], @@ -29106,19 +29728,20 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.insertAsSibling" + "name": "Omit.enableV2Shell_experimental" } }, { - "id": 1925, - "name": "isLiveboardCompactHeaderEnabled", + "id": 2019, + "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enables or disables the compact header feature on a Liveboard.\nCompact Liveboard header is turned off by default on Liveboards in\nThoughtSpot Embedded apps.", + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { "tag": "default", @@ -29126,84 +29749,89 @@ }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n isLiveboardCompactHeaderEnabled: true,\n})\n```\n" + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 311, + "fileName": "types.ts", + "line": 913, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeFiltersfromURL" } }, { - "id": 1921, - "name": "isLiveboardHeaderSticky", + "id": 2022, + "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Control the position and visibility of\nthe Liveboard header as the users scroll down the\nembedded Liveboard page.", + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other Liveboard view config\n isLiveboardHeaderSticky: true,\n});\n```" + "tag": "default", + "text": "false" }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw\n" + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 246, + "fileName": "types.ts", + "line": 1050, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeParametersfromURL" } }, { - "id": 1947, - "name": "linkOverride", + "id": 2009, + "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", + "shortText": "This flag can be used to expose translation IDs on the embedded app.", "tags": [ { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + "tag": "default", + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 885, + "line": 1082, "character": 4 } ], @@ -29213,211 +29841,184 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.linkOverride" + "name": "Omit.exposeTranslationIDs" } }, { - "id": 1909, - "name": "liveboardId", + "id": 2012, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The Liveboard to display in the embedded view.\nUse either liveboardId or pinboardId to reference the Liveboard to embed.", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ { "tag": "version", - "text": "SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1" + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n liveboardId:id of liveboard,\n})\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 104, + "fileName": "types.ts", + "line": 690, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2101, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.frameParams" } }, { - "id": 1915, - "name": "liveboardV2", + "id": 2000, + "name": "hiddenActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Render embedded Liveboards and visualizations in the\nnew Liveboard experience mode.", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ { "tag": "version", - "text": "SDK: 1.14.0 | ThoughtSpot: 8.6.0.cl, 8.8.1-sw" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n liveboardV2:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 168, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1945, - "name": "locale", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The locale settings to apply to the embedded view.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + "tag": "important", + "text": "\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 820, + "line": 742, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.locale" + "name": "Omit.hiddenActions" } }, { - "id": 1950, - "name": "overrideOrgId", + "id": 1997, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + "tag": "version", + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1128, + "line": 1151, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "array", + "elementType": { + "type": "reference", + "id": 2314, + "name": "ListPageColumns" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.overrideOrgId" + "name": "Omit.hiddenListColumns" } }, { - "id": 1951, - "name": "preRenderId", + "id": 1987, + "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "shortText": "Show or hide autocomplete suggestions for the search query string.", "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" - }, { "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1012, + "fileName": "embed/sage.ts", + "line": 86, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.preRenderId" + "name": "boolean" } }, { - "id": 1912, - "name": "preventLiveboardFilterRemoval", + "id": 1984, + "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, all filter chips from a\nLiveboard page will be read-only (no X buttons)", + "shortText": "Show or hide the Answer header, that is, the `AI Answer` title\nat the top of the Answer page.", "tags": [ { "tag": "version", - "text": "SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n preventLiveboardFilterRemoval:true,\n})\n```\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.10.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 134, + "fileName": "embed/sage.ts", + "line": 71, "character": 4 } ], @@ -29427,336 +30028,306 @@ } }, { - "id": 1956, - "name": "runtimeFilters", + "id": 1989, + "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "Show or hide sample questions.\nThe sample questions are autogenerated based on the worksheet\nselected for the search operation.", "tags": [ { "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 790, + "fileName": "embed/sage.ts", + "line": 100, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1469, - "name": "RuntimeFilter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.runtimeFilters" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1957, - "name": "runtimeParameters", + "id": 1983, + "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "Show or hide the search bar title.", "tags": [ { "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "text": "SDK: 1.29.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + "tag": "deprecated", + "text": "Thoughtspot: 9.10.0.cl | search bar doesn't have the title from 9.10.0.cl\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 808, + "fileName": "embed/sage.ts", + "line": 65, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2236, - "name": "RuntimeParameter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.runtimeParameters" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1944, - "name": "showAlerts", + "id": 1986, + "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "shortText": "Hide the worksheet selection panel.", "tags": [ { "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 771, + "fileName": "embed/sage.ts", + "line": 81, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.showAlerts" } }, { - "id": 1920, - "name": "showLiveboardDescription", + "id": 2017, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the Liveboard description.", + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardDescription:true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 232, + "fileName": "types.ts", + "line": 863, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.insertAsSibling" } }, { - "id": 1927, - "name": "showLiveboardReverifyBanner", + "id": 2005, + "name": "linkOverride", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to show/hide the re-verify banner\nin Liveboard compact header", + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", "tags": [ - { - "tag": "default", - "text": "true" - }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardReverifyBanner: true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 340, + "fileName": "types.ts", + "line": 887, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.linkOverride" } }, { - "id": 1919, - "name": "showLiveboardTitle", + "id": 2003, + "name": "locale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the Liveboard title.", + "shortText": "The locale settings to apply to the embedded view.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardTitle:true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 219, + "fileName": "types.ts", + "line": 822, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.locale" } }, { - "id": 1926, - "name": "showLiveboardVerifiedBadge", + "id": 2008, + "name": "overrideOrgId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to show/hide verified icon in the Liveboard compact header", + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", "tags": [ { - "tag": "default", - "text": "true" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardVerifiedBadge: true,\n})\n```\n" + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 325, + "fileName": "types.ts", + "line": 1136, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.overrideOrgId" } }, { - "id": 1924, - "name": "showPreviewLoader", + "id": 2010, + "name": "preRenderId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show a preview image of the visualization before the visualization loads.\nOnly works for visualizations embeds with a viz id.", - "text": "Also, viz snashot should be enabled in the ThoughtSpot instance.\nContact ThoughtSpot support to enable this feature.\n\nSince, this will show preview images, be careful that it may show\nundesired data to the user when using row level security.", + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n liveboardId: 'liveboard-id',\n vizId: 'viz-id',\n showPreviewLoader: true,\n});\nembed.render();\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" }, { "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl\n" + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 294, + "fileName": "types.ts", + "line": 1014, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.preRenderId" } }, { - "id": 1941, - "name": "visibleActions", + "id": 2015, + "name": "runtimeFilters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 758, + "line": 792, "character": 4 } ], @@ -29764,396 +30335,229 @@ "type": "array", "elementType": { "type": "reference", - "id": 1635, - "name": "Action" + "id": 1475, + "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.visibleActions" + "name": "Omit.runtimeFilters" } }, { - "id": 1943, - "name": "visibleTabs", + "id": 2016, + "name": "runtimeParameters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", - "text": "Use either `visibleTabs` or `hiddenTabs`.", + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 979, + "line": 810, "character": 4 } ], "type": { "type": "array", "elementType": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2254, + "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.visibleTabs" + "name": "Omit.runtimeParameters" } }, { - "id": 1913, - "name": "visibleVizs", + "id": 1991, + "name": "searchOptions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Array of visualization IDs which should be visible when the Liveboard\nrenders. This can be changed by triggering the `SetVisibleVizs`\nevent.", + "shortText": "Includes the following properties:", + "text": "`searchQuery`: The search query string to pass in the search bar.\nSupports Natural Language Search queries.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", "tags": [ { - "tag": "version", - "text": "SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw" + "tag": "example", + "text": "\n```js\nsearchOptions: {\n searchQuery: 'average sales by country and product type',\n executeSearch: true,\n}\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleVizs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n" + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 150, + "fileName": "embed/sage.ts", + "line": 124, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "name": "SearchOptions" } }, { - "id": 1911, - "name": "vizId", + "id": 2002, + "name": "showAlerts", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The visualization within the Liveboard to display.", + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", "tags": [ { "tag": "version", - "text": "SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw" + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n vizId:'430496d6-6903-4601-937e-2c691821af3c',\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" } ] }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 121, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1916, - 1934, - 1965, - 1946, - 1932, - 1933, - 1966, - 1907, - 1949, - 1939, - 1938, - 1961, - 1923, - 1922, - 1967, - 1964, - 1908, - 1960, - 1963, - 1953, - 1906, - 1940, - 1942, - 1928, - 1918, - 1917, - 1958, - 1925, - 1921, - 1947, - 1909, - 1915, - 1945, - 1950, - 1951, - 1912, - 1956, - 1957, - 1944, - 1920, - 1927, - 1919, - 1926, - 1924, - 1941, - 1943, - 1913, - 1911 - ] - } - ], - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 39, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "hiddenHomepageModules" - }, - { - "type": "literal", - "value": "hiddenHomeLeftNavItems" - }, - { - "type": "literal", - "value": "reorderedHomepageModules" - } - ] - } - ], - "name": "Omit" - } - ] - }, - { - "id": 1469, - "name": "RuntimeFilter", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "A filter that can be applied to ThoughtSpot answers, Liveboards, or\nvisualizations at runtime." - }, - "children": [ - { - "id": 1470, - "name": "columnName", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "comment": { - "shortText": "The name of the column to filter on (case-sensitive)" - }, "sources": [ { "fileName": "types.ts", - "line": 1297, + "line": 773, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1471, - "name": "operator", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "comment": { - "shortText": "The operator to apply" + "name": "boolean" }, - "sources": [ - { - "fileName": "types.ts", - "line": 1301, - "character": 4 - } - ], - "type": { + "inheritedFrom": { "type": "reference", - "id": 1473, - "name": "RuntimeFilterOp" + "name": "Omit.showAlerts" } }, { - "id": 1472, - "name": "values", + "id": 1981, + "name": "showObjectResults", "kind": 1024, "kindString": "Property", - "flags": {}, - "comment": { - "shortText": "The list of operands. Some operators like EQ, LE accept\na single operand, whereas other operators like BW and IN accept multiple\noperands." + "flags": { + "isOptional": true }, - "sources": [ - { - "fileName": "types.ts", - "line": 1307, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "bigint" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1470, - 1471, - 1472 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 1293, - "character": 17 - } - ] - }, - { - "id": 2236, - "name": "RuntimeParameter", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "A filter that can be applied to ThoughtSpot Answers, Liveboards, or\nvisualizations at runtime." - }, - "children": [ - { - "id": 2237, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": {}, "comment": { - "shortText": "The name of the runtime parameter to filter on (case-sensitive)" + "shortText": "If set to true, a list of Liveboard and Answers related\nto the natural language search will be shown below the\nAI generated answer.", + "tags": [ + { + "tag": "deprecated", + "text": "Currently Liveboard and Answers related\nto the natural language search will not be shown for sage\nembed\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 1317, + "fileName": "embed/sage.ts", + "line": 49, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2238, - "name": "value", + "id": 1988, + "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "Values" + "shortText": "Show or hide autocomplete suggestions for the search query string.", + "tags": [ + { + "tag": "deprecated", + "text": "\nCurrently, the object suggestions will not be shown for Natural Language Search.\nYou can use {@link hideAutocompleteSuggestions} instead.\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 1321, + "fileName": "embed/sage.ts", + "line": 93, "character": 4 } ], "type": { - "type": "union", - "types": [ + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2001, + "name": "visibleActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", + "tags": [ { - "type": "intrinsic", - "name": "string" + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "type": "intrinsic", - "name": "number" + "tag": "important", + "text": "" }, { - "type": "intrinsic", - "name": "boolean" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" } ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 760, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.visibleActions" } } ], @@ -30162,32 +30566,98 @@ "title": "Properties", "kind": 1024, "children": [ - 2237, - 2238 + 1993, + 2024, + 2004, + 1992, + 2025, + 1990, + 2007, + 1985, + 1999, + 1998, + 2020, + 2026, + 2023, + 2019, + 2022, + 2009, + 2012, + 2000, + 1997, + 1987, + 1984, + 1989, + 1983, + 1986, + 2017, + 2005, + 2003, + 2008, + 2010, + 2015, + 2016, + 1991, + 2002, + 1981, + 1988, + 2001 ] } ], "sources": [ { - "fileName": "types.ts", - "line": 1313, + "fileName": "embed/sage.ts", + "line": 36, "character": 17 } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "hiddenHomepageModules" + }, + { + "type": "literal", + "value": "hiddenHomeLeftNavItems" + }, + { + "type": "literal", + "value": "hiddenTabs" + }, + { + "type": "literal", + "value": "visibleTabs" + }, + { + "type": "literal", + "value": "reorderedHomepageModules" + } + ] + } + ], + "name": "Omit" + } ] }, { - "id": 1968, - "name": "SageViewConfig", + "id": 1877, + "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { - "shortText": "The configuration attributes for the embedded Natural language search view. Based on\nGPT and LLM.", "tags": [ - { - "tag": "version:", - "text": "SDK: 1.23.0 | ThoughtSpot: 9.8.0.cl, 9.8.0.sw" - }, { "tag": "group", "text": "Embed components\n" @@ -30196,7 +30666,7 @@ }, "children": [ { - "id": 1981, + "id": 1884, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -30219,27 +30689,27 @@ "sources": [ { "fileName": "types.ts", - "line": 841, + "line": 843, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1982, + "id": 1885, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1983, + "id": 1886, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1984, + "id": 1887, "name": "key", "kind": 32768, "flags": {}, @@ -30275,7 +30745,7 @@ } }, { - "id": 2010, + "id": 1913, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -30302,7 +30772,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1074, + "line": 1076, "character": 4 } ], @@ -30316,7 +30786,7 @@ } }, { - "id": 1991, + "id": 1894, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -30339,13 +30809,13 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 875, "character": 4 } ], "type": { "type": "reference", - "id": 1765, + "id": 1771, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -30354,7 +30824,7 @@ } }, { - "id": 1980, + "id": 1883, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -30377,13 +30847,13 @@ "sources": [ { "fileName": "types.ts", - "line": 848, + "line": 850, "character": 4 } ], "type": { "type": "reference", - "id": 2123, + "id": 2139, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -30392,15 +30862,203 @@ } }, { - "id": 2011, - "name": "dataPanelV2", + "id": 1879, + "name": "dataSource", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to control Data panel experience", + "shortText": "Pass the ID of the source to be selected.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.19.0, ThoughtSpot 9.0.0.cl, 9.0.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n dataSource:'id-2345',\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search-bar.tsx", + "line": 46, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1878, + "name": "dataSources", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The array of data source GUIDs to set on load.\nOnly a single data source is supported currently.", + "tags": [ + { + "tag": "deprecated", + "text": "Use `dataSource` instead" + }, + { + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.1-sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n dataSources:['id-2345','id-2345'],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search-bar.tsx", + "line": 34, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 1897, + "name": "disableRedirectionLinksInNewTab", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1094, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disableRedirectionLinksInNewTab" + } + }, + { + "id": 1890, + "name": "disabledActionReason", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The tooltip to display for disabled actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 727, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disabledActionReason" + } + }, + { + "id": 1889, + "name": "disabledActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 714, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disabledActions" + } + }, + { + "id": 1909, + "name": "doNotTrackPreRenderSize", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", "tags": [ { "tag": "default", @@ -30408,18 +31066,18 @@ }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1099, + "line": 1035, "character": 4 } ], @@ -30429,57 +31087,221 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.dataPanelV2" + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1978, - "name": "dataSource", + "id": 1914, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The data source GUID (Worksheet GUID) to set on load." + "shortText": "To enable custom column groups in data panel v2", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1120, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.enableCustomColumnGroups" + } + }, + { + "id": 1912, + "name": "enableV2Shell_experimental", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1064, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.enableV2Shell_experimental" + } + }, + { + "id": 1908, + "name": "excludeRuntimeFiltersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 913, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeFiltersfromURL" + } + }, + { + "id": 1911, + "name": "excludeRuntimeParametersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1050, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeParametersfromURL" + } + }, + { + "id": 1882, + "name": "excludeSearchTokenStringFromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Exclude the search token string from the URL.\nIf set to true, the search token string is not appended to the URL.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.35.7 | ThoughtSpot: 10.8.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n },\n excludeSearchTokenStringFromURL: true,\n});\n```\n" + } + ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 104, + "fileName": "embed/search-bar.tsx", + "line": 97, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 1994, - "name": "disableRedirectionLinksInNewTab", + "id": 1899, + "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "shortText": "This flag can be used to expose translation IDs on the embedded app.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + "tag": "default", + "text": "false" }, { "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1086, + "line": 1082, "character": 4 } ], @@ -30489,48 +31311,57 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" + "name": "Omit.exposeTranslationIDs" } }, { - "id": 1973, - "name": "disableWorksheetChange", + "id": 1902, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Disable the worksheet selection option.", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 76, + "fileName": "types.ts", + "line": 690, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 2101, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.frameParams" } }, { - "id": 1986, - "name": "disabledActionReason", + "id": 1891, + "name": "hiddenActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The tooltip to display for disabled actions.", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ { "tag": "version", @@ -30538,51 +31369,60 @@ }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + }, + { + "tag": "important", + "text": "\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 725, + "line": 742, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActionReason" + "name": "Omit.hiddenActions" } }, { - "id": 1985, - "name": "disabledActions", + "id": 1888, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 712, + "line": 1151, "character": 4 } ], @@ -30590,44 +31430,40 @@ "type": "array", "elementType": { "type": "reference", - "id": 1635, - "name": "Action" + "id": 2314, + "name": "ListPageColumns" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActions" + "name": "Omit.hiddenListColumns" } }, { - "id": 2006, - "name": "doNotTrackPreRenderSize", + "id": 1906, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" }, { "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1033, + "line": 863, "character": 4 } ], @@ -30637,38 +31473,34 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" + "name": "Omit.insertAsSibling" } }, { - "id": 2012, - "name": "enableCustomColumnGroups", + "id": 1895, + "name": "linkOverride", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To enable custom column groups in data panel v2", + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", "tags": [ { "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, - { - "tag": "default", - "text": "false" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1112, + "line": 887, "character": 4 } ], @@ -30678,226 +31510,220 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableCustomColumnGroups" + "name": "Omit.linkOverride" } }, { - "id": 2009, - "name": "enableV2Shell_experimental", + "id": 1893, + "name": "locale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "shortText": "The locale settings to apply to the embedded view.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { - "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 822, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableV2Shell_experimental" + "name": "Omit.locale" } }, { - "id": 2005, - "name": "excludeRuntimeFiltersfromURL", + "id": 1898, + "name": "overrideOrgId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" }, { "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 911, + "line": 1136, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "number" }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeFiltersfromURL" + "name": "Omit.overrideOrgId" } }, { - "id": 2008, - "name": "excludeRuntimeParametersfromURL", + "id": 1900, + "name": "preRenderId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" }, { "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1048, + "line": 1014, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeParametersfromURL" + "name": "Omit.preRenderId" } }, { - "id": 1998, - "name": "frameParams", + "id": 1905, + "name": "runtimeParameters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 688, + "line": 810, "character": 4 } ], "type": { - "type": "reference", - "id": 2085, - "name": "FrameParams" + "type": "array", + "elementType": { + "type": "reference", + "id": 2254, + "name": "RuntimeParameter" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.frameParams" + "name": "Omit.runtimeParameters" } }, { - "id": 1987, - "name": "hiddenActions", + "id": 1881, + "name": "searchOptions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", + "shortText": "Configuration for search options.\nIncludes the following properties:", + "text": "`searchTokenString`: Search tokens to pass in the query.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", "tags": [ { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "tag": "version:", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.4.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" - }, - { - "tag": "important", - "text": "\n" + "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n }\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 740, + "fileName": "embed/search-bar.tsx", + "line": 81, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1635, - "name": "Action" - } - }, - "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenActions" + "name": "SearchOptions" } }, { - "id": 1975, - "name": "hideAutocompleteSuggestions", + "id": 1880, + "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide autocomplete suggestions for the search query string.", + "shortText": "Boolean to define if the last selected data source should be used", "tags": [ { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + "tag": "version:", + "text": "SDK: 1.24.0, ThoughtSpot 9.5.0.cl, 9.5.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n useLastSelectedSources:false,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 86, + "fileName": "embed/search-bar.tsx", + "line": 58, "character": 4 } ], @@ -30907,117 +31733,298 @@ } }, { - "id": 1972, - "name": "hideSageAnswerHeader", + "id": 1892, + "name": "visibleActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the Answer header, that is, the `AI Answer` title\nat the top of the Answer page.", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", "tags": [ { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.10.0.cl\n" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "important", + "text": "" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 71, + "fileName": "types.ts", + "line": 760, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.visibleActions" } - }, + } + ], + "groups": [ { - "id": 1977, - "name": "hideSampleQuestions", + "title": "Properties", + "kind": 1024, + "children": [ + 1884, + 1913, + 1894, + 1883, + 1879, + 1878, + 1897, + 1890, + 1889, + 1909, + 1914, + 1912, + 1908, + 1911, + 1882, + 1899, + 1902, + 1891, + 1888, + 1906, + 1895, + 1893, + 1898, + 1900, + 1905, + 1881, + 1880, + 1892 + ] + } + ], + "sources": [ + { + "fileName": "embed/search-bar.tsx", + "line": 9, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "runtimeFilters" + }, + { + "type": "literal", + "value": "showAlerts" + }, + { + "type": "literal", + "value": "dataPanelV2" + }, + { + "type": "literal", + "value": "hiddenHomepageModules" + }, + { + "type": "literal", + "value": "hiddenHomeLeftNavItems" + }, + { + "type": "literal", + "value": "hiddenTabs" + }, + { + "type": "literal", + "value": "visibleTabs" + }, + { + "type": "literal", + "value": "reorderedHomepageModules" + } + ] + } + ], + "name": "Omit" + } + ] + }, + { + "id": 1823, + "name": "SearchViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The configuration attributes for the embedded search view.", + "tags": [ + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, + "children": [ + { + "id": 1843, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide sample questions.\nThe sample questions are autogenerated based on the worksheet\nselected for the search operation.", + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 100, + "fileName": "types.ts", + "line": 843, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reflection", + "declaration": { + "id": 1844, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1845, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1846, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.additionalFlags" } }, { - "id": 1971, - "name": "hideSearchBarTitle", + "id": 1835, + "name": "answerId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the search bar title.", + "shortText": "The GUID of a saved answer to load initially.", "tags": [ { - "tag": "version", - "text": "SDK: 1.29.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw" + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" }, { - "tag": "deprecated", - "text": "Thoughtspot: 9.10.0.cl | search bar doesn't have the title from 9.10.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n answerId:'sed-1234',\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 65, + "fileName": "embed/search.ts", + "line": 233, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1974, - "name": "hideWorksheetSelector", + "id": 1825, + "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide the worksheet selection panel.", + "shortText": "If set to true, the data panel is collapsed on load,\nbut can be expanded manually.", "tags": [ { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + "tag": "version:", + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n collapseDataPanel:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 81, + "fileName": "embed/search.ts", + "line": 104, "character": 4 } ], @@ -31027,67 +32034,67 @@ } }, { - "id": 2003, - "name": "insertAsSibling", + "id": 1824, + "name": "collapseDataSources", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "shortText": "If set to true, the data sources panel is collapsed on load,\nbut can be expanded manually.", "tags": [ { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n collapseDataSources:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 861, + "fileName": "embed/search.ts", + "line": 91, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.insertAsSibling" } }, { - "id": 1992, - "name": "linkOverride", + "id": 1874, + "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", + "shortText": "To set the initial state of the search bar in case of saved Answers.", "tags": [ + { + "tag": "default", + "text": "true" + }, { "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 885, + "line": 1076, "character": 4 } ], @@ -31097,361 +32104,368 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.linkOverride" + "name": "Omit.collapseSearchBar" } }, { - "id": 1990, - "name": "locale", + "id": 1838, + "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The locale settings to apply to the embedded view.", + "shortText": "To set the initial state of the search bar in case of saved-answers.", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + "tag": "deprecated", + "text": "Use {@link collapseSearchBar} instead\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 820, + "fileName": "embed/search.ts", + "line": 258, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.locale" + "name": "boolean" } }, { - "id": 1995, - "name": "overrideOrgId", + "id": 1854, + "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "shortText": "flag to set ContextMenu Trigger to either left or right click.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1128, + "line": 875, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "reference", + "id": 1771, + "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { "type": "reference", - "name": "Omit.overrideOrgId" + "name": "Omit.contextMenuTrigger" } }, { - "id": 1996, - "name": "preRenderId", + "id": 1842, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + "tag": "version", + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" }, { - "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + "tag": "default", + "text": "''\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1012, + "line": 850, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2139, + "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "name": "Omit.preRenderId" + "name": "Omit.customizations" } }, { - "id": 2001, - "name": "runtimeFilters", + "id": 1840, + "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "This controls the initial behaviour of custom column groups accordion.\nIt takes DataPanelCustomColumnGroupsAccordionState enum values as input.\nList of different enum values:-\n- EXPAND_ALL: Expand all the accordion initially in data panel v2.\n- COLLAPSE_ALL: Collapse all the accordions initially in data panel v2.\n- EXPAND_FIRST: Expand the first accordion and collapse the rest.", "tags": [ { "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + }, + { + "tag": "default", + "text": "DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataPanelCustomGroupsAccordionInitialState:\n DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL,\n});\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 790, + "fileName": "embed/search.ts", + "line": 282, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1469, - "name": "RuntimeFilter" - } - }, - "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeFilters" + "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2002, - "name": "runtimeParameters", + "id": 1875, + "name": "dataPanelV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "Flag to control Data panel experience", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 808, + "line": 1107, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2236, - "name": "RuntimeParameter" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeParameters" + "name": "Omit.dataPanelV2" } }, { - "id": 1979, - "name": "searchOptions", + "id": 1831, + "name": "dataSource", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Includes the following properties:", - "text": "`searchQuery`: The search query string to pass in the search bar.\nSupports Natural Language Search queries.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", + "shortText": "The array of data source GUIDs to set on load.", "tags": [ { - "tag": "example", - "text": "\n```js\nsearchOptions: {\n searchQuery: 'average sales by country and product type',\n executeSearch: true,\n}\n```" + "tag": "version:", + "text": "SDK: 1.19.0" }, { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataSource:'id-234',\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 124, + "fileName": "embed/search.ts", + "line": 179, "character": 4 } ], "type": { - "type": "reference", - "name": "SearchOptions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1989, - "name": "showAlerts", + "id": 1830, + "name": "dataSources", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "shortText": "The array of data source GUIDs to set on load.\nOnly a single data source is supported currently.", "tags": [ { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + "tag": "deprecated", + "text": "Use `dataSource` instead." }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataSources:['id-234','id-456'],\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 771, + "fileName": "embed/search.ts", + "line": 167, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.showAlerts" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 1969, - "name": "showObjectResults", + "id": 1857, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, a list of Liveboard and Answers related\nto the natural language search will be shown below the\nAI generated answer.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { - "tag": "deprecated", - "text": "Currently Liveboard and Answers related\nto the natural language search will not be shown for sage\nembed\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 49, + "fileName": "types.ts", + "line": 1094, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1976, - "name": "showObjectSuggestions", + "id": 1849, + "name": "disabledActionReason", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide autocomplete suggestions for the search query string.", + "shortText": "The tooltip to display for disabled actions.", "tags": [ { - "tag": "deprecated", - "text": "\nCurrently, the object suggestions will not be shown for Natural Language Search.\nYou can use {@link hideAutocompleteSuggestions} instead.\n" + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 93, + "fileName": "types.ts", + "line": 727, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disabledActionReason" } }, { - "id": 1988, - "name": "visibleActions", + "id": 1848, + "name": "disabledActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", "tags": [ { "tag": "version", "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, - { - "tag": "important", - "text": "" - }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 758, + "line": 714, "character": 4 } ], @@ -31459,226 +32473,85 @@ "type": "array", "elementType": { "type": "reference", - "id": 1635, + "id": 1641, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.visibleActions" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1981, - 2010, - 1991, - 1980, - 2011, - 1978, - 1994, - 1973, - 1986, - 1985, - 2006, - 2012, - 2009, - 2005, - 2008, - 1998, - 1987, - 1975, - 1972, - 1977, - 1971, - 1974, - 2003, - 1992, - 1990, - 1995, - 1996, - 2001, - 2002, - 1979, - 1989, - 1969, - 1976, - 1988 - ] - } - ], - "sources": [ - { - "fileName": "embed/sage.ts", - "line": 36, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "hiddenHomepageModules" - }, - { - "type": "literal", - "value": "hiddenHomeLeftNavItems" - }, - { - "type": "literal", - "value": "hiddenTabs" - }, - { - "type": "literal", - "value": "visibleTabs" - }, - { - "type": "literal", - "value": "reorderedHomepageModules" - } - ] - } - ], - "name": "Omit" - } - ] - }, - { - "id": 1869, - "name": "SearchBarViewConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "tags": [ - { - "tag": "group", - "text": "Embed components\n" + "name": "Omit.disabledActions" } - ] - }, - "children": [ + }, { - "id": 1876, - "name": "additionalFlags", + "id": 1870, + "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + "tag": "default", + "text": "false" }, { "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + }, + { + "tag": "example", + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 841, + "line": 1035, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 1877, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 1878, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1879, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - } - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.additionalFlags" + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1903, - "name": "collapseSearchBar", + "id": 1876, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", + "shortText": "To enable custom column groups in data panel v2", "tags": [ { - "tag": "default", - "text": "true" + "tag": "version", + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" }, { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + "tag": "default", + "text": "false" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1074, + "line": 1120, "character": 4 } ], @@ -31688,493 +32561,478 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.collapseSearchBar" + "name": "Omit.enableCustomColumnGroups" } }, { - "id": 1885, - "name": "contextMenuTrigger", + "id": 1828, + "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "shortText": "If set to true, the Search Assist feature is enabled.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + "tag": "version", + "text": "SDK: 1.13.0 | ThoughtSpot: 8.5.0.cl, 8.8.1-sw" }, { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableSearchAssist:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 873, + "fileName": "embed/search.ts", + "line": 142, "character": 4 } ], "type": { - "type": "reference", - "id": 1765, - "name": "ContextMenuTriggerOptions" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.contextMenuTrigger" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1875, - "name": "customizations", + "id": 1873, + "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", "tags": [ { - "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" }, { - "tag": "default", - "text": "''\n" + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 848, + "line": 1064, "character": 4 } ], "type": { - "type": "reference", - "id": 2123, - "name": "CustomisationsInterface" + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.customizations" + "name": "Omit.enableV2Shell_experimental" } }, { - "id": 1871, - "name": "dataSource", + "id": 1869, + "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Pass the ID of the source to be selected.", + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.19.0, ThoughtSpot 9.0.0.cl, 9.0.1.sw" + "tag": "default", + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n dataSource:'id-2345',\n})\n```\n" + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 46, + "fileName": "types.ts", + "line": 913, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeFiltersfromURL" } }, { - "id": 1870, - "name": "dataSources", + "id": 1872, + "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The array of data source GUIDs to set on load.\nOnly a single data source is supported currently.", + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { - "tag": "deprecated", - "text": "Use `dataSource` instead" - }, - { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.1-sw" + "tag": "default", + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n dataSources:['id-2345','id-2345'],\n})\n```\n" + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 34, + "fileName": "types.ts", + "line": 1050, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeParametersfromURL" } }, { - "id": 1888, - "name": "disableRedirectionLinksInNewTab", + "id": 1834, + "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "shortText": "Exclude the search token string from the URL.\nIf set to true, the search token string is not appended to the URL.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + "tag": "version:", + "text": "SDK: 1.35.7 | ThoughtSpot: 10.8.0.cl" }, { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n },\n excludeSearchTokenStringFromURL: true,\n});\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1086, + "fileName": "embed/search.ts", + "line": 221, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1881, - "name": "disabledActionReason", + "id": 1859, + "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The tooltip to display for disabled actions.", + "shortText": "This flag can be used to expose translation IDs on the embedded app.", "tags": [ { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "tag": "default", + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 725, + "line": 1082, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActionReason" + "name": "Omit.exposeTranslationIDs" } }, { - "id": 1880, - "name": "disabledActions", + "id": 1841, + "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", + "shortText": "Flag to remove focus from search bar initially when user\nlands on search embed page.", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "text": "SDK: 1.32.0 | Thoughtspot: 10.3.0.cl" + }, + { + "tag": "default", + "text": "true" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\nfocusSearchBarOnRender: false,\n});\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 712, + "fileName": "embed/search.ts", + "line": 296, "character": 4 } ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1635, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disabledActions" + "type": { + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1899, - "name": "doNotTrackPreRenderSize", + "id": 1829, + "name": "forceTable", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "shortText": "If set to true, the tabular view is set as the default\nformat for presenting search data.", "tags": [ { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" }, { "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n forceTable:true,\n})\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1033, + "fileName": "embed/search.ts", + "line": 154, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1904, - "name": "enableCustomColumnGroups", + "id": 1862, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To enable custom column groups in data panel v2", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ { "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, - { - "tag": "default", - "text": "false" + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1112, + "line": 690, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 2101, + "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableCustomColumnGroups" + "name": "Omit.frameParams" } }, { - "id": 1902, - "name": "enableV2Shell_experimental", + "id": 1850, + "name": "hiddenActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" }, { - "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + "tag": "important", + "text": "\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 742, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableV2Shell_experimental" + "name": "Omit.hiddenActions" } }, { - "id": 1898, - "name": "excludeRuntimeFiltersfromURL", + "id": 1847, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 911, + "line": 1151, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2314, + "name": "ListPageColumns" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeFiltersfromURL" + "name": "Omit.hiddenListColumns" } }, { - "id": 1901, - "name": "excludeRuntimeParametersfromURL", + "id": 1826, + "name": "hideDataSources", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "shortText": "Show or hide the data sources panel.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version:", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.1.0.sw" }, { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideDataSources:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1048, + "fileName": "embed/search.ts", + "line": 116, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.excludeRuntimeParametersfromURL" } }, { - "id": 1874, - "name": "excludeSearchTokenStringFromURL", + "id": 1827, + "name": "hideResults", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Exclude the search token string from the URL.\nIf set to true, the search token string is not appended to the URL.", + "shortText": "Show or hide the charts and tables in search answers.\nThis attribute can be used to create a custom visualization\nusing raw answer data.", "tags": [ { "tag": "version:", - "text": "SDK: 1.35.7 | ThoughtSpot: 10.8.0.cl" + "text": "SDK: 1.2.0 | ThoughtSpot: 9.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n },\n excludeSearchTokenStringFromURL: true,\n});\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideResults:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 97, + "fileName": "embed/search.ts", + "line": 130, "character": 4 } ], @@ -32184,127 +33042,106 @@ } }, { - "id": 1892, - "name": "frameParams", + "id": 1836, + "name": "hideSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", + "shortText": "If set to true, the search page will render without the Search Bar\nThe chart/table should still be visible.", "tags": [ { "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideSearchBar:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 688, + "fileName": "embed/search.ts", + "line": 246, "character": 4 } ], "type": { - "type": "reference", - "id": 2085, - "name": "FrameParams" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.frameParams" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1882, - "name": "hiddenActions", + "id": 1867, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" - }, - { - "tag": "important", - "text": "\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 740, + "line": 863, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1635, - "name": "Action" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenActions" + "name": "Omit.insertAsSibling" } }, { - "id": 1896, - "name": "insertAsSibling", + "id": 1839, + "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "shortText": "Flag to enable onBeforeSearchExecute Embed Event", "tags": [ { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + "tag": "version:", + "text": "SDK: 1.29.0 | Thoughtspot: 10.1.0.cl\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 861, + "fileName": "embed/search.ts", + "line": 263, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.insertAsSibling" } }, { - "id": 1886, + "id": 1855, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -32327,7 +33164,7 @@ "sources": [ { "fileName": "types.ts", - "line": 885, + "line": 887, "character": 4 } ], @@ -32341,7 +33178,7 @@ } }, { - "id": 1884, + "id": 1853, "name": "locale", "kind": 1024, "kindString": "Property", @@ -32364,7 +33201,7 @@ "sources": [ { "fileName": "types.ts", - "line": 820, + "line": 822, "character": 4 } ], @@ -32378,7 +33215,7 @@ } }, { - "id": 1889, + "id": 1858, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -32401,7 +33238,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1128, + "line": 1136, "character": 4 } ], @@ -32415,7 +33252,7 @@ } }, { - "id": 1890, + "id": 1860, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -32438,7 +33275,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1012, + "line": 1014, "character": 4 } ], @@ -32452,7 +33289,48 @@ } }, { - "id": 1895, + "id": 1865, + "name": "runtimeFilters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 792, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.runtimeFilters" + } + }, + { + "id": 1866, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -32475,7 +33353,7 @@ "sources": [ { "fileName": "types.ts", - "line": 808, + "line": 810, "character": 4 } ], @@ -32483,7 +33361,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2236, + "id": 2254, "name": "RuntimeParameter" } }, @@ -32493,7 +33371,7 @@ } }, { - "id": 1873, + "id": 1833, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -32504,20 +33382,16 @@ "shortText": "Configuration for search options.\nIncludes the following properties:", "text": "`searchTokenString`: Search tokens to pass in the query.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", "tags": [ - { - "tag": "version:", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.4.0.sw" - }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n }\n})\n```\n" + "text": "\n```js\nsearchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n}\n```\n" } ] }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 81, + "fileName": "embed/search.ts", + "line": 205, "character": 4 } ], @@ -32527,40 +33401,102 @@ } }, { - "id": 1872, - "name": "useLastSelectedSources", + "id": 1832, + "name": "searchQuery", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to define if the last selected data source should be used", + "shortText": "The initial search query to load the answer with.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.24.0, ThoughtSpot 9.5.0.cl, 9.5.0.sw" + "tag": "deprecated", + "text": "\n\nUse {@link searchOptions} instead.\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 186, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1852, + "name": "showAlerts", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n useLastSelectedSources:false,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 58, + "fileName": "types.ts", + "line": 773, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.showAlerts" } }, { - "id": 1883, + "id": 1837, + "name": "useLastSelectedSources", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to set if last selected dataSource should be used", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.24.0\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 251, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1851, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -32587,22 +33523,235 @@ }, "sources": [ { - "fileName": "types.ts", - "line": 758, + "fileName": "types.ts", + "line": 760, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.visibleActions" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1843, + 1835, + 1825, + 1824, + 1874, + 1838, + 1854, + 1842, + 1840, + 1875, + 1831, + 1830, + 1857, + 1849, + 1848, + 1870, + 1876, + 1828, + 1873, + 1869, + 1872, + 1834, + 1859, + 1841, + 1829, + 1862, + 1850, + 1847, + 1826, + 1827, + 1836, + 1867, + 1839, + 1855, + 1853, + 1858, + 1860, + 1865, + 1866, + 1833, + 1832, + 1852, + 1837, + 1851 + ] + } + ], + "sources": [ + { + "fileName": "embed/search.ts", + "line": 70, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "hiddenHomepageModules" + }, + { + "type": "literal", + "value": "hiddenHomeLeftNavItems" + }, + { + "type": "literal", + "value": "hiddenTabs" + }, + { + "type": "literal", + "value": "visibleTabs" + }, + { + "type": "literal", + "value": "reorderedHomepageModules" + } + ] + } + ], + "name": "Omit" + } + ] + }, + { + "id": 1444, + "name": "SessionInterface", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 1447, + "name": "acSession", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 14, + "character": 4 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1448, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1450, + "name": "genNo", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 14, + "character": 36 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1449, + "name": "sessionId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 14, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1450, + 1449 + ] + } + ] + } + } + }, + { + "id": 1446, + "name": "genNo", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 13, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1445, + "name": "sessionId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 12, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1635, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.visibleActions" + "type": "intrinsic", + "name": "string" } } ], @@ -32611,100 +33760,28 @@ "title": "Properties", "kind": 1024, "children": [ - 1876, - 1903, - 1885, - 1875, - 1871, - 1870, - 1888, - 1881, - 1880, - 1899, - 1904, - 1902, - 1898, - 1901, - 1874, - 1892, - 1882, - 1896, - 1886, - 1884, - 1889, - 1890, - 1895, - 1873, - 1872, - 1883 + 1447, + 1446, + 1445 ] } ], "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 9, + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 11, "character": 17 } - ], - "extendedTypes": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "runtimeFilters" - }, - { - "type": "literal", - "value": "showAlerts" - }, - { - "type": "literal", - "value": "dataPanelV2" - }, - { - "type": "literal", - "value": "hiddenHomepageModules" - }, - { - "type": "literal", - "value": "hiddenHomeLeftNavItems" - }, - { - "type": "literal", - "value": "hiddenTabs" - }, - { - "type": "literal", - "value": "visibleTabs" - }, - { - "type": "literal", - "value": "reorderedHomepageModules" - } - ] - } - ], - "name": "Omit" - } ] }, { - "id": 1817, - "name": "SearchViewConfig", + "id": 1256, + "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { - "shortText": "The configuration attributes for the embedded search view.", + "shortText": "The configuration for the embedded spotterEmbed options.", "tags": [ { "tag": "group", @@ -32714,7 +33791,7 @@ }, "children": [ { - "id": 1837, + "id": 1276, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32737,27 +33814,27 @@ "sources": [ { "fileName": "types.ts", - "line": 841, + "line": 843, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1838, + "id": 1277, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1839, + "id": 1278, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1840, + "id": 1279, "name": "key", "kind": 32768, "flags": {}, @@ -32789,110 +33866,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.additionalFlags" - } - }, - { - "id": 1829, - "name": "answerId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The GUID of a saved answer to load initially.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n answerId:'sed-1234',\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 233, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1819, - "name": "collapseDataPanel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the data panel is collapsed on load,\nbut can be expanded manually.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n collapseDataPanel:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 104, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1818, - "name": "collapseDataSources", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the data sources panel is collapsed on load,\nbut can be expanded manually.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n collapseDataSources:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 91, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "name": "ViewConfig.additionalFlags" } }, { - "id": 1866, + "id": 1297, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -32919,7 +33897,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1074, + "line": 1076, "character": 4 } ], @@ -32929,48 +33907,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.collapseSearchBar" - } - }, - { - "id": 1832, - "name": "collapseSearchBarInitially", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To set the initial state of the search bar in case of saved-answers.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" - }, - { - "tag": "deprecated", - "text": "Use {@link collapseSearchBar} instead\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 258, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "name": "ViewConfig.collapseSearchBar" } }, { - "id": 1847, + "id": 1282, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -32993,22 +33934,22 @@ "sources": [ { "fileName": "types.ts", - "line": 873, + "line": 875, "character": 4 } ], "type": { "type": "reference", - "id": 1765, + "id": 1771, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { "type": "reference", - "name": "Omit.contextMenuTrigger" + "name": "ViewConfig.contextMenuTrigger" } }, { - "id": 1836, + "id": 1280, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33031,59 +33972,22 @@ "sources": [ { "fileName": "types.ts", - "line": 848, + "line": 850, "character": 4 } ], "type": { "type": "reference", - "id": 2123, + "id": 2139, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "name": "Omit.customizations" - } - }, - { - "id": 1834, - "name": "dataPanelCustomGroupsAccordionInitialState", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This controls the initial behaviour of custom column groups accordion.\nIt takes DataPanelCustomColumnGroupsAccordionState enum values as input.\nList of different enum values:-\n- EXPAND_ALL: Expand all the accordion initially in data panel v2.\n- COLLAPSE_ALL: Collapse all the accordions initially in data panel v2.\n- EXPAND_FIRST: Expand the first accordion and collapse the rest.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" - }, - { - "tag": "default", - "text": "DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataPanelCustomGroupsAccordionInitialState:\n DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 282, - "character": 4 - } - ], - "type": { - "type": "reference", - "name": "DataPanelCustomColumnGroupsAccordionState" + "name": "ViewConfig.customizations" } }, { - "id": 1867, + "id": 1261, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -33099,7 +34003,7 @@ }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + "text": "SDK: 1.36.0 | ThoughtSpot Cloud: 10.4.0.cl" }, { "tag": "example", @@ -33109,8 +34013,8 @@ }, "sources": [ { - "fileName": "types.ts", - "line": 1099, + "fileName": "embed/conversation.ts", + "line": 67, "character": 4 } ], @@ -33118,119 +34022,83 @@ "type": "intrinsic", "name": "boolean" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "Omit.dataPanelV2" + "name": "ViewConfig.dataPanelV2" } }, { - "id": 1825, - "name": "dataSource", + "id": 1299, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The array of data source GUIDs to set on load.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.19.0" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataSource:'id-234',\n})\n```\n" + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 179, + "fileName": "types.ts", + "line": 1094, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1824, - "name": "dataSources", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The array of data source GUIDs to set on load.\nOnly a single data source is supported currently.", - "tags": [ - { - "tag": "deprecated", - "text": "Use `dataSource` instead." - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataSources:['id-234','id-456'],\n})\n```\n" - } - ] + "name": "boolean" }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 167, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1850, - "name": "disableRedirectionLinksInNewTab", + "id": 1259, + "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "shortText": "disableSourceSelection : Disables data source selection\nbut still display the selected data source.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... // other options\n disableSourceSelection : true,\n})\n```" }, { "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1086, + "fileName": "embed/conversation.ts", + "line": 42, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1842, + "id": 1269, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -33253,7 +34121,7 @@ "sources": [ { "fileName": "types.ts", - "line": 725, + "line": 727, "character": 4 } ], @@ -33263,11 +34131,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActionReason" + "name": "ViewConfig.disabledActionReason" } }, { - "id": 1841, + "id": 1268, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -33290,7 +34158,7 @@ "sources": [ { "fileName": "types.ts", - "line": 712, + "line": 714, "character": 4 } ], @@ -33298,17 +34166,17 @@ "type": "array", "elementType": { "type": "reference", - "id": 1635, + "id": 1641, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActions" + "name": "ViewConfig.disabledActions" } }, { - "id": 1862, + "id": 1293, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -33335,7 +34203,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1033, + "line": 1035, "character": 4 } ], @@ -33345,11 +34213,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" + "name": "ViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1868, + "id": 1300, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -33376,7 +34244,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1112, + "line": 1120, "character": 4 } ], @@ -33386,44 +34254,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableCustomColumnGroups" - } - }, - { - "id": 1822, - "name": "enableSearchAssist", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the Search Assist feature is enabled.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.13.0 | ThoughtSpot: 8.5.0.cl, 8.8.1-sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableSearchAssist:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 142, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "name": "ViewConfig.enableCustomColumnGroups" } }, { - "id": 1865, + "id": 1296, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -33446,7 +34281,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1062, + "line": 1064, "character": 4 } ], @@ -33456,11 +34291,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableV2Shell_experimental" + "name": "ViewConfig.enableV2Shell_experimental" } }, { - "id": 1861, + "id": 1286, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -33484,7 +34319,7 @@ "sources": [ { "fileName": "types.ts", - "line": 911, + "line": 913, "character": 4 } ], @@ -33494,11 +34329,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeFiltersfromURL" + "name": "ViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1864, + "id": 1295, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -33522,7 +34357,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1048, + "line": 1050, "character": 4 } ], @@ -33532,114 +34367,48 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeParametersfromURL" - } - }, - { - "id": 1828, - "name": "excludeSearchTokenStringFromURL", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Exclude the search token string from the URL.\nIf set to true, the search token string is not appended to the URL.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.35.7 | ThoughtSpot: 10.8.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n },\n excludeSearchTokenStringFromURL: true,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 221, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "name": "ViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1835, - "name": "focusSearchBarOnRender", + "id": 1298, + "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to remove focus from search bar initially when user\nlands on search embed page.", + "shortText": "This flag can be used to expose translation IDs on the embedded app.", "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.3.0.cl" - }, { "tag": "default", - "text": "true" + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\nfocusSearchBarOnRender: false,\n});\n```\n" + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 296, + "fileName": "types.ts", + "line": 1082, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - } - }, - { - "id": 1823, - "name": "forceTable", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the tabular view is set as the default\nformat for presenting search data.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n forceTable:true,\n})\n" - } - ] }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 154, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.exposeTranslationIDs" } }, { - "id": 1854, + "id": 1265, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -33662,22 +34431,22 @@ "sources": [ { "fileName": "types.ts", - "line": 688, + "line": 690, "character": 4 } ], "type": { "type": "reference", - "id": 2085, + "id": 2101, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "name": "Omit.frameParams" + "name": "ViewConfig.frameParams" } }, { - "id": 1843, + "id": 1270, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -33704,7 +34473,7 @@ "sources": [ { "fileName": "types.ts", - "line": 740, + "line": 742, "character": 4 } ], @@ -33712,172 +34481,205 @@ "type": "array", "elementType": { "type": "reference", - "id": 1635, + "id": 1641, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenActions" + "name": "ViewConfig.hiddenActions" } }, { - "id": 1820, - "name": "hideDataSources", + "id": 1291, + "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the data sources panel.", + "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.1.0.sw" + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideDataSources:true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 116, + "fileName": "types.ts", + "line": 999, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2107, + "name": "HomeLeftNavItem" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomeLeftNavItems" } }, { - "id": 1821, - "name": "hideResults", + "id": 1288, + "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the charts and tables in search answers.\nThis attribute can be used to create a custom visualization\nusing raw answer data.", + "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { - "tag": "version:", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.1.0.sw" + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideResults:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 130, + "fileName": "types.ts", + "line": 946, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2115, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomepageModules" } }, { - "id": 1830, - "name": "hideSearchBar", + "id": 1302, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, the search page will render without the Search Bar\nThe chart/table should still be visible.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", "tags": [ { "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideSearchBar:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 246, + "fileName": "types.ts", + "line": 1151, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2314, + "name": "ListPageColumns" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenListColumns" } }, { - "id": 1859, - "name": "insertAsSibling", + "id": 1287, + "name": "hiddenTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", "tags": [ { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 861, + "line": 929, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.insertAsSibling" + "name": "ViewConfig.hiddenTabs" } }, { - "id": 1833, - "name": "isOnBeforeGetVizDataInterceptEnabled", + "id": 1263, + "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to enable onBeforeSearchExecute Embed Event", + "shortText": "hideSampleQuestions : Hide sample questions on\nthe initial screen of the conversation.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.29.0 | Thoughtspot: 10.1.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... // other options\n hideSampleQuestions : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 263, + "fileName": "embed/conversation.ts", + "line": 94, "character": 4 } ], @@ -33887,7 +34689,77 @@ } }, { - "id": 1848, + "id": 1260, + "name": "hideSourceSelection", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "hideSourceSelection : Hide data source selection", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... // other options\n hideSourceSelection : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 54, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1281, + "name": "insertAsSibling", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 863, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.insertAsSibling" + } + }, + { + "id": 1283, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -33910,7 +34782,7 @@ "sources": [ { "fileName": "types.ts", - "line": 885, + "line": 887, "character": 4 } ], @@ -33920,11 +34792,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.linkOverride" + "name": "ViewConfig.linkOverride" } }, { - "id": 1846, + "id": 1275, "name": "locale", "kind": 1024, "kindString": "Property", @@ -33947,7 +34819,7 @@ "sources": [ { "fileName": "types.ts", - "line": 820, + "line": 822, "character": 4 } ], @@ -33957,11 +34829,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.locale" + "name": "ViewConfig.locale" } }, { - "id": 1851, + "id": 1301, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -33984,7 +34856,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1128, + "line": 1136, "character": 4 } ], @@ -33994,11 +34866,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.overrideOrgId" + "name": "ViewConfig.overrideOrgId" } }, { - "id": 1852, + "id": 1292, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -34021,7 +34893,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1012, + "line": 1014, "character": 4 } ], @@ -34031,34 +34903,35 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.preRenderId" + "name": "ViewConfig.preRenderId" } }, { - "id": 1857, - "name": "runtimeFilters", + "id": 1289, + "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 790, + "line": 963, "character": 4 } ], @@ -34066,40 +34939,40 @@ "type": "array", "elementType": { "type": "reference", - "id": 1469, - "name": "RuntimeFilter" + "id": 2115, + "name": "HomepageModule" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeFilters" + "name": "ViewConfig.reorderedHomepageModules" } }, { - "id": 1858, - "name": "runtimeParameters", + "id": 1273, + "name": "runtimeFilters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 808, + "line": 792, "character": 4 } ], @@ -34107,76 +34980,81 @@ "type": "array", "elementType": { "type": "reference", - "id": 2236, - "name": "RuntimeParameter" + "id": 1475, + "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeParameters" + "name": "ViewConfig.runtimeFilters" } }, { - "id": 1827, - "name": "searchOptions", + "id": 1274, + "name": "runtimeParameters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Configuration for search options.\nIncludes the following properties:", - "text": "`searchTokenString`: Search tokens to pass in the query.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ + { + "tag": "version", + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + }, { "tag": "example", - "text": "\n```js\nsearchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n}\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 205, + "fileName": "types.ts", + "line": 810, "character": 4 } ], "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2254, + "name": "RuntimeParameter" + } + }, + "inheritedFrom": { "type": "reference", - "name": "SearchOptions" + "name": "ViewConfig.runtimeParameters" } }, { - "id": 1826, - "name": "searchQuery", + "id": 1258, + "name": "searchOptions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The initial search query to load the answer with.", - "tags": [ - { - "tag": "deprecated", - "text": "\n\nUse {@link searchOptions} instead.\n" - } - ] + "shortText": "Ability to pass a starting search query to the conversation." }, "sources": [ { - "fileName": "embed/search.ts", - "line": 186, + "fileName": "embed/conversation.ts", + "line": 29, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "name": "SearchOptions" } }, { - "id": 1845, + "id": 1272, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -34199,7 +35077,7 @@ "sources": [ { "fileName": "types.ts", - "line": 771, + "line": 773, "character": 4 } ], @@ -34209,30 +35087,34 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.showAlerts" + "name": "ViewConfig.showAlerts" } }, { - "id": 1831, - "name": "useLastSelectedSources", + "id": 1262, + "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to set if last selected dataSource should be used", + "shortText": "showSpotterLimitations : show limitation text\nof the spotter underneath the chat input.\ndefault is false.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.24.0\n" + "tag": "example", + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... // other options\n showSpotterLimitations : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.36.0 | Thoughtspot: 10.5.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 251, + "fileName": "embed/conversation.ts", + "line": 81, "character": 4 } ], @@ -34242,7 +35124,7 @@ } }, { - "id": 1844, + "id": 1271, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -34270,7 +35152,7 @@ "sources": [ { "fileName": "types.ts", - "line": 758, + "line": 760, "character": 4 } ], @@ -34278,218 +35160,69 @@ "type": "array", "elementType": { "type": "reference", - "id": 1635, + "id": 1641, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.visibleActions" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1837, - 1829, - 1819, - 1818, - 1866, - 1832, - 1847, - 1836, - 1834, - 1867, - 1825, - 1824, - 1850, - 1842, - 1841, - 1862, - 1868, - 1822, - 1865, - 1861, - 1864, - 1828, - 1835, - 1823, - 1854, - 1843, - 1820, - 1821, - 1830, - 1859, - 1833, - 1848, - 1846, - 1851, - 1852, - 1857, - 1858, - 1827, - 1826, - 1845, - 1831, - 1844 - ] - } - ], - "sources": [ - { - "fileName": "embed/search.ts", - "line": 70, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "hiddenHomepageModules" - }, - { - "type": "literal", - "value": "hiddenHomeLeftNavItems" - }, - { - "type": "literal", - "value": "hiddenTabs" - }, - { - "type": "literal", - "value": "visibleTabs" - }, - { - "type": "literal", - "value": "reorderedHomepageModules" - } - ] - } - ], - "name": "Omit" - } - ] - }, - { - "id": 1438, - "name": "SessionInterface", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 1441, - "name": "acSession", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 14, - "character": 4 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1442, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1444, - "name": "genNo", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 14, - "character": 36 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1443, - "name": "sessionId", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 14, - "character": 17 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1444, - 1443 - ] - } - ] - } + "name": "ViewConfig.visibleActions" } }, { - "id": 1440, - "name": "genNo", + "id": 1290, + "name": "visibleTabs", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", + "text": "Use either `visibleTabs` or `hiddenTabs`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + } + ] + }, "sources": [ { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 13, + "fileName": "types.ts", + "line": 981, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleTabs" } }, { - "id": 1439, - "name": "sessionId", + "id": 1257, + "name": "worksheetId", "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "The ID of the worksheet to use for the conversation." + }, "sources": [ { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 12, + "fileName": "embed/conversation.ts", + "line": 25, "character": 4 } ], @@ -34504,29 +35237,69 @@ "title": "Properties", "kind": 1024, "children": [ - 1441, - 1440, - 1439 + 1276, + 1297, + 1282, + 1280, + 1261, + 1299, + 1259, + 1269, + 1268, + 1293, + 1300, + 1296, + 1286, + 1295, + 1298, + 1265, + 1270, + 1291, + 1288, + 1302, + 1287, + 1263, + 1260, + 1281, + 1283, + 1275, + 1301, + 1292, + 1289, + 1273, + 1274, + 1258, + 1272, + 1262, + 1271, + 1290, + 1257 ] } ], "sources": [ { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 11, + "fileName": "embed/conversation.ts", + "line": 21, "character": 17 } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "ViewConfig" + } ] }, { - "id": 1445, + "id": 1451, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1446, + "id": 1452, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -34544,7 +35317,7 @@ } }, { - "id": 1447, + "id": 1453, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -34567,8 +35340,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1446, - 1447 + 1452, + 1453 ] } ], @@ -34581,14 +35354,14 @@ ] }, { - "id": 2266, + "id": 2284, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2267, + "id": 2285, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -34596,7 +35369,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4827, + "line": 4881, "character": 4 } ], @@ -34609,7 +35382,7 @@ } }, { - "id": 2268, + "id": 2286, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -34617,7 +35390,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4828, + "line": 4882, "character": 4 } ], @@ -34635,21 +35408,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2267, - 2268 + 2285, + 2286 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4826, + "line": 4880, "character": 17 } ] }, { - "id": 2134, + "id": 2152, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -34659,7 +35432,7 @@ }, "children": [ { - "id": 2136, + "id": 2154, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -34689,20 +35462,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2137, + "id": 2155, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2138, + "id": 2156, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2139, + "id": 2157, "name": "selector", "kind": 32768, "flags": {}, @@ -34715,7 +35488,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2140, + "id": 2158, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -34728,14 +35501,14 @@ } ], "indexSignature": { - "id": 2141, + "id": 2159, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2142, + "id": 2160, "name": "declaration", "kind": 32768, "flags": {}, @@ -34757,7 +35530,7 @@ } }, { - "id": 2135, + "id": 2153, "name": "variables", "kind": 1024, "kindString": "Property", @@ -34776,7 +35549,7 @@ ], "type": { "type": "reference", - "id": 2143, + "id": 2161, "name": "CustomCssVariables" } } @@ -34786,8 +35559,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2136, - 2135 + 2154, + 2153 ] } ], @@ -35092,7 +35865,7 @@ ] }, { - "id": 2106, + "id": 2122, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -35119,7 +35892,7 @@ } }, { - "id": 2110, + "id": 2126, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -35127,14 +35900,14 @@ "sources": [ { "fileName": "types.ts", - "line": 1159, + "line": 1182, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2111, + "id": 2127, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -35151,13 +35924,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1159, + "line": 1182, "character": 30 } ], "signatures": [ { - "id": 2112, + "id": 2128, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -35167,19 +35940,19 @@ }, "parameters": [ { - "id": 2113, + "id": 2129, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2118, + "id": 2134, "name": "MessagePayload" } }, { - "id": 2114, + "id": 2130, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -35189,7 +35962,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2115, + "id": 2131, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -35197,13 +35970,13 @@ "sources": [ { "fileName": "types.ts", - "line": 1166, + "line": 1189, "character": 16 } ], "signatures": [ { - "id": 2116, + "id": 2132, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -35213,7 +35986,7 @@ }, "parameters": [ { - "id": 2117, + "id": 2133, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -35244,7 +36017,7 @@ } }, { - "id": 2107, + "id": 2123, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -35261,21 +36034,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1148, + "line": 1171, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2108, + "id": 2124, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2109, + "id": 2125, "name": "start", "kind": 1024, "kindString": "Property", @@ -35288,7 +36061,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1153, + "line": 1176, "character": 4 } ], @@ -35303,14 +36076,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2109 + 2125 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1148, + "line": 1171, "character": 29 } ] @@ -35318,7 +36091,7 @@ } }, { - "id": 2118, + "id": 2134, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -35335,21 +36108,21 @@ "sources": [ { "fileName": "types.ts", - "line": 1135, + "line": 1158, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2119, + "id": 2135, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2121, + "id": 2137, "name": "data", "kind": 1024, "kindString": "Property", @@ -35357,7 +36130,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1139, + "line": 1162, "character": 4 } ], @@ -35367,7 +36140,7 @@ } }, { - "id": 2122, + "id": 2138, "name": "status", "kind": 1024, "kindString": "Property", @@ -35377,7 +36150,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1141, + "line": 1164, "character": 4 } ], @@ -35387,7 +36160,7 @@ } }, { - "id": 2120, + "id": 2136, "name": "type", "kind": 1024, "kindString": "Property", @@ -35395,7 +36168,7 @@ "sources": [ { "fileName": "types.ts", - "line": 1137, + "line": 1160, "character": 4 } ], @@ -35410,16 +36183,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2121, - 2122, - 2120 + 2137, + 2138, + 2136 ] } ], "sources": [ { "fileName": "types.ts", - "line": 1135, + "line": 1158, "character": 29 } ] @@ -35476,7 +36249,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1365, + "id": 1371, "name": "AnswerService" } } @@ -35738,7 +36511,7 @@ ], "type": { "type": "reference", - "id": 1365, + "id": 1371, "name": "AnswerService" } }, @@ -35817,7 +36590,7 @@ }, "type": { "type": "reference", - "id": 1769, + "id": 1775, "name": "EmbedConfig" } } @@ -35917,14 +36690,14 @@ }, "type": { "type": "reference", - "id": 1769, + "id": 1775, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1312, + "id": 1318, "name": "AuthEventEmitter" } } @@ -36064,7 +36837,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2080, + "id": 2096, "name": "PrefetchFeatures" } } @@ -36136,7 +36909,7 @@ ] }, { - "id": 2296, + "id": 2320, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -36152,7 +36925,7 @@ ], "signatures": [ { - "id": 2297, + "id": 2321, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -36346,7 +37119,7 @@ ] }, { - "id": 2246, + "id": 2264, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -36360,7 +37133,7 @@ ], "signatures": [ { - "id": 2247, + "id": 2265, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -36370,7 +37143,7 @@ }, "parameters": [ { - "id": 2248, + "id": 2266, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -36382,7 +37155,7 @@ } }, { - "id": 2249, + "id": 2267, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -36393,7 +37166,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2250, + "id": 2268, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -36416,63 +37189,64 @@ "title": "Enumerations", "kind": 4, "children": [ - 1635, - 1310, - 1297, + 1641, + 1316, 1303, - 1457, - 1765, - 1631, - 1489, - 2091, - 2262, - 2099, - 1570, - 2239, - 1448, - 2080, - 1473, - 2289 + 1309, + 1463, + 1771, + 1637, + 1495, + 2107, + 2280, + 2115, + 1576, + 2314, + 2257, + 1454, + 2096, + 1479, + 2307 ] }, { "title": "Classes", "kind": 128, "children": [ - 1365, + 1371, 872, 1051, - 1105, 528, 715, 212, - 55 + 55, + 1109 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2013, - 1312, - 1065, - 1252, - 2269, - 2143, - 2131, - 2123, - 1769, - 2085, - 1905, - 1469, - 2236, - 1968, - 1869, - 1817, - 1438, - 1445, - 2266, - 2134, + 2027, + 1318, + 1067, + 2287, + 2161, + 2149, + 2139, + 1775, + 2101, + 1915, + 1475, + 2254, + 1980, + 1877, + 1823, + 1444, + 1256, + 1451, + 2284, + 2152, 21, 25 ] @@ -36481,10 +37255,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2106, - 2110, - 2107, - 2118 + 2122, + 2126, + 2123, + 2134 ] }, { @@ -36500,16 +37274,16 @@ 1, 4, 7, - 2296, + 2320, 37, - 2246 + 2264 ] } ], "sources": [ { "fileName": "index.ts", - "line": 9, + "line": 1, "character": 0 } ] From 28468ddd708e1c27249fdf6068b43a7ab4a8dcad Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 24 Apr 2025 14:44:39 +0530 Subject: [PATCH 02/29] renamed bodylessConversation --- src/embed/bodyless-conversation.spec.ts | 8 +- src/embed/bodyless-conversation.ts | 12 +- static/typedoc/typedoc.json | 10882 +++++++++++----------- 3 files changed, 5451 insertions(+), 5451 deletions(-) diff --git a/src/embed/bodyless-conversation.spec.ts b/src/embed/bodyless-conversation.spec.ts index 108cc144..a0577975 100644 --- a/src/embed/bodyless-conversation.spec.ts +++ b/src/embed/bodyless-conversation.spec.ts @@ -1,5 +1,5 @@ import 'jest-fetch-mock'; -import { BodylessConversation, BodylessConversationViewConfig } from './bodyless-conversation'; +import { SpotterAgentEmbed, SpotterAgentEmbedViewConfig } from './bodyless-conversation'; import * as authInstance from '../auth'; import { init } from '../index'; import { Action, AuthType, RuntimeFilterOp } from '../types'; @@ -14,7 +14,7 @@ import { expectUrlToHaveParamsWithValues, } from '../test/test-utils'; -describe('BodylessConversation', () => { +describe('SpotterAgentEmbed', () => { const thoughtSpotHost = 'tshost'; beforeAll(() => { @@ -117,11 +117,11 @@ describe('BodylessConversation', () => { }, }), ); - const viewConfig: BodylessConversationViewConfig = { + const viewConfig: SpotterAgentEmbedViewConfig = { worksheetId: 'worksheetId', }; - const spotterEmbed = new BodylessConversation(viewConfig); + const spotterEmbed = new SpotterAgentEmbed(viewConfig); const result = await spotterEmbed.sendMessage('userMessage'); const iframeSrc = getIFrameSrc(result.container); expectUrlToHaveParamsWithValues(iframeSrc, { diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index af87a602..a16e2f22 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -8,14 +8,14 @@ import { getQueryParamString } from '../utils'; * Configuration for bodyless conversation options. * @group Embed components */ -export interface BodylessConversationViewConfig extends ViewConfig { +export interface SpotterAgentEmbedViewConfig extends ViewConfig { /** * The ID of the worksheet to use for the conversation. */ worksheetId: string; } -interface ConversationMessageViewConfig extends BodylessConversationViewConfig { +interface ConversationMessageViewConfig extends SpotterAgentEmbedViewConfig { sessionId: string; genNo: number; acSessionId: string; @@ -68,9 +68,9 @@ class ConversationMessage extends TsEmbed { * chatbots or other conversational interfaces. * @example * ```js - * import { BodylessConversation } from '@thoughtspot/visual-embed-sdk'; + * import { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk'; * - * const conversation = new BodylessConversation({ + * const conversation = new SpotterAgentEmbed({ * worksheetId: 'worksheetId', * }); * @@ -82,10 +82,10 @@ class ConversationMessage extends TsEmbed { * @group Embed components * @version SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl */ -export class BodylessConversation { +export class SpotterAgentEmbed { private conversationService: ConversationService; - constructor(private viewConfig: BodylessConversationViewConfig) { + constructor(private viewConfig: SpotterAgentEmbedViewConfig) { const embedConfig = getEmbedConfig(); this.conversationService = new ConversationService( diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 8fc282a8..7175a5b0 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -11835,260 +11835,6 @@ } ] }, - { - "id": 1051, - "name": "BodylessConversation", - "kind": 128, - "kindString": "Class", - "flags": {}, - "comment": { - "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nimport { BodylessConversation } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new BodylessConversation({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" - }, - { - "tag": "group", - "text": "Embed components" - }, - { - "tag": "version", - "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" - } - ] - }, - "children": [ - { - "id": 1052, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": {}, - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 88, - "character": 4 - } - ], - "signatures": [ - { - "id": 1053, - "name": "new BodylessConversation", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 1054, - "name": "viewConfig", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1067, - "name": "BodylessConversationViewConfig" - } - } - ], - "type": { - "type": "reference", - "id": 1051, - "name": "BodylessConversation" - } - } - ] - }, - { - "id": 1056, - "name": "sendMessage", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 97, - "character": 17 - } - ], - "signatures": [ - { - "id": 1057, - "name": "sendMessage", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1058, - "name": "userMessage", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "reflection", - "declaration": { - "id": 1059, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1061, - "name": "container", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - } - }, - { - "id": 1060, - "name": "error", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - }, - { - "id": 1062, - "name": "viz", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1061, - 1060, - 1062 - ] - } - ] - } - }, - { - "type": "reflection", - "declaration": { - "id": 1063, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1064, - "name": "container", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLDivElement" - } - }, - { - "id": 1066, - "name": "error", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - } - }, - { - "id": 1065, - "name": "viz", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "name": "ConversationMessage" - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1064, - 1066, - 1065 - ] - } - ] - } - } - ] - } - ], - "name": "Promise" - } - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 1052 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 1056 - ] - } - ], - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 85, - "character": 13 - } - ] - }, { "id": 528, "name": "LiveboardEmbed", @@ -17082,17 +16828,271 @@ ] }, { - "id": 1109, - "name": "SpotterEmbed", + "id": 1051, + "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot AI Conversation.", + "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", "tags": [ { - "tag": "group", - "text": "Embed components" + "tag": "example", + "text": "\n```js\nimport { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new SpotterAgentEmbed({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" + }, + { + "tag": "group", + "text": "Embed components" + }, + { + "tag": "version", + "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" + } + ] + }, + "children": [ + { + "id": 1052, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 88, + "character": 4 + } + ], + "signatures": [ + { + "id": 1053, + "name": "new SpotterAgentEmbed", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1054, + "name": "viewConfig", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1067, + "name": "SpotterAgentEmbedViewConfig" + } + } + ], + "type": { + "type": "reference", + "id": 1051, + "name": "SpotterAgentEmbed" + } + } + ] + }, + { + "id": 1056, + "name": "sendMessage", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 97, + "character": 17 + } + ], + "signatures": [ + { + "id": 1057, + "name": "sendMessage", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1058, + "name": "userMessage", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reflection", + "declaration": { + "id": 1059, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1061, + "name": "container", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + } + }, + { + "id": 1060, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 1062, + "name": "viz", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1061, + 1060, + 1062 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 1063, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1064, + "name": "container", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLDivElement" + } + }, + { + "id": 1066, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + } + }, + { + "id": 1065, + "name": "viz", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "name": "ConversationMessage" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1064, + 1066, + 1065 + ] + } + ] + } + } + ] + } + ], + "name": "Promise" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1052 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 1056 + ] + } + ], + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 85, + "character": 13 + } + ] + }, + { + "id": 1109, + "name": "SpotterEmbed", + "kind": 128, + "kindString": "Class", + "flags": {}, + "comment": { + "shortText": "Embed ThoughtSpot AI Conversation.", + "tags": [ + { + "tag": "group", + "text": "Embed components" }, { "tag": "example", @@ -21329,1299 +21329,964 @@ ] }, { - "id": 1067, - "name": "BodylessConversationViewConfig", + "id": 2287, + "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { - "shortText": "Configuration for bodyless conversation options.", "tags": [ { "tag": "group", - "text": "Embed components\n" + "text": "Events\n" } ] }, "children": [ { - "id": 1081, - "name": "additionalFlags", + "id": 2288, + "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" - } - ] - }, "sources": [ { "fileName": "types.ts", - "line": 843, + "line": 4889, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1082, + "id": 2289, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, - "indexSignature": { - "id": 1083, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1084, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" + "children": [ + { + "id": 2290, + "name": "clickedPoint", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4890, + "character": 8 } + ], + "type": { + "type": "reference", + "id": 2284, + "name": "VizPoint" } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, + }, + { + "id": 2291, + "name": "selectedPoints", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ { - "type": "intrinsic", - "name": "boolean" + "fileName": "types.ts", + "line": 4891, + "character": 8 } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2284, + "name": "VizPoint" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2290, + 2291 ] } - } - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.additionalFlags" - } - }, - { - "id": 1102, - "name": "collapseSearchBar", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", - "tags": [ - { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1076, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.collapseSearchBar" - } - }, - { - "id": 1087, - "name": "contextMenuTrigger", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 875, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 1771, - "name": "ContextMenuTriggerOptions" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.contextMenuTrigger" - } - }, - { - "id": 1085, - "name": "customizations", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" - }, - { - "tag": "default", - "text": "''\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 850, - "character": 4 + ] } - ], - "type": { - "type": "reference", - "id": 2139, - "name": "CustomisationsInterface" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.customizations" } }, { - "id": 1105, - "name": "dataPanelV2", + "id": 2292, + "name": "embedAnswerData", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to control Data panel experience", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" - } - ] - }, + "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 1107, + "line": 4893, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.dataPanelV2" - } - }, + "type": "reflection", + "declaration": { + "id": 2293, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2301, + "name": "columns", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4901, + "character": 8 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + }, + { + "id": 2302, + "name": "data", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4902, + "character": 8 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + }, + { + "id": 2295, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4895, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2294, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4894, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2296, + "name": "sources", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4896, + "character": 8 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2297, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2298, + "name": "header", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4897, + "character": 12 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2299, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2300, + "name": "guid", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4898, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2300 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2298 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2301, + 2302, + 2295, + 2294, + 2296 + ] + } + ], + "indexSignature": { + "id": 2303, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 2304, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + } + } + }, { - "id": 1104, - "name": "disableRedirectionLinksInNewTab", + "id": 2305, + "name": "session", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" - } - ] - }, + "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 1094, + "line": 4905, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { "type": "reference", - "name": "ViewConfig.disableRedirectionLinksInNewTab" + "id": 1444, + "name": "SessionInterface" } }, { - "id": 1074, - "name": "disabledActionReason", + "id": 2306, + "name": "vizId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "The tooltip to display for disabled actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" - } - ] - }, "sources": [ { "fileName": "types.ts", - "line": 727, + "line": 4906, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disabledActionReason" } - }, + } + ], + "groups": [ { - "id": 1073, - "name": "disabledActions", + "title": "Properties", + "kind": 1024, + "children": [ + 2288, + 2292, + 2305, + 2306 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 4888, + "character": 17 + } + ] + }, + { + "id": 2161, + "name": "CustomCssVariables", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The list of customization css variables. These\nare the only allowed variables possible." + }, + "children": [ + { + "id": 2215, + "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" - } - ] + "shortText": "Background color of the chart type element when a user hovers over a chart type on\nthe chart selection widget." }, "sources": [ { - "fileName": "types.ts", - "line": 714, + "fileName": "css-variables.ts", + "line": 291, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disabledActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1098, - "name": "doNotTrackPreRenderSize", + "id": 2214, + "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" - } - ] + "shortText": "Background color of the selected chart type on the chart selection widget." }, "sources": [ { - "fileName": "types.ts", - "line": 1035, + "fileName": "css-variables.ts", + "line": 285, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.doNotTrackPreRenderSize" + "name": "string" } }, { - "id": 1106, - "name": "enableCustomColumnGroups", + "id": 2184, + "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To enable custom column groups in data panel v2", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" - } - ] + "shortText": "Background color of the data panel." }, "sources": [ { - "fileName": "types.ts", - "line": 1120, + "fileName": "css-variables.ts", + "line": 127, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.enableCustomColumnGroups" + "name": "string" } }, { - "id": 1101, - "name": "enableV2Shell_experimental", + "id": 2185, + "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" - } - ] + "shortText": "Background color of the vertical panel on the right side of the Answer page, which\nincludes the options to edit charts and tables." }, "sources": [ { - "fileName": "types.ts", - "line": 1064, + "fileName": "css-variables.ts", + "line": 133, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.enableV2Shell_experimental" + "name": "string" } }, { - "id": 1091, - "name": "excludeRuntimeFiltersfromURL", + "id": 2187, + "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" - } - ] + "shortText": "Background color of the currently selected chart type in the chart switcher." }, "sources": [ { - "fileName": "types.ts", - "line": 913, + "fileName": "css-variables.ts", + "line": 143, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.excludeRuntimeFiltersfromURL" + "name": "string" } }, { - "id": 1100, - "name": "excludeRuntimeParametersfromURL", + "id": 2186, + "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" - } - ] + "shortText": "Background color of the chart switcher on search results and Answer pages." }, "sources": [ { - "fileName": "types.ts", - "line": 1050, + "fileName": "css-variables.ts", + "line": 138, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.excludeRuntimeParametersfromURL" + "name": "string" } }, { - "id": 1103, - "name": "exposeTranslationIDs", + "id": 2166, + "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to expose translation IDs on the embedded app.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" - } - ] + "shortText": "Font color of the text on toggle buttons such as\n**All**, **Answers**, and **Liveboards** on the Home page (Classic experience),\nthe text color of the chart and table tiles on Home page (New modular Homepage\nexperience), and title text on the AI-generated charts and tables.\nThe default color code is #2770EF." }, "sources": [ { - "fileName": "types.ts", - "line": 1082, + "fileName": "css-variables.ts", + "line": 34, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.exposeTranslationIDs" + "name": "string" } }, { - "id": 1070, - "name": "frameParams", + "id": 2227, + "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" - } - ] + "shortText": "Font color of the X and Y axis labels." }, "sources": [ { - "fileName": "types.ts", - "line": 690, + "fileName": "css-variables.ts", + "line": 351, "character": 4 } ], "type": { - "type": "reference", - "id": 2101, - "name": "FrameParams" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.frameParams" + "type": "intrinsic", + "name": "string" } }, { - "id": 1075, - "name": "hiddenActions", + "id": 2228, + "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" - }, - { - "tag": "important", - "text": "\n" - } - ] + "shortText": "Font family specification for X and Y axis labels." }, "sources": [ { - "fileName": "types.ts", - "line": 742, + "fileName": "css-variables.ts", + "line": 356, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1096, - "name": "hiddenHomeLeftNavItems", + "id": 2225, + "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." - }, - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" - } - ] + "shortText": "Font color of axis title on charts." }, "sources": [ { - "fileName": "types.ts", - "line": 999, + "fileName": "css-variables.ts", + "line": 341, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2107, - "name": "HomeLeftNavItem" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenHomeLeftNavItems" + "type": "intrinsic", + "name": "string" } }, { - "id": 1093, - "name": "hiddenHomepageModules", + "id": 2226, + "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" - } - ] + "shortText": "Font family specification for the X and Y axis title text." }, "sources": [ { - "fileName": "types.ts", - "line": 946, + "fileName": "css-variables.ts", + "line": 346, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2115, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenHomepageModules" + "type": "intrinsic", + "name": "string" } }, { - "id": 1108, - "name": "hiddenListColumns", + "id": 2189, + "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is appplicable only in full app embedding.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" - } - ] + "shortText": "Border-radius of small buttons such as secondary buttons.\nFor example, share and favorite buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 1151, + "fileName": "css-variables.ts", + "line": 155, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2314, - "name": "ListPageColumns" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenListColumns" + "type": "intrinsic", + "name": "string" } }, { - "id": 1092, - "name": "hiddenTabs", + "id": 2194, + "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" - } - ] + "shortText": "Backgroud color of the primary buttons when active." }, "sources": [ { - "fileName": "types.ts", - "line": 929, + "fileName": "css-variables.ts", + "line": 182, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenTabs" + "type": "intrinsic", + "name": "string" } }, { - "id": 1086, - "name": "insertAsSibling", + "id": 2191, + "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" - } - ] + "shortText": "Font family specification for the text on primary buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 863, + "fileName": "css-variables.ts", + "line": 166, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.insertAsSibling" + "name": "string" } }, { - "id": 1088, - "name": "linkOverride", + "id": 2193, + "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" - } - ] + "shortText": "Background color of the primary buttons on hover." }, "sources": [ { - "fileName": "types.ts", - "line": 887, + "fileName": "css-variables.ts", + "line": 177, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.linkOverride" + "name": "string" } }, { - "id": 1080, - "name": "locale", + "id": 2192, + "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The locale settings to apply to the embedded view.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" - } - ] + "shortText": "Background color of the primary buttons. For example, the primary buttons such as\nPin* and *Save*." }, "sources": [ { - "fileName": "types.ts", - "line": 822, + "fileName": "css-variables.ts", + "line": 172, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.locale" } }, { - "id": 1107, - "name": "overrideOrgId", + "id": 2190, + "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" - } - ] + "shortText": "Font color of the text on primary buttons. For example, the primary buttons on\nLiveboard*, Answer, *Data* workspace, *SpotIQ*, or *Home* page." }, "sources": [ { - "fileName": "types.ts", - "line": 1136, + "fileName": "css-variables.ts", + "line": 161, "character": 4 } ], "type": { "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.overrideOrgId" + "name": "string" } }, { - "id": 1097, - "name": "preRenderId", + "id": 2199, + "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" - }, - { - "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" - } - ] + "shortText": "Backgroud color of the secondary buttons when active." }, "sources": [ { - "fileName": "types.ts", - "line": 1014, + "fileName": "css-variables.ts", + "line": 207, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.preRenderId" } }, { - "id": 1094, - "name": "reorderedHomepageModules", + "id": 2196, + "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" - } - ] + "shortText": "Font family specification for the text on the secondary buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 963, + "fileName": "css-variables.ts", + "line": 192, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2115, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.reorderedHomepageModules" + "type": "intrinsic", + "name": "string" } }, { - "id": 1078, - "name": "runtimeFilters", + "id": 2198, + "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" - } - ] + "shortText": "Background color of the secondary button on hover." }, "sources": [ { - "fileName": "types.ts", - "line": 792, + "fileName": "css-variables.ts", + "line": 202, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1475, - "name": "RuntimeFilter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.runtimeFilters" + "type": "intrinsic", + "name": "string" } }, { - "id": 1079, - "name": "runtimeParameters", + "id": 2197, + "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" - } - ] + "shortText": "Background color of the secondary buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 810, + "fileName": "css-variables.ts", + "line": 197, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2254, - "name": "RuntimeParameter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.runtimeParameters" + "type": "intrinsic", + "name": "string" } }, { - "id": 1077, - "name": "showAlerts", + "id": 2195, + "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" - } - ] + "shortText": "Font color of the text on the secondary buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 773, + "fileName": "css-variables.ts", + "line": 187, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.showAlerts" + "name": "string" } }, { - "id": 1076, - "name": "visibleActions", + "id": 2203, + "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" - } - ] + "shortText": "Backgroud color of the tertiary buttons when active." }, "sources": [ { - "fileName": "types.ts", - "line": 760, + "fileName": "css-variables.ts", + "line": 228, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.visibleActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1095, - "name": "visibleTabs", + "id": 2202, + "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", - "text": "Use either `visibleTabs` or `hiddenTabs`.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" - } - ] + "shortText": "Background color of the tertiary button when a user hovers over these buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 981, + "fileName": "css-variables.ts", + "line": 223, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.visibleTabs" + "type": "intrinsic", + "name": "string" } }, { - "id": 1068, - "name": "worksheetId", + "id": 2201, + "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The ID of the worksheet to use for the conversation." + "shortText": "Background color of the tertiary button." }, "sources": [ { - "fileName": "embed/bodyless-conversation.ts", - "line": 15, + "fileName": "css-variables.ts", + "line": 218, "character": 4 } ], @@ -22629,415 +22294,68 @@ "type": "intrinsic", "name": "string" } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1081, - 1102, - 1087, - 1085, - 1105, - 1104, - 1074, - 1073, - 1098, - 1106, - 1101, - 1091, - 1100, - 1103, - 1070, - 1075, - 1096, - 1093, - 1108, - 1092, - 1086, - 1088, - 1080, - 1107, - 1097, - 1094, - 1078, - 1079, - 1077, - 1076, - 1095, - 1068 - ] - } - ], - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 11, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "ViewConfig" - } - ] - }, - { - "id": 2287, - "name": "CustomActionPayload", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "tags": [ - { - "tag": "group", - "text": "Events\n" - } - ] - }, - "children": [ + }, { - "id": 2288, - "name": "contextMenuPoints", + "id": 2200, + "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Font color of the tertiary button. For example, the *Undo*, *Redo*, and *Reset*\nbuttons on the *Search* page." + }, "sources": [ { - "fileName": "types.ts", - "line": 4889, - "character": 4 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2289, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2290, - "name": "clickedPoint", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4890, - "character": 8 - } - ], - "type": { - "type": "reference", - "id": 2284, - "name": "VizPoint" - } - }, - { - "id": 2291, - "name": "selectedPoints", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4891, - "character": 8 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2284, - "name": "VizPoint" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2290, - 2291 - ] - } - ] - } - } - }, - { - "id": 2292, - "name": "embedAnswerData", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4893, - "character": 4 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2293, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2301, - "name": "columns", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4901, - "character": 8 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - }, - { - "id": 2302, - "name": "data", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4902, - "character": 8 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - }, - { - "id": 2295, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4895, - "character": 8 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2294, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4894, - "character": 8 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2296, - "name": "sources", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4896, - "character": 8 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2297, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2298, - "name": "header", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4897, - "character": 12 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2299, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2300, - "name": "guid", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4898, - "character": 16 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2300 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2298 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2301, - 2302, - 2295, - 2294, - 2296 - ] - } - ], - "indexSignature": { - "id": 2303, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 2304, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } + "fileName": "css-variables.ts", + "line": 213, + "character": 4 } + ], + "type": { + "type": "intrinsic", + "name": "string" } }, { - "id": 2305, - "name": "session", + "id": 2188, + "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Border-radius of main buttons.\nFor example, the *Search data* button in the top navigation panel." + }, "sources": [ { - "fileName": "types.ts", - "line": 4905, + "fileName": "css-variables.ts", + "line": 149, "character": 4 } ], "type": { - "type": "reference", - "id": 1444, - "name": "SessionInterface" + "type": "intrinsic", + "name": "string" } }, { - "id": 2306, - "name": "vizId", + "id": 2250, + "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Border and font color of checkbox in active state." + }, "sources": [ { - "fileName": "types.ts", - "line": 4906, + "fileName": "css-variables.ts", + "line": 462, "character": 4 } ], @@ -23045,53 +22363,68 @@ "type": "intrinsic", "name": "string" } - } - ], - "groups": [ + }, { - "title": "Properties", + "id": 2253, + "name": "--ts-var-checkbox-background-color", "kind": 1024, - "children": [ - 2288, - 2292, - 2305, - 2306 - ] - } - ], - "sources": [ + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Background color of checkbox." + }, + "sources": [ + { + "fileName": "css-variables.ts", + "line": 474, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, { - "fileName": "types.ts", - "line": 4888, - "character": 17 - } - ] - }, - { - "id": 2161, - "name": "CustomCssVariables", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The list of customization css variables. These\nare the only allowed variables possible." - }, - "children": [ + "id": 2248, + "name": "--ts-var-checkbox-border-color", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Border color of checkbox." + }, + "sources": [ + { + "fileName": "css-variables.ts", + "line": 454, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, { - "id": 2215, - "name": "--ts-var-answer-chart-hover-background", + "id": 2251, + "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the chart type element when a user hovers over a chart type on\nthe chart selection widget." + "shortText": "Border color and font color of checkbox in checked state." }, "sources": [ { "fileName": "css-variables.ts", - "line": 291, + "line": 466, "character": 4 } ], @@ -23101,20 +22434,20 @@ } }, { - "id": 2214, - "name": "--ts-var-answer-chart-select-background", + "id": 2252, + "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the selected chart type on the chart selection widget." + "shortText": "Border and font color of checkbox in disabled state." }, "sources": [ { "fileName": "css-variables.ts", - "line": 285, + "line": 470, "character": 4 } ], @@ -23124,20 +22457,20 @@ } }, { - "id": 2184, - "name": "--ts-var-answer-data-panel-background-color", + "id": 2247, + "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the data panel." + "shortText": "Border color of checkbox in error state." }, "sources": [ { "fileName": "css-variables.ts", - "line": 127, + "line": 450, "character": 4 } ], @@ -23147,20 +22480,20 @@ } }, { - "id": 2185, - "name": "--ts-var-answer-edit-panel-background-color", + "id": 2249, + "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the vertical panel on the right side of the Answer page, which\nincludes the options to edit charts and tables." + "shortText": "Border color of checkbox in hover state." }, "sources": [ { "fileName": "css-variables.ts", - "line": 133, + "line": 458, "character": 4 } ], @@ -23170,20 +22503,20 @@ } }, { - "id": 2187, - "name": "--ts-var-answer-view-table-chart-switcher-active-background", + "id": 2220, + "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the currently selected chart type in the chart switcher." + "shortText": "Background color of the filter chips when selected." }, "sources": [ { "fileName": "css-variables.ts", - "line": 143, + "line": 316, "character": 4 } ], @@ -23193,20 +22526,20 @@ } }, { - "id": 2186, - "name": "--ts-var-answer-view-table-chart-switcher-background", + "id": 2219, + "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the chart switcher on search results and Answer pages." + "shortText": "Font color of the filter label when a filter chip is selected" }, "sources": [ { "fileName": "css-variables.ts", - "line": 138, + "line": 311, "character": 4 } ], @@ -23216,20 +22549,112 @@ } }, { - "id": 2166, - "name": "--ts-var-application-color", + "id": 2222, + "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on toggle buttons such as\n**All**, **Answers**, and **Liveboards** on the Home page (Classic experience),\nthe text color of the chart and table tiles on Home page (New modular Homepage\nexperience), and title text on the AI-generated charts and tables.\nThe default color code is #2770EF." + "shortText": "Background color of filter chips on hover." + }, + "sources": [ + { + "fileName": "css-variables.ts", + "line": 326, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2221, + "name": "--ts-var-chip--hover-color", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Font color of the text on filter chips when hovered over." + }, + "sources": [ + { + "fileName": "css-variables.ts", + "line": 321, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2218, + "name": "--ts-var-chip-background", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Background color of filter chips." + }, + "sources": [ + { + "fileName": "css-variables.ts", + "line": 306, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2216, + "name": "--ts-var-chip-border-radius", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Border-radius of filter chips." + }, + "sources": [ + { + "fileName": "css-variables.ts", + "line": 296, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2217, + "name": "--ts-var-chip-box-shadow", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Shadow effect for filter chips." }, "sources": [ { "fileName": "css-variables.ts", - "line": 34, + "line": 301, "character": 4 } ], @@ -23239,20 +22664,20 @@ } }, { - "id": 2227, - "name": "--ts-var-axis-data-label-color", + "id": 2223, + "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the X and Y axis labels." + "shortText": "Font color of the text on filter chips." }, "sources": [ { "fileName": "css-variables.ts", - "line": 351, + "line": 331, "character": 4 } ], @@ -23262,20 +22687,20 @@ } }, { - "id": 2228, - "name": "--ts-var-axis-data-label-font-family", + "id": 2224, + "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for X and Y axis labels." + "shortText": "Font family specification for the text on filter chips." }, "sources": [ { "fileName": "css-variables.ts", - "line": 356, + "line": 336, "character": 4 } ], @@ -23285,20 +22710,20 @@ } }, { - "id": 2225, - "name": "--ts-var-axis-title-color", + "id": 2235, + "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of axis title on charts." + "shortText": "Background color of the dialogs." }, "sources": [ { "fileName": "css-variables.ts", - "line": 341, + "line": 391, "character": 4 } ], @@ -23308,20 +22733,20 @@ } }, { - "id": 2226, - "name": "--ts-var-axis-title-font-family", + "id": 2236, + "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the X and Y axis title text." + "shortText": "Font color of the body text displayed on dialogs." }, "sources": [ { "fileName": "css-variables.ts", - "line": 346, + "line": 396, "character": 4 } ], @@ -23331,20 +22756,20 @@ } }, { - "id": 2189, - "name": "--ts-var-button--icon-border-radius", + "id": 2239, + "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border-radius of small buttons such as secondary buttons.\nFor example, share and favorite buttons." + "shortText": "Background color of the footer area on dialogs." }, "sources": [ { "fileName": "css-variables.ts", - "line": 155, + "line": 411, "character": 4 } ], @@ -23354,20 +22779,20 @@ } }, { - "id": 2194, - "name": "--ts-var-button--primary--active-background", + "id": 2237, + "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Backgroud color of the primary buttons when active." + "shortText": "Background color of the header text on dialogs." }, "sources": [ { "fileName": "css-variables.ts", - "line": 182, + "line": 401, "character": 4 } ], @@ -23377,20 +22802,20 @@ } }, { - "id": 2191, - "name": "--ts-var-button--primary--font-family", + "id": 2238, + "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the text on primary buttons." + "shortText": "Font color of the header text on dialogs." }, "sources": [ { "fileName": "css-variables.ts", - "line": 166, + "line": 406, "character": 4 } ], @@ -23400,20 +22825,20 @@ } }, { - "id": 2193, - "name": "--ts-var-button--primary--hover-background", + "id": 2246, + "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the primary buttons on hover." + "shortText": "Background for favorite carousel find your favorites card in modular home." }, "sources": [ { "fileName": "css-variables.ts", - "line": 177, + "line": 446, "character": 4 } ], @@ -23423,20 +22848,20 @@ } }, { - "id": 2192, - "name": "--ts-var-button--primary-background", + "id": 2245, + "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the primary buttons. For example, the primary buttons such as\nPin* and *Save*." + "shortText": "Icon color for favorite carousel find your favorites card in modular home." }, "sources": [ { "fileName": "css-variables.ts", - "line": 172, + "line": 441, "character": 4 } ], @@ -23446,20 +22871,20 @@ } }, { - "id": 2190, - "name": "--ts-var-button--primary-color", + "id": 2244, + "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on primary buttons. For example, the primary buttons on\nLiveboard*, Answer, *Data* workspace, *SpotIQ*, or *Home* page." + "shortText": "Text color for favorite carousel find your favorites card in modular home." }, "sources": [ { "fileName": "css-variables.ts", - "line": 161, + "line": 436, "character": 4 } ], @@ -23469,20 +22894,20 @@ } }, { - "id": 2199, - "name": "--ts-var-button--secondary--active-background", + "id": 2243, + "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Backgroud color of the secondary buttons when active." + "shortText": "Text color for slected item in modular home's watchlist." }, "sources": [ { "fileName": "css-variables.ts", - "line": 207, + "line": 431, "character": 4 } ], @@ -23492,20 +22917,20 @@ } }, { - "id": 2196, - "name": "--ts-var-button--secondary--font-family", + "id": 2241, + "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the text on the secondary buttons." + "shortText": "Background for hover state in list" }, "sources": [ { "fileName": "css-variables.ts", - "line": 192, + "line": 421, "character": 4 } ], @@ -23515,20 +22940,20 @@ } }, { - "id": 2198, - "name": "--ts-var-button--secondary--hover-background", + "id": 2240, + "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the secondary button on hover." + "shortText": "Background for selected state in list" }, "sources": [ { "fileName": "css-variables.ts", - "line": 202, + "line": 416, "character": 4 } ], @@ -23538,20 +22963,20 @@ } }, { - "id": 2197, - "name": "--ts-var-button--secondary-background", + "id": 2233, + "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the secondary buttons." + "shortText": "Background color for menu items on hover." }, "sources": [ { "fileName": "css-variables.ts", - "line": 197, + "line": 381, "character": 4 } ], @@ -23561,20 +22986,20 @@ } }, { - "id": 2195, - "name": "--ts-var-button--secondary-color", + "id": 2230, + "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on the secondary buttons." + "shortText": "Background color of menu panels." }, "sources": [ { "fileName": "css-variables.ts", - "line": 187, + "line": 366, "character": 4 } ], @@ -23584,20 +23009,20 @@ } }, { - "id": 2203, - "name": "--ts-var-button--tertiary--active-background", + "id": 2229, + "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Backgroud color of the tertiary buttons when active." + "shortText": "Font color of the menu items." }, "sources": [ { "fileName": "css-variables.ts", - "line": 228, + "line": 361, "character": 4 } ], @@ -23607,20 +23032,20 @@ } }, { - "id": 2202, - "name": "--ts-var-button--tertiary--hover-background", + "id": 2231, + "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the tertiary button when a user hovers over these buttons." + "shortText": "Font family specification for the menu items." }, "sources": [ { "fileName": "css-variables.ts", - "line": 223, + "line": 371, "character": 4 } ], @@ -23630,20 +23055,20 @@ } }, { - "id": 2201, - "name": "--ts-var-button--tertiary-background", + "id": 2234, + "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the tertiary button." + "shortText": "Text color for selected menu items." }, "sources": [ { "fileName": "css-variables.ts", - "line": 218, + "line": 386, "character": 4 } ], @@ -23653,20 +23078,20 @@ } }, { - "id": 2200, - "name": "--ts-var-button--tertiary-color", + "id": 2232, + "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the tertiary button. For example, the *Undo*, *Redo*, and *Reset*\nbuttons on the *Search* page." + "shortText": "Text capitalization specification for the menu items." }, "sources": [ { "fileName": "css-variables.ts", - "line": 213, + "line": 376, "character": 4 } ], @@ -23676,20 +23101,20 @@ } }, { - "id": 2188, - "name": "--ts-var-button-border-radius", + "id": 2167, + "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border-radius of main buttons.\nFor example, the *Search data* button in the top navigation panel." + "shortText": "Background color of the top navigation panel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 149, + "line": 39, "character": 4 } ], @@ -23699,20 +23124,20 @@ } }, { - "id": 2250, - "name": "--ts-var-checkbox-active-color", + "id": 2168, + "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border and font color of checkbox in active state." + "shortText": "Font color of the top navigation panel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 462, + "line": 44, "character": 4 } ], @@ -23722,20 +23147,20 @@ } }, { - "id": 2253, - "name": "--ts-var-checkbox-background-color", + "id": 2162, + "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of checkbox." + "shortText": "Background color of the Liveboard, visualization, Search, and Answer pages." }, "sources": [ { "fileName": "css-variables.ts", - "line": 474, + "line": 9, "character": 4 } ], @@ -23745,20 +23170,20 @@ } }, { - "id": 2248, - "name": "--ts-var-checkbox-border-color", + "id": 2163, + "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border color of checkbox." + "shortText": "Color of the text on application pages." }, "sources": [ { "fileName": "css-variables.ts", - "line": 454, + "line": 14, "character": 4 } ], @@ -23768,20 +23193,20 @@ } }, { - "id": 2251, - "name": "--ts-var-checkbox-checked-color", + "id": 2164, + "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border color and font color of checkbox in checked state." + "shortText": "Font type for the text on application pages." }, "sources": [ { "fileName": "css-variables.ts", - "line": 466, + "line": 19, "character": 4 } ], @@ -23791,20 +23216,20 @@ } }, { - "id": 2252, - "name": "--ts-var-checkbox-checked-disabled", + "id": 2165, + "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border and font color of checkbox in disabled state." + "shortText": "Text transformation specification for UI elements in the app." }, "sources": [ { "fileName": "css-variables.ts", - "line": 470, + "line": 24, "character": 4 } ], @@ -23814,20 +23239,20 @@ } }, { - "id": 2247, - "name": "--ts-var-checkbox-error-border", + "id": 2176, + "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border color of checkbox in error state." + "shortText": "Background color of the search suggestions panel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 450, + "line": 84, "character": 4 } ], @@ -23837,20 +23262,20 @@ } }, { - "id": 2249, - "name": "--ts-var-checkbox-hover-border", + "id": 2180, + "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border color of checkbox in hover state." + "shortText": "Font color of the text in the search suggestion panel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 458, + "line": 106, "character": 4 } ], @@ -23860,20 +23285,20 @@ } }, { - "id": 2220, - "name": "--ts-var-chip--active-background", + "id": 2181, + "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the filter chips when selected." + "shortText": "Font color of the sub-text that appears below the keyword in the search suggestion\npanel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 316, + "line": 112, "character": 4 } ], @@ -23883,20 +23308,20 @@ } }, { - "id": 2219, - "name": "--ts-var-chip--active-color", + "id": 2179, + "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the filter label when a filter chip is selected" + "shortText": "Background color of the search suggestion block on hover." }, "sources": [ { "fileName": "css-variables.ts", - "line": 311, + "line": 101, "character": 4 } ], @@ -23906,20 +23331,20 @@ } }, { - "id": 2222, - "name": "--ts-var-chip--hover-background", + "id": 2175, + "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of filter chips on hover." + "shortText": "Background color of the search bar." }, "sources": [ { "fileName": "css-variables.ts", - "line": 326, + "line": 79, "character": 4 } ], @@ -23929,20 +23354,20 @@ } }, { - "id": 2221, - "name": "--ts-var-chip--hover-color", + "id": 2178, + "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on filter chips when hovered over." + "shortText": "Background color of the navigation help text that appears at the bottom of the\nsearch suggestions panel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 321, + "line": 96, "character": 4 } ], @@ -23952,20 +23377,20 @@ } }, { - "id": 2218, - "name": "--ts-var-chip-background", + "id": 2172, + "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of filter chips." + "shortText": "Font color of the text in the Search bar." }, "sources": [ { "fileName": "css-variables.ts", - "line": 306, + "line": 64, "character": 4 } ], @@ -23975,20 +23400,20 @@ } }, { - "id": 2216, - "name": "--ts-var-chip-border-radius", + "id": 2173, + "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border-radius of filter chips." + "shortText": "Font of the text in the Search bar." }, "sources": [ { "fileName": "css-variables.ts", - "line": 296, + "line": 69, "character": 4 } ], @@ -23998,20 +23423,20 @@ } }, { - "id": 2217, - "name": "--ts-var-chip-box-shadow", + "id": 2174, + "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Shadow effect for filter chips." + "shortText": "Font style of the text in the Search bar." }, "sources": [ { "fileName": "css-variables.ts", - "line": 301, + "line": 74, "character": 4 } ], @@ -24021,20 +23446,20 @@ } }, { - "id": 2223, - "name": "--ts-var-chip-color", + "id": 2169, + "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on filter chips." + "shortText": "Background color of the *Search data* button." }, "sources": [ { "fileName": "css-variables.ts", - "line": 331, + "line": 49, "character": 4 } ], @@ -24044,20 +23469,20 @@ } }, { - "id": 2224, - "name": "--ts-var-chip-title-font-family", + "id": 2170, + "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the text on filter chips." + "shortText": "Color of the text on the *Search data* button." }, "sources": [ { "fileName": "css-variables.ts", - "line": 336, + "line": 54, "character": 4 } ], @@ -24067,20 +23492,20 @@ } }, { - "id": 2235, - "name": "--ts-var-dialog-body-background", + "id": 2171, + "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the dialogs." + "shortText": "Font of the text on the *Search data* button." }, "sources": [ { "fileName": "css-variables.ts", - "line": 391, + "line": 59, "character": 4 } ], @@ -24090,20 +23515,20 @@ } }, { - "id": 2236, - "name": "--ts-var-dialog-body-color", + "id": 2177, + "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the body text displayed on dialogs." + "shortText": "Background color of the navigation panel that allows you to undo, redo, and reset\nsearch operations." }, "sources": [ { "fileName": "css-variables.ts", - "line": 396, + "line": 90, "character": 4 } ], @@ -24113,20 +23538,20 @@ } }, { - "id": 2239, - "name": "--ts-var-dialog-footer-background", + "id": 2242, + "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the footer area on dialogs." + "shortText": "Background for hover state in segment control." }, "sources": [ { "fileName": "css-variables.ts", - "line": 411, + "line": 426, "character": 4 } ], @@ -24136,20 +23561,20 @@ } }, { - "id": 2237, - "name": "--ts-var-dialog-header-background", + "id": 2182, + "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the header text on dialogs." + "shortText": "Background color of the input box in the Spotter page." }, "sources": [ { "fileName": "css-variables.ts", - "line": 401, + "line": 117, "character": 4 } ], @@ -24159,20 +23584,20 @@ } }, { - "id": 2238, - "name": "--ts-var-dialog-header-color", + "id": 2183, + "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the header text on dialogs." + "shortText": "Background color of the previously asked prompt message in the Spotter page." }, "sources": [ { "fileName": "css-variables.ts", - "line": 406, + "line": 122, "character": 4 } ], @@ -24182,20 +23607,20 @@ } }, { - "id": 2246, - "name": "--ts-var-home-favorite-suggestion-card-background", + "id": 2212, + "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background for favorite carousel find your favorites card in modular home." + "shortText": "Background color of the visualization tiles and header panel on a Liveboard." }, "sources": [ { "fileName": "css-variables.ts", - "line": 446, + "line": 275, "character": 4 } ], @@ -24205,20 +23630,20 @@ } }, { - "id": 2245, - "name": "--ts-var-home-favorite-suggestion-card-icon-color", + "id": 2210, + "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Icon color for favorite carousel find your favorites card in modular home." + "shortText": "Border-radius for the visualization tiles and header panel on a Liveboard." }, "sources": [ { "fileName": "css-variables.ts", - "line": 441, + "line": 265, "character": 4 } ], @@ -24228,20 +23653,20 @@ } }, { - "id": 2244, - "name": "--ts-var-home-favorite-suggestion-card-text-color", + "id": 2211, + "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text color for favorite carousel find your favorites card in modular home." + "shortText": "Box shadow property for the visualization tiles and header panel on a Liveboard." }, "sources": [ { "fileName": "css-variables.ts", - "line": 436, + "line": 270, "character": 4 } ], @@ -24251,20 +23676,20 @@ } }, { - "id": 2243, - "name": "--ts-var-home-watchlist-selected-text-color", + "id": 2207, + "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text color for slected item in modular home's watchlist." + "shortText": "Font color of the description text and subtitle of a visualization or Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 431, + "line": 248, "character": 4 } ], @@ -24274,20 +23699,20 @@ } }, { - "id": 2241, - "name": "--ts-var-list-hover-background", + "id": 2208, + "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background for hover state in list" + "shortText": "Font family specification of description text and subtitle of a visualization or\nAnswer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 421, + "line": 254, "character": 4 } ], @@ -24297,20 +23722,20 @@ } }, { - "id": 2240, - "name": "--ts-var-list-selected-background", + "id": 2209, + "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background for selected state in list" + "shortText": "Text transformation specification for description text and subtitle of a\nvisualization or Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 416, + "line": 260, "character": 4 } ], @@ -24320,20 +23745,20 @@ } }, { - "id": 2233, - "name": "--ts-var-menu--hover-background", + "id": 2213, + "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color for menu items on hover." + "shortText": "Background color of the legend on a visualization or Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 381, + "line": 280, "character": 4 } ], @@ -24343,20 +23768,20 @@ } }, { - "id": 2230, - "name": "--ts-var-menu-background", + "id": 2204, + "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of menu panels." + "shortText": "Font color of the title text of a visualization or Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 366, + "line": 233, "character": 4 } ], @@ -24366,20 +23791,20 @@ } }, { - "id": 2229, - "name": "--ts-var-menu-color", + "id": 2205, + "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the menu items." + "shortText": "Font family specification for the title text of a visualization/Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 361, + "line": 238, "character": 4 } ], @@ -24389,20 +23814,20 @@ } }, { - "id": 2231, - "name": "--ts-var-menu-font-family", + "id": 2206, + "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the menu items." + "shortText": "Text transformation specification for visualization and Answer titles." }, "sources": [ { "fileName": "css-variables.ts", - "line": 371, + "line": 243, "character": 4 } ], @@ -24410,45 +23835,159 @@ "type": "intrinsic", "name": "string" } - }, + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2215, + 2214, + 2184, + 2185, + 2187, + 2186, + 2166, + 2227, + 2228, + 2225, + 2226, + 2189, + 2194, + 2191, + 2193, + 2192, + 2190, + 2199, + 2196, + 2198, + 2197, + 2195, + 2203, + 2202, + 2201, + 2200, + 2188, + 2250, + 2253, + 2248, + 2251, + 2252, + 2247, + 2249, + 2220, + 2219, + 2222, + 2221, + 2218, + 2216, + 2217, + 2223, + 2224, + 2235, + 2236, + 2239, + 2237, + 2238, + 2246, + 2245, + 2244, + 2243, + 2241, + 2240, + 2233, + 2230, + 2229, + 2231, + 2234, + 2232, + 2167, + 2168, + 2162, + 2163, + 2164, + 2165, + 2176, + 2180, + 2181, + 2179, + 2175, + 2178, + 2172, + 2173, + 2174, + 2169, + 2170, + 2171, + 2177, + 2242, + 2182, + 2183, + 2212, + 2210, + 2211, + 2207, + 2208, + 2209, + 2213, + 2204, + 2205, + 2206 + ] + } + ], + "sources": [ { - "id": 2234, - "name": "--ts-var-menu-selected-text-color", + "fileName": "css-variables.ts", + "line": 5, + "character": 17 + } + ] + }, + { + "id": 2149, + "name": "CustomStyles", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Styles within the {@link CustomisationsInterface}." + }, + "children": [ + { + "id": 2151, + "name": "customCSS", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Text color for selected menu items." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 386, + "fileName": "types.ts", + "line": 259, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2152, + "name": "customCssInterface" } }, { - "id": 2232, - "name": "--ts-var-menu-text-transform", + "id": 2150, + "name": "customCSSUrl", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Text capitalization specification for the menu items." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 376, + "fileName": "types.ts", + "line": 258, "character": 4 } ], @@ -24456,91 +23995,204 @@ "type": "intrinsic", "name": "string" } - }, + } + ], + "groups": [ { - "id": 2167, - "name": "--ts-var-nav-background", + "title": "Properties", "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Background color of the top navigation panel." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 39, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" + "children": [ + 2151, + 2150 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 257, + "character": 17 + } + ] + }, + { + "id": 2139, + "name": "CustomisationsInterface", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Configuration to define the customization on the Embedded\nThoughtSpot components.\nYou can customize styles, text strings, and icons.\nFor more information, see https://developers.thoughtspot.com/docs/custom-css.", + "tags": [ + { + "tag": "example", + "text": "\n```js\n init({\n // ...\n customizations: {\n style: {\n customCSS: {\n variables: {},\n rules_UNSTABLE: {}\n }\n },\n content: {\n strings: {\n 'LIVEBOARDS': 'Dashboards',\n 'ANSWERS': 'Visualizations',\n 'Edit': 'Modify',\n 'Show underlying data': 'Show source data',\n 'SpotIQ': 'Insights',\n 'Monitor': 'Alerts',\n }\n },\n iconSpriteUrl: 'https://my-custom-icon-sprite.svg'\n }\n })\n```\n" } - }, + ] + }, + "children": [ { - "id": 2168, - "name": "--ts-var-nav-color", + "id": 2141, + "name": "content", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Font color of the top navigation panel." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 44, + "fileName": "types.ts", + "line": 295, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2162, - "name": "--ts-var-root-background", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Background color of the Liveboard, visualization, Search, and Answer pages." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 9, - "character": 4 + "type": "reflection", + "declaration": { + "id": 2142, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2144, + "name": "stringIDs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "types.ts", + "line": 300, + "character": 8 + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "Record" + } + }, + { + "id": 2145, + "name": "stringIDsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "types.ts", + "line": 301, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2143, + "name": "strings", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | 9.7.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 299, + "character": 8 + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2144, + 2145, + 2143 + ] + } + ], + "indexSignature": { + "id": 2146, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 2147, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } } - ], - "type": { - "type": "intrinsic", - "name": "string" } }, { - "id": 2163, - "name": "--ts-var-root-color", + "id": 2148, + "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Color of the text on application pages." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 14, + "fileName": "types.ts", + "line": 304, "character": 4 } ], @@ -24550,66 +24202,152 @@ } }, { - "id": 2164, - "name": "--ts-var-root-font-family", + "id": 2140, + "name": "style", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Font type for the text on application pages." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 19, + "fileName": "types.ts", + "line": 294, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2149, + "name": "CustomStyles" } - }, + } + ], + "groups": [ { - "id": 2165, - "name": "--ts-var-root-text-transform", + "title": "Properties", + "kind": 1024, + "children": [ + 2141, + 2148, + 2140 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 293, + "character": 17 + } + ] + }, + { + "id": 1775, + "name": "EmbedConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The configuration object for embedding ThoughtSpot content.\nIt includes the ThoughtSpot hostname or IP address,\nthe type of authentication, and the authentication endpoint\nif a trusted authentication server is used.", + "tags": [ + { + "tag": "group", + "text": "Authentication / Init\n" + } + ] + }, + "children": [ + { + "id": 1817, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text transformation specification for UI elements in the app." + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.33.5 | ThoughtSpot: *\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 24, + "fileName": "types.ts", + "line": 617, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 1818, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1819, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1820, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } } }, { - "id": 2176, - "name": "--ts-var-search-auto-complete-background", + "id": 1778, + "name": "authEndpoint", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the search suggestions panel." + "shortText": "[AuthServer] The trusted authentication endpoint to use to get the\nauthentication token. A `GET` request is made to the\nauthentication API endpoint, which returns the token\nas a plaintext response. For trusted authentication,\nthe `authEndpoint` or `getAuthToken` attribute is required." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 84, + "fileName": "types.ts", + "line": 330, "character": 4 } ], @@ -24619,43 +24357,68 @@ } }, { - "id": 2180, - "name": "--ts-var-search-auto-complete-font-color", + "id": 1799, + "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text in the search suggestion panel." + "shortText": "For `inPopup` SAMLRedirect or OIDCRedirect authentication, we need a\nbutton that the user can click to trigger the flow.\nThis attribute sets a containing element for that button.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ninit({\n authType: AuthType.SAMLRedirect,\n inPopup: true,\n authTriggerContainer: '#auth-trigger-container'\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 106, + "fileName": "types.ts", + "line": 493, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "name": "HTMLElement" + } + ] } }, { - "id": 2181, - "name": "--ts-var-search-auto-complete-subtext-font-color", + "id": 1801, + "name": "authTriggerText", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the sub-text that appears below the keyword in the search suggestion\npanel." + "shortText": "Text to show in the button which triggers the popup auth flow.\nDefault: `Authorize`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 112, + "fileName": "types.ts", + "line": 506, "character": 4 } ], @@ -24665,112 +24428,139 @@ } }, { - "id": 2179, - "name": "--ts-var-search-bar-auto-complete-hover-background", + "id": 1777, + "name": "authType", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "Background color of the search suggestion block on hover." + "shortText": "The authentication mechanism to use." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 101, + "fileName": "types.ts", + "line": 322, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 1463, + "name": "AuthType" } }, { - "id": 2175, - "name": "--ts-var-search-bar-background", + "id": 1790, + "name": "autoLogin", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the search bar." + "shortText": "Re-login a user with the previous login options\nwhen a user session expires.", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 79, + "fileName": "types.ts", + "line": 421, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2178, - "name": "--ts-var-search-bar-navigation-help-text-background", + "id": 1802, + "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the navigation help text that appears at the bottom of the\nsearch suggestions panel." + "shortText": "Prevent users from accessing the full application or ThoughtSpot application pages\naccess to the embedded application users\noutside of the iframe.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.22.0 | ThoughtSpot: 9.3.0.cl, 9.5.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 96, + "fileName": "types.ts", + "line": 514, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2172, - "name": "--ts-var-search-bar-text-font-color", + "id": 1793, + "name": "callPrefetch", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text in the Search bar." + "shortText": "Calls the prefetch method internally when set to `true`", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 64, + "fileName": "types.ts", + "line": 443, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2173, - "name": "--ts-var-search-bar-text-font-family", + "id": 1814, + "name": "currencyFormat", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font of the text in the Search bar." + "shortText": "Format to be used for currency when currency format is set to infer from browser", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 69, + "fileName": "types.ts", + "line": 576, "character": 4 } ], @@ -24780,66 +24570,99 @@ } }, { - "id": 2174, - "name": "--ts-var-search-bar-text-font-style", + "id": 1821, + "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font style of the text in the Search bar." + "shortText": "This is an object (key/val) for customVariables being\nused by the third party tool's script.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n customVariablesForThirdPartyTools: {\n key1: 'value1',\n key2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK 1.37.0 | ThoughtSpot: 10.8.0.cl\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 74, + "fileName": "types.ts", + "line": 633, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" } }, { - "id": 2169, - "name": "--ts-var-search-data-button-background", + "id": 1798, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the *Search data* button." + "shortText": "Custom style params for embed Config.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 49, + "fileName": "types.ts", + "line": 478, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2139, + "name": "CustomisationsInterface" } }, { - "id": 2170, - "name": "--ts-var-search-data-button-font-color", + "id": 1812, + "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Color of the text on the *Search data* button." + "shortText": "Overrides default/user preferred locale for date formatting", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 54, + "fileName": "types.ts", + "line": 566, "character": 4 } ], @@ -24849,204 +24672,268 @@ } }, { - "id": 2171, - "name": "--ts-var-search-data-button-font-family", + "id": 1795, + "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font of the text on the *Search data* button." + "shortText": "[AuthServer|Basic] Detect if third-party party cookies are enabled by doing an\nadditional call. This is slower and should be avoided. Listen to the\n`NO_COOKIE_ACCESS` event to handle the situation.", + "text": "This is slightly slower than letting the browser handle the cookie check, as it\ninvolves an extra network call.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.10.4 | ThoughtSpot: 8.2.0.cl, 8.4.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 59, + "fileName": "types.ts", + "line": 463, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2177, - "name": "--ts-var-search-navigation-button-background", + "id": 1816, + "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the navigation panel that allows you to undo, redo, and reset\nsearch operations." + "shortText": "This flag is used to disable showing the login failure page in the embedded app.", + "tags": [ + { + "tag": "version", + "text": "SDK 1.32.3 | ThoughtSpot: 10.1.0.cl, 10.1.0.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 90, + "fileName": "types.ts", + "line": 597, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2242, - "name": "--ts-var-segment-control-hover-background", + "id": 1791, + "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background for hover state in segment control." + "shortText": "Disable redirection to the login page when the embedded session expires\nThis flag is typically used alongside the combination of authentication modes such\nas {@link AuthType.AuthServer} and auto-login behavior {@link\nEmbedConfig.autoLogin}", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.3 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 426, + "fileName": "types.ts", + "line": 431, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2182, - "name": "--ts-var-spotter-input-background", + "id": 1822, + "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Background color of the input box in the Spotter page." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 117, + "fileName": "types.ts", + "line": 635, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2183, - "name": "--ts-var-spotter-prompt-background", + "id": 1811, + "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the previously asked prompt message in the Spotter page." + "shortText": "Disables the Mixpanel tracking from the SDK.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.27.9\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 122, + "fileName": "types.ts", + "line": 561, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2212, - "name": "--ts-var-viz-background", + "id": 1789, + "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the visualization tiles and header panel on a Liveboard." + "shortText": "Ignore the cookie access alert when third-party cookies are blocked by the\nuser's browser. If you set this to `true`, the embedded iframe behaviour\npersists even in the case of a non-logged-in user.", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 275, + "fileName": "types.ts", + "line": 414, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2210, - "name": "--ts-var-viz-border-radius", + "id": 1784, + "name": "inPopup", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border-radius for the visualization tiles and header panel on a Liveboard." + "shortText": "[SSO] For SSO Authentication, if `inPopup` is set to true, it will open\nthe SAML auth flow in a popup, instead of redirecting the browser in place.", + "text": "Need to use this with `authTriggerContainer`. Or manually trigger\nthe `AuthEvent.TRIGGER_SSO_POPUP` event on a user interaction.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.18.0\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 265, + "fileName": "types.ts", + "line": 375, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2211, - "name": "--ts-var-viz-box-shadow", + "id": 1810, + "name": "logLevel", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Box shadow property for the visualization tiles and header panel on a Liveboard." + "shortText": "Suppress or show specific types of logs in the console output.\nFor example, `LogLevel.ERROR` shows only Visual Embed SDK and\nThoughtSpot application errors and suppresses\nother logs such as warnings, information alerts,\nand debug messages in the console output.", + "tags": [ + { + "tag": "default", + "text": "LogLevel.ERROR" + }, + { + "tag": "example", + "text": "\n```js\ninit({\n ...embedConfig,\n logLevel: LogLevel.SILENT\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.7 | ThoughtSpot: 9.10.0.cl\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 270, + "fileName": "types.ts", + "line": 556, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2257, + "name": "LogLevel" } }, { - "id": 2207, - "name": "--ts-var-viz-description-color", + "id": 1792, + "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the description text and subtitle of a visualization or Answer." + "shortText": "This message is displayed in the embedded view when a user login fails.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.10.1 | ThoughtSpot: 8.2.0.cl, 8.4.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 248, + "fileName": "types.ts", + "line": 437, "character": 4 } ], @@ -25056,43 +24943,59 @@ } }, { - "id": 2208, - "name": "--ts-var-viz-description-font-family", + "id": 1783, + "name": "noRedirect", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification of description text and subtitle of a visualization or\nAnswer." + "shortText": "[SSO] For SSO Authentication, if `noRedirect` is set to true, it will\nopen the SAML auth flow in a popup, instead of redirecting the browser in\nplace.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "deprecated", + "text": "\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 254, + "fileName": "types.ts", + "line": 364, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2209, - "name": "--ts-var-viz-description-text-transform", + "id": 1813, + "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text transformation specification for description text and subtitle of a\nvisualization or Answer." + "shortText": "Overrides default/user preferred locale for number formatting", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 260, + "fileName": "types.ts", + "line": 571, "character": 4 } ], @@ -25102,20 +25005,21 @@ } }, { - "id": 2213, - "name": "--ts-var-viz-legend-hover-background", + "id": 1782, + "name": "password", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the legend on a visualization or Answer." + "shortText": "[Basic] The ThoughtSpot login password corresponding to the username", + "text": "Warning: This feature is primarily intended for developer testing. It is\nstrongly advised not to use this authentication method in production.\n" }, "sources": [ { - "fileName": "css-variables.ts", - "line": 280, + "fileName": "types.ts", + "line": 355, "character": 4 } ], @@ -25125,20 +25029,26 @@ } }, { - "id": 2204, - "name": "--ts-var-viz-title-color", + "id": 1808, + "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the title text of a visualization or Answer." + "shortText": "Pendo API key to enable Pendo tracking to your own subscription, the key\nis added as an additional key to the embed, as per this link:https://support.pendo.io/hc/en-us/articles/360032201951-Send-data-to-multiple-subscriptions[document].", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.27.0 | ThoughtSpot: 9.8.0.cl\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 233, + "fileName": "types.ts", + "line": 531, "character": 4 } ], @@ -25148,563 +25058,266 @@ } }, { - "id": 2205, - "name": "--ts-var-viz-title-font-family", + "id": 1794, + "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the title text of a visualization/Answer." + "shortText": "When there are multiple objects embedded, queue the rendering of embedded objects\nto start after the previous embed's render is complete. This helps improve\nperformance by decreasing the load on the browser.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1" + }, + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 238, + "fileName": "types.ts", + "line": 452, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2206, - "name": "--ts-var-viz-title-text-transform", + "id": 1785, + "name": "redirectPath", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text transformation specification for visualization and Answer titles." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 243, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2215, - 2214, - 2184, - 2185, - 2187, - 2186, - 2166, - 2227, - 2228, - 2225, - 2226, - 2189, - 2194, - 2191, - 2193, - 2192, - 2190, - 2199, - 2196, - 2198, - 2197, - 2195, - 2203, - 2202, - 2201, - 2200, - 2188, - 2250, - 2253, - 2248, - 2251, - 2252, - 2247, - 2249, - 2220, - 2219, - 2222, - 2221, - 2218, - 2216, - 2217, - 2223, - 2224, - 2235, - 2236, - 2239, - 2237, - 2238, - 2246, - 2245, - 2244, - 2243, - 2241, - 2240, - 2233, - 2230, - 2229, - 2231, - 2234, - 2232, - 2167, - 2168, - 2162, - 2163, - 2164, - 2165, - 2176, - 2180, - 2181, - 2179, - 2175, - 2178, - 2172, - 2173, - 2174, - 2169, - 2170, - 2171, - 2177, - 2242, - 2182, - 2183, - 2212, - 2210, - 2211, - 2207, - 2208, - 2209, - 2213, - 2204, - 2205, - 2206 - ] - } - ], - "sources": [ - { - "fileName": "css-variables.ts", - "line": 5, - "character": 17 - } - ] - }, - { - "id": 2149, - "name": "CustomStyles", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "Styles within the {@link CustomisationsInterface}." - }, - "children": [ + "shortText": "[SSO] For SSO Authentication, one can supply an optional path param;\nThis will be the path on the host origin where the SAML flow will be\nterminated.", + "text": "Eg: \"/dashboard\", \"#/foo\" [Do not include the host]", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.10.2 | ThoughtSpot 8.2.0.cl, 8.4.1.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 385, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, { - "id": 2151, - "name": "customCSS", + "id": 1787, + "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Boolean to define if the query parameters in the ThoughtSpot URL\nshould be encoded in base64. This provides additional security to\nThoughtSpot clusters against cross-site scripting attacks.", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] + }, "sources": [ { "fileName": "types.ts", - "line": 259, + "line": 396, "character": 4 } ], "type": { - "type": "reference", - "id": 2152, - "name": "customCssInterface" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 2150, - "name": "customCSSUrl", + "id": 1809, + "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "If passed as true all alerts will be suppressed in the embedded app.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.2 | ThoughtSpot: *\n" + } + ] + }, "sources": [ { "fileName": "types.ts", - "line": 258, + "line": 537, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } - } - ], - "groups": [ + }, { - "title": "Properties", + "id": 1788, + "name": "suppressNoCookieAccessAlert", "kind": 1024, - "children": [ - 2151, - 2150 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 257, - "character": 17 - } - ] - }, - { - "id": 2139, - "name": "CustomisationsInterface", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "Configuration to define the customization on the Embedded\nThoughtSpot components.\nYou can customize styles, text strings, and icons.\nFor more information, see https://developers.thoughtspot.com/docs/custom-css.", - "tags": [ - { - "tag": "example", - "text": "\n```js\n init({\n // ...\n customizations: {\n style: {\n customCSS: {\n variables: {},\n rules_UNSTABLE: {}\n }\n },\n content: {\n strings: {\n 'LIVEBOARDS': 'Dashboards',\n 'ANSWERS': 'Visualizations',\n 'Edit': 'Modify',\n 'Show underlying data': 'Show source data',\n 'SpotIQ': 'Insights',\n 'Monitor': 'Alerts',\n }\n },\n iconSpriteUrl: 'https://my-custom-icon-sprite.svg'\n }\n })\n```\n" + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Suppress cookie access alert when third-party cookies are blocked by the\nuser's browser. Third-party cookie blocking is the default behaviour on\nsome web browsers like Safari. If you set this attribute to `true`,\nyou are encouraged to handle `noCookieAccess` event, to show your own treatment\nin this case.", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 406, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" } - ] - }, - "children": [ + }, { - "id": 2141, - "name": "content", + "id": 1797, + "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Hide `beta` alert warning message for SageEmbed." + }, "sources": [ { "fileName": "types.ts", - "line": 295, + "line": 473, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 2142, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2144, - "name": "stringIDs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "types.ts", - "line": 300, - "character": 8 - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "Record" - } - }, - { - "id": 2145, - "name": "stringIDsUrl", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "types.ts", - "line": 301, - "character": 8 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2143, - "name": "strings", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | 9.7.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 299, - "character": 8 - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2144, - 2145, - 2143 - ] - } - ], - "indexSignature": { - "id": 2146, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 2147, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - } + "type": "intrinsic", + "name": "boolean" } }, { - "id": 2148, - "name": "iconSpriteUrl", + "id": 1796, + "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Hide the `beta` alert warning message for SearchEmbed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.12.0 | ThoughtSpot: 8.4.0.cl, 8.4.1.sw*\n" + } + ] + }, "sources": [ { "fileName": "types.ts", - "line": 304, + "line": 468, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2140, - "name": "style", + "id": 1776, + "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true + "flags": {}, + "comment": { + "shortText": "The ThoughtSpot cluster hostname or IP address." }, "sources": [ { "fileName": "types.ts", - "line": 294, + "line": 318, "character": 4 } ], "type": { - "type": "reference", - "id": 2149, - "name": "CustomStyles" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2141, - 2148, - 2140 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 293, - "character": 17 - } - ] - }, - { - "id": 1775, - "name": "EmbedConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The configuration object for embedding ThoughtSpot content.\nIt includes the ThoughtSpot hostname or IP address,\nthe type of authentication, and the authentication endpoint\nif a trusted authentication server is used.", - "tags": [ - { - "tag": "group", - "text": "Authentication / Init\n" + "type": "intrinsic", + "name": "string" } - ] - }, - "children": [ + }, { - "id": 1817, - "name": "additionalFlags", + "id": 1800, + "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.33.5 | ThoughtSpot: *\n" - } - ] + "shortText": "Specify that we want to use the `AuthEvent.TRIGGER_SSO_POPUP` event to trigger\nSAML popup. This is useful when you want to trigger the popup on a custom user\naction." }, "sources": [ { "fileName": "types.ts", - "line": 617, + "line": 500, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 1818, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 1819, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1820, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - } - } + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1778, - "name": "authEndpoint", + "id": 1781, + "name": "username", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[AuthServer] The trusted authentication endpoint to use to get the\nauthentication token. A `GET` request is made to the\nauthentication API endpoint, which returns the token\nas a plaintext response. For trusted authentication,\nthe `authEndpoint` or `getAuthToken` attribute is required." + "shortText": "[AuthServer / Basic] The user name of the ThoughtSpot user. This\nattribute is required for trusted authentication." }, "sources": [ { "fileName": "types.ts", - "line": 330, + "line": 347, "character": 4 } ], @@ -25714,30 +25327,134 @@ } }, { - "id": 1799, - "name": "authTriggerContainer", + "id": 1779, + "name": "getAuthToken", + "kind": 2048, + "kindString": "Method", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "types.ts", + "line": 342, + "character": 4 + } + ], + "signatures": [ + { + "id": 1780, + "name": "getAuthToken", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "[AuthServer] A function that invokes the trusted authentication endpoint\nand returns a Promise that resolves to the `auth token` string.\nFor trusted authentication, the `authEndpoint` or `getAuthToken`\nattribute is required.", + "text": "It is advisable to fetch a new token inside this method and not\nreuse the old issued token. When auth expires this method is\ncalled again and if it is called with an older token, the authentication\nwill not succeed.\n" + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "Promise" + } + } + ] + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1817, + 1778, + 1799, + 1801, + 1777, + 1790, + 1802, + 1793, + 1814, + 1821, + 1798, + 1812, + 1795, + 1816, + 1791, + 1822, + 1811, + 1789, + 1784, + 1810, + 1792, + 1783, + 1813, + 1782, + 1808, + 1794, + 1785, + 1787, + 1809, + 1788, + 1797, + 1796, + 1776, + 1800, + 1781 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 1779 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 314, + "character": 17 + } + ] + }, + { + "id": 2101, + "name": "FrameParams", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Embedded iframe configuration", + "tags": [ + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, + "children": [ + { + "id": 2103, + "name": "height", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "For `inPopup` SAMLRedirect or OIDCRedirect authentication, we need a\nbutton that the user can click to trigger the flow.\nThis attribute sets a containing element for that button.", - "tags": [ - { - "tag": "example", - "text": "\n```js\ninit({\n authType: AuthType.SAMLRedirect,\n inPopup: true,\n authTriggerContainer: '#auth-trigger-container'\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" - } - ] + "shortText": "The height of the iframe (unit is pixels if numeric)." }, "sources": [ { "fileName": "types.ts", - "line": 493, + "line": 653, "character": 4 } ], @@ -25749,228 +25466,389 @@ "name": "string" }, { - "type": "reference", - "name": "HTMLElement" + "type": "intrinsic", + "name": "number" } ] } }, { - "id": 1801, - "name": "authTriggerText", + "id": 2104, + "name": "loading", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text to show in the button which triggers the popup auth flow.\nDefault: `Authorize`.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" - } - ] + "shortText": "Set to 'lazy' to enable lazy loading of the embedded TS frame.\nThis will defer loading of the frame until it comes into the\nviewport. This is useful for performance optimization." }, "sources": [ { "fileName": "types.ts", - "line": 506, + "line": 659, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": "lazy" + }, + { + "type": "literal", + "value": "eager" + }, + { + "type": "literal", + "value": "auto" + } + ] } }, { - "id": 1777, - "name": "authType", + "id": 2102, + "name": "width", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The authentication mechanism to use." + "shortText": "The width of the iframe (unit is pixels if numeric)." }, "sources": [ { "fileName": "types.ts", - "line": 322, + "line": 649, "character": 4 } ], "type": { - "type": "reference", - "id": 1463, - "name": "AuthType" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2103, + 2104, + 2102 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 645, + "character": 17 + } + ], + "indexSignature": { + "id": 2105, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "comment": { + "shortText": "This parameters will be passed on the iframe\nas is." }, + "parameters": [ + { + "id": 2106, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + }, + { + "type": "intrinsic", + "name": "undefined" + } + ] + } + } + }, + { + "id": 1915, + "name": "LiveboardViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The configuration for the embedded Liveboard or visualization page view.", + "tags": [ + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, + "children": [ { - "id": 1790, - "name": "autoLogin", + "id": 1926, + "name": "activeTabId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Re-login a user with the previous login options\nwhen a user session expires.", + "shortText": "Set a Liveboard tab as an active tab.\nSpecify the tab ID.", "tags": [ { - "tag": "default", - "text": "false\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n activeTabId:'id-1234',\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1-sw\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 421, + "fileName": "embed/liveboard.ts", + "line": 181, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1802, - "name": "blockNonEmbedFullAppAccess", + "id": 1944, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Prevent users from accessing the full application or ThoughtSpot application pages\naccess to the embedded application users\noutside of the iframe.", + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", "tags": [ { - "tag": "default", - "text": "true" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" }, { "tag": "version", - "text": "SDK: 1.22.0 | ThoughtSpot: 9.3.0.cl, 9.5.1.sw\n" + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 514, + "line": 843, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reflection", + "declaration": { + "id": 1945, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1946, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1947, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.additionalFlags" } }, { - "id": 1793, - "name": "callPrefetch", + "id": 1977, + "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Calls the prefetch method internally when set to `true`", + "shortText": "To set the initial state of the search bar in case of saved Answers.", "tags": [ { - "tag": "default", - "text": "false\n" + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 443, + "line": 1076, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.collapseSearchBar" } }, { - "id": 1814, - "name": "currencyFormat", + "id": 1957, + "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Format to be used for currency when currency format is set to infer from browser", + "shortText": "flag to set ContextMenu Trigger to either left or right click.", "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + }, { "tag": "version", - "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 576, + "line": 875, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 1771, + "name": "ContextMenuTriggerOptions" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.contextMenuTrigger" } }, { - "id": 1821, - "name": "customVariablesForThirdPartyTools", + "id": 1942, + "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) for customVariables being\nused by the third party tool's script.", + "shortText": "This flag is for show/hide checkboxes for include or exclude\ncover and filter pages in the Liveboard PDF", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n customVariablesForThirdPartyTools: {\n key1: 'value1',\n key2: 'value2'\n }\n});\n```" + "tag": "default", + "text": "true" }, { "tag": "version", - "text": "SDK 1.37.0 | ThoughtSpot: 10.8.0.cl\n" + "text": "SDK: 1.38.0 | ThoughtSpot:10.8.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n coverAndFilterOptionInPDF: false,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 633, + "fileName": "embed/liveboard.ts", + "line": 409, "character": 4 } ], "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1798, + "id": 1943, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -25978,18 +25856,22 @@ "isOptional": true }, "comment": { - "shortText": "Custom style params for embed Config.", + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", "tags": [ { "tag": "version", - "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + }, + { + "tag": "default", + "text": "''\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 478, + "line": 850, "character": 4 } ], @@ -25997,218 +25879,256 @@ "type": "reference", "id": 2139, "name": "CustomisationsInterface" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.customizations" } }, { - "id": 1812, - "name": "dateFormatLocale", + "id": 1978, + "name": "dataPanelV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides default/user preferred locale for date formatting", + "shortText": "Flag to control Data panel experience", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 566, + "line": 1107, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.dataPanelV2" } }, { - "id": 1795, - "name": "detectCookieAccessSlow", + "id": 1917, + "name": "defaultHeight", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[AuthServer|Basic] Detect if third-party party cookies are enabled by doing an\nadditional call. This is slower and should be avoided. Listen to the\n`NO_COOKIE_ACCESS` event to handle the situation.", - "text": "This is slightly slower than letting the browser handle the cookie check, as it\ninvolves an extra network call.", + "shortText": "This is the minimum height(in pixels) for a full-height Liveboard.\nSetting this height helps resolve issues with empty Liveboards and\nother screens navigable from a Liveboard.", "tags": [ { "tag": "version", - "text": "SDK: 1.10.4 | ThoughtSpot: 8.2.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1" + }, + { + "tag": "default", + "text": "500" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n defaultHeight: 600,\n});\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 463, + "fileName": "embed/liveboard.ts", + "line": 80, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "number" } }, { - "id": 1816, - "name": "disableLoginFailurePage", + "id": 1960, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to disable showing the login failure page in the embedded app.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + }, { "tag": "version", - "text": "SDK 1.32.3 | ThoughtSpot: 10.1.0.cl, 10.1.0.sw\n" + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 597, + "line": 1094, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1791, - "name": "disableLoginRedirect", + "id": 1950, + "name": "disabledActionReason", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Disable redirection to the login page when the embedded session expires\nThis flag is typically used alongside the combination of authentication modes such\nas {@link AuthType.AuthServer} and auto-login behavior {@link\nEmbedConfig.autoLogin}", + "shortText": "The tooltip to display for disabled actions.", "tags": [ { "tag": "version", - "text": "SDK: 1.9.3 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "tag": "default", - "text": "false\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 431, + "line": 727, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1822, - "name": "disablePreauthCache", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true + "name": "string" }, - "sources": [ - { - "fileName": "types.ts", - "line": 635, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "inheritedFrom": { + "type": "reference", + "name": "Omit.disabledActionReason" } }, { - "id": 1811, - "name": "disableSDKTracking", + "id": 1949, + "name": "disabledActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Disables the Mixpanel tracking from the SDK.", + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", "tags": [ { "tag": "version", - "text": "SDK: 1.27.9\n" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 561, + "line": 714, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disabledActions" } }, { - "id": 1789, - "name": "ignoreNoCookieAccess", + "id": 1973, + "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Ignore the cookie access alert when third-party cookies are blocked by the\nuser's browser. If you set this to `true`, the embedded iframe behaviour\npersists even in the case of a non-logged-in user.", + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", "tags": [ { "tag": "default", - "text": "false\n" + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + }, + { + "tag": "example", + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 414, + "line": 1035, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1784, - "name": "inPopup", + "id": 1933, + "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[SSO] For SSO Authentication, if `inPopup` is set to true, it will open\nthe SAML auth flow in a popup, instead of redirecting the browser in place.", - "text": "Need to use this with `authTriggerContainer`. Or manually trigger\nthe `AuthEvent.TRIGGER_SSO_POPUP` event on a user interaction.", + "shortText": "This flag is used to enable the 2 column layout on a Liveboard", "tags": [ { "tag": "default", @@ -26216,14 +26136,18 @@ }, { "tag": "version", - "text": "SDK: 1.18.0\n" + "text": "SDK: 1.32.0 | ThoughtSpot:10.1.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n enable2ColumnLayout: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 375, + "fileName": "embed/liveboard.ts", + "line": 273, "character": 4 } ], @@ -26232,272 +26156,334 @@ "name": "boolean" } }, - { - "id": 1810, - "name": "logLevel", + { + "id": 1932, + "name": "enableAskSage", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Suppress or show specific types of logs in the console output.\nFor example, `LogLevel.ERROR` shows only Visual Embed SDK and\nThoughtSpot application errors and suppresses\nother logs such as warnings, information alerts,\nand debug messages in the console output.", + "shortText": "enable or disable ask sage", "tags": [ { "tag": "default", - "text": "LogLevel.ERROR" + "text": "false" }, { - "tag": "example", - "text": "\n```js\ninit({\n ...embedConfig,\n logLevel: LogLevel.SILENT\n})\n```" + "tag": "version", + "text": "SDK: 1.29.0 | Thoughtspot: 9.12.0.cl" }, { - "tag": "version", - "text": "SDK: 1.26.7 | ThoughtSpot: 9.10.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableAskSage:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 556, + "fileName": "embed/liveboard.ts", + "line": 259, "character": 4 } ], "type": { - "type": "reference", - "id": 2257, - "name": "LogLevel" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1792, - "name": "loginFailedMessage", + "id": 1979, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This message is displayed in the embedded view when a user login fails.", + "shortText": "To enable custom column groups in data panel v2", "tags": [ { "tag": "version", - "text": "SDK: 1.10.1 | ThoughtSpot: 8.2.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 437, + "line": 1120, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.enableCustomColumnGroups" } }, { - "id": 1783, - "name": "noRedirect", + "id": 1976, + "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[SSO] For SSO Authentication, if `noRedirect` is set to true, it will\nopen the SAML auth flow in a popup, instead of redirecting the browser in\nplace.", + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" }, { - "tag": "deprecated", - "text": "\n" + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 364, + "line": 1064, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.enableV2Shell_experimental" } }, { - "id": 1813, - "name": "numberFormatLocale", + "id": 1918, + "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides default/user preferred locale for number formatting", "tags": [ { - "tag": "version", - "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + "tag": "deprecated", + "text": "If set to true, the context menu in visualizations will be enabled." + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n enableVizTransformations:true,\n})\n```" + }, + { + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 571, + "fileName": "embed/liveboard.ts", + "line": 92, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 1782, - "name": "password", + "id": 1972, + "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[Basic] The ThoughtSpot login password corresponding to the username", - "text": "Warning: This feature is primarily intended for developer testing. It is\nstrongly advised not to use this authentication method in production.\n" + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 355, + "line": 913, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeFiltersfromURL" } }, { - "id": 1808, - "name": "pendoTrackingKey", + "id": 1975, + "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Pendo API key to enable Pendo tracking to your own subscription, the key\nis added as an additional key to the embed, as per this link:https://support.pendo.io/hc/en-us/articles/360032201951-Send-data-to-multiple-subscriptions[document].", + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.27.0 | ThoughtSpot: 9.8.0.cl\n" + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 531, + "line": 1050, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeParametersfromURL" } }, { - "id": 1794, - "name": "queueMultiRenders", + "id": 1962, + "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "When there are multiple objects embedded, queue the rendering of embedded objects\nto start after the previous embed's render is complete. This helps improve\nperformance by decreasing the load on the browser.", + "shortText": "This flag can be used to expose translation IDs on the embedded app.", "tags": [ { - "tag": "version", - "text": "SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1" + "tag": "default", + "text": "false" }, { - "tag": "default", - "text": "false\n" + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 452, + "line": 1082, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.exposeTranslationIDs" } }, { - "id": 1785, - "name": "redirectPath", + "id": 1965, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[SSO] For SSO Authentication, one can supply an optional path param;\nThis will be the path on the host origin where the SAML flow will be\nterminated.", - "text": "Eg: \"/dashboard\", \"#/foo\" [Do not include the host]", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ { "tag": "version", - "text": "SDK: 1.10.2 | ThoughtSpot 8.2.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 385, + "line": 690, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2101, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.frameParams" } }, { - "id": 1787, - "name": "shouldEncodeUrlQueryParams", + "id": 1916, + "name": "fullHeight", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to define if the query parameters in the ThoughtSpot URL\nshould be encoded in base64. This provides additional security to\nThoughtSpot clusters against cross-site scripting attacks.", + "shortText": "If set to true, the embedded object container dynamically resizes\naccording to the height of the Liveboard.", + "text": "**Note**: Using fullHeight loads all visualizations on the\nLiveboard simultaneously, which results in multiple warehouse\nqueries and potentially a longer wait for the topmost\nvisualizations to display on the screen.\nSetting `fullHeight` to `false` fetches visualizations\nincrementally as users scroll the page to view the charts and tables.\n", "tags": [ { - "tag": "default", - "text": "false\n" + "tag": "version", + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n});\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 396, + "fileName": "embed/liveboard.ts", + "line": 64, "character": 4 } ], @@ -26507,107 +26493,161 @@ } }, { - "id": 1809, - "name": "suppressErrorAlerts", + "id": 1951, + "name": "hiddenActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If passed as true all alerts will be suppressed in the embedded app.", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ { "tag": "version", - "text": "SDK: 1.26.2 | ThoughtSpot: *\n" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + }, + { + "tag": "important", + "text": "\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 537, + "line": 742, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenActions" } }, { - "id": 1788, - "name": "suppressNoCookieAccessAlert", + "id": 1948, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Suppress cookie access alert when third-party cookies are blocked by the\nuser's browser. Third-party cookie blocking is the default behaviour on\nsome web browsers like Safari. If you set this attribute to `true`,\nyou are encouraged to handle `noCookieAccess` event, to show your own treatment\nin this case.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", "tags": [ { - "tag": "default", - "text": "false\n" + "tag": "version", + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 406, + "line": 1151, "character": 4 } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2314, + "name": "ListPageColumns" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenListColumns" } }, { - "id": 1797, - "name": "suppressSageEmbedBetaWarning", + "id": 1953, + "name": "hiddenTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide `beta` alert warning message for SageEmbed." + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 473, + "line": 929, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenTabs" } }, { - "id": 1796, - "name": "suppressSearchEmbedBetaWarning", + "id": 1938, + "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide the `beta` alert warning message for SearchEmbed.", + "shortText": "This flag is used to enable/disable hide irrelevant filters in a Liveboard tab", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.12.0 | ThoughtSpot: 8.4.0.cl, 8.4.1.sw*\n" + "text": "SDK: 1.36.0 | ThoughtSpot:10.6.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n hideIrrelevantChipsInLiveboardTabs: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 468, + "fileName": "embed/liveboard.ts", + "line": 354, "character": 4 } ], @@ -26617,41 +26657,67 @@ } }, { - "id": 1776, - "name": "thoughtSpotHost", + "id": 1928, + "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The ThoughtSpot cluster hostname or IP address." + "shortText": "Show or hide the Liveboard header.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hideLiveboardHeader:true,\n});\n```\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 318, + "fileName": "embed/liveboard.ts", + "line": 206, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 1800, - "name": "useEventForSAMLPopup", + "id": 1927, + "name": "hideTabPanel", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Specify that we want to use the `AuthEvent.TRIGGER_SSO_POPUP` event to trigger\nSAML popup. This is useful when you want to trigger the popup on a custom user\naction." + "shortText": "Show or hide the tab panel of the embedded Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.25.0 | Thoughtspot: 9.6.0.cl, 9.8.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n hideTabPanel:true,\n})\n```\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 500, + "fileName": "embed/liveboard.ts", + "line": 193, "character": 4 } ], @@ -26661,346 +26727,174 @@ } }, { - "id": 1781, - "name": "username", + "id": 1970, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[AuthServer / Basic] The user name of the ThoughtSpot user. This\nattribute is required for trusted authentication." + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 347, + "line": 863, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1779, - "name": "getAuthToken", - "kind": 2048, - "kindString": "Method", - "flags": { - "isOptional": true + "name": "boolean" }, - "sources": [ - { - "fileName": "types.ts", - "line": 342, - "character": 4 - } - ], - "signatures": [ - { - "id": 1780, - "name": "getAuthToken", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "[AuthServer] A function that invokes the trusted authentication endpoint\nand returns a Promise that resolves to the `auth token` string.\nFor trusted authentication, the `authEndpoint` or `getAuthToken`\nattribute is required.", - "text": "It is advisable to fetch a new token inside this method and not\nreuse the old issued token. When auth expires this method is\ncalled again and if it is called with an older token, the authentication\nwill not succeed.\n" - }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "Promise" - } - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1817, - 1778, - 1799, - 1801, - 1777, - 1790, - 1802, - 1793, - 1814, - 1821, - 1798, - 1812, - 1795, - 1816, - 1791, - 1822, - 1811, - 1789, - 1784, - 1810, - 1792, - 1783, - 1813, - 1782, - 1808, - 1794, - 1785, - 1787, - 1809, - 1788, - 1797, - 1796, - 1776, - 1800, - 1781 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 1779 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 314, - "character": 17 - } - ] - }, - { - "id": 2101, - "name": "FrameParams", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "Embedded iframe configuration", - "tags": [ - { - "tag": "group", - "text": "Embed components\n" + "inheritedFrom": { + "type": "reference", + "name": "Omit.insertAsSibling" } - ] - }, - "children": [ + }, { - "id": 2103, - "name": "height", + "id": 1935, + "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The height of the iframe (unit is pixels if numeric)." + "shortText": "Enables or disables the compact header feature on a Liveboard.\nCompact Liveboard header is turned off by default on Liveboards in\nThoughtSpot Embedded apps.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot:10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n isLiveboardCompactHeaderEnabled: true,\n})\n```\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 653, + "fileName": "embed/liveboard.ts", + "line": 311, "character": 4 } ], "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "boolean" } }, { - "id": 2104, - "name": "loading", + "id": 1931, + "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Set to 'lazy' to enable lazy loading of the embedded TS frame.\nThis will defer loading of the frame until it comes into the\nviewport. This is useful for performance optimization." + "shortText": "Control the position and visibility of\nthe Liveboard header as the users scroll down the\nembedded Liveboard page.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other Liveboard view config\n isLiveboardHeaderSticky: true,\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 659, + "fileName": "embed/liveboard.ts", + "line": 246, "character": 4 } ], "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "lazy" - }, - { - "type": "literal", - "value": "eager" - }, - { - "type": "literal", - "value": "auto" - } - ] + "type": "intrinsic", + "name": "boolean" } }, { - "id": 2102, - "name": "width", + "id": 1958, + "name": "linkOverride", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width of the iframe (unit is pixels if numeric)." + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 649, + "line": 887, "character": 4 } ], "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.linkOverride" } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2103, - 2104, - 2102 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 645, - "character": 17 - } - ], - "indexSignature": { - "id": 2105, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "comment": { - "shortText": "This parameters will be passed on the iframe\nas is." }, - "parameters": [ - { - "id": 2106, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - }, - { - "type": "intrinsic", - "name": "undefined" - } - ] - } - } - }, - { - "id": 1915, - "name": "LiveboardViewConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The configuration for the embedded Liveboard or visualization page view.", - "tags": [ - { - "tag": "group", - "text": "Embed components\n" - } - ] - }, - "children": [ { - "id": 1926, - "name": "activeTabId", + "id": 1919, + "name": "liveboardId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Set a Liveboard tab as an active tab.\nSpecify the tab ID.", + "shortText": "The Liveboard to display in the embedded view.\nUse either liveboardId or pinboardId to reference the Liveboard to embed.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n activeTabId:'id-1234',\n})\n```" + "tag": "version", + "text": "SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1" }, { - "tag": "version", - "text": "SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1-sw\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n liveboardId:id of liveboard,\n})\n" } ] }, "sources": [ { "fileName": "embed/liveboard.ts", - "line": 181, + "line": 104, "character": 4 } ], @@ -27010,192 +26904,174 @@ } }, { - "id": 1944, - "name": "additionalFlags", + "id": 1925, + "name": "liveboardV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "shortText": "Render embedded Liveboards and visualizations in the\nnew Liveboard experience mode.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + "tag": "version", + "text": "SDK: 1.14.0 | ThoughtSpot: 8.6.0.cl, 8.8.1-sw" }, { - "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n liveboardV2:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 843, - "character": 4 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1945, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 1946, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1947, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } + "fileName": "embed/liveboard.ts", + "line": 168, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1956, + "name": "locale", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The locale settings to apply to the embedded view.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 822, + "character": 4 } + ], + "type": { + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.additionalFlags" + "name": "Omit.locale" } }, { - "id": 1977, - "name": "collapseSearchBar", + "id": 1961, + "name": "overrideOrgId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", "tags": [ { - "tag": "default", - "text": "true" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1076, + "line": 1136, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "number" }, "inheritedFrom": { "type": "reference", - "name": "Omit.collapseSearchBar" + "name": "Omit.overrideOrgId" } }, { - "id": 1957, - "name": "contextMenuTrigger", + "id": 1963, + "name": "preRenderId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" }, { "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 875, + "line": 1014, "character": 4 } ], "type": { - "type": "reference", - "id": 1771, - "name": "ContextMenuTriggerOptions" + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.contextMenuTrigger" + "name": "Omit.preRenderId" } }, { - "id": 1942, - "name": "coverAndFilterOptionInPDF", + "id": 1922, + "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is for show/hide checkboxes for include or exclude\ncover and filter pages in the Liveboard PDF", + "shortText": "If set to true, all filter chips from a\nLiveboard page will be read-only (no X buttons)", "tags": [ - { - "tag": "default", - "text": "true" - }, { "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot:10.8.0.cl" + "text": "SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n coverAndFilterOptionInPDF: false,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n preventLiveboardFilterRemoval:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/liveboard.ts", - "line": 409, + "line": 134, "character": 4 } ], @@ -27205,306 +27081,298 @@ } }, { - "id": 1943, - "name": "customizations", + "id": 1968, + "name": "runtimeFilters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { - "tag": "default", - "text": "''\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 850, + "line": 792, "character": 4 } ], "type": { - "type": "reference", - "id": 2139, - "name": "CustomisationsInterface" + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "RuntimeFilter" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.customizations" + "name": "Omit.runtimeFilters" } }, { - "id": 1978, - "name": "dataPanelV2", + "id": 1969, + "name": "runtimeParameters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to control Data panel experience", + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1107, + "line": 810, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2254, + "name": "RuntimeParameter" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.dataPanelV2" + "name": "Omit.runtimeParameters" } }, { - "id": 1917, - "name": "defaultHeight", + "id": 1955, + "name": "showAlerts", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is the minimum height(in pixels) for a full-height Liveboard.\nSetting this height helps resolve issues with empty Liveboards and\nother screens navigable from a Liveboard.", + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", "tags": [ { "tag": "version", - "text": "SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1" - }, - { - "tag": "default", - "text": "500" + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n defaultHeight: 600,\n});\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 80, + "fileName": "types.ts", + "line": 773, "character": 4 } ], "type": { "type": "intrinsic", - "name": "number" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.showAlerts" } }, { - "id": 1960, - "name": "disableRedirectionLinksInNewTab", + "id": 1930, + "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "shortText": "Show or hide the Liveboard description.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + "tag": "default", + "text": "false" }, { "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardDescription:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1094, + "fileName": "embed/liveboard.ts", + "line": 232, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1950, - "name": "disabledActionReason", + "id": 1937, + "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The tooltip to display for disabled actions.", + "shortText": "This flag is used to show/hide the re-verify banner\nin Liveboard compact header", "tags": [ + { + "tag": "default", + "text": "true" + }, { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardReverifyBanner: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 727, + "fileName": "embed/liveboard.ts", + "line": 340, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disabledActionReason" + "name": "boolean" } }, { - "id": 1949, - "name": "disabledActions", + "id": 1929, + "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", + "shortText": "Show or hide the Liveboard title.", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardTitle:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 714, + "fileName": "embed/liveboard.ts", + "line": 219, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disabledActions" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1973, - "name": "doNotTrackPreRenderSize", + "id": 1936, + "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "shortText": "This flag is used to show/hide verified icon in the Liveboard compact header", "tags": [ { "tag": "default", - "text": "false" + "text": "true" }, { "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" }, { "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardVerifiedBadge: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1035, + "fileName": "embed/liveboard.ts", + "line": 325, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1933, - "name": "enable2ColumnLayout", + "id": 1934, + "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to enable the 2 column layout on a Liveboard", + "shortText": "Show a preview image of the visualization before the visualization loads.\nOnly works for visualizations embeds with a viz id.", + "text": "Also, viz snashot should be enabled in the ThoughtSpot instance.\nContact ThoughtSpot support to enable this feature.\n\nSince, this will show preview images, be careful that it may show\nundesired data to the user when using row level security.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n liveboardId: 'liveboard-id',\n vizId: 'viz-id',\n showPreviewLoader: true,\n});\nembed.render();\n```" }, { "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot:10.1.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n enable2ColumnLayout: true,\n})\n```\n" + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl\n" } ] }, "sources": [ { "fileName": "embed/liveboard.ts", - "line": 273, + "line": 294, "character": 4 } ], @@ -27514,674 +27382,793 @@ } }, { - "id": 1932, - "name": "enableAskSage", + "id": 1952, + "name": "visibleActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "enable or disable ask sage", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "tag": "version", - "text": "SDK: 1.29.0 | Thoughtspot: 9.12.0.cl" + "tag": "important", + "text": "" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableAskSage:true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 259, + "fileName": "types.ts", + "line": 760, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.visibleActions" } }, { - "id": 1979, - "name": "enableCustomColumnGroups", + "id": 1954, + "name": "visibleTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To enable custom column groups in data panel v2", + "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", + "text": "Use either `visibleTabs` or `hiddenTabs`.", "tags": [ { "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, - { - "tag": "default", - "text": "false" + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1120, + "line": 981, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableCustomColumnGroups" + "name": "Omit.visibleTabs" } }, { - "id": 1976, - "name": "enableV2Shell_experimental", + "id": 1923, + "name": "visibleVizs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "shortText": "Array of visualization IDs which should be visible when the Liveboard\nrenders. This can be changed by triggering the `SetVisibleVizs`\nevent.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + "tag": "version", + "text": "SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw" }, { - "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleVizs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1064, + "fileName": "embed/liveboard.ts", + "line": 150, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.enableV2Shell_experimental" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 1918, - "name": "enableVizTransformations", + "id": 1921, + "name": "vizId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { + "shortText": "The visualization within the Liveboard to display.", "tags": [ { - "tag": "deprecated", - "text": "If set to true, the context menu in visualizations will be enabled." + "tag": "version", + "text": "SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n enableVizTransformations:true,\n})\n```" - }, - { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n vizId:'430496d6-6903-4601-937e-2c691821af3c',\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 92, + "fileName": "embed/liveboard.ts", + "line": 121, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1926, + 1944, + 1977, + 1957, + 1942, + 1943, + 1978, + 1917, + 1960, + 1950, + 1949, + 1973, + 1933, + 1932, + 1979, + 1976, + 1918, + 1972, + 1975, + 1962, + 1965, + 1916, + 1951, + 1948, + 1953, + 1938, + 1928, + 1927, + 1970, + 1935, + 1931, + 1958, + 1919, + 1925, + 1956, + 1961, + 1963, + 1922, + 1968, + 1969, + 1955, + 1930, + 1937, + 1929, + 1936, + 1934, + 1952, + 1954, + 1923, + 1921 + ] + } + ], + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 39, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "hiddenHomepageModules" + }, + { + "type": "literal", + "value": "hiddenHomeLeftNavItems" + }, + { + "type": "literal", + "value": "reorderedHomepageModules" + } + ] + } + ], + "name": "Omit" + } + ] + }, + { + "id": 1475, + "name": "RuntimeFilter", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "A filter that can be applied to ThoughtSpot answers, Liveboards, or\nvisualizations at runtime." + }, + "children": [ + { + "id": 1476, + "name": "columnName", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "comment": { + "shortText": "The name of the column to filter on (case-sensitive)" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1349, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1972, - "name": "excludeRuntimeFiltersfromURL", + "id": 1477, + "name": "operator", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" - } - ] + "shortText": "The operator to apply" }, "sources": [ { "fileName": "types.ts", - "line": 913, + "line": 1353, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeFiltersfromURL" + "id": 1479, + "name": "RuntimeFilterOp" } }, { - "id": 1975, - "name": "excludeRuntimeParametersfromURL", + "id": 1478, + "name": "values", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" - } - ] + "shortText": "The list of operands. Some operators like EQ, LE accept\na single operand, whereas other operators like BW and IN accept multiple\noperands." }, "sources": [ { "fileName": "types.ts", - "line": 1050, + "line": 1359, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.excludeRuntimeParametersfromURL" + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "bigint" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } } - }, + } + ], + "groups": [ { - "id": 1962, - "name": "exposeTranslationIDs", + "title": "Properties", + "kind": 1024, + "children": [ + 1476, + 1477, + 1478 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 1345, + "character": 17 + } + ] + }, + { + "id": 2254, + "name": "RuntimeParameter", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "A filter that can be applied to ThoughtSpot Answers, Liveboards, or\nvisualizations at runtime." + }, + "children": [ + { + "id": 2255, + "name": "name", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "This flag can be used to expose translation IDs on the embedded app.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" - } - ] + "shortText": "The name of the runtime parameter to filter on (case-sensitive)" }, "sources": [ { "fileName": "types.ts", - "line": 1082, + "line": 1369, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.exposeTranslationIDs" + "name": "string" } }, { - "id": 1965, - "name": "frameParams", + "id": 2256, + "name": "value", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" - } - ] + "shortText": "Values" }, "sources": [ { "fileName": "types.ts", - "line": 690, + "line": 1373, "character": 4 } ], "type": { - "type": "reference", - "id": 2101, - "name": "FrameParams" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.frameParams" - } - }, - { - "id": 1916, - "name": "fullHeight", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the embedded object container dynamically resizes\naccording to the height of the Liveboard.", - "text": "**Note**: Using fullHeight loads all visualizations on the\nLiveboard simultaneously, which results in multiple warehouse\nqueries and potentially a longer wait for the topmost\nvisualizations to display on the screen.\nSetting `fullHeight` to `false` fetches visualizations\nincrementally as users scroll the page to view the charts and tables.\n", - "tags": [ + "type": "union", + "types": [ { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + "type": "intrinsic", + "name": "string" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n});\n```\n" + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" } ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2255, + 2256 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 1365, + "character": 17 + } + ] + }, + { + "id": 1980, + "name": "SageViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The configuration attributes for the embedded Natural language search view. Based on\nGPT and LLM.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.23.0 | ThoughtSpot: 9.8.0.cl, 9.8.0.sw" }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 64, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + { + "tag": "group", + "text": "Embed components\n" } - }, + ] + }, + "children": [ { - "id": 1951, - "name": "hiddenActions", + "id": 1993, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" }, { - "tag": "important", - "text": "\n" + "tag": "version", + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 742, + "line": 843, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" + "type": "reflection", + "declaration": { + "id": 1994, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1995, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1996, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } } }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenActions" + "name": "Omit.additionalFlags" } }, { - "id": 1948, - "name": "hiddenListColumns", + "id": 2024, + "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is appplicable only in full app embedding.", + "shortText": "To set the initial state of the search bar in case of saved Answers.", "tags": [ + { + "tag": "default", + "text": "true" + }, { "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1151, + "line": 1076, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2314, - "name": "ListPageColumns" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenListColumns" + "name": "Omit.collapseSearchBar" } }, { - "id": 1953, - "name": "hiddenTabs", + "id": 2004, + "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", + "shortText": "flag to set ContextMenu Trigger to either left or right click.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" }, { "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 929, + "line": 875, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "id": 1771, + "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenTabs" + "name": "Omit.contextMenuTrigger" } }, { - "id": 1938, - "name": "hideIrrelevantChipsInLiveboardTabs", + "id": 1992, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to enable/disable hide irrelevant filters in a Liveboard tab", + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.36.0 | ThoughtSpot:10.6.0.cl" + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n hideIrrelevantChipsInLiveboardTabs: true,\n})\n```\n" + "tag": "default", + "text": "''\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 354, + "fileName": "types.ts", + "line": 850, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 2139, + "name": "CustomisationsInterface" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.customizations" } }, { - "id": 1928, - "name": "hideLiveboardHeader", + "id": 2025, + "name": "dataPanelV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the Liveboard header.", + "shortText": "Flag to control Data panel experience", "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" - }, { "tag": "default", "text": "false" }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hideLiveboardHeader:true,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 206, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1927, - "name": "hideTabPanel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show or hide the tab panel of the embedded Liveboard.", - "tags": [ { "tag": "version", - "text": "SDK: 1.25.0 | Thoughtspot: 9.6.0.cl, 9.8.0.sw" + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n hideTabPanel:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 193, + "fileName": "types.ts", + "line": 1107, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.dataPanelV2" } }, { - "id": 1970, - "name": "insertAsSibling", + "id": 1990, + "name": "dataSource", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" - } - ] + "shortText": "The data source GUID (Worksheet GUID) to set on load." }, "sources": [ { - "fileName": "types.ts", - "line": 863, + "fileName": "embed/sage.ts", + "line": 104, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.insertAsSibling" + "name": "string" } }, { - "id": 1935, - "name": "isLiveboardCompactHeaderEnabled", + "id": 2007, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enables or disables the compact header feature on a Liveboard.\nCompact Liveboard header is turned off by default on Liveboards in\nThoughtSpot Embedded apps.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n isLiveboardCompactHeaderEnabled: true,\n})\n```\n" + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 311, + "fileName": "types.ts", + "line": 1094, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1931, - "name": "isLiveboardHeaderSticky", + "id": 1985, + "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Control the position and visibility of\nthe Liveboard header as the users scroll down the\nembedded Liveboard page.", + "shortText": "Disable the worksheet selection option.", "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other Liveboard view config\n isLiveboardHeaderSticky: true,\n});\n```" - }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 246, + "fileName": "embed/sage.ts", + "line": 76, "character": 4 } ], @@ -28191,437 +28178,461 @@ } }, { - "id": 1958, - "name": "linkOverride", + "id": 1999, + "name": "disabledActionReason", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", + "shortText": "The tooltip to display for disabled actions.", "tags": [ { "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 887, + "line": 727, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.linkOverride" + "name": "Omit.disabledActionReason" } }, { - "id": 1919, - "name": "liveboardId", + "id": 1998, + "name": "disabledActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The Liveboard to display in the embedded view.\nUse either liveboardId or pinboardId to reference the Liveboard to embed.", + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", "tags": [ { "tag": "version", - "text": "SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n liveboardId:id of liveboard,\n})\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 104, + "fileName": "types.ts", + "line": 714, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disabledActions" } }, { - "id": 1925, - "name": "liveboardV2", + "id": 2020, + "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Render embedded Liveboards and visualizations in the\nnew Liveboard experience mode.", + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.14.0 | ThoughtSpot: 8.6.0.cl, 8.8.1-sw" + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n liveboardV2:true,\n})\n```\n" + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 168, + "fileName": "types.ts", + "line": 1035, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1956, - "name": "locale", + "id": 2026, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The locale settings to apply to the embedded view.", + "shortText": "To enable custom column groups in data panel v2", "tags": [ { "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" + }, + { + "tag": "default", + "text": "false" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 822, + "line": 1120, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.locale" + "name": "Omit.enableCustomColumnGroups" } }, { - "id": 1961, - "name": "overrideOrgId", + "id": 2023, + "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1136, + "line": 1064, "character": 4 } ], "type": { "type": "intrinsic", - "name": "number" + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.overrideOrgId" + "name": "Omit.enableV2Shell_experimental" } }, { - "id": 1963, - "name": "preRenderId", + "id": 2019, + "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + "tag": "default", + "text": "false" }, { "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1014, + "line": 913, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.preRenderId" + "name": "Omit.excludeRuntimeFiltersfromURL" } }, { - "id": 1922, - "name": "preventLiveboardFilterRemoval", + "id": 2022, + "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, all filter chips from a\nLiveboard page will be read-only (no X buttons)", + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { - "tag": "version", - "text": "SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1.sw" + "tag": "default", + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n preventLiveboardFilterRemoval:true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 134, + "fileName": "types.ts", + "line": 1050, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeParametersfromURL" } }, { - "id": 1968, - "name": "runtimeFilters", + "id": 2009, + "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "This flag can be used to expose translation IDs on the embedded app.", "tags": [ { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "tag": "default", + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 792, + "line": 1082, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1475, - "name": "RuntimeFilter" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeFilters" + "name": "Omit.exposeTranslationIDs" } }, { - "id": 1969, - "name": "runtimeParameters", + "id": 2012, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ { "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 810, + "line": 690, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2254, - "name": "RuntimeParameter" - } + "type": "reference", + "id": 2101, + "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeParameters" + "name": "Omit.frameParams" } }, { - "id": 1955, - "name": "showAlerts", + "id": 2000, + "name": "hiddenActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ { "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + }, + { + "tag": "important", + "text": "\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 773, + "line": 742, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.showAlerts" + "name": "Omit.hiddenActions" } }, { - "id": 1930, - "name": "showLiveboardDescription", + "id": 1997, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the Liveboard description.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardDescription:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 232, + "fileName": "types.ts", + "line": 1151, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2314, + "name": "ListPageColumns" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenListColumns" } }, { - "id": 1937, - "name": "showLiveboardReverifyBanner", + "id": 1987, + "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to show/hide the re-verify banner\nin Liveboard compact header", + "shortText": "Show or hide autocomplete suggestions for the search query string.", "tags": [ - { - "tag": "default", - "text": "true" - }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardReverifyBanner: true,\n})\n```\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 340, + "fileName": "embed/sage.ts", + "line": 86, "character": 4 } ], @@ -28631,34 +28642,26 @@ } }, { - "id": 1929, - "name": "showLiveboardTitle", + "id": 1984, + "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the Liveboard title.", + "shortText": "Show or hide the Answer header, that is, the `AI Answer` title\nat the top of the Answer page.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardTitle:true,\n})\n```\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.10.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 219, + "fileName": "embed/sage.ts", + "line": 71, "character": 4 } ], @@ -28668,34 +28671,26 @@ } }, { - "id": 1936, - "name": "showLiveboardVerifiedBadge", + "id": 1989, + "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to show/hide verified icon in the Liveboard compact header", + "shortText": "Show or hide sample questions.\nThe sample questions are autogenerated based on the worksheet\nselected for the search operation.", "tags": [ - { - "tag": "default", - "text": "true" - }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardVerifiedBadge: true,\n})\n```\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 325, + "fileName": "embed/sage.ts", + "line": 100, "character": 4 } ], @@ -28705,31 +28700,30 @@ } }, { - "id": 1934, - "name": "showPreviewLoader", + "id": 1983, + "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show a preview image of the visualization before the visualization loads.\nOnly works for visualizations embeds with a viz id.", - "text": "Also, viz snashot should be enabled in the ThoughtSpot instance.\nContact ThoughtSpot support to enable this feature.\n\nSince, this will show preview images, be careful that it may show\nundesired data to the user when using row level security.", + "shortText": "Show or hide the search bar title.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n liveboardId: 'liveboard-id',\n vizId: 'viz-id',\n showPreviewLoader: true,\n});\nembed.render();\n```" + "tag": "version", + "text": "SDK: 1.29.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw" }, { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl\n" + "tag": "deprecated", + "text": "Thoughtspot: 9.10.0.cl | search bar doesn't have the title from 9.10.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 294, + "fileName": "embed/sage.ts", + "line": 65, "character": 4 } ], @@ -28739,434 +28733,474 @@ } }, { - "id": 1952, - "name": "visibleActions", + "id": 1986, + "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", + "shortText": "Hide the worksheet selection panel.", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 760, + "fileName": "embed/sage.ts", + "line": 81, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.visibleActions" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1954, - "name": "visibleTabs", + "id": 2017, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", - "text": "Use either `visibleTabs` or `hiddenTabs`.", + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", "tags": [ { "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 981, + "line": 863, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.visibleTabs" + "name": "Omit.insertAsSibling" } }, { - "id": 1923, - "name": "visibleVizs", + "id": 2005, + "name": "linkOverride", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Array of visualization IDs which should be visible when the Liveboard\nrenders. This can be changed by triggering the `SetVisibleVizs`\nevent.", + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", "tags": [ { "tag": "version", - "text": "SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleVizs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 150, + "fileName": "types.ts", + "line": 887, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.linkOverride" } }, { - "id": 1921, - "name": "vizId", + "id": 2003, + "name": "locale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The visualization within the Liveboard to display.", + "shortText": "The locale settings to apply to the embedded view.", "tags": [ { "tag": "version", - "text": "SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw" + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n vizId:'430496d6-6903-4601-937e-2c691821af3c',\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 121, + "fileName": "types.ts", + "line": 822, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1926, - 1944, - 1977, - 1957, - 1942, - 1943, - 1978, - 1917, - 1960, - 1950, - 1949, - 1973, - 1933, - 1932, - 1979, - 1976, - 1918, - 1972, - 1975, - 1962, - 1965, - 1916, - 1951, - 1948, - 1953, - 1938, - 1928, - 1927, - 1970, - 1935, - 1931, - 1958, - 1919, - 1925, - 1956, - 1961, - 1963, - 1922, - 1968, - 1969, - 1955, - 1930, - 1937, - 1929, - 1936, - 1934, - 1952, - 1954, - 1923, - 1921 - ] - } - ], - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 39, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.locale" + } + }, + { + "id": 2008, + "name": "overrideOrgId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + } + ] + }, + "sources": [ { - "type": "union", - "types": [ - { - "type": "literal", - "value": "hiddenHomepageModules" - }, - { - "type": "literal", - "value": "hiddenHomeLeftNavItems" - }, - { - "type": "literal", - "value": "reorderedHomepageModules" - } - ] + "fileName": "types.ts", + "line": 1136, + "character": 4 } ], - "name": "Omit" - } - ] - }, - { - "id": 1475, - "name": "RuntimeFilter", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "A filter that can be applied to ThoughtSpot answers, Liveboards, or\nvisualizations at runtime." - }, - "children": [ + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.overrideOrgId" + } + }, { - "id": 1476, - "name": "columnName", + "id": 2010, + "name": "preRenderId", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The name of the column to filter on (case-sensitive)" + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 1349, + "line": 1014, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.preRenderId" } }, { - "id": 1477, - "name": "operator", + "id": 2015, + "name": "runtimeFilters", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The operator to apply" + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 1353, + "line": 792, "character": 4 } ], "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { "type": "reference", - "id": 1479, - "name": "RuntimeFilterOp" + "name": "Omit.runtimeFilters" } }, { - "id": 1478, - "name": "values", + "id": 2016, + "name": "runtimeParameters", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The list of operands. Some operators like EQ, LE accept\na single operand, whereas other operators like BW and IN accept multiple\noperands." + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 1359, + "line": 810, "character": 4 } ], "type": { "type": "array", "elementType": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "bigint" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] + "type": "reference", + "id": 2254, + "name": "RuntimeParameter" } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.runtimeParameters" } - } - ], - "groups": [ + }, { - "title": "Properties", + "id": 1991, + "name": "searchOptions", "kind": 1024, - "children": [ - 1476, - 1477, - 1478 - ] - } - ], - "sources": [ + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Includes the following properties:", + "text": "`searchQuery`: The search query string to pass in the search bar.\nSupports Natural Language Search queries.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nsearchOptions: {\n searchQuery: 'average sales by country and product type',\n executeSearch: true,\n}\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/sage.ts", + "line": 124, + "character": 4 + } + ], + "type": { + "type": "reference", + "name": "SearchOptions" + } + }, { - "fileName": "types.ts", - "line": 1345, - "character": 17 - } - ] - }, - { - "id": 2254, - "name": "RuntimeParameter", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "A filter that can be applied to ThoughtSpot Answers, Liveboards, or\nvisualizations at runtime." - }, - "children": [ + "id": 2002, + "name": "showAlerts", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 773, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.showAlerts" + } + }, { - "id": 2255, - "name": "name", + "id": 1981, + "name": "showObjectResults", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The name of the runtime parameter to filter on (case-sensitive)" + "shortText": "If set to true, a list of Liveboard and Answers related\nto the natural language search will be shown below the\nAI generated answer.", + "tags": [ + { + "tag": "deprecated", + "text": "Currently Liveboard and Answers related\nto the natural language search will not be shown for sage\nembed\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 1369, + "fileName": "embed/sage.ts", + "line": 49, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2256, - "name": "value", + "id": 1988, + "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "Values" + "shortText": "Show or hide autocomplete suggestions for the search query string.", + "tags": [ + { + "tag": "deprecated", + "text": "\nCurrently, the object suggestions will not be shown for Natural Language Search.\nYou can use {@link hideAutocompleteSuggestions} instead.\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 1373, + "fileName": "embed/sage.ts", + "line": 93, "character": 4 } ], "type": { - "type": "union", - "types": [ + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2001, + "name": "visibleActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", + "tags": [ { - "type": "intrinsic", - "name": "string" + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "type": "intrinsic", - "name": "number" + "tag": "important", + "text": "" }, { - "type": "intrinsic", - "name": "boolean" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" } ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 760, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.visibleActions" } } ], @@ -29175,32 +29209,98 @@ "title": "Properties", "kind": 1024, "children": [ - 2255, - 2256 + 1993, + 2024, + 2004, + 1992, + 2025, + 1990, + 2007, + 1985, + 1999, + 1998, + 2020, + 2026, + 2023, + 2019, + 2022, + 2009, + 2012, + 2000, + 1997, + 1987, + 1984, + 1989, + 1983, + 1986, + 2017, + 2005, + 2003, + 2008, + 2010, + 2015, + 2016, + 1991, + 2002, + 1981, + 1988, + 2001 ] } ], "sources": [ { - "fileName": "types.ts", - "line": 1365, + "fileName": "embed/sage.ts", + "line": 36, "character": 17 } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "hiddenHomepageModules" + }, + { + "type": "literal", + "value": "hiddenHomeLeftNavItems" + }, + { + "type": "literal", + "value": "hiddenTabs" + }, + { + "type": "literal", + "value": "visibleTabs" + }, + { + "type": "literal", + "value": "reorderedHomepageModules" + } + ] + } + ], + "name": "Omit" + } ] }, { - "id": 1980, - "name": "SageViewConfig", + "id": 1877, + "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { - "shortText": "The configuration attributes for the embedded Natural language search view. Based on\nGPT and LLM.", "tags": [ - { - "tag": "version:", - "text": "SDK: 1.23.0 | ThoughtSpot: 9.8.0.cl, 9.8.0.sw" - }, { "tag": "group", "text": "Embed components\n" @@ -29209,7 +29309,7 @@ }, "children": [ { - "id": 1993, + "id": 1884, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -29239,20 +29339,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1994, + "id": 1885, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1995, + "id": 1886, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1996, + "id": 1887, "name": "key", "kind": 32768, "flags": {}, @@ -29288,7 +29388,7 @@ } }, { - "id": 2024, + "id": 1913, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -29329,7 +29429,7 @@ } }, { - "id": 2004, + "id": 1894, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -29367,7 +29467,7 @@ } }, { - "id": 1992, + "id": 1883, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -29405,71 +29505,80 @@ } }, { - "id": 2025, - "name": "dataPanelV2", + "id": 1879, + "name": "dataSource", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to control Data panel experience", + "shortText": "Pass the ID of the source to be selected.", "tags": [ { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + "tag": "version:", + "text": "SDK: 1.19.0, ThoughtSpot 9.0.0.cl, 9.0.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n dataSource:'id-2345',\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1107, + "fileName": "embed/search-bar.tsx", + "line": 46, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.dataPanelV2" + "name": "string" } }, { - "id": 1990, - "name": "dataSource", + "id": 1878, + "name": "dataSources", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The data source GUID (Worksheet GUID) to set on load." + "shortText": "The array of data source GUIDs to set on load.\nOnly a single data source is supported currently.", + "tags": [ + { + "tag": "deprecated", + "text": "Use `dataSource` instead" + }, + { + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.1-sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n dataSources:['id-2345','id-2345'],\n})\n```\n" + } + ] }, "sources": [ - { - "fileName": "embed/sage.ts", - "line": 104, + { + "fileName": "embed/search-bar.tsx", + "line": 34, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 2007, + "id": 1897, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -29506,36 +29615,7 @@ } }, { - "id": 1985, - "name": "disableWorksheetChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Disable the worksheet selection option.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/sage.ts", - "line": 76, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1999, + "id": 1890, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -29572,7 +29652,7 @@ } }, { - "id": 1998, + "id": 1889, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -29613,7 +29693,7 @@ } }, { - "id": 2020, + "id": 1909, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -29654,7 +29734,7 @@ } }, { - "id": 2026, + "id": 1914, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -29695,7 +29775,7 @@ } }, { - "id": 2023, + "id": 1912, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -29732,7 +29812,7 @@ } }, { - "id": 2019, + "id": 1908, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -29770,7 +29850,7 @@ } }, { - "id": 2022, + "id": 1911, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -29808,7 +29888,40 @@ } }, { - "id": 2009, + "id": 1882, + "name": "excludeSearchTokenStringFromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Exclude the search token string from the URL.\nIf set to true, the search token string is not appended to the URL.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.35.7 | ThoughtSpot: 10.8.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n },\n excludeSearchTokenStringFromURL: true,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search-bar.tsx", + "line": 97, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1899, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -29845,7 +29958,7 @@ } }, { - "id": 2012, + "id": 1902, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -29883,7 +29996,7 @@ } }, { - "id": 2000, + "id": 1891, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -29928,198 +30041,49 @@ } }, { - "id": 1997, - "name": "hiddenListColumns", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is appplicable only in full app embedding.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1151, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2314, - "name": "ListPageColumns" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.hiddenListColumns" - } - }, - { - "id": 1987, - "name": "hideAutocompleteSuggestions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show or hide autocomplete suggestions for the search query string.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/sage.ts", - "line": 86, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1984, - "name": "hideSageAnswerHeader", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show or hide the Answer header, that is, the `AI Answer` title\nat the top of the Answer page.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.10.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/sage.ts", - "line": 71, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1989, - "name": "hideSampleQuestions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show or hide sample questions.\nThe sample questions are autogenerated based on the worksheet\nselected for the search operation.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/sage.ts", - "line": 100, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1983, - "name": "hideSearchBarTitle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show or hide the search bar title.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.29.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw" - }, - { - "tag": "deprecated", - "text": "Thoughtspot: 9.10.0.cl | search bar doesn't have the title from 9.10.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/sage.ts", - "line": 65, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1986, - "name": "hideWorksheetSelector", + "id": 1888, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide the worksheet selection panel.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", "tags": [ { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 81, + "fileName": "types.ts", + "line": 1151, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2314, + "name": "ListPageColumns" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenListColumns" } }, { - "id": 2017, + "id": 1906, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -30156,7 +30120,7 @@ } }, { - "id": 2005, + "id": 1895, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -30193,7 +30157,7 @@ } }, { - "id": 2003, + "id": 1893, "name": "locale", "kind": 1024, "kindString": "Property", @@ -30230,7 +30194,7 @@ } }, { - "id": 2008, + "id": 1898, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -30267,7 +30231,7 @@ } }, { - "id": 2010, + "id": 1900, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -30304,48 +30268,7 @@ } }, { - "id": 2015, - "name": "runtimeFilters", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 792, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1475, - "name": "RuntimeFilter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.runtimeFilters" - } - }, - { - "id": 2016, + "id": 1905, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -30386,7 +30309,7 @@ } }, { - "id": 1991, + "id": 1881, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -30394,23 +30317,23 @@ "isOptional": true }, "comment": { - "shortText": "Includes the following properties:", - "text": "`searchQuery`: The search query string to pass in the search bar.\nSupports Natural Language Search queries.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", + "shortText": "Configuration for search options.\nIncludes the following properties:", + "text": "`searchTokenString`: Search tokens to pass in the query.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", "tags": [ { - "tag": "example", - "text": "\n```js\nsearchOptions: {\n searchQuery: 'average sales by country and product type',\n executeSearch: true,\n}\n```" + "tag": "version:", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.4.0.sw" }, { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + "tag": "example", + "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n }\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 124, + "fileName": "embed/search-bar.tsx", + "line": 81, "character": 4 } ], @@ -30420,92 +30343,30 @@ } }, { - "id": 2002, - "name": "showAlerts", + "id": 1880, + "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "shortText": "Boolean to define if the last selected data source should be used", "tags": [ { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + "tag": "version:", + "text": "SDK: 1.24.0, ThoughtSpot 9.5.0.cl, 9.5.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 773, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.showAlerts" - } - }, - { - "id": 1981, - "name": "showObjectResults", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, a list of Liveboard and Answers related\nto the natural language search will be shown below the\nAI generated answer.", - "tags": [ - { - "tag": "deprecated", - "text": "Currently Liveboard and Answers related\nto the natural language search will not be shown for sage\nembed\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/sage.ts", - "line": 49, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1988, - "name": "showObjectSuggestions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show or hide autocomplete suggestions for the search query string.", - "tags": [ - { - "tag": "deprecated", - "text": "\nCurrently, the object suggestions will not be shown for Natural Language Search.\nYou can use {@link hideAutocompleteSuggestions} instead.\n" + "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n useLastSelectedSources:false,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 93, + "fileName": "embed/search-bar.tsx", + "line": 58, "character": 4 } ], @@ -30515,7 +30376,7 @@ } }, { - "id": 2001, + "id": 1892, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -30566,49 +30427,41 @@ "title": "Properties", "kind": 1024, "children": [ - 1993, - 2024, - 2004, - 1992, - 2025, - 1990, - 2007, - 1985, - 1999, - 1998, - 2020, - 2026, - 2023, - 2019, - 2022, - 2009, - 2012, - 2000, - 1997, - 1987, - 1984, - 1989, - 1983, - 1986, - 2017, - 2005, - 2003, - 2008, - 2010, - 2015, - 2016, - 1991, - 2002, - 1981, - 1988, - 2001 + 1884, + 1913, + 1894, + 1883, + 1879, + 1878, + 1897, + 1890, + 1889, + 1909, + 1914, + 1912, + 1908, + 1911, + 1882, + 1899, + 1902, + 1891, + 1888, + 1906, + 1895, + 1893, + 1898, + 1900, + 1905, + 1881, + 1880, + 1892 ] } ], "sources": [ { - "fileName": "embed/sage.ts", - "line": 36, + "fileName": "embed/search-bar.tsx", + "line": 9, "character": 17 } ], @@ -30623,6 +30476,18 @@ { "type": "union", "types": [ + { + "type": "literal", + "value": "runtimeFilters" + }, + { + "type": "literal", + "value": "showAlerts" + }, + { + "type": "literal", + "value": "dataPanelV2" + }, { "type": "literal", "value": "hiddenHomepageModules" @@ -30651,12 +30516,13 @@ ] }, { - "id": 1877, - "name": "SearchBarViewConfig", + "id": 1823, + "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { + "shortText": "The configuration attributes for the embedded search view.", "tags": [ { "tag": "group", @@ -30666,7 +30532,7 @@ }, "children": [ { - "id": 1884, + "id": 1843, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -30696,20 +30562,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1885, + "id": 1844, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1886, + "id": 1845, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1887, + "id": 1846, "name": "key", "kind": 32768, "flags": {}, @@ -30745,7 +30611,106 @@ } }, { - "id": 1913, + "id": 1835, + "name": "answerId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The GUID of a saved answer to load initially.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n answerId:'sed-1234',\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 233, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1825, + "name": "collapseDataPanel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If set to true, the data panel is collapsed on load,\nbut can be expanded manually.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n collapseDataPanel:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 104, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1824, + "name": "collapseDataSources", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If set to true, the data sources panel is collapsed on load,\nbut can be expanded manually.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n collapseDataSources:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 91, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1874, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -30786,7 +30751,44 @@ } }, { - "id": 1894, + "id": 1838, + "name": "collapseSearchBarInitially", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To set the initial state of the search bar in case of saved-answers.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + }, + { + "tag": "deprecated", + "text": "Use {@link collapseSearchBar} instead\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 258, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1854, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -30824,7 +30826,7 @@ } }, { - "id": 1883, + "id": 1842, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -30862,7 +30864,85 @@ } }, { - "id": 1879, + "id": 1840, + "name": "dataPanelCustomGroupsAccordionInitialState", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This controls the initial behaviour of custom column groups accordion.\nIt takes DataPanelCustomColumnGroupsAccordionState enum values as input.\nList of different enum values:-\n- EXPAND_ALL: Expand all the accordion initially in data panel v2.\n- COLLAPSE_ALL: Collapse all the accordions initially in data panel v2.\n- EXPAND_FIRST: Expand the first accordion and collapse the rest.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + }, + { + "tag": "default", + "text": "DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataPanelCustomGroupsAccordionInitialState:\n DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 282, + "character": 4 + } + ], + "type": { + "type": "reference", + "name": "DataPanelCustomColumnGroupsAccordionState" + } + }, + { + "id": 1875, + "name": "dataPanelV2", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to control Data panel experience", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1107, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.dataPanelV2" + } + }, + { + "id": 1831, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -30870,22 +30950,22 @@ "isOptional": true }, "comment": { - "shortText": "Pass the ID of the source to be selected.", + "shortText": "The array of data source GUIDs to set on load.", "tags": [ { "tag": "version:", - "text": "SDK: 1.19.0, ThoughtSpot 9.0.0.cl, 9.0.1.sw" + "text": "SDK: 1.19.0" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n dataSource:'id-2345',\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataSource:'id-234',\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 46, + "fileName": "embed/search.ts", + "line": 179, "character": 4 } ], @@ -30895,7 +30975,7 @@ } }, { - "id": 1878, + "id": 1830, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -30904,25 +30984,21 @@ }, "comment": { "shortText": "The array of data source GUIDs to set on load.\nOnly a single data source is supported currently.", - "tags": [ - { - "tag": "deprecated", - "text": "Use `dataSource` instead" - }, + "tags": [ { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.1-sw" + "tag": "deprecated", + "text": "Use `dataSource` instead." }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n dataSources:['id-2345','id-2345'],\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataSources:['id-234','id-456'],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 34, + "fileName": "embed/search.ts", + "line": 167, "character": 4 } ], @@ -30935,7 +31011,7 @@ } }, { - "id": 1897, + "id": 1857, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -30972,7 +31048,7 @@ } }, { - "id": 1890, + "id": 1849, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -31009,7 +31085,7 @@ } }, { - "id": 1889, + "id": 1848, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -31050,7 +31126,7 @@ } }, { - "id": 1909, + "id": 1870, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -31091,7 +31167,7 @@ } }, { - "id": 1914, + "id": 1876, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -31132,7 +31208,40 @@ } }, { - "id": 1912, + "id": 1828, + "name": "enableSearchAssist", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If set to true, the Search Assist feature is enabled.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.13.0 | ThoughtSpot: 8.5.0.cl, 8.8.1-sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableSearchAssist:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 142, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1873, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -31169,7 +31278,7 @@ } }, { - "id": 1908, + "id": 1869, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -31207,7 +31316,7 @@ } }, { - "id": 1911, + "id": 1872, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -31245,7 +31354,7 @@ } }, { - "id": 1882, + "id": 1834, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -31267,8 +31376,8 @@ }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 97, + "fileName": "embed/search.ts", + "line": 221, "character": 4 } ], @@ -31278,7 +31387,7 @@ } }, { - "id": 1899, + "id": 1859, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -31315,340 +31424,184 @@ } }, { - "id": 1902, - "name": "frameParams", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 690, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 2101, - "name": "FrameParams" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.frameParams" - } - }, - { - "id": 1891, - "name": "hiddenActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" - }, - { - "tag": "important", - "text": "\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 742, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.hiddenActions" - } - }, - { - "id": 1888, - "name": "hiddenListColumns", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is appplicable only in full app embedding.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1151, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2314, - "name": "ListPageColumns" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.hiddenListColumns" - } - }, - { - "id": 1906, - "name": "insertAsSibling", + "id": 1841, + "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "shortText": "Flag to remove focus from search bar initially when user\nlands on search embed page.", "tags": [ { "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + "text": "SDK: 1.32.0 | Thoughtspot: 10.3.0.cl" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 863, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.insertAsSibling" - } - }, - { - "id": 1895, - "name": "linkOverride", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + "tag": "default", + "text": "true" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\nfocusSearchBarOnRender: false,\n});\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 887, + "fileName": "embed/search.ts", + "line": 296, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.linkOverride" } }, { - "id": 1893, - "name": "locale", + "id": 1829, + "name": "forceTable", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The locale settings to apply to the embedded view.", + "shortText": "If set to true, the tabular view is set as the default\nformat for presenting search data.", "tags": [ { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n forceTable:true,\n})\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 822, + "fileName": "embed/search.ts", + "line": 154, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.locale" + "name": "boolean" } }, { - "id": 1898, - "name": "overrideOrgId", + "id": 1862, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + "tag": "version", + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1136, + "line": 690, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "reference", + "id": 2101, + "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "name": "Omit.overrideOrgId" + "name": "Omit.frameParams" } }, { - "id": 1900, - "name": "preRenderId", + "id": 1850, + "name": "hiddenActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" }, { - "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + "tag": "important", + "text": "\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1014, + "line": 742, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.preRenderId" + "name": "Omit.hiddenActions" } }, { - "id": 1905, - "name": "runtimeParameters", + "id": 1847, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", "tags": [ { "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 810, + "line": 1151, "character": 4 } ], @@ -31656,74 +31609,73 @@ "type": "array", "elementType": { "type": "reference", - "id": 2254, - "name": "RuntimeParameter" + "id": 2314, + "name": "ListPageColumns" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeParameters" + "name": "Omit.hiddenListColumns" } }, { - "id": 1881, - "name": "searchOptions", + "id": 1826, + "name": "hideDataSources", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Configuration for search options.\nIncludes the following properties:", - "text": "`searchTokenString`: Search tokens to pass in the query.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", + "shortText": "Show or hide the data sources panel.", "tags": [ { "tag": "version:", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.4.0.sw" + "text": "SDK: 1.2.0 | ThoughtSpot: 9.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n }\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideDataSources:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 81, + "fileName": "embed/search.ts", + "line": 116, "character": 4 } ], "type": { - "type": "reference", - "name": "SearchOptions" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1880, - "name": "useLastSelectedSources", + "id": 1827, + "name": "hideResults", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to define if the last selected data source should be used", + "shortText": "Show or hide the charts and tables in search answers.\nThis attribute can be used to create a custom visualization\nusing raw answer data.", "tags": [ { "tag": "version:", - "text": "SDK: 1.24.0, ThoughtSpot 9.5.0.cl, 9.5.0.sw" + "text": "SDK: 1.2.0 | ThoughtSpot: 9.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n useLastSelectedSources:false,\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideResults:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 58, + "fileName": "embed/search.ts", + "line": 130, "character": 4 } ], @@ -31733,956 +31685,960 @@ } }, { - "id": 1892, - "name": "visibleActions", + "id": 1836, + "name": "hideSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", + "shortText": "If set to true, the search page will render without the Search Bar\nThe chart/table should still be visible.", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideSearchBar:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 760, + "fileName": "embed/search.ts", + "line": 246, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.visibleActions" + "type": "intrinsic", + "name": "boolean" } - } - ], - "groups": [ + }, { - "title": "Properties", + "id": 1867, + "name": "insertAsSibling", "kind": 1024, - "children": [ - 1884, - 1913, - 1894, - 1883, - 1879, - 1878, - 1897, - 1890, - 1889, - 1909, - 1914, - 1912, - 1908, - 1911, - 1882, - 1899, - 1902, - 1891, - 1888, - 1906, - 1895, - 1893, - 1898, - 1900, - 1905, - 1881, - 1880, - 1892 - ] - } - ], - "sources": [ - { - "fileName": "embed/search-bar.tsx", - "line": 9, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + } + ] + }, + "sources": [ { - "type": "union", - "types": [ - { - "type": "literal", - "value": "runtimeFilters" - }, - { - "type": "literal", - "value": "showAlerts" - }, - { - "type": "literal", - "value": "dataPanelV2" - }, - { - "type": "literal", - "value": "hiddenHomepageModules" - }, - { - "type": "literal", - "value": "hiddenHomeLeftNavItems" - }, - { - "type": "literal", - "value": "hiddenTabs" - }, - { - "type": "literal", - "value": "visibleTabs" - }, - { - "type": "literal", - "value": "reorderedHomepageModules" - } - ] + "fileName": "types.ts", + "line": 863, + "character": 4 } ], - "name": "Omit" - } - ] - }, - { - "id": 1823, - "name": "SearchViewConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The configuration attributes for the embedded search view.", - "tags": [ - { - "tag": "group", - "text": "Embed components\n" + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.insertAsSibling" } - ] - }, - "children": [ + }, { - "id": 1843, - "name": "additionalFlags", + "id": 1839, + "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "shortText": "Flag to enable onBeforeSearchExecute Embed Event", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" - }, + "tag": "version:", + "text": "SDK: 1.29.0 | Thoughtspot: 10.1.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 263, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1855, + "name": "linkOverride", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", + "tags": [ { "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 843, + "line": 887, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 1844, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 1845, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1846, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - } - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.additionalFlags" + "name": "Omit.linkOverride" } }, { - "id": 1835, - "name": "answerId", + "id": 1853, + "name": "locale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The GUID of a saved answer to load initially.", + "shortText": "The locale settings to apply to the embedded view.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n answerId:'sed-1234',\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 233, + "fileName": "types.ts", + "line": 822, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.locale" } }, { - "id": 1825, - "name": "collapseDataPanel", + "id": 1858, + "name": "overrideOrgId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, the data panel is collapsed on load,\nbut can be expanded manually.", + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n collapseDataPanel:true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 104, + "fileName": "types.ts", + "line": 1136, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.overrideOrgId" } }, { - "id": 1824, - "name": "collapseDataSources", + "id": 1860, + "name": "preRenderId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, the data sources panel is collapsed on load,\nbut can be expanded manually.", + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n collapseDataSources:true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 91, + "fileName": "types.ts", + "line": 1014, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.preRenderId" } }, { - "id": 1874, - "name": "collapseSearchBar", + "id": 1865, + "name": "runtimeFilters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { - "tag": "default", - "text": "true" + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 792, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.runtimeFilters" + } + }, + { + "id": 1866, + "name": "runtimeParameters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1076, + "line": 810, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2254, + "name": "RuntimeParameter" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.collapseSearchBar" + "name": "Omit.runtimeParameters" } }, { - "id": 1838, - "name": "collapseSearchBarInitially", + "id": 1833, + "name": "searchOptions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved-answers.", + "shortText": "Configuration for search options.\nIncludes the following properties:", + "text": "`searchTokenString`: Search tokens to pass in the query.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", "tags": [ { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" - }, - { - "tag": "deprecated", - "text": "Use {@link collapseSearchBar} instead\n" + "tag": "example", + "text": "\n```js\nsearchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n}\n```\n" } ] }, "sources": [ { "fileName": "embed/search.ts", - "line": 258, + "line": 205, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "name": "SearchOptions" } }, { - "id": 1854, - "name": "contextMenuTrigger", + "id": 1832, + "name": "searchQuery", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "shortText": "The initial search query to load the answer with.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + "tag": "deprecated", + "text": "\n\nUse {@link searchOptions} instead.\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 875, + "fileName": "embed/search.ts", + "line": 186, "character": 4 } ], "type": { - "type": "reference", - "id": 1771, - "name": "ContextMenuTriggerOptions" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.contextMenuTrigger" + "type": "intrinsic", + "name": "string" } }, { - "id": 1842, - "name": "customizations", + "id": 1852, + "name": "showAlerts", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", "tags": [ { "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" }, { - "tag": "default", - "text": "''\n" + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 850, + "line": 773, "character": 4 } ], "type": { - "type": "reference", - "id": 2139, - "name": "CustomisationsInterface" + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.customizations" + "name": "Omit.showAlerts" } }, { - "id": 1840, - "name": "dataPanelCustomGroupsAccordionInitialState", + "id": 1837, + "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This controls the initial behaviour of custom column groups accordion.\nIt takes DataPanelCustomColumnGroupsAccordionState enum values as input.\nList of different enum values:-\n- EXPAND_ALL: Expand all the accordion initially in data panel v2.\n- COLLAPSE_ALL: Collapse all the accordions initially in data panel v2.\n- EXPAND_FIRST: Expand the first accordion and collapse the rest.", + "shortText": "Flag to set if last selected dataSource should be used", "tags": [ { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" - }, - { - "tag": "default", - "text": "DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataPanelCustomGroupsAccordionInitialState:\n DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL,\n});\n```\n" + "tag": "version:", + "text": "SDK: 1.24.0\n" } ] }, "sources": [ { "fileName": "embed/search.ts", - "line": 282, + "line": 251, "character": 4 } ], "type": { - "type": "reference", - "name": "DataPanelCustomColumnGroupsAccordionState" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1875, - "name": "dataPanelV2", + "id": 1851, + "name": "visibleActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to control Data panel experience", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + "tag": "important", + "text": "" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1107, + "line": 760, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.dataPanelV2" + "name": "Omit.visibleActions" } - }, + } + ], + "groups": [ { - "id": 1831, - "name": "dataSource", + "title": "Properties", "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The array of data source GUIDs to set on load.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.19.0" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataSource:'id-234',\n})\n```\n" - } - ] - }, - "sources": [ + "children": [ + 1843, + 1835, + 1825, + 1824, + 1874, + 1838, + 1854, + 1842, + 1840, + 1875, + 1831, + 1830, + 1857, + 1849, + 1848, + 1870, + 1876, + 1828, + 1873, + 1869, + 1872, + 1834, + 1859, + 1841, + 1829, + 1862, + 1850, + 1847, + 1826, + 1827, + 1836, + 1867, + 1839, + 1855, + 1853, + 1858, + 1860, + 1865, + 1866, + 1833, + 1832, + 1852, + 1837, + 1851 + ] + } + ], + "sources": [ + { + "fileName": "embed/search.ts", + "line": 70, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ { - "fileName": "embed/search.ts", - "line": 179, - "character": 4 + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "hiddenHomepageModules" + }, + { + "type": "literal", + "value": "hiddenHomeLeftNavItems" + }, + { + "type": "literal", + "value": "hiddenTabs" + }, + { + "type": "literal", + "value": "visibleTabs" + }, + { + "type": "literal", + "value": "reorderedHomepageModules" + } + ] } ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1830, - "name": "dataSources", + "name": "Omit" + } + ] + }, + { + "id": 1444, + "name": "SessionInterface", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 1447, + "name": "acSession", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The array of data source GUIDs to set on load.\nOnly a single data source is supported currently.", - "tags": [ - { - "tag": "deprecated", - "text": "Use `dataSource` instead." - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataSources:['id-234','id-456'],\n})\n```\n" - } - ] - }, + "flags": {}, "sources": [ { - "fileName": "embed/search.ts", - "line": 167, + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 14, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 1448, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1450, + "name": "genNo", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 14, + "character": 36 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1449, + "name": "sessionId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 14, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1450, + 1449 + ] + } + ] } } }, { - "id": 1857, - "name": "disableRedirectionLinksInNewTab", + "id": 1446, + "name": "genNo", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" - } - ] - }, + "flags": {}, "sources": [ { - "fileName": "types.ts", - "line": 1094, + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 13, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" + "name": "number" } }, { - "id": 1849, - "name": "disabledActionReason", + "id": 1445, + "name": "sessionId", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The tooltip to display for disabled actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" - } - ] - }, + "flags": {}, "sources": [ { - "fileName": "types.ts", - "line": 727, + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 12, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disabledActionReason" } - }, + } + ], + "groups": [ { - "id": 1848, - "name": "disabledActions", + "title": "Properties", "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 714, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disabledActions" - } - }, + "children": [ + 1447, + 1446, + 1445 + ] + } + ], + "sources": [ { - "id": 1870, - "name": "doNotTrackPreRenderSize", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1035, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 11, + "character": 17 + } + ] + }, + { + "id": 1067, + "name": "SpotterAgentEmbedViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Configuration for bodyless conversation options.", + "tags": [ + { + "tag": "group", + "text": "Embed components\n" } - }, + ] + }, + "children": [ { - "id": 1876, - "name": "enableCustomColumnGroups", + "id": 1081, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To enable custom column groups in data panel v2", + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", "tags": [ { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, - { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + "tag": "version", + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1120, + "line": 843, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reflection", + "declaration": { + "id": 1082, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1083, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1084, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableCustomColumnGroups" + "name": "ViewConfig.additionalFlags" } }, { - "id": 1828, - "name": "enableSearchAssist", + "id": 1102, + "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, the Search Assist feature is enabled.", + "shortText": "To set the initial state of the search bar in case of saved Answers.", "tags": [ + { + "tag": "default", + "text": "true" + }, { "tag": "version", - "text": "SDK: 1.13.0 | ThoughtSpot: 8.5.0.cl, 8.8.1-sw" + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableSearchAssist:true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 142, + "fileName": "types.ts", + "line": 1076, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.collapseSearchBar" } }, { - "id": 1873, - "name": "enableV2Shell_experimental", + "id": 1087, + "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "shortText": "flag to set ContextMenu Trigger to either left or right click.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" }, { "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1064, + "line": 875, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 1771, + "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableV2Shell_experimental" + "name": "ViewConfig.contextMenuTrigger" } }, { - "id": 1869, - "name": "excludeRuntimeFiltersfromURL", + "id": 1085, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" }, { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + "tag": "default", + "text": "''\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 913, + "line": 850, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 2139, + "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeFiltersfromURL" + "name": "ViewConfig.customizations" } }, { - "id": 1872, - "name": "excludeRuntimeParametersfromURL", + "id": 1105, + "name": "dataPanelV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "shortText": "Flag to control Data panel experience", "tags": [ { "tag": "default", @@ -32690,14 +32646,18 @@ }, { "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1050, + "line": 1107, "character": 4 } ], @@ -32707,824 +32667,897 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeParametersfromURL" + "name": "ViewConfig.dataPanelV2" } }, { - "id": 1834, - "name": "excludeSearchTokenStringFromURL", + "id": 1104, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Exclude the search token string from the URL.\nIf set to true, the search token string is not appended to the URL.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.35.7 | ThoughtSpot: 10.8.0.cl" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n },\n excludeSearchTokenStringFromURL: true,\n});\n```\n" + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 221, + "fileName": "types.ts", + "line": 1094, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1859, - "name": "exposeTranslationIDs", + "id": 1074, + "name": "disabledActionReason", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to expose translation IDs on the embedded app.", + "shortText": "The tooltip to display for disabled actions.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1082, + "line": 727, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.exposeTranslationIDs" + "name": "ViewConfig.disabledActionReason" } }, { - "id": 1841, - "name": "focusSearchBarOnRender", + "id": 1073, + "name": "disabledActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to remove focus from search bar initially when user\nlands on search embed page.", + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", "tags": [ { "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.3.0.cl" - }, - { - "tag": "default", - "text": "true" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\nfocusSearchBarOnRender: false,\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 296, + "fileName": "types.ts", + "line": 714, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disabledActions" } }, { - "id": 1829, - "name": "forceTable", + "id": 1098, + "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, the tabular view is set as the default\nformat for presenting search data.", + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n forceTable:true,\n})\n" + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 154, + "fileName": "types.ts", + "line": 1035, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1862, - "name": "frameParams", + "id": 1106, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", + "shortText": "To enable custom column groups in data panel v2", "tags": [ { "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" + }, + { + "tag": "default", + "text": "false" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 690, + "line": 1120, "character": 4 } ], "type": { - "type": "reference", - "id": 2101, - "name": "FrameParams" + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.frameParams" + "name": "ViewConfig.enableCustomColumnGroups" } }, { - "id": 1850, - "name": "hiddenActions", + "id": 1101, + "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" }, { - "tag": "important", - "text": "\n" + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 742, + "line": 1064, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenActions" + "name": "ViewConfig.enableV2Shell_experimental" } }, { - "id": 1847, - "name": "hiddenListColumns", + "id": 1091, + "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is appplicable only in full app embedding.", + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { - "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + "tag": "default", + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1151, + "line": 913, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2314, - "name": "ListPageColumns" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenListColumns" + "name": "ViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1826, - "name": "hideDataSources", + "id": 1100, + "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the data sources panel.", + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.1.0.sw" + "tag": "default", + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideDataSources:true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 116, + "fileName": "types.ts", + "line": 1050, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1827, - "name": "hideResults", + "id": 1103, + "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the charts and tables in search answers.\nThis attribute can be used to create a custom visualization\nusing raw answer data.", + "shortText": "This flag can be used to expose translation IDs on the embedded app.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.1.0.sw" + "tag": "default", + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideResults:true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 130, + "fileName": "types.ts", + "line": 1082, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.exposeTranslationIDs" } }, { - "id": 1836, - "name": "hideSearchBar", + "id": 1070, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, the search page will render without the Search Bar\nThe chart/table should still be visible.", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ { "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideSearchBar:true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 246, + "fileName": "types.ts", + "line": 690, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 2101, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.frameParams" } }, { - "id": 1867, - "name": "insertAsSibling", + "id": 1075, + "name": "hiddenActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ { "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + }, + { + "tag": "important", + "text": "\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 863, + "line": 742, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.insertAsSibling" + "name": "ViewConfig.hiddenActions" } }, { - "id": 1839, - "name": "isOnBeforeGetVizDataInterceptEnabled", + "id": 1096, + "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to enable onBeforeSearchExecute Embed Event", + "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.29.0 | Thoughtspot: 10.1.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." + }, + { + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 263, + "fileName": "types.ts", + "line": 999, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2107, + "name": "HomeLeftNavItem" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomeLeftNavItems" } }, { - "id": 1855, - "name": "linkOverride", + "id": 1093, + "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", + "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 887, + "line": 946, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2115, + "name": "HomepageModule" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.linkOverride" + "name": "ViewConfig.hiddenHomepageModules" } }, { - "id": 1853, - "name": "locale", + "id": 1108, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The locale settings to apply to the embedded view.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", "tags": [ { "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 822, + "line": 1151, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "id": 2314, + "name": "ListPageColumns" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.locale" + "name": "ViewConfig.hiddenListColumns" } }, { - "id": 1858, - "name": "overrideOrgId", + "id": 1092, + "name": "hiddenTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1136, + "line": 929, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.overrideOrgId" + "name": "ViewConfig.hiddenTabs" } }, { - "id": 1860, - "name": "preRenderId", + "id": 1086, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + "tag": "version", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" }, { - "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1014, + "line": 863, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.preRenderId" + "name": "ViewConfig.insertAsSibling" } }, { - "id": 1865, - "name": "runtimeFilters", + "id": 1088, + "name": "linkOverride", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", "tags": [ { "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 792, + "line": 887, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1475, - "name": "RuntimeFilter" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeFilters" + "name": "ViewConfig.linkOverride" } }, { - "id": 1866, - "name": "runtimeParameters", + "id": 1080, + "name": "locale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "The locale settings to apply to the embedded view.", "tags": [ { "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 810, + "line": 822, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2254, - "name": "RuntimeParameter" - } + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeParameters" + "name": "ViewConfig.locale" } }, { - "id": 1833, - "name": "searchOptions", + "id": 1107, + "name": "overrideOrgId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Configuration for search options.\nIncludes the following properties:", - "text": "`searchTokenString`: Search tokens to pass in the query.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", "tags": [ { "tag": "example", - "text": "\n```js\nsearchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n}\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 205, + "fileName": "types.ts", + "line": 1136, "character": 4 } ], "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { "type": "reference", - "name": "SearchOptions" + "name": "ViewConfig.overrideOrgId" } }, { - "id": 1832, - "name": "searchQuery", + "id": 1097, + "name": "preRenderId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The initial search query to load the answer with.", + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", "tags": [ { - "tag": "deprecated", - "text": "\n\nUse {@link searchOptions} instead.\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 186, + "fileName": "types.ts", + "line": 1014, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.preRenderId" } }, { - "id": 1852, - "name": "showAlerts", + "id": 1094, + "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 773, + "line": 963, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2115, + "name": "HomepageModule" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.showAlerts" + "name": "ViewConfig.reorderedHomepageModules" } }, { - "id": 1837, - "name": "useLastSelectedSources", + "id": 1078, + "name": "runtimeFilters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to set if last selected dataSource should be used", + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.24.0\n" + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 251, + "fileName": "types.ts", + "line": 792, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1475, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.runtimeFilters" } }, { - "id": 1851, - "name": "visibleActions", + "id": 1079, + "name": "runtimeParameters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 760, + "line": 810, "character": 4 } ], @@ -33532,220 +33565,152 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, - "name": "Action" + "id": 2254, + "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.visibleActions" + "name": "ViewConfig.runtimeParameters" } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1843, - 1835, - 1825, - 1824, - 1874, - 1838, - 1854, - 1842, - 1840, - 1875, - 1831, - 1830, - 1857, - 1849, - 1848, - 1870, - 1876, - 1828, - 1873, - 1869, - 1872, - 1834, - 1859, - 1841, - 1829, - 1862, - 1850, - 1847, - 1826, - 1827, - 1836, - 1867, - 1839, - 1855, - 1853, - 1858, - 1860, - 1865, - 1866, - 1833, - 1832, - 1852, - 1837, - 1851 - ] - } - ], - "sources": [ - { - "fileName": "embed/search.ts", - "line": 70, - "character": 17 - } - ], - "extendedTypes": [ + }, { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, + "id": 1077, + "name": "showAlerts", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + } + ] + }, + "sources": [ { - "type": "union", - "types": [ - { - "type": "literal", - "value": "hiddenHomepageModules" - }, - { - "type": "literal", - "value": "hiddenHomeLeftNavItems" - }, - { - "type": "literal", - "value": "hiddenTabs" - }, - { - "type": "literal", - "value": "visibleTabs" - }, - { - "type": "literal", - "value": "reorderedHomepageModules" - } - ] + "fileName": "types.ts", + "line": 773, + "character": 4 } ], - "name": "Omit" - } - ] - }, - { - "id": 1444, - "name": "SessionInterface", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.showAlerts" + } + }, { - "id": 1447, - "name": "acSession", + "id": 1076, + "name": "visibleActions", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "important", + "text": "" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + } + ] + }, "sources": [ { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 14, + "fileName": "types.ts", + "line": 760, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 1448, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1450, - "name": "genNo", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 14, - "character": 36 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1449, - "name": "sessionId", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 14, - "character": 17 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1450, - 1449 - ] - } - ] + "type": "array", + "elementType": { + "type": "reference", + "id": 1641, + "name": "Action" } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleActions" } }, { - "id": 1446, - "name": "genNo", + "id": 1095, + "name": "visibleTabs", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", + "text": "Use either `visibleTabs` or `hiddenTabs`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + } + ] + }, "sources": [ { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 13, + "fileName": "types.ts", + "line": 981, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleTabs" } }, { - "id": 1445, - "name": "sessionId", + "id": 1068, + "name": "worksheetId", "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "The ID of the worksheet to use for the conversation." + }, "sources": [ { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 12, + "fileName": "embed/bodyless-conversation.ts", + "line": 15, "character": 4 } ], @@ -33760,18 +33725,53 @@ "title": "Properties", "kind": 1024, "children": [ - 1447, - 1446, - 1445 + 1081, + 1102, + 1087, + 1085, + 1105, + 1104, + 1074, + 1073, + 1098, + 1106, + 1101, + 1091, + 1100, + 1103, + 1070, + 1075, + 1096, + 1093, + 1108, + 1092, + 1086, + 1088, + 1080, + 1107, + 1097, + 1094, + 1078, + 1079, + 1077, + 1076, + 1095, + 1068 ] } ], "sources": [ { - "fileName": "utils/graphql/answerService/answerService.ts", + "fileName": "embed/bodyless-conversation.ts", "line": 11, "character": 17 } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "ViewConfig" + } ] }, { @@ -37215,11 +37215,11 @@ "children": [ 1371, 872, - 1051, 528, 715, 212, 55, + 1051, 1109 ] }, @@ -37229,7 +37229,6 @@ "children": [ 2027, 1318, - 1067, 2287, 2161, 2149, @@ -37243,6 +37242,7 @@ 1877, 1823, 1444, + 1067, 1256, 1451, 2284, From d9530608cb237ead63bfacc6ba99beec4ce64c6b Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 24 Apr 2025 15:17:25 +0530 Subject: [PATCH 03/29] backword comp --- src/embed/bodyless-conversation.ts | 19 + src/embed/conversation.ts | 163 +- src/index.ts | 10 +- src/react/all-types-export.ts | 1 + src/react/index.tsx | 28 +- static/typedoc/typedoc.json | 13447 ++++++++++++++++++--------- 6 files changed, 9011 insertions(+), 4657 deletions(-) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index a16e2f22..406ca99c 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -15,6 +15,18 @@ export interface SpotterAgentEmbedViewConfig extends ViewConfig { worksheetId: string; } +/** + * Configuration for bodyless conversation options. + * @deprecated Use {@link SpotterAgentEmbedViewConfig} instead. + * @group Embed components + */ +export interface BodylessConversationViewConfig extends ViewConfig { + /** + * The ID of the worksheet to use for the conversation. + */ + worksheetId: string; +} + interface ConversationMessageViewConfig extends SpotterAgentEmbedViewConfig { sessionId: string; genNo: number; @@ -112,3 +124,10 @@ export class SpotterAgentEmbed { return { container, viz: embed }; } } + + +/** + * @deprecated Use {@link SpotterAgentEmbed} instead. + */ +export const BodylessConversation = SpotterAgentEmbed; + diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index 2307e8ea..251a27b3 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -94,6 +94,87 @@ export interface SpotterEmbedViewConfig extends ViewConfig { hideSampleQuestions?: boolean; } +/** + * The configuration for the embedded conversation options. + * @deprecated Use {@link SpotterEmbedViewConfig} instead. + * @group Embed components + */ +export interface ConversationViewConfig extends ViewConfig { + /** + * The ID of the worksheet to use for the conversation. + */ + worksheetId: string; + /** + * Ability to pass a starting search query to the conversation. + */ + searchOptions?: SearchOptions; + /** + * disableSourceSelection : Disables data source selection + * but still display the selected data source. + * @example + * ```js + * const embed = new ConversationEmbed('#tsEmbed', { + * ... // other options + * disableSourceSelection : true, + * }) + * ``` + * @version SDK: 1.36.0 | Thoughtspot: 10.6.0.cl + */ + disableSourceSelection?: boolean; + /** + * hideSourceSelection : Hide data source selection + * @example + * ```js + * const embed = new ConversationEmbed('#tsEmbed', { + * ... // other options + * hideSourceSelection : true, + * }) + * ``` + * @version SDK: 1.36.0 | Thoughtspot: 10.6.0.cl + */ + hideSourceSelection?: boolean; + /** + * Flag to control Data panel experience + * @default false + * @version SDK: 1.36.0 | ThoughtSpot Cloud: 10.4.0.cl + * @example + * ```js + * const embed = new AppEmbed('#tsEmbed', { + * ... // other options + * dataPanelV2: true, + * }) + * ``` + */ + dataPanelV2?: boolean; + /** + * showSpotterLimitations : show limitation text + * of the spotter underneath the chat input. + * default is false. + * @example + * ```js + * const embed = new ConversationEmbed('#tsEmbed', { + * ... // other options + * showSpotterLimitations : true, + * }) + * ``` + * @version SDK: 1.36.0 | Thoughtspot: 10.5.0.cl + */ + showSpotterLimitations?: boolean; + /** + * hideSampleQuestions : Hide sample questions on + * the initial screen of the conversation. + * @example + * ```js + * const embed = new ConversationEmbed('#tsEmbed', { + * ... // other options + * hideSampleQuestions : true, + * }) + * ``` + * @version SDK: 1.36.0 | Thoughtspot: 10.6.0.cl + */ + hideSampleQuestions?: boolean; +} + /** * Embed ThoughtSpot AI Conversation. * @group Embed components @@ -107,7 +188,7 @@ export interface SpotterEmbedViewConfig extends ViewConfig { * }); * conversation.render(); * ``` - * @version SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl + * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl */ export class SpotterEmbed extends TsEmbed { constructor(container: HTMLElement, protected viewConfig: SpotterEmbedViewConfig) { @@ -171,3 +252,83 @@ export class SpotterEmbed extends TsEmbed { return this; } } + +/** + * Embed ThoughtSpot AI Conversation. + * @deprecated Use {@link SpotterEmbed} instead. + * @group Embed components + * @example + * ```js + * const conversation = new ConversationEmbed('#tsEmbed', { + * worksheetId: 'worksheetId', + * searchOptions: { + * searchQuery: 'searchQuery', + * }, + * }); + * conversation.render(); + * ``` + * @version SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl + */ +export class ConversationEmbed extends TsEmbed { + constructor(container: HTMLElement, protected viewConfig: ConversationViewConfig) { + viewConfig.embedComponentType = 'conversation'; + super(container, viewConfig); + } + public getIframeSrc(): string { + const { + worksheetId, + searchOptions, + disableSourceSelection, + hideSourceSelection, + dataPanelV2, + showSpotterLimitations, + hideSampleQuestions, + } = this.viewConfig; + const path = 'insights/conv-assist'; + if (!worksheetId) { + this.handleError(ERROR_MESSAGE.SPOTTER_EMBED_WORKSHEED_ID_NOT_FOUND); + } + const queryParams = this.getBaseQueryParams(); + queryParams[Param.SpotterEnabled] = true; + if (!isUndefined(disableSourceSelection)) { + queryParams[Param.DisableSourceSelection] = !!disableSourceSelection; + } + if (!isUndefined(hideSourceSelection)) { + queryParams[Param.HideSourceSelection] = !!hideSourceSelection; + } + + if (!isUndefined(dataPanelV2)) { + queryParams[Param.DataPanelV2Enabled] = !!dataPanelV2; + } + + if (!isUndefined(showSpotterLimitations)) { + queryParams[Param.ShowSpotterLimitations] = !!showSpotterLimitations; + } + + if (!isUndefined(hideSampleQuestions)) { + queryParams[Param.HideSampleQuestions] = !!hideSampleQuestions; + } + + let query = ''; + const queryParamsString = getQueryParamString(queryParams, true); + if (queryParamsString) { + query = `?${queryParamsString}`; + } + const tsPostHashParams = this.getThoughtSpotPostUrlParams({ + worksheet: worksheetId, + query: searchOptions?.searchQuery || '', + }); + + return `${this.getEmbedBasePath(query)}/embed/${path}${tsPostHashParams}`; + } + + public async render(): Promise { + await super.render(); + + const src = this.getIframeSrc(); + await this.renderIFrame(src); + return this; + } +} + + diff --git a/src/index.ts b/src/index.ts index 8854ee01..50bffaeb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -23,8 +23,8 @@ import { import { PinboardEmbed, LiveboardViewConfig, LiveboardEmbed } from './embed/liveboard'; import { SearchEmbed, SearchViewConfig } from './embed/search'; import { SearchBarEmbed, SearchBarViewConfig } from './embed/search-bar'; -import { BodylessConversation, BodylessConversationViewConfig } from './embed/bodyless-conversation'; -import { SpotterEmbed, SpotterEmbedViewConfig } from './embed/conversation'; +import { SpotterAgentEmbed, SpotterAgentEmbedViewConfig, BodylessConversationViewConfig, BodylessConversation } from './embed/bodyless-conversation'; +import { SpotterEmbed, SpotterEmbedViewConfig, ConversationViewConfig, ConversationEmbed } from './embed/conversation'; import { AuthFailureType, AuthStatus, AuthEvent, AuthEventEmitter, } from './auth'; @@ -85,10 +85,14 @@ export { LiveboardEmbed, SageEmbed, AppEmbed, - BodylessConversation, + SpotterAgentEmbed, + SpotterAgentEmbedViewConfig, BodylessConversationViewConfig, + BodylessConversation, SpotterEmbed, SpotterEmbedViewConfig, + ConversationViewConfig, + ConversationEmbed, AuthFailureType, AuthStatus, AuthEvent, diff --git a/src/react/all-types-export.ts b/src/react/all-types-export.ts index ad5dd97d..c817e0ba 100644 --- a/src/react/all-types-export.ts +++ b/src/react/all-types-export.ts @@ -10,6 +10,7 @@ export { SageEmbed, PreRenderedSageEmbed, SpotterEmbed, + ConversationEmbed, PreRenderedConversationEmbed, useEmbedRef, useInit, diff --git a/src/react/index.tsx b/src/react/index.tsx index cc21f216..76a6852a 100644 --- a/src/react/index.tsx +++ b/src/react/index.tsx @@ -13,7 +13,7 @@ import { TsEmbed } from '../embed/ts-embed'; import { EmbedConfig, EmbedEvent, ViewConfig } from '../types'; import { EmbedProps, getViewPropsAndListeners } from './util'; -import { SpotterEmbed as _SpotterEmbed, SpotterEmbedViewConfig } from '../embed/conversation'; +import { SpotterEmbed as _SpotterEmbed, SpotterEmbedViewConfig, ConversationEmbed as _ConversationEmbed, ConversationViewConfig } from '../embed/conversation'; import { init } from '../embed/base'; const componentFactory = ( @@ -357,6 +357,29 @@ export const SpotterEmbed = componentFactory< SpotterEmbedViewConfig >(_SpotterEmbed); + +/** + * React component for LLM based conversation BI. + * @deprecated Use {@link SpotterEmbed} instead. + * @example + * ```tsx + * function Sage() { + * return " + * }} + * ... other view config props or event listeners. + * /> + * } + * ``` + */ +export const ConversationEmbed = componentFactory< + typeof _ConversationEmbed, + ConversationViewConfig, + ConversationViewConfig +>(_ConversationEmbed); + /** * React component for PreRendered Conversation embed. * @@ -386,7 +409,8 @@ type EmbedComponent = typeof SearchEmbed | typeof LiveboardEmbed | typeof SearchBarEmbed | typeof SageEmbed - | typeof SpotterEmbed; + | typeof SpotterEmbed + | typeof ConversationEmbed; /** * Get a reference to the embed component to trigger events on the component. diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 7175a5b0..0472e469 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 1641, + "id": 1878, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 1753, + "id": 1990, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -55,7 +55,7 @@ "defaultValue": "\"AIHighlights\"" }, { - "id": 1661, + "id": 1898, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -83,7 +83,7 @@ "defaultValue": "\"addSimpleCohort\"" }, { - "id": 1654, + "id": 1891, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -111,7 +111,7 @@ "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 1653, + "id": 1890, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -135,7 +135,7 @@ "defaultValue": "\"addFilter\"" }, { - "id": 1659, + "id": 1896, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -159,7 +159,7 @@ "defaultValue": "\"addFormula\"" }, { - "id": 1660, + "id": 1897, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -183,7 +183,7 @@ "defaultValue": "\"addParameter\"" }, { - "id": 1662, + "id": 1899, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -211,7 +211,7 @@ "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 1736, + "id": 1973, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -239,7 +239,7 @@ "defaultValue": "\"addTab\"" }, { - "id": 1709, + "id": 1946, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -267,7 +267,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 1750, + "id": 1987, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -295,7 +295,7 @@ "defaultValue": "\"addToWatchlist\"" }, { - "id": 1708, + "id": 1945, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -323,7 +323,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1707, + "id": 1944, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -351,7 +351,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1749, + "id": 1986, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -380,7 +380,7 @@ "defaultValue": "\"AskAi\"" }, { - "id": 1720, + "id": 1957, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -408,7 +408,7 @@ "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 1723, + "id": 1960, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -436,7 +436,7 @@ "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 1728, + "id": 1965, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -464,7 +464,7 @@ "defaultValue": "\"axisMenuEdit\"" }, { - "id": 1722, + "id": 1959, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -492,7 +492,7 @@ "defaultValue": "\"axisMenuFilter\"" }, { - "id": 1725, + "id": 1962, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -520,7 +520,7 @@ "defaultValue": "\"axisMenuGroup\"" }, { - "id": 1729, + "id": 1966, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -548,7 +548,7 @@ "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 1726, + "id": 1963, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -576,7 +576,7 @@ "defaultValue": "\"axisMenuPosition\"" }, { - "id": 1731, + "id": 1968, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -604,7 +604,7 @@ "defaultValue": "\"axisMenuRemove\"" }, { - "id": 1727, + "id": 1964, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -632,7 +632,7 @@ "defaultValue": "\"axisMenuRename\"" }, { - "id": 1724, + "id": 1961, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -660,7 +660,7 @@ "defaultValue": "\"axisMenuSort\"" }, { - "id": 1730, + "id": 1967, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -688,7 +688,7 @@ "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 1721, + "id": 1958, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -716,7 +716,7 @@ "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 1762, + "id": 1999, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -744,7 +744,7 @@ "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 1658, + "id": 1895, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -768,7 +768,7 @@ "defaultValue": "\"chooseDataSources\"" }, { - "id": 1657, + "id": 1894, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -796,7 +796,7 @@ "defaultValue": "\"collapseDataPanel\"" }, { - "id": 1656, + "id": 1893, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -824,7 +824,7 @@ "defaultValue": "\"collapseDataSources\"" }, { - "id": 1769, + "id": 2006, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -852,7 +852,7 @@ "defaultValue": "\"columnRename\"" }, { - "id": 1655, + "id": 1892, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -876,7 +876,7 @@ "defaultValue": "\"configureFilter\"" }, { - "id": 1700, + "id": 1937, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -891,7 +891,7 @@ "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 1648, + "id": 1885, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -915,7 +915,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1699, + "id": 1936, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -939,7 +939,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1770, + "id": 2007, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -967,7 +967,7 @@ "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 1747, + "id": 1984, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -995,7 +995,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 1711, + "id": 1948, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1023,7 +1023,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 1716, + "id": 1953, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1051,7 +1051,7 @@ "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 1767, + "id": 2004, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1079,7 +1079,7 @@ "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 1759, + "id": 1996, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1107,7 +1107,7 @@ "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 1761, + "id": 1998, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1135,7 +1135,7 @@ "defaultValue": "\"disableChipReorder\"" }, { - "id": 1670, + "id": 1907, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1159,7 +1159,7 @@ "defaultValue": "\"download\"" }, { - "id": 1673, + "id": 1910, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1183,7 +1183,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1672, + "id": 1909, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1208,7 +1208,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1671, + "id": 1908, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1232,7 +1232,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1674, + "id": 1911, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1256,7 +1256,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1704, + "id": 1941, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1280,7 +1280,7 @@ "defaultValue": "\"DRILL\"" }, { - "id": 1698, + "id": 1935, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1304,7 +1304,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1697, + "id": 1934, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1328,7 +1328,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1682, + "id": 1919, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1352,7 +1352,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1647, + "id": 1884, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1376,7 +1376,7 @@ "defaultValue": "\"editACopy\"" }, { - "id": 1710, + "id": 1947, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1404,7 +1404,7 @@ "defaultValue": "\"editDetails\"" }, { - "id": 1702, + "id": 1939, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1419,7 +1419,7 @@ "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 1766, + "id": 2003, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1447,7 +1447,7 @@ "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 1739, + "id": 1976, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1475,7 +1475,7 @@ "defaultValue": "\"editSageAnswer\"" }, { - "id": 1754, + "id": 1991, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1503,7 +1503,7 @@ "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 1679, + "id": 1916, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1527,7 +1527,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1683, + "id": 1920, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1551,7 +1551,7 @@ "defaultValue": "\"editTitle\"" }, { - "id": 1768, + "id": 2005, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1579,7 +1579,7 @@ "defaultValue": "\"editTokens\"" }, { - "id": 1737, + "id": 1974, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1607,7 +1607,7 @@ "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 1696, + "id": 1933, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1631,7 +1631,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1676, + "id": 1913, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1656,7 +1656,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1677, + "id": 1914, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1680,7 +1680,7 @@ "defaultValue": "\"importTSL\"" }, { - "id": 1760, + "id": 1997, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1708,7 +1708,7 @@ "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 1690, + "id": 1927, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1732,7 +1732,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1745, + "id": 1982, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1760,7 +1760,7 @@ "defaultValue": "\"liveboardUsers\"" }, { - "id": 1646, + "id": 1883, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1784,7 +1784,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1743, + "id": 1980, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1808,7 +1808,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 1715, + "id": 1952, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1836,7 +1836,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 1758, + "id": 1995, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1864,7 +1864,7 @@ "defaultValue": "\"manageTags\"" }, { - "id": 1735, + "id": 1972, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1892,7 +1892,7 @@ "defaultValue": "\"markAsVerified\"" }, { - "id": 1741, + "id": 1978, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1919,7 +1919,7 @@ "defaultValue": "\"modifySageAnswer\"" }, { - "id": 1742, + "id": 1979, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1943,7 +1943,7 @@ "defaultValue": "\"onContainerMove\"" }, { - "id": 1752, + "id": 1989, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -1971,7 +1971,7 @@ "defaultValue": "\"organiseFavourites\"" }, { - "id": 1755, + "id": 1992, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1999,7 +1999,7 @@ "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 1744, + "id": 1981, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2027,7 +2027,7 @@ "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 1693, + "id": 1930, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2051,7 +2051,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1680, + "id": 1917, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2075,7 +2075,7 @@ "defaultValue": "\"present\"" }, { - "id": 1763, + "id": 2000, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2103,7 +2103,7 @@ "defaultValue": "\"previewDataSpotter\"" }, { - "id": 1706, + "id": 1943, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2128,7 +2128,7 @@ "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 1684, + "id": 1921, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2152,7 +2152,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1719, + "id": 1956, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2180,7 +2180,7 @@ "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 1751, + "id": 1988, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2208,7 +2208,7 @@ "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 1733, + "id": 1970, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2236,7 +2236,7 @@ "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 1712, + "id": 1949, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2267,7 +2267,7 @@ "defaultValue": "\"reportError\"" }, { - "id": 1705, + "id": 1942, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2291,7 +2291,7 @@ "defaultValue": "\"requestAccess\"" }, { - "id": 1734, + "id": 1971, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2319,7 +2319,7 @@ "defaultValue": "\"requestVerification\"" }, { - "id": 1764, + "id": 2001, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2347,7 +2347,7 @@ "defaultValue": "\"resetSpotterChat\"" }, { - "id": 1740, + "id": 1977, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2375,7 +2375,7 @@ "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 1642, + "id": 1879, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2399,7 +2399,7 @@ "defaultValue": "\"save\"" }, { - "id": 1645, + "id": 1882, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2423,7 +2423,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 1650, + "id": 1887, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2447,7 +2447,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1651, + "id": 1888, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2471,7 +2471,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1703, + "id": 1940, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2486,7 +2486,7 @@ "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 1652, + "id": 1889, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2510,7 +2510,7 @@ "defaultValue": "\"share\"" }, { - "id": 1667, + "id": 1904, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2528,7 +2528,7 @@ "defaultValue": "\"shareViz\"" }, { - "id": 1738, + "id": 1975, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2556,7 +2556,7 @@ "defaultValue": "\"showSageQuery\"" }, { - "id": 1669, + "id": 1906, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2580,7 +2580,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1664, + "id": 1901, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2604,7 +2604,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1765, + "id": 2002, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2632,7 +2632,7 @@ "defaultValue": "\"spotterFeedback\"" }, { - "id": 1695, + "id": 1932, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2656,7 +2656,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1714, + "id": 1951, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2684,7 +2684,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1713, + "id": 1950, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2712,7 +2712,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1717, + "id": 1954, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2740,7 +2740,7 @@ "defaultValue": "\"syncToSlack\"" }, { - "id": 1718, + "id": 1955, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2768,7 +2768,7 @@ "defaultValue": "\"syncToTeams\"" }, { - "id": 1746, + "id": 1983, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2800,7 +2800,7 @@ "defaultValue": "\"tml\"" }, { - "id": 1681, + "id": 1918, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -2824,7 +2824,7 @@ "defaultValue": "\"toggleSize\"" }, { - "id": 1757, + "id": 1994, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2852,7 +2852,7 @@ "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 1678, + "id": 1915, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -2876,7 +2876,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1748, + "id": 1985, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -2904,7 +2904,7 @@ "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 1756, + "id": 1993, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2937,117 +2937,117 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1753, - 1661, - 1654, - 1653, - 1659, - 1660, - 1662, - 1736, - 1709, - 1750, - 1708, - 1707, - 1749, - 1720, - 1723, - 1728, - 1722, - 1725, - 1729, - 1726, - 1731, - 1727, - 1724, - 1730, - 1721, - 1762, - 1658, - 1657, - 1656, - 1769, - 1655, - 1700, - 1648, - 1699, - 1770, - 1747, - 1711, - 1716, - 1767, - 1759, - 1761, - 1670, - 1673, - 1672, - 1671, - 1674, - 1704, - 1698, - 1697, - 1682, - 1647, - 1710, - 1702, - 1766, - 1739, - 1754, - 1679, - 1683, - 1768, - 1737, - 1696, - 1676, - 1677, - 1760, - 1690, - 1745, - 1646, - 1743, - 1715, - 1758, - 1735, - 1741, - 1742, - 1752, - 1755, - 1744, - 1693, - 1680, - 1763, - 1706, - 1684, - 1719, - 1751, - 1733, - 1712, - 1705, - 1734, - 1764, - 1740, - 1642, - 1645, - 1650, - 1651, - 1703, - 1652, - 1667, - 1738, - 1669, - 1664, - 1765, - 1695, - 1714, - 1713, - 1717, - 1718, - 1746, - 1681, - 1757, - 1678, - 1748, - 1756 + 1990, + 1898, + 1891, + 1890, + 1896, + 1897, + 1899, + 1973, + 1946, + 1987, + 1945, + 1944, + 1986, + 1957, + 1960, + 1965, + 1959, + 1962, + 1966, + 1963, + 1968, + 1964, + 1961, + 1967, + 1958, + 1999, + 1895, + 1894, + 1893, + 2006, + 1892, + 1937, + 1885, + 1936, + 2007, + 1984, + 1948, + 1953, + 2004, + 1996, + 1998, + 1907, + 1910, + 1909, + 1908, + 1911, + 1941, + 1935, + 1934, + 1919, + 1884, + 1947, + 1939, + 2003, + 1976, + 1991, + 1916, + 1920, + 2005, + 1974, + 1933, + 1913, + 1914, + 1997, + 1927, + 1982, + 1883, + 1980, + 1952, + 1995, + 1972, + 1978, + 1979, + 1989, + 1992, + 1981, + 1930, + 1917, + 2000, + 1943, + 1921, + 1956, + 1988, + 1970, + 1949, + 1942, + 1971, + 2001, + 1977, + 1879, + 1882, + 1887, + 1888, + 1940, + 1889, + 1904, + 1975, + 1906, + 1901, + 2002, + 1932, + 1951, + 1950, + 1954, + 1955, + 1983, + 1918, + 1994, + 1915, + 1985, + 1993 ] } ], @@ -3060,7 +3060,7 @@ ] }, { - "id": 1316, + "id": 1553, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3076,7 +3076,7 @@ }, "children": [ { - "id": 1317, + "id": 1554, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3099,7 +3099,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1317 + 1554 ] } ], @@ -3112,7 +3112,7 @@ ] }, { - "id": 1303, + "id": 1540, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3128,7 +3128,7 @@ }, "children": [ { - "id": 1306, + "id": 1543, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3143,7 +3143,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1308, + "id": 1545, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3158,7 +3158,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1305, + "id": 1542, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3173,7 +3173,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1307, + "id": 1544, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3188,7 +3188,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1304, + "id": 1541, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3208,11 +3208,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1306, - 1308, - 1305, - 1307, - 1304 + 1543, + 1545, + 1542, + 1544, + 1541 ] } ], @@ -3225,7 +3225,7 @@ ] }, { - "id": 1309, + "id": 1546, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3241,7 +3241,7 @@ }, "children": [ { - "id": 1310, + "id": 1547, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3259,7 +3259,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1314, + "id": 1551, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3277,7 +3277,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1311, + "id": 1548, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3295,7 +3295,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1313, + "id": 1550, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3313,7 +3313,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1315, + "id": 1552, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3342,11 +3342,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1310, - 1314, - 1311, - 1313, - 1315 + 1547, + 1551, + 1548, + 1550, + 1552 ] } ], @@ -3359,7 +3359,7 @@ ] }, { - "id": 1463, + "id": 1700, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3375,7 +3375,7 @@ }, "children": [ { - "id": 1474, + "id": 1711, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3394,7 +3394,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1465, + "id": 1702, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3423,7 +3423,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1464, + "id": 1701, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3447,7 +3447,7 @@ "defaultValue": "\"None\"" }, { - "id": 1470, + "id": 1707, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3465,7 +3465,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1468, + "id": 1705, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3498,7 +3498,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1472, + "id": 1709, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3522,7 +3522,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1473, + "id": 1710, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3555,13 +3555,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1474, - 1465, - 1464, - 1470, - 1468, - 1472, - 1473 + 1711, + 1702, + 1701, + 1707, + 1705, + 1709, + 1710 ] } ], @@ -3574,7 +3574,7 @@ ] }, { - "id": 1771, + "id": 2008, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3584,7 +3584,7 @@ }, "children": [ { - "id": 1774, + "id": 2011, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3599,7 +3599,7 @@ "defaultValue": "\"both-clicks\"" }, { - "id": 1772, + "id": 2009, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3614,7 +3614,7 @@ "defaultValue": "\"left-click\"" }, { - "id": 1773, + "id": 2010, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3634,9 +3634,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1774, - 1772, - 1773 + 2011, + 2009, + 2010 ] } ], @@ -3649,7 +3649,7 @@ ] }, { - "id": 1637, + "id": 1874, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -3659,7 +3659,7 @@ }, "children": [ { - "id": 1639, + "id": 1876, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -3677,7 +3677,7 @@ "defaultValue": "\"collapse\"" }, { - "id": 1640, + "id": 1877, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -3695,7 +3695,7 @@ "defaultValue": "\"expand\"" }, { - "id": 1638, + "id": 1875, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -3718,9 +3718,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1639, - 1640, - 1638 + 1876, + 1877, + 1875 ] } ], @@ -3733,7 +3733,7 @@ ] }, { - "id": 1495, + "id": 1732, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -3758,7 +3758,7 @@ }, "children": [ { - "id": 1523, + "id": 1760, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -3786,7 +3786,7 @@ "defaultValue": "\"*\"" }, { - "id": 1503, + "id": 1740, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -3818,7 +3818,7 @@ "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1546, + "id": 1783, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -3846,7 +3846,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 1508, + "id": 1745, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -3878,7 +3878,7 @@ "defaultValue": "\"alert\"" }, { - "id": 1543, + "id": 1780, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -3906,7 +3906,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1530, + "id": 1767, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -3934,7 +3934,7 @@ "defaultValue": "\"answerDelete\"" }, { - "id": 1569, + "id": 1806, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -3974,7 +3974,7 @@ "defaultValue": "\"AskSageInit\"" }, { - "id": 1509, + "id": 1746, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4002,7 +4002,7 @@ "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1497, + "id": 1734, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4034,7 +4034,7 @@ "defaultValue": "\"authInit\"" }, { - "id": 1553, + "id": 1790, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4062,7 +4062,7 @@ "defaultValue": "\"cancel\"" }, { - "id": 1541, + "id": 1778, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4090,7 +4090,7 @@ "defaultValue": "\"copyAEdit\"" }, { - "id": 1555, + "id": 1792, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4118,7 +4118,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1536, + "id": 1773, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4146,7 +4146,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1563, + "id": 1800, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4170,7 +4170,7 @@ "defaultValue": "\"createConnection\"" }, { - "id": 1574, + "id": 1811, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4195,7 +4195,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 1575, + "id": 1812, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4219,7 +4219,7 @@ "defaultValue": "\"createModel\"" }, { - "id": 1568, + "id": 1805, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4243,7 +4243,7 @@ "defaultValue": "\"createWorksheet\"" }, { - "id": 1556, + "id": 1793, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4271,7 +4271,7 @@ "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1504, + "id": 1741, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4307,7 +4307,7 @@ "defaultValue": "\"customAction\"" }, { - "id": 1499, + "id": 1736, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4343,7 +4343,7 @@ "defaultValue": "\"data\"" }, { - "id": 1502, + "id": 1739, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4375,7 +4375,7 @@ "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1551, + "id": 1788, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4403,7 +4403,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1567, + "id": 1804, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4435,7 +4435,7 @@ "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1521, + "id": 1758, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4463,7 +4463,7 @@ "defaultValue": "\"dialog-close\"" }, { - "id": 1520, + "id": 1757, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -4491,7 +4491,7 @@ "defaultValue": "\"dialog-open\"" }, { - "id": 1525, + "id": 1762, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -4520,7 +4520,7 @@ "defaultValue": "\"download\"" }, { - "id": 1528, + "id": 1765, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -4548,7 +4548,7 @@ "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1527, + "id": 1764, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -4576,7 +4576,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1526, + "id": 1763, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -4604,7 +4604,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1529, + "id": 1766, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -4632,7 +4632,7 @@ "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1535, + "id": 1772, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -4660,7 +4660,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1534, + "id": 1771, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -4688,7 +4688,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1501, + "id": 1738, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -4732,7 +4732,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 1548, + "id": 1785, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -4760,7 +4760,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1538, + "id": 1775, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -4788,7 +4788,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1507, + "id": 1744, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -4825,7 +4825,7 @@ "defaultValue": "\"Error\"" }, { - "id": 1554, + "id": 1791, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -4853,7 +4853,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1539, + "id": 1776, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -4881,7 +4881,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1559, + "id": 1796, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4905,7 +4905,7 @@ "defaultValue": "\"filterChanged\"" }, { - "id": 1515, + "id": 1752, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -4933,7 +4933,7 @@ "defaultValue": "\"getDataClick\"" }, { - "id": 1496, + "id": 1733, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -4961,7 +4961,7 @@ "defaultValue": "\"init\"" }, { - "id": 1545, + "id": 1782, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -4989,7 +4989,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1522, + "id": 1759, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5021,7 +5021,7 @@ "defaultValue": "\"PinboardRendered\"" }, { - "id": 1498, + "id": 1735, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5053,7 +5053,7 @@ "defaultValue": "\"load\"" }, { - "id": 1549, + "id": 1786, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5081,7 +5081,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1518, + "id": 1755, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5109,7 +5109,7 @@ "defaultValue": "\"noCookieAccess\"" }, { - "id": 1571, + "id": 1808, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5146,7 +5146,7 @@ "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 1572, + "id": 1809, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5170,7 +5170,7 @@ "defaultValue": "\"parameterChanged\"" }, { - "id": 1531, + "id": 1768, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5198,7 +5198,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1550, + "id": 1787, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5230,7 +5230,7 @@ "defaultValue": "\"present\"" }, { - "id": 1500, + "id": 1737, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5258,7 +5258,7 @@ "defaultValue": "\"queryChanged\"" }, { - "id": 1570, + "id": 1807, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5282,7 +5282,7 @@ "defaultValue": "\"rename\"" }, { - "id": 1566, + "id": 1803, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5322,7 +5322,7 @@ "defaultValue": "\"resetLiveboard\"" }, { - "id": 1516, + "id": 1753, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -5350,7 +5350,7 @@ "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1560, + "id": 1797, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -5374,7 +5374,7 @@ "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1561, + "id": 1798, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -5398,7 +5398,7 @@ "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1524, + "id": 1761, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -5426,7 +5426,7 @@ "defaultValue": "\"save\"" }, { - "id": 1540, + "id": 1777, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -5454,7 +5454,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 1565, + "id": 1802, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5494,7 +5494,7 @@ "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1547, + "id": 1784, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -5522,7 +5522,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1552, + "id": 1789, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -5550,7 +5550,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1533, + "id": 1770, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -5578,7 +5578,7 @@ "defaultValue": "\"share\"" }, { - "id": 1542, + "id": 1779, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -5606,7 +5606,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1532, + "id": 1769, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -5634,7 +5634,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1573, + "id": 1810, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -5663,7 +5663,7 @@ "defaultValue": "\"TableVizRendered\"" }, { - "id": 1562, + "id": 1799, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -5687,7 +5687,7 @@ "defaultValue": "\"updateConnection\"" }, { - "id": 1564, + "id": 1801, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5727,7 +5727,7 @@ "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1537, + "id": 1774, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -5755,7 +5755,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1506, + "id": 1743, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -5791,7 +5791,7 @@ "defaultValue": "\"vizPointClick\"" }, { - "id": 1505, + "id": 1742, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -5823,7 +5823,7 @@ "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1557, + "id": 1794, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -5856,77 +5856,77 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1523, - 1503, - 1546, - 1508, - 1543, - 1530, - 1569, - 1509, - 1497, - 1553, - 1541, - 1555, - 1536, - 1563, - 1574, - 1575, - 1568, - 1556, - 1504, - 1499, - 1502, - 1551, - 1567, - 1521, - 1520, - 1525, - 1528, - 1527, - 1526, - 1529, - 1535, - 1534, - 1501, - 1548, - 1538, - 1507, - 1554, - 1539, - 1559, - 1515, - 1496, - 1545, - 1522, - 1498, - 1549, - 1518, - 1571, - 1572, - 1531, - 1550, - 1500, - 1570, - 1566, - 1516, - 1560, - 1561, - 1524, - 1540, - 1565, - 1547, - 1552, - 1533, - 1542, - 1532, - 1573, - 1562, - 1564, - 1537, - 1506, - 1505, - 1557 + 1760, + 1740, + 1783, + 1745, + 1780, + 1767, + 1806, + 1746, + 1734, + 1790, + 1778, + 1792, + 1773, + 1800, + 1811, + 1812, + 1805, + 1793, + 1741, + 1736, + 1739, + 1788, + 1804, + 1758, + 1757, + 1762, + 1765, + 1764, + 1763, + 1766, + 1772, + 1771, + 1738, + 1785, + 1775, + 1744, + 1791, + 1776, + 1796, + 1752, + 1733, + 1782, + 1759, + 1735, + 1786, + 1755, + 1808, + 1809, + 1768, + 1787, + 1737, + 1807, + 1803, + 1753, + 1797, + 1798, + 1761, + 1777, + 1802, + 1784, + 1789, + 1770, + 1779, + 1769, + 1810, + 1799, + 1801, + 1774, + 1743, + 1742, + 1794 ] } ], @@ -5939,7 +5939,7 @@ ] }, { - "id": 2107, + "id": 2344, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -5949,7 +5949,7 @@ }, "children": [ { - "id": 2111, + "id": 2348, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -5972,7 +5972,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2109, + "id": 2346, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -5995,7 +5995,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2114, + "id": 2351, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6018,7 +6018,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2110, + "id": 2347, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6041,7 +6041,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2112, + "id": 2349, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6064,7 +6064,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2108, + "id": 2345, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6087,7 +6087,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2113, + "id": 2350, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6115,13 +6115,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2111, - 2109, - 2114, - 2110, - 2112, - 2108, - 2113 + 2348, + 2346, + 2351, + 2347, + 2349, + 2345, + 2350 ] } ], @@ -6134,14 +6134,14 @@ ] }, { - "id": 2280, + "id": 2517, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2282, + "id": 2519, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -6156,7 +6156,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2283, + "id": 2520, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -6171,7 +6171,7 @@ "defaultValue": "\"none\"" }, { - "id": 2281, + "id": 2518, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -6191,9 +6191,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2282, - 2283, - 2281 + 2519, + 2520, + 2518 ] } ], @@ -6206,7 +6206,7 @@ ] }, { - "id": 2115, + "id": 2352, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -6222,7 +6222,7 @@ }, "children": [ { - "id": 2118, + "id": 2355, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -6240,7 +6240,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2121, + "id": 2358, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -6258,7 +6258,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2119, + "id": 2356, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -6276,7 +6276,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2116, + "id": 2353, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -6294,7 +6294,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2120, + "id": 2357, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -6312,7 +6312,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2117, + "id": 2354, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -6335,12 +6335,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2118, - 2121, - 2119, - 2116, - 2120, - 2117 + 2355, + 2358, + 2356, + 2353, + 2357, + 2354 ] } ], @@ -6353,7 +6353,7 @@ ] }, { - "id": 1576, + "id": 1813, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -6382,7 +6382,7 @@ }, "children": [ { - "id": 1587, + "id": 1824, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -6415,7 +6415,7 @@ "defaultValue": "\"addColumns\"" }, { - "id": 1627, + "id": 1864, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -6443,7 +6443,7 @@ "defaultValue": "\"AskSage\"" }, { - "id": 1604, + "id": 1841, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -6476,7 +6476,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1601, + "id": 1838, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -6513,7 +6513,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 1608, + "id": 1845, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -6546,7 +6546,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1610, + "id": 1847, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -6578,7 +6578,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1612, + "id": 1849, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -6606,7 +6606,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1597, + "id": 1834, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -6635,7 +6635,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1611, + "id": 1848, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -6663,7 +6663,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1613, + "id": 1850, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -6691,7 +6691,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1578, + "id": 1815, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -6743,7 +6743,7 @@ "defaultValue": "\"triggerDrillDown\"" }, { - "id": 1603, + "id": 1840, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -6777,7 +6777,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1595, + "id": 1832, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -6805,7 +6805,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1600, + "id": 1837, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -6838,7 +6838,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1594, + "id": 1831, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -6866,7 +6866,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1626, + "id": 1863, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -6898,7 +6898,7 @@ "defaultValue": "\"getAnswerSession\"" }, { - "id": 1620, + "id": 1857, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -6926,7 +6926,7 @@ "defaultValue": "\"getFilters\"" }, { - "id": 1581, + "id": 1818, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -6954,7 +6954,7 @@ "defaultValue": "\"GetIframeUrl\"" }, { - "id": 1631, + "id": 1868, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -6978,7 +6978,7 @@ "defaultValue": "\"GetParameters\"" }, { - "id": 1606, + "id": 1843, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -7010,7 +7010,7 @@ "defaultValue": "\"getTML\"" }, { - "id": 1622, + "id": 1859, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -7038,7 +7038,7 @@ "defaultValue": "\"getTabs\"" }, { - "id": 1591, + "id": 1828, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -7066,7 +7066,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1598, + "id": 1835, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -7106,7 +7106,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1602, + "id": 1839, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7147,7 +7147,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 1618, + "id": 1855, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -7180,7 +7180,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 1585, + "id": 1822, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -7213,7 +7213,7 @@ "defaultValue": "\"Navigate\"" }, { - "id": 1586, + "id": 1823, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -7246,7 +7246,7 @@ "defaultValue": "\"openFilter\"" }, { - "id": 1590, + "id": 1827, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -7310,7 +7310,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1605, + "id": 1842, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -7343,7 +7343,7 @@ "defaultValue": "\"present\"" }, { - "id": 1599, + "id": 1836, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -7375,7 +7375,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1588, + "id": 1825, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -7408,7 +7408,7 @@ "defaultValue": "\"removeColumn\"" }, { - "id": 1629, + "id": 1866, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -7436,7 +7436,7 @@ "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 1619, + "id": 1856, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -7464,7 +7464,7 @@ "defaultValue": "\"resetSearch\"" }, { - "id": 1615, + "id": 1852, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -7492,7 +7492,7 @@ "defaultValue": "\"save\"" }, { - "id": 1634, + "id": 1871, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -7525,7 +7525,7 @@ "defaultValue": "\"saveAnswer\"" }, { - "id": 1592, + "id": 1829, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -7553,7 +7553,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1593, + "id": 1830, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -7581,7 +7581,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1577, + "id": 1814, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7620,7 +7620,7 @@ "defaultValue": "\"search\"" }, { - "id": 1583, + "id": 1820, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -7653,7 +7653,7 @@ "defaultValue": "\"SetActiveTab\"" }, { - "id": 1624, + "id": 1861, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -7686,7 +7686,7 @@ "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 1623, + "id": 1860, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -7719,7 +7719,7 @@ "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 1582, + "id": 1819, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -7752,7 +7752,7 @@ "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 1614, + "id": 1851, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -7780,7 +7780,7 @@ "defaultValue": "\"share\"" }, { - "id": 1607, + "id": 1844, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -7813,7 +7813,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1609, + "id": 1846, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -7846,7 +7846,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1617, + "id": 1854, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -7879,7 +7879,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1616, + "id": 1853, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -7912,7 +7912,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1636, + "id": 1873, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -7945,7 +7945,7 @@ "defaultValue": "\"TransformTableVizData\"" }, { - "id": 1628, + "id": 1865, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -7973,7 +7973,7 @@ "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 1621, + "id": 1858, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -8019,7 +8019,7 @@ "defaultValue": "\"updateFilters\"" }, { - "id": 1630, + "id": 1867, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -8043,7 +8043,7 @@ "defaultValue": "\"UpdateParameters\"" }, { - "id": 1632, + "id": 1869, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8067,7 +8067,7 @@ "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 1584, + "id": 1821, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -8105,7 +8105,7 @@ "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 1625, + "id": 1862, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -8143,7 +8143,7 @@ "defaultValue": "\"updateSageQuery\"" }, { - "id": 1596, + "id": 1833, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -8171,7 +8171,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1589, + "id": 1826, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -8204,62 +8204,62 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1587, - 1627, - 1604, - 1601, - 1608, - 1610, - 1612, - 1597, - 1611, - 1613, - 1578, - 1603, - 1595, - 1600, - 1594, - 1626, - 1620, - 1581, - 1631, - 1606, - 1622, - 1591, - 1598, - 1602, - 1618, - 1585, - 1586, - 1590, - 1605, - 1599, - 1588, - 1629, - 1619, - 1615, - 1634, - 1592, - 1593, - 1577, - 1583, - 1624, - 1623, - 1582, - 1614, - 1607, - 1609, - 1617, - 1616, - 1636, - 1628, - 1621, - 1630, - 1632, - 1584, - 1625, - 1596, - 1589 + 1824, + 1864, + 1841, + 1838, + 1845, + 1847, + 1849, + 1834, + 1848, + 1850, + 1815, + 1840, + 1832, + 1837, + 1831, + 1863, + 1857, + 1818, + 1868, + 1843, + 1859, + 1828, + 1835, + 1839, + 1855, + 1822, + 1823, + 1827, + 1842, + 1836, + 1825, + 1866, + 1856, + 1852, + 1871, + 1829, + 1830, + 1814, + 1820, + 1861, + 1860, + 1819, + 1851, + 1844, + 1846, + 1854, + 1853, + 1873, + 1865, + 1858, + 1867, + 1869, + 1821, + 1862, + 1833, + 1826 ] } ], @@ -8272,7 +8272,7 @@ ] }, { - "id": 2314, + "id": 2551, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -8288,7 +8288,7 @@ }, "children": [ { - "id": 2317, + "id": 2554, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -8306,7 +8306,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2318, + "id": 2555, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -8324,7 +8324,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2315, + "id": 2552, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -8342,7 +8342,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2319, + "id": 2556, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8360,7 +8360,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2316, + "id": 2553, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -8383,11 +8383,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2317, - 2318, - 2315, - 2319, - 2316 + 2554, + 2555, + 2552, + 2556, + 2553 ] } ], @@ -8400,7 +8400,7 @@ ] }, { - "id": 2257, + "id": 2494, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -8410,7 +8410,7 @@ }, "children": [ { - "id": 2262, + "id": 2499, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -8438,7 +8438,7 @@ "defaultValue": "\"DEBUG\"" }, { - "id": 2259, + "id": 2496, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -8466,7 +8466,7 @@ "defaultValue": "\"ERROR\"" }, { - "id": 2261, + "id": 2498, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -8494,7 +8494,7 @@ "defaultValue": "\"INFO\"" }, { - "id": 2258, + "id": 2495, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -8522,7 +8522,7 @@ "defaultValue": "\"SILENT\"" }, { - "id": 2263, + "id": 2500, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -8550,7 +8550,7 @@ "defaultValue": "\"TRACE\"" }, { - "id": 2260, + "id": 2497, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -8583,12 +8583,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2262, - 2259, - 2261, - 2258, - 2263, - 2260 + 2499, + 2496, + 2498, + 2495, + 2500, + 2497 ] } ], @@ -8601,7 +8601,7 @@ ] }, { - "id": 1454, + "id": 1691, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -8611,7 +8611,7 @@ }, "children": [ { - "id": 1457, + "id": 1694, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -8629,7 +8629,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1460, + "id": 1697, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -8647,7 +8647,7 @@ "defaultValue": "\"data\"" }, { - "id": 1455, + "id": 1692, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -8665,7 +8665,7 @@ "defaultValue": "\"home\"" }, { - "id": 1458, + "id": 1695, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -8683,7 +8683,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1462, + "id": 1699, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -8701,7 +8701,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1456, + "id": 1693, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8719,7 +8719,7 @@ "defaultValue": "\"search\"" }, { - "id": 1461, + "id": 1698, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -8742,13 +8742,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1457, - 1460, - 1455, - 1458, - 1462, - 1456, - 1461 + 1694, + 1697, + 1692, + 1695, + 1699, + 1693, + 1698 ] } ], @@ -8761,14 +8761,14 @@ ] }, { - "id": 2096, + "id": 2333, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2097, + "id": 2334, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -8783,7 +8783,7 @@ "defaultValue": "\"FullApp\"" }, { - "id": 2099, + "id": 2336, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8798,7 +8798,7 @@ "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2098, + "id": 2335, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8813,7 +8813,7 @@ "defaultValue": "\"SearchEmbed\"" }, { - "id": 2100, + "id": 2337, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8833,10 +8833,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2097, - 2099, - 2098, - 2100 + 2334, + 2336, + 2335, + 2337 ] } ], @@ -8849,7 +8849,7 @@ ] }, { - "id": 1479, + "id": 1716, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -8859,7 +8859,7 @@ }, "children": [ { - "id": 1487, + "id": 1724, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -8877,7 +8877,7 @@ "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1492, + "id": 1729, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -8895,7 +8895,7 @@ "defaultValue": "\"BW\"" }, { - "id": 1491, + "id": 1728, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -8913,7 +8913,7 @@ "defaultValue": "\"BW_INC\"" }, { - "id": 1489, + "id": 1726, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -8931,7 +8931,7 @@ "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1490, + "id": 1727, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -8949,7 +8949,7 @@ "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1486, + "id": 1723, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -8967,7 +8967,7 @@ "defaultValue": "\"CONTAINS\"" }, { - "id": 1488, + "id": 1725, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -8985,7 +8985,7 @@ "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1480, + "id": 1717, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -9003,7 +9003,7 @@ "defaultValue": "\"EQ\"" }, { - "id": 1485, + "id": 1722, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -9021,7 +9021,7 @@ "defaultValue": "\"GE\"" }, { - "id": 1484, + "id": 1721, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -9039,7 +9039,7 @@ "defaultValue": "\"GT\"" }, { - "id": 1493, + "id": 1730, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -9057,7 +9057,7 @@ "defaultValue": "\"IN\"" }, { - "id": 1483, + "id": 1720, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -9075,7 +9075,7 @@ "defaultValue": "\"LE\"" }, { - "id": 1482, + "id": 1719, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -9093,7 +9093,7 @@ "defaultValue": "\"LT\"" }, { - "id": 1481, + "id": 1718, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -9111,7 +9111,7 @@ "defaultValue": "\"NE\"" }, { - "id": 1494, + "id": 1731, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -9134,21 +9134,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1487, - 1492, - 1491, - 1489, - 1490, - 1486, - 1488, - 1480, - 1485, - 1484, - 1493, - 1483, - 1482, - 1481, - 1494 + 1724, + 1729, + 1728, + 1726, + 1727, + 1723, + 1725, + 1717, + 1722, + 1721, + 1730, + 1720, + 1719, + 1718, + 1731 ] } ], @@ -9161,14 +9161,14 @@ ] }, { - "id": 2307, + "id": 2544, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2312, + "id": 2549, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -9183,7 +9183,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2311, + "id": 2548, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -9198,7 +9198,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2310, + "id": 2547, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -9213,7 +9213,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2313, + "id": 2550, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -9228,7 +9228,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2308, + "id": 2545, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -9243,7 +9243,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2309, + "id": 2546, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -9263,12 +9263,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2312, - 2311, - 2310, - 2313, - 2308, - 2309 + 2549, + 2548, + 2547, + 2550, + 2545, + 2546 ] } ], @@ -9281,7 +9281,7 @@ ] }, { - "id": 1371, + "id": 1608, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -9309,7 +9309,7 @@ }, "children": [ { - "id": 1372, + "id": 1609, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -9326,7 +9326,7 @@ ], "signatures": [ { - "id": 1373, + "id": 1610, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -9336,7 +9336,7 @@ }, "parameters": [ { - "id": 1374, + "id": 1611, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -9344,12 +9344,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1444, + "id": 1681, "name": "SessionInterface" } }, { - "id": 1375, + "id": 1612, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -9361,7 +9361,7 @@ } }, { - "id": 1376, + "id": 1613, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -9373,7 +9373,7 @@ } }, { - "id": 1377, + "id": 1614, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -9387,7 +9387,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2284, + "id": 2521, "name": "VizPoint" } } @@ -9395,14 +9395,14 @@ ], "type": { "type": "reference", - "id": 1371, + "id": 1608, "name": "AnswerService" } } ] }, { - "id": 1386, + "id": 1623, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -9418,7 +9418,7 @@ ], "signatures": [ { - "id": 1387, + "id": 1624, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -9429,7 +9429,7 @@ }, "parameters": [ { - "id": 1388, + "id": 1625, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -9458,7 +9458,7 @@ ] }, { - "id": 1389, + "id": 1626, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -9474,7 +9474,7 @@ ], "signatures": [ { - "id": 1390, + "id": 1627, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -9490,7 +9490,7 @@ }, "parameters": [ { - "id": 1391, + "id": 1628, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -9519,7 +9519,7 @@ ] }, { - "id": 1438, + "id": 1675, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -9535,14 +9535,14 @@ ], "signatures": [ { - "id": 1439, + "id": 1676, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1440, + "id": 1677, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -9567,7 +9567,7 @@ ] }, { - "id": 1392, + "id": 1629, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -9583,7 +9583,7 @@ ], "signatures": [ { - "id": 1393, + "id": 1630, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -9594,7 +9594,7 @@ }, "parameters": [ { - "id": 1394, + "id": 1631, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -9606,7 +9606,7 @@ } }, { - "id": 1395, + "id": 1632, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -9614,12 +9614,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1479, + "id": 1716, "name": "RuntimeFilterOp" } }, { - "id": 1396, + "id": 1633, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -9665,7 +9665,7 @@ ] }, { - "id": 1428, + "id": 1665, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -9681,7 +9681,7 @@ ], "signatures": [ { - "id": 1429, + "id": 1666, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -9692,7 +9692,7 @@ }, "parameters": [ { - "id": 1430, + "id": 1667, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -9706,7 +9706,7 @@ } }, { - "id": 1431, + "id": 1668, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -9734,7 +9734,7 @@ ] }, { - "id": 1406, + "id": 1643, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -9750,7 +9750,7 @@ ], "signatures": [ { - "id": 1407, + "id": 1644, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -9761,7 +9761,7 @@ }, "parameters": [ { - "id": 1408, + "id": 1645, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -9774,7 +9774,7 @@ "defaultValue": "'en-us'" }, { - "id": 1409, + "id": 1646, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -9803,7 +9803,7 @@ ] }, { - "id": 1399, + "id": 1636, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -9819,7 +9819,7 @@ ], "signatures": [ { - "id": 1400, + "id": 1637, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -9830,7 +9830,7 @@ }, "parameters": [ { - "id": 1401, + "id": 1638, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -9843,7 +9843,7 @@ "defaultValue": "0" }, { - "id": 1402, + "id": 1639, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -9862,14 +9862,14 @@ { "type": "reflection", "declaration": { - "id": 1403, + "id": 1640, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1404, + "id": 1641, "name": "columns", "kind": 1024, "kindString": "Property", @@ -9880,7 +9880,7 @@ } }, { - "id": 1405, + "id": 1642, "name": "data", "kind": 1024, "kindString": "Property", @@ -9896,8 +9896,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1404, - 1405 + 1641, + 1642 ] } ] @@ -9910,7 +9910,7 @@ ] }, { - "id": 1410, + "id": 1647, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -9926,7 +9926,7 @@ ], "signatures": [ { - "id": 1411, + "id": 1648, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -9937,7 +9937,7 @@ }, "parameters": [ { - "id": 1412, + "id": 1649, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -9950,7 +9950,7 @@ "defaultValue": "'en-us'" }, { - "id": 1413, + "id": 1650, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -9965,7 +9965,7 @@ "defaultValue": "false" }, { - "id": 1414, + "id": 1651, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -9994,7 +9994,7 @@ ] }, { - "id": 1434, + "id": 1671, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -10010,7 +10010,7 @@ ], "signatures": [ { - "id": 1435, + "id": 1672, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -10029,7 +10029,7 @@ ] }, { - "id": 1415, + "id": 1652, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -10045,7 +10045,7 @@ ], "signatures": [ { - "id": 1416, + "id": 1653, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -10056,7 +10056,7 @@ }, "parameters": [ { - "id": 1417, + "id": 1654, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -10069,7 +10069,7 @@ "defaultValue": "'en-us'" }, { - "id": 1418, + "id": 1655, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -10090,7 +10090,7 @@ ] }, { - "id": 1419, + "id": 1656, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -10106,7 +10106,7 @@ ], "signatures": [ { - "id": 1420, + "id": 1657, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -10116,7 +10116,7 @@ }, "parameters": [ { - "id": 1421, + "id": 1658, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -10129,7 +10129,7 @@ "defaultValue": "'en-us'" }, { - "id": 1422, + "id": 1659, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -10142,7 +10142,7 @@ "defaultValue": "false" }, { - "id": 1423, + "id": 1660, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -10165,7 +10165,7 @@ ] }, { - "id": 1397, + "id": 1634, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -10181,7 +10181,7 @@ ], "signatures": [ { - "id": 1398, + "id": 1635, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -10200,7 +10200,7 @@ ] }, { - "id": 1432, + "id": 1669, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -10216,7 +10216,7 @@ ], "signatures": [ { - "id": 1433, + "id": 1670, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -10227,14 +10227,14 @@ }, "type": { "type": "reference", - "id": 1444, + "id": 1681, "name": "SessionInterface" } } ] }, { - "id": 1381, + "id": 1618, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -10250,7 +10250,7 @@ ], "signatures": [ { - "id": 1382, + "id": 1619, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -10272,7 +10272,7 @@ ] }, { - "id": 1436, + "id": 1673, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -10288,7 +10288,7 @@ ], "signatures": [ { - "id": 1437, + "id": 1674, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -10307,7 +10307,7 @@ ] }, { - "id": 1424, + "id": 1661, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -10323,7 +10323,7 @@ ], "signatures": [ { - "id": 1425, + "id": 1662, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -10343,7 +10343,7 @@ }, "parameters": [ { - "id": 1426, + "id": 1663, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -10358,7 +10358,7 @@ } }, { - "id": 1427, + "id": 1664, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -10370,7 +10370,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1451, + "id": 1688, "name": "UnderlyingDataPoint" } } @@ -10381,7 +10381,7 @@ "typeArguments": [ { "type": "reference", - "id": 1371, + "id": 1608, "name": "AnswerService" } ], @@ -10391,7 +10391,7 @@ ] }, { - "id": 1383, + "id": 1620, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -10407,7 +10407,7 @@ ], "signatures": [ { - "id": 1384, + "id": 1621, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -10418,7 +10418,7 @@ }, "parameters": [ { - "id": 1385, + "id": 1622, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -10447,7 +10447,7 @@ ] }, { - "id": 1441, + "id": 1678, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -10463,14 +10463,14 @@ ], "signatures": [ { - "id": 1442, + "id": 1679, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1443, + "id": 1680, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -10494,31 +10494,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1372 + 1609 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1386, - 1389, - 1438, - 1392, - 1428, - 1406, - 1399, - 1410, - 1434, - 1415, - 1419, - 1397, - 1432, - 1381, - 1436, - 1424, - 1383, - 1441 + 1623, + 1626, + 1675, + 1629, + 1665, + 1643, + 1636, + 1647, + 1671, + 1652, + 1656, + 1634, + 1669, + 1618, + 1673, + 1661, + 1620, + 1678 ] } ], @@ -10575,7 +10575,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2122, + "id": 2359, "name": "DOMSelector" } }, @@ -10587,7 +10587,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2027, + "id": 2264, "name": "AppViewConfig" } } @@ -10708,7 +10708,7 @@ "typeArguments": [ { "type": "reference", - "id": 1371, + "id": 1608, "name": "AnswerService" } ], @@ -11183,7 +11183,7 @@ }, "type": { "type": "reference", - "id": 1495, + "id": 1732, "name": "EmbedEvent" } }, @@ -11198,7 +11198,7 @@ }, "type": { "type": "reference", - "id": 2126, + "id": 2363, "name": "MessageCallback" } } @@ -11265,7 +11265,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1495, + "id": 1732, "name": "EmbedEvent" } }, @@ -11277,7 +11277,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2126, + "id": 2363, "name": "MessageCallback" } }, @@ -11289,7 +11289,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2123, + "id": 2360, "name": "MessageOptions" }, "defaultValue": "..." @@ -11600,7 +11600,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1576, + "id": 1813, "name": "HostEvent" } }, @@ -11719,7 +11719,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2307, + "id": 2544, "name": "UIPassthroughEvent" } } @@ -11836,89 +11836,96 @@ ] }, { - "id": 528, - "name": "LiveboardEmbed", + "id": 1393, + "name": "ConversationEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed a ThoughtSpot Liveboard or visualization. When rendered it already\nwaits for the authentication to complete, so you need not wait for\n`AuthStatus.SUCCESS`.", + "shortText": "Embed ThoughtSpot AI Conversation.", "tags": [ { - "tag": "example", - "text": "\n```js\nimport { .. } from '@thoughtspot/visual-embed-sdk';\ninit({ ... });\nconst embed = new LiveboardEmbed(\"#container\", {\n liveboardId: ,\n// .. other params here.\n})\n```" + "tag": "deprecated", + "text": "Use {@link SpotterEmbed} instead." }, { "tag": "group", - "text": "Embed components\n" + "text": "Embed components" + }, + { + "tag": "example", + "text": "\n```js\nconst conversation = new ConversationEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" } ] }, "children": [ { - "id": 529, + "id": 1394, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 433, + "fileName": "embed/conversation.ts", + "line": 273, "character": 4 } ], "signatures": [ { - "id": 530, - "name": "new LiveboardEmbed", + "id": 1395, + "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 531, - "name": "domSelector", + "id": 1396, + "name": "container", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2122, - "name": "DOMSelector" + "name": "HTMLElement" } }, { - "id": 532, + "id": 1397, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1915, - "name": "LiveboardViewConfig" + "id": 1346, + "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 528, - "name": "LiveboardEmbed" + "id": 1393, + "name": "ConversationEmbed" }, "overwrites": { "type": "reference", - "name": "V1Embed.constructor" + "name": "TsEmbed.constructor" } } ], "overwrites": { "type": "reference", - "name": "V1Embed.constructor" + "name": "TsEmbed.constructor" } }, { - "id": 695, + "id": 1518, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -11934,7 +11941,7 @@ ], "signatures": [ { - "id": 696, + "id": 1519, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -11954,17 +11961,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.destroy" + "name": "TsEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.destroy" + "name": "TsEmbed.destroy" } }, { - "id": 712, + "id": 1537, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -11980,7 +11987,7 @@ ], "signatures": [ { - "id": 713, + "id": 1538, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -11996,7 +12003,7 @@ }, "parameters": [ { - "id": 714, + "id": 1539, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12017,7 +12024,7 @@ "typeArguments": [ { "type": "reference", - "id": 1371, + "id": 1608, "name": "AnswerService" } ], @@ -12025,17 +12032,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getAnswerService" + "name": "TsEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getAnswerService" + "name": "TsEmbed.getAnswerService" } }, { - "id": 684, + "id": 1399, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12044,14 +12051,14 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1149, + "fileName": "embed/conversation.ts", + "line": 277, "character": 11 } ], "signatures": [ { - "id": 685, + "id": 1400, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12060,52 +12067,19 @@ "type": "intrinsic", "name": "string" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "V1Embed.getIframeSrc" + "name": "TsEmbed.getIframeSrc" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "V1Embed.getIframeSrc" + "name": "TsEmbed.getIframeSrc" } }, { - "id": 578, - "name": "getLiveboardUrl", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 720, - "character": 11 - } - ], - "signatures": [ - { - "id": 579, - "name": "getLiveboardUrl", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Returns the full url of the Liveboard/visualization which can be used to open\nthis Liveboard inside the full Thoughtspot application in a new tab.", - "returns": "url string\n" - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - { - "id": 707, + "id": 1532, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12121,7 +12095,7 @@ ], "signatures": [ { - "id": 708, + "id": 1533, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12143,14 +12117,14 @@ "type": { "type": "reflection", "declaration": { - "id": 709, + "id": 1534, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 711, + "id": 1536, "name": "child", "kind": 1024, "kindString": "Property", @@ -12162,7 +12136,7 @@ "defaultValue": "..." }, { - "id": 710, + "id": 1535, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12179,8 +12153,8 @@ "title": "Properties", "kind": 1024, "children": [ - 711, - 710 + 1536, + 1535 ] } ] @@ -12188,17 +12162,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getPreRenderIds" + "name": "TsEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getPreRenderIds" + "name": "TsEmbed.getPreRenderIds" } }, { - "id": 689, + "id": 1512, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12214,7 +12188,7 @@ ], "signatures": [ { - "id": 690, + "id": 1513, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12230,7 +12204,7 @@ }, "parameters": [ { - "id": 691, + "id": 1514, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12238,20 +12212,20 @@ "type": { "type": "reflection", "declaration": { - "id": 692, + "id": 1515, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 693, + "id": 1516, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 694, + "id": 1517, "name": "key", "kind": 32768, "flags": {}, @@ -12286,17 +12260,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getThoughtSpotPostUrlParams" + "name": "TsEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getThoughtSpotPostUrlParams" + "name": "TsEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 697, + "id": 1520, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12312,7 +12286,7 @@ ], "signatures": [ { - "id": 698, + "id": 1521, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12323,17 +12297,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getUnderlyingFrameElement" + "name": "TsEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getUnderlyingFrameElement" + "name": "TsEmbed.getUnderlyingFrameElement" } }, { - "id": 705, + "id": 1530, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12349,7 +12323,7 @@ ], "signatures": [ { - "id": 706, + "id": 1531, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12363,85 +12337,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.hidePreRender" + "name": "TsEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.hidePreRender" + "name": "TsEmbed.hidePreRender" } }, { - "id": 573, - "name": "navigateToLiveboard", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 701, - "character": 11 - } - ], - "signatures": [ - { - "id": 574, - "name": "navigateToLiveboard", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 575, - "name": "liveboardId", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 576, - "name": "vizId", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 577, - "name": "activeTabId", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - }, - { - "id": 675, + "id": 1492, "name": "off", "kind": 2048, "kindString": "Method", @@ -12457,7 +12363,7 @@ ], "signatures": [ { - "id": 676, + "id": 1493, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12473,7 +12379,7 @@ }, "parameters": [ { - "id": 677, + "id": 1494, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12483,12 +12389,12 @@ }, "type": { "type": "reference", - "id": 1495, + "id": 1732, "name": "EmbedEvent" } }, { - "id": 678, + "id": 1495, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12498,7 +12404,7 @@ }, "type": { "type": "reference", - "id": 2126, + "id": 2363, "name": "MessageCallback" } } @@ -12509,17 +12415,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.off" + "name": "TsEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.off" + "name": "TsEmbed.off" } }, { - "id": 585, + "id": 1486, "name": "on", "kind": 2048, "kindString": "Method", @@ -12529,23 +12435,20 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1450, + "line": 1032, "character": 11 } ], "signatures": [ { - "id": 586, + "id": 1487, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { + "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", "tags": [ - { - "tag": "inheritdoc", - "text": "" - }, { "tag": "example", "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" @@ -12558,41 +12461,63 @@ }, "parameters": [ { - "id": 587, + "id": 1488, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "The message type" + }, "type": { "type": "reference", - "id": 1495, + "id": 1732, "name": "EmbedEvent" } }, { - "id": 588, + "id": 1489, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "A callback as a function" + }, "type": { "type": "reference", - "id": 2126, + "id": 2363, "name": "MessageCallback" } }, { - "id": 589, + "id": 1490, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "The message options" + }, "type": { "type": "reference", - "id": 2123, + "id": 2360, "name": "MessageOptions" }, "defaultValue": "..." + }, + { + "id": 1491, + "name": "isRegisteredBySDK", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" } ], "type": { @@ -12601,17 +12526,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.on" + "name": "TsEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.on" + "name": "TsEmbed.on" } }, { - "id": 686, + "id": 1509, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -12627,7 +12552,7 @@ ], "signatures": [ { - "id": 687, + "id": 1510, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -12637,7 +12562,7 @@ }, "parameters": [ { - "id": 688, + "id": 1511, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -12664,17 +12589,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.preRender" + "name": "TsEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.preRender" + "name": "TsEmbed.preRender" } }, { - "id": 699, + "id": 1522, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -12690,7 +12615,7 @@ ], "signatures": [ { - "id": 700, + "id": 1523, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -12717,17 +12642,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.prerenderGeneric" + "name": "TsEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.prerenderGeneric" + "name": "TsEmbed.prerenderGeneric" } }, { - "id": 571, + "id": 1401, "name": "render", "kind": 2048, "kindString": "Method", @@ -12736,45 +12661,42 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 691, + "fileName": "embed/conversation.ts", + "line": 325, "character": 17 } ], "signatures": [ { - "id": 572, + "id": 1402, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Render an embedded ThoughtSpot Liveboard or visualization" - }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 528, - "name": "LiveboardEmbed" + "id": 1393, + "name": "ConversationEmbed" } ], "name": "Promise" }, "overwrites": { "type": "reference", - "name": "V1Embed.render" + "name": "TsEmbed.render" } } ], "overwrites": { "type": "reference", - "name": "V1Embed.render" + "name": "TsEmbed.render" } }, { - "id": 701, + "id": 1526, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -12790,7 +12712,7 @@ ], "signatures": [ { - "id": 702, + "id": 1527, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -12810,17 +12732,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.showPreRender" + "name": "TsEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.showPreRender" + "name": "TsEmbed.showPreRender" } }, { - "id": 703, + "id": 1528, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -12836,7 +12758,7 @@ ], "signatures": [ { - "id": 704, + "id": 1529, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -12856,17 +12778,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.syncPreRenderStyle" + "name": "TsEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.syncPreRenderStyle" + "name": "TsEmbed.syncPreRenderStyle" } }, { - "id": 565, + "id": 1496, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -12875,14 +12797,14 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 671, - "character": 11 + "fileName": "embed/ts-embed.ts", + "line": 1100, + "character": 17 } ], "signatures": [ { - "id": 566, + "id": 1497, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -12893,19 +12815,19 @@ }, "typeParameter": [ { - "id": 567, + "id": 1498, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1576, + "id": 1813, "name": "HostEvent" } }, { - "id": 568, + "id": 1499, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -12914,7 +12836,7 @@ ], "parameters": [ { - "id": 569, + "id": 1500, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12928,7 +12850,7 @@ } }, { - "id": 570, + "id": 1501, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -12973,19 +12895,19 @@ ], "name": "Promise" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "name": "V1Embed.trigger" + "name": "TsEmbed.trigger" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", - "name": "V1Embed.trigger" + "name": "TsEmbed.trigger" } }, { - "id": 679, + "id": 1502, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -13001,7 +12923,7 @@ ], "signatures": [ { - "id": 680, + "id": 1503, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -13012,21 +12934,21 @@ }, "typeParameter": [ { - "id": 681, + "id": 1504, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2307, + "id": 2544, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 682, + "id": 1505, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -13040,7 +12962,7 @@ } }, { - "id": 683, + "id": 1506, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13078,13 +13000,13 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.triggerUIPassThrough" + "name": "TsEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.triggerUIPassThrough" + "name": "TsEmbed.triggerUIPassThrough" } } ], @@ -13093,60 +13015,58 @@ "title": "Constructors", "kind": 512, "children": [ - 529 + 1394 ] }, { "title": "Methods", "kind": 2048, "children": [ - 695, - 712, - 684, - 578, - 707, - 689, - 697, - 705, - 573, - 675, - 585, - 686, - 699, - 571, - 701, - 703, - 565, - 679 + 1518, + 1537, + 1399, + 1532, + 1512, + 1520, + 1530, + 1492, + 1486, + 1509, + 1522, + 1401, + 1526, + 1528, + 1496, + 1502 ] } ], "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 427, + "fileName": "embed/conversation.ts", + "line": 272, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "name": "V1Embed" + "name": "TsEmbed" } ] }, { - "id": 715, - "name": "SageEmbed", + "id": 528, + "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot LLM and GPT-based Natural Language Search component.", + "shortText": "Embed a ThoughtSpot Liveboard or visualization. When rendered it already\nwaits for the authentication to complete, so you need not wait for\n`AuthStatus.SUCCESS`.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl, 9.5.1-sw" + "tag": "example", + "text": "\n```js\nimport { .. } from '@thoughtspot/visual-embed-sdk';\ninit({ ... });\nconst embed = new LiveboardEmbed(\"#container\", {\n liveboardId: ,\n// .. other params here.\n})\n```" }, { "tag": "group", @@ -13156,55 +13076,55 @@ }, "children": [ { - "id": 716, + "id": 529, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/sage.ts", - "line": 139, + "fileName": "embed/liveboard.ts", + "line": 433, "character": 4 } ], "signatures": [ { - "id": 717, - "name": "new SageEmbed", + "id": 530, + "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 718, + "id": 531, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2122, + "id": 2359, "name": "DOMSelector" } }, { - "id": 719, + "id": 532, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1980, - "name": "SageViewConfig" + "id": 2152, + "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 715, - "name": "SageEmbed" + "id": 528, + "name": "LiveboardEmbed" }, "overwrites": { "type": "reference", @@ -13218,7 +13138,7 @@ } }, { - "id": 850, + "id": 695, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13234,7 +13154,7 @@ ], "signatures": [ { - "id": 851, + "id": 696, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13264,7 +13184,7 @@ } }, { - "id": 869, + "id": 712, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13280,7 +13200,7 @@ ], "signatures": [ { - "id": 870, + "id": 713, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13296,7 +13216,7 @@ }, "parameters": [ { - "id": 871, + "id": 714, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13317,7 +13237,7 @@ "typeArguments": [ { "type": "reference", - "id": 1371, + "id": 1608, "name": "AnswerService" } ], @@ -13335,8 +13255,8 @@ } }, { - "id": 723, - "name": "getIFrameSrc", + "id": 684, + "name": "getIframeSrc", "kind": 2048, "kindString": "Method", "flags": { @@ -13344,32 +13264,36 @@ }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 183, + "fileName": "embed/ts-embed.ts", + "line": 1149, "character": 11 } ], "signatures": [ { - "id": 724, - "name": "getIFrameSrc", + "id": 685, + "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Construct the URL of the embedded ThoughtSpot sage to be\nloaded in the iframe", - "returns": "iframe url\n" - }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "V1Embed.getIframeSrc" } } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "V1Embed.getIframeSrc" + } }, { - "id": 837, - "name": "getIframeSrc", + "id": 578, + "name": "getLiveboardUrl", "kind": 2048, "kindString": "Method", "flags": { @@ -13377,35 +13301,31 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1149, + "fileName": "embed/liveboard.ts", + "line": 720, "character": 11 } ], "signatures": [ { - "id": 838, - "name": "getIframeSrc", + "id": 579, + "name": "getLiveboardUrl", "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Returns the full url of the Liveboard/visualization which can be used to open\nthis Liveboard inside the full Thoughtspot application in a new tab.", + "returns": "url string\n" + }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.getIframeSrc" } } - ], - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.getIframeSrc" - } + ] }, { - "id": 864, + "id": 707, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13421,7 +13341,7 @@ ], "signatures": [ { - "id": 865, + "id": 708, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -13443,14 +13363,14 @@ "type": { "type": "reflection", "declaration": { - "id": 866, + "id": 709, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 868, + "id": 711, "name": "child", "kind": 1024, "kindString": "Property", @@ -13462,7 +13382,7 @@ "defaultValue": "..." }, { - "id": 867, + "id": 710, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -13479,8 +13399,8 @@ "title": "Properties", "kind": 1024, "children": [ - 868, - 867 + 711, + 710 ] } ] @@ -13498,7 +13418,7 @@ } }, { - "id": 844, + "id": 689, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -13514,7 +13434,7 @@ ], "signatures": [ { - "id": 845, + "id": 690, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -13530,7 +13450,7 @@ }, "parameters": [ { - "id": 846, + "id": 691, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -13538,20 +13458,20 @@ "type": { "type": "reflection", "declaration": { - "id": 847, + "id": 692, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 848, + "id": 693, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 849, + "id": 694, "name": "key", "kind": 32768, "flags": {}, @@ -13596,7 +13516,7 @@ } }, { - "id": 852, + "id": 697, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -13612,7 +13532,7 @@ ], "signatures": [ { - "id": 853, + "id": 698, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -13633,7 +13553,7 @@ } }, { - "id": 862, + "id": 705, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -13649,7 +13569,7 @@ ], "signatures": [ { - "id": 863, + "id": 706, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -13673,7 +13593,75 @@ } }, { - "id": 822, + "id": 573, + "name": "navigateToLiveboard", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 701, + "character": 11 + } + ], + "signatures": [ + { + "id": 574, + "name": "navigateToLiveboard", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 575, + "name": "liveboardId", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 576, + "name": "vizId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 577, + "name": "activeTabId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + }, + { + "id": 675, "name": "off", "kind": 2048, "kindString": "Method", @@ -13689,7 +13677,7 @@ ], "signatures": [ { - "id": 823, + "id": 676, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -13705,7 +13693,7 @@ }, "parameters": [ { - "id": 824, + "id": 677, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -13715,12 +13703,12 @@ }, "type": { "type": "reference", - "id": 1495, + "id": 1732, "name": "EmbedEvent" } }, { - "id": 825, + "id": 678, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -13730,7 +13718,7 @@ }, "type": { "type": "reference", - "id": 2126, + "id": 2363, "name": "MessageCallback" } } @@ -13751,7 +13739,7 @@ } }, { - "id": 732, + "id": 585, "name": "on", "kind": 2048, "kindString": "Method", @@ -13767,7 +13755,7 @@ ], "signatures": [ { - "id": 733, + "id": 586, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -13790,38 +13778,38 @@ }, "parameters": [ { - "id": 734, + "id": 587, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1495, + "id": 1732, "name": "EmbedEvent" } }, { - "id": 735, + "id": 588, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2126, + "id": 2363, "name": "MessageCallback" } }, { - "id": 736, + "id": 589, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2123, + "id": 2360, "name": "MessageOptions" }, "defaultValue": "..." @@ -13843,7 +13831,7 @@ } }, { - "id": 841, + "id": 686, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -13859,7 +13847,7 @@ ], "signatures": [ { - "id": 842, + "id": 687, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -13869,7 +13857,7 @@ }, "parameters": [ { - "id": 843, + "id": 688, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -13906,7 +13894,7 @@ } }, { - "id": 854, + "id": 699, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -13922,7 +13910,7 @@ ], "signatures": [ { - "id": 855, + "id": 700, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -13959,7 +13947,7 @@ } }, { - "id": 725, + "id": 571, "name": "render", "kind": 2048, "kindString": "Method", @@ -13968,29 +13956,28 @@ }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 208, + "fileName": "embed/liveboard.ts", + "line": 691, "character": 17 } ], "signatures": [ { - "id": 726, + "id": 572, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Render the embedded ThoughtSpot Sage", - "returns": "Eureka/Sage embed\n" + "shortText": "Render an embedded ThoughtSpot Liveboard or visualization" }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 715, - "name": "SageEmbed" + "id": 528, + "name": "LiveboardEmbed" } ], "name": "Promise" @@ -14007,7 +13994,7 @@ } }, { - "id": 858, + "id": 701, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14023,7 +14010,7 @@ ], "signatures": [ { - "id": 859, + "id": 702, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14053,7 +14040,7 @@ } }, { - "id": 860, + "id": 703, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14069,7 +14056,7 @@ ], "signatures": [ { - "id": 861, + "id": 704, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14099,7 +14086,7 @@ } }, { - "id": 826, + "id": 565, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14108,14 +14095,14 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1100, - "character": 17 + "fileName": "embed/liveboard.ts", + "line": 671, + "character": 11 } ], "signatures": [ { - "id": 827, + "id": 566, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14126,19 +14113,19 @@ }, "typeParameter": [ { - "id": 828, + "id": 567, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1576, + "id": 1813, "name": "HostEvent" } }, { - "id": 829, + "id": 568, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -14147,7 +14134,7 @@ ], "parameters": [ { - "id": 830, + "id": 569, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14161,7 +14148,7 @@ } }, { - "id": 831, + "id": 570, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14206,19 +14193,19 @@ ], "name": "Promise" }, - "inheritedFrom": { + "overwrites": { "type": "reference", "name": "V1Embed.trigger" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", "name": "V1Embed.trigger" } }, { - "id": 832, + "id": 679, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14234,7 +14221,7 @@ ], "signatures": [ { - "id": 833, + "id": 680, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14245,21 +14232,21 @@ }, "typeParameter": [ { - "id": 834, + "id": 681, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2307, + "id": 2544, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 835, + "id": 682, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14273,7 +14260,7 @@ } }, { - "id": 836, + "id": 683, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -14326,37 +14313,38 @@ "title": "Constructors", "kind": 512, "children": [ - 716 + 529 ] }, { "title": "Methods", "kind": 2048, "children": [ - 850, - 869, - 723, - 837, - 864, - 844, - 852, - 862, - 822, - 732, - 841, - 854, - 725, - 858, - 860, - 826, - 832 + 695, + 712, + 684, + 578, + 707, + 689, + 697, + 705, + 573, + 675, + 585, + 686, + 699, + 571, + 701, + 703, + 565, + 679 ] } ], "sources": [ { - "fileName": "embed/sage.ts", - "line": 131, + "fileName": "embed/liveboard.ts", + "line": 427, "character": 13 } ], @@ -14368,17 +14356,17 @@ ] }, { - "id": 212, - "name": "SearchBarEmbed", + "id": 715, + "name": "SageEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot search bar", + "shortText": "Embed ThoughtSpot LLM and GPT-based Natural Language Search component.", "tags": [ { "tag": "version:", - "text": "SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1-sw" + "text": "SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl, 9.5.1-sw" }, { "tag": "group", @@ -14388,68 +14376,69 @@ }, "children": [ { - "id": 213, + "id": 716, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 117, + "fileName": "embed/sage.ts", + "line": 139, "character": 4 } ], "signatures": [ { - "id": 214, - "name": "new SearchBarEmbed", + "id": 717, + "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 215, + "id": 718, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2359, + "name": "DOMSelector" } }, { - "id": 216, + "id": 719, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1877, - "name": "SearchBarViewConfig" + "id": 2217, + "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 212, - "name": "SearchBarEmbed" + "id": 715, + "name": "SageEmbed" }, "overwrites": { "type": "reference", - "name": "TsEmbed.constructor" + "name": "V1Embed.constructor" } } ], "overwrites": { "type": "reference", - "name": "TsEmbed.constructor" + "name": "V1Embed.constructor" } }, { - "id": 344, + "id": 850, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -14465,7 +14454,7 @@ ], "signatures": [ { - "id": 345, + "id": 851, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -14485,17 +14474,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.destroy" + "name": "V1Embed.destroy" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.destroy" + "name": "V1Embed.destroy" } }, { - "id": 363, + "id": 869, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -14511,7 +14500,7 @@ ], "signatures": [ { - "id": 364, + "id": 870, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -14527,7 +14516,7 @@ }, "parameters": [ { - "id": 365, + "id": 871, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -14548,7 +14537,7 @@ "typeArguments": [ { "type": "reference", - "id": 1371, + "id": 1608, "name": "AnswerService" } ], @@ -14556,17 +14545,50 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getAnswerService" + "name": "V1Embed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getAnswerService" + "name": "V1Embed.getAnswerService" } }, { - "id": 331, + "id": 723, + "name": "getIFrameSrc", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/sage.ts", + "line": 183, + "character": 11 + } + ], + "signatures": [ + { + "id": 724, + "name": "getIFrameSrc", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Construct the URL of the embedded ThoughtSpot sage to be\nloaded in the iframe", + "returns": "iframe url\n" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 837, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -14582,7 +14604,7 @@ ], "signatures": [ { - "id": 332, + "id": 838, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -14593,17 +14615,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getIframeSrc" + "name": "V1Embed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getIframeSrc" + "name": "V1Embed.getIframeSrc" } }, { - "id": 358, + "id": 864, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -14619,7 +14641,7 @@ ], "signatures": [ { - "id": 359, + "id": 865, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -14641,14 +14663,14 @@ "type": { "type": "reflection", "declaration": { - "id": 360, + "id": 866, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 362, + "id": 868, "name": "child", "kind": 1024, "kindString": "Property", @@ -14660,7 +14682,7 @@ "defaultValue": "..." }, { - "id": 361, + "id": 867, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -14677,8 +14699,8 @@ "title": "Properties", "kind": 1024, "children": [ - 362, - 361 + 868, + 867 ] } ] @@ -14686,17 +14708,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getPreRenderIds" + "name": "V1Embed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getPreRenderIds" + "name": "V1Embed.getPreRenderIds" } }, { - "id": 338, + "id": 844, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -14712,7 +14734,7 @@ ], "signatures": [ { - "id": 339, + "id": 845, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -14728,7 +14750,7 @@ }, "parameters": [ { - "id": 340, + "id": 846, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -14736,20 +14758,20 @@ "type": { "type": "reflection", "declaration": { - "id": 341, + "id": 847, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 342, + "id": 848, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 343, + "id": 849, "name": "key", "kind": 32768, "flags": {}, @@ -14784,17 +14806,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" + "name": "V1Embed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" + "name": "V1Embed.getThoughtSpotPostUrlParams" } }, { - "id": 346, + "id": 852, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -14810,7 +14832,7 @@ ], "signatures": [ { - "id": 347, + "id": 853, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -14821,17 +14843,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getUnderlyingFrameElement" + "name": "V1Embed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getUnderlyingFrameElement" + "name": "V1Embed.getUnderlyingFrameElement" } }, { - "id": 356, + "id": 862, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -14847,7 +14869,7 @@ ], "signatures": [ { - "id": 357, + "id": 863, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -14861,17 +14883,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.hidePreRender" + "name": "V1Embed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.hidePreRender" + "name": "V1Embed.hidePreRender" } }, { - "id": 316, + "id": 822, "name": "off", "kind": 2048, "kindString": "Method", @@ -14887,7 +14909,7 @@ ], "signatures": [ { - "id": 317, + "id": 823, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -14903,7 +14925,7 @@ }, "parameters": [ { - "id": 318, + "id": 824, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14913,12 +14935,12 @@ }, "type": { "type": "reference", - "id": 1495, + "id": 1732, "name": "EmbedEvent" } }, { - "id": 319, + "id": 825, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14928,7 +14950,7 @@ }, "type": { "type": "reference", - "id": 2126, + "id": 2363, "name": "MessageCallback" } } @@ -14939,17 +14961,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.off" + "name": "V1Embed.off" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.off" + "name": "V1Embed.off" } }, { - "id": 310, + "id": 732, "name": "on", "kind": 2048, "kindString": "Method", @@ -14959,20 +14981,23 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1032, + "line": 1450, "character": 11 } ], "signatures": [ { - "id": 311, + "id": 733, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", "tags": [ + { + "tag": "inheritdoc", + "text": "" + }, { "tag": "example", "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" @@ -14985,63 +15010,41 @@ }, "parameters": [ { - "id": 312, + "id": 734, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "The message type" - }, "type": { "type": "reference", - "id": 1495, + "id": 1732, "name": "EmbedEvent" } }, { - "id": 313, + "id": 735, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "A callback as a function" - }, "type": { "type": "reference", - "id": 2126, + "id": 2363, "name": "MessageCallback" } }, { - "id": 314, + "id": 736, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "The message options" - }, "type": { "type": "reference", - "id": 2123, + "id": 2360, "name": "MessageOptions" }, "defaultValue": "..." - }, - { - "id": 315, - "name": "isRegisteredBySDK", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "defaultValue": "false" } ], "type": { @@ -15050,17 +15053,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.on" + "name": "V1Embed.on" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.on" + "name": "V1Embed.on" } }, { - "id": 335, + "id": 841, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15076,7 +15079,7 @@ ], "signatures": [ { - "id": 336, + "id": 842, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -15086,7 +15089,7 @@ }, "parameters": [ { - "id": 337, + "id": 843, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -15113,17 +15116,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.preRender" + "name": "V1Embed.preRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.preRender" + "name": "V1Embed.preRender" } }, { - "id": 348, + "id": 854, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -15139,7 +15142,7 @@ ], "signatures": [ { - "id": 349, + "id": 855, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -15166,17 +15169,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.prerenderGeneric" + "name": "V1Embed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.prerenderGeneric" + "name": "V1Embed.prerenderGeneric" } }, { - "id": 221, + "id": 725, "name": "render", "kind": 2048, "kindString": "Method", @@ -15185,45 +15188,46 @@ }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 176, + "fileName": "embed/sage.ts", + "line": 208, "character": 17 } ], "signatures": [ { - "id": 222, + "id": 726, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Render the embedded ThoughtSpot search" + "shortText": "Render the embedded ThoughtSpot Sage", + "returns": "Eureka/Sage embed\n" }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 212, - "name": "SearchBarEmbed" + "id": 715, + "name": "SageEmbed" } ], "name": "Promise" }, "overwrites": { "type": "reference", - "name": "TsEmbed.render" + "name": "V1Embed.render" } } ], "overwrites": { "type": "reference", - "name": "TsEmbed.render" + "name": "V1Embed.render" } }, { - "id": 352, + "id": 858, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -15239,7 +15243,7 @@ ], "signatures": [ { - "id": 353, + "id": 859, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -15259,17 +15263,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.showPreRender" + "name": "V1Embed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.showPreRender" + "name": "V1Embed.showPreRender" } }, { - "id": 354, + "id": 860, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -15285,7 +15289,7 @@ ], "signatures": [ { - "id": 355, + "id": 861, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -15305,17 +15309,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.syncPreRenderStyle" + "name": "V1Embed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.syncPreRenderStyle" + "name": "V1Embed.syncPreRenderStyle" } }, { - "id": 320, + "id": 826, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -15331,7 +15335,7 @@ ], "signatures": [ { - "id": 321, + "id": 827, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -15342,19 +15346,19 @@ }, "typeParameter": [ { - "id": 322, + "id": 828, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1576, + "id": 1813, "name": "HostEvent" } }, { - "id": 323, + "id": 829, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -15363,7 +15367,7 @@ ], "parameters": [ { - "id": 324, + "id": 830, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15377,7 +15381,7 @@ } }, { - "id": 325, + "id": 831, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -15424,17 +15428,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.trigger" + "name": "V1Embed.trigger" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.trigger" + "name": "V1Embed.trigger" } }, { - "id": 326, + "id": 832, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -15450,7 +15454,7 @@ ], "signatures": [ { - "id": 327, + "id": 833, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -15461,21 +15465,21 @@ }, "typeParameter": [ { - "id": 328, + "id": 834, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2307, + "id": 2544, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 329, + "id": 835, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -15489,7 +15493,7 @@ } }, { - "id": 330, + "id": 836, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -15527,13 +15531,13 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.triggerUIPassThrough" + "name": "V1Embed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.triggerUIPassThrough" + "name": "V1Embed.triggerUIPassThrough" } } ], @@ -15542,55 +15546,60 @@ "title": "Constructors", "kind": 512, "children": [ - 213 + 716 ] }, { "title": "Methods", "kind": 2048, "children": [ - 344, - 363, - 331, - 358, - 338, - 346, - 356, - 316, - 310, - 335, - 348, - 221, - 352, - 354, - 320, - 326 + 850, + 869, + 723, + 837, + 864, + 844, + 852, + 862, + 822, + 732, + 841, + 854, + 725, + 858, + 860, + 826, + 832 ] } ], "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 109, + "fileName": "embed/sage.ts", + "line": 131, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "name": "TsEmbed" + "name": "V1Embed" } ] }, { - "id": 55, - "name": "SearchEmbed", + "id": 212, + "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot search", + "shortText": "Embed ThoughtSpot search bar", "tags": [ + { + "tag": "version:", + "text": "SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1-sw" + }, { "tag": "group", "text": "Embed components\n" @@ -15599,55 +15608,54 @@ }, "children": [ { - "id": 56, + "id": 213, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/search.ts", - "line": 321, + "fileName": "embed/search-bar.tsx", + "line": 117, "character": 4 } ], "signatures": [ { - "id": 57, - "name": "new SearchEmbed", + "id": 214, + "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 58, + "id": 215, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "reference", - "id": 2122, - "name": "DOMSelector" + "type": "intrinsic", + "name": "string" } }, { - "id": 59, + "id": 216, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1823, - "name": "SearchViewConfig" + "id": 2114, + "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 55, - "name": "SearchEmbed" + "id": 212, + "name": "SearchBarEmbed" }, "overwrites": { "type": "reference", @@ -15661,7 +15669,7 @@ } }, { - "id": 190, + "id": 344, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -15677,7 +15685,7 @@ ], "signatures": [ { - "id": 191, + "id": 345, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -15707,7 +15715,7 @@ } }, { - "id": 209, + "id": 363, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -15723,7 +15731,7 @@ ], "signatures": [ { - "id": 210, + "id": 364, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -15739,7 +15747,7 @@ }, "parameters": [ { - "id": 211, + "id": 365, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15760,7 +15768,7 @@ "typeArguments": [ { "type": "reference", - "id": 1371, + "id": 1608, "name": "AnswerService" } ], @@ -15778,39 +15786,7 @@ } }, { - "id": 73, - "name": "getIFrameSrc", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 473, - "character": 11 - } - ], - "signatures": [ - { - "id": 74, - "name": "getIFrameSrc", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Construct the URL of the embedded ThoughtSpot search to be\nloaded in the iframe" - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - { - "id": 177, + "id": 331, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -15826,7 +15802,7 @@ ], "signatures": [ { - "id": 178, + "id": 332, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15847,7 +15823,7 @@ } }, { - "id": 204, + "id": 358, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15863,7 +15839,7 @@ ], "signatures": [ { - "id": 205, + "id": 359, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15885,14 +15861,14 @@ "type": { "type": "reflection", "declaration": { - "id": 206, + "id": 360, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 208, + "id": 362, "name": "child", "kind": 1024, "kindString": "Property", @@ -15904,7 +15880,7 @@ "defaultValue": "..." }, { - "id": 207, + "id": 361, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15921,8 +15897,8 @@ "title": "Properties", "kind": 1024, "children": [ - 208, - 207 + 362, + 361 ] } ] @@ -15940,7 +15916,7 @@ } }, { - "id": 184, + "id": 338, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -15956,7 +15932,7 @@ ], "signatures": [ { - "id": 185, + "id": 339, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15972,7 +15948,7 @@ }, "parameters": [ { - "id": 186, + "id": 340, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15980,20 +15956,20 @@ "type": { "type": "reflection", "declaration": { - "id": 187, + "id": 341, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 188, + "id": 342, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 189, + "id": 343, "name": "key", "kind": 32768, "flags": {}, @@ -16038,7 +16014,7 @@ } }, { - "id": 192, + "id": 346, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16054,7 +16030,7 @@ ], "signatures": [ { - "id": 193, + "id": 347, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16075,7 +16051,7 @@ } }, { - "id": 202, + "id": 356, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16091,7 +16067,7 @@ ], "signatures": [ { - "id": 203, + "id": 357, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16115,7 +16091,7 @@ } }, { - "id": 162, + "id": 316, "name": "off", "kind": 2048, "kindString": "Method", @@ -16131,7 +16107,7 @@ ], "signatures": [ { - "id": 163, + "id": 317, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16147,7 +16123,7 @@ }, "parameters": [ { - "id": 164, + "id": 318, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16157,12 +16133,12 @@ }, "type": { "type": "reference", - "id": 1495, + "id": 1732, "name": "EmbedEvent" } }, { - "id": 165, + "id": 319, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16172,7 +16148,7 @@ }, "type": { "type": "reference", - "id": 2126, + "id": 2363, "name": "MessageCallback" } } @@ -16193,7 +16169,7 @@ } }, { - "id": 156, + "id": 310, "name": "on", "kind": 2048, "kindString": "Method", @@ -16209,7 +16185,7 @@ ], "signatures": [ { - "id": 157, + "id": 311, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16229,7 +16205,7 @@ }, "parameters": [ { - "id": 158, + "id": 312, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16239,12 +16215,12 @@ }, "type": { "type": "reference", - "id": 1495, + "id": 1732, "name": "EmbedEvent" } }, { - "id": 159, + "id": 313, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16254,12 +16230,12 @@ }, "type": { "type": "reference", - "id": 2126, + "id": 2363, "name": "MessageCallback" } }, { - "id": 160, + "id": 314, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -16269,13 +16245,13 @@ }, "type": { "type": "reference", - "id": 2123, + "id": 2360, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 161, + "id": 315, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -16304,7 +16280,7 @@ } }, { - "id": 181, + "id": 335, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -16320,7 +16296,7 @@ ], "signatures": [ { - "id": 182, + "id": 336, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -16330,7 +16306,7 @@ }, "parameters": [ { - "id": 183, + "id": 337, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -16367,7 +16343,7 @@ } }, { - "id": 194, + "id": 348, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -16383,7 +16359,7 @@ ], "signatures": [ { - "id": 195, + "id": 349, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -16420,7 +16396,7 @@ } }, { - "id": 75, + "id": 221, "name": "render", "kind": 2048, "kindString": "Method", @@ -16429,14 +16405,14 @@ }, "sources": [ { - "fileName": "embed/search.ts", - "line": 484, + "fileName": "embed/search-bar.tsx", + "line": 176, "character": 17 } ], "signatures": [ { - "id": 76, + "id": 222, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -16449,8 +16425,8 @@ "typeArguments": [ { "type": "reference", - "id": 55, - "name": "SearchEmbed" + "id": 212, + "name": "SearchBarEmbed" } ], "name": "Promise" @@ -16467,7 +16443,7 @@ } }, { - "id": 198, + "id": 352, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -16483,7 +16459,7 @@ ], "signatures": [ { - "id": 199, + "id": 353, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -16513,7 +16489,7 @@ } }, { - "id": 200, + "id": 354, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -16529,7 +16505,7 @@ ], "signatures": [ { - "id": 201, + "id": 355, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -16559,7 +16535,7 @@ } }, { - "id": 166, + "id": 320, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -16575,7 +16551,7 @@ ], "signatures": [ { - "id": 167, + "id": 321, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -16586,19 +16562,19 @@ }, "typeParameter": [ { - "id": 168, + "id": 322, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1576, + "id": 1813, "name": "HostEvent" } }, { - "id": 169, + "id": 323, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -16607,7 +16583,7 @@ ], "parameters": [ { - "id": 170, + "id": 324, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16621,7 +16597,7 @@ } }, { - "id": 171, + "id": 325, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -16678,7 +16654,7 @@ } }, { - "id": 172, + "id": 326, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -16694,7 +16670,7 @@ ], "signatures": [ { - "id": 173, + "id": 327, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -16705,21 +16681,21 @@ }, "typeParameter": [ { - "id": 174, + "id": 328, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2307, + "id": 2544, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 175, + "id": 329, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -16733,7 +16709,7 @@ } }, { - "id": 176, + "id": 330, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -16786,37 +16762,36 @@ "title": "Constructors", "kind": 512, "children": [ - 56 + 213 ] }, { "title": "Methods", "kind": 2048, "children": [ - 190, - 209, - 73, - 177, - 204, - 184, - 192, - 202, - 162, - 156, - 181, - 194, - 75, - 198, - 200, - 166, - 172 + 344, + 363, + 331, + 358, + 338, + 346, + 356, + 316, + 310, + 335, + 348, + 221, + 352, + 354, + 320, + 326 ] } ], "sources": [ { - "fileName": "embed/search.ts", - "line": 315, + "fileName": "embed/search-bar.tsx", + "line": 109, "character": 13 } ], @@ -16828,332 +16803,71 @@ ] }, { - "id": 1051, - "name": "SpotterAgentEmbed", - "kind": 128, - "kindString": "Class", - "flags": {}, - "comment": { - "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nimport { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new SpotterAgentEmbed({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" - }, - { - "tag": "group", - "text": "Embed components" - }, - { - "tag": "version", - "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" - } - ] - }, - "children": [ - { - "id": 1052, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": {}, - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 88, - "character": 4 - } - ], - "signatures": [ - { - "id": 1053, - "name": "new SpotterAgentEmbed", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 1054, - "name": "viewConfig", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1067, - "name": "SpotterAgentEmbedViewConfig" - } - } - ], - "type": { - "type": "reference", - "id": 1051, - "name": "SpotterAgentEmbed" - } - } - ] - }, - { - "id": 1056, - "name": "sendMessage", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 97, - "character": 17 - } - ], - "signatures": [ - { - "id": 1057, - "name": "sendMessage", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1058, - "name": "userMessage", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "reflection", - "declaration": { - "id": 1059, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1061, - "name": "container", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - } - }, - { - "id": 1060, - "name": "error", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - }, - { - "id": 1062, - "name": "viz", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1061, - 1060, - 1062 - ] - } - ] - } - }, - { - "type": "reflection", - "declaration": { - "id": 1063, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1064, - "name": "container", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLDivElement" - } - }, - { - "id": 1066, - "name": "error", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - } - }, - { - "id": 1065, - "name": "viz", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "name": "ConversationMessage" - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1064, - 1066, - 1065 - ] - } - ] - } - } - ] - } - ], - "name": "Promise" - } - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 1052 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 1056 - ] - } - ], - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 85, - "character": 13 - } - ] - }, - { - "id": 1109, - "name": "SpotterEmbed", + "id": 55, + "name": "SearchEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot AI Conversation.", + "shortText": "Embed ThoughtSpot search", "tags": [ { "tag": "group", - "text": "Embed components" - }, - { - "tag": "example", - "text": "\n```js\nconst conversation = new SpotterEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" - }, - { - "tag": "version", - "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" + "text": "Embed components\n" } ] }, "children": [ { - "id": 1110, + "id": 56, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 113, + "fileName": "embed/search.ts", + "line": 321, "character": 4 } ], "signatures": [ { - "id": 1111, - "name": "new SpotterEmbed", + "id": 57, + "name": "new SearchEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1112, - "name": "container", + "id": 58, + "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "HTMLElement" + "id": 2359, + "name": "DOMSelector" } }, { - "id": 1113, + "id": 59, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1256, - "name": "SpotterEmbedViewConfig" + "id": 2060, + "name": "SearchViewConfig" } } ], "type": { "type": "reference", - "id": 1109, - "name": "SpotterEmbed" + "id": 55, + "name": "SearchEmbed" }, "overwrites": { "type": "reference", @@ -17167,7 +16881,7 @@ } }, { - "id": 1234, + "id": 190, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -17183,7 +16897,7 @@ ], "signatures": [ { - "id": 1235, + "id": 191, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17213,7 +16927,7 @@ } }, { - "id": 1253, + "id": 209, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17229,7 +16943,7 @@ ], "signatures": [ { - "id": 1254, + "id": 210, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -17245,7 +16959,7 @@ }, "parameters": [ { - "id": 1255, + "id": 211, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17266,7 +16980,7 @@ "typeArguments": [ { "type": "reference", - "id": 1371, + "id": 1608, "name": "AnswerService" } ], @@ -17284,7 +16998,39 @@ } }, { - "id": 1115, + "id": 73, + "name": "getIFrameSrc", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 473, + "character": 11 + } + ], + "signatures": [ + { + "id": 74, + "name": "getIFrameSrc", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Construct the URL of the embedded ThoughtSpot search to be\nloaded in the iframe" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 177, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -17293,14 +17039,14 @@ }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 118, + "fileName": "embed/ts-embed.ts", + "line": 1149, "character": 11 } ], "signatures": [ { - "id": 1116, + "id": 178, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -17309,19 +17055,19 @@ "type": "intrinsic", "name": "string" }, - "overwrites": { + "inheritedFrom": { "type": "reference", "name": "TsEmbed.getIframeSrc" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", "name": "TsEmbed.getIframeSrc" } }, { - "id": 1248, + "id": 204, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -17337,7 +17083,7 @@ ], "signatures": [ { - "id": 1249, + "id": 205, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -17359,14 +17105,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1250, + "id": 206, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1252, + "id": 208, "name": "child", "kind": 1024, "kindString": "Property", @@ -17378,7 +17124,7 @@ "defaultValue": "..." }, { - "id": 1251, + "id": 207, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17395,8 +17141,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1252, - 1251 + 208, + 207 ] } ] @@ -17414,7 +17160,7 @@ } }, { - "id": 1228, + "id": 184, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17430,7 +17176,7 @@ ], "signatures": [ { - "id": 1229, + "id": 185, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17446,7 +17192,7 @@ }, "parameters": [ { - "id": 1230, + "id": 186, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17454,20 +17200,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1231, + "id": 187, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1232, + "id": 188, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1233, + "id": 189, "name": "key", "kind": 32768, "flags": {}, @@ -17512,7 +17258,7 @@ } }, { - "id": 1236, + "id": 192, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17528,7 +17274,7 @@ ], "signatures": [ { - "id": 1237, + "id": 193, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17549,7 +17295,7 @@ } }, { - "id": 1246, + "id": 202, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -17565,7 +17311,7 @@ ], "signatures": [ { - "id": 1247, + "id": 203, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -17589,7 +17335,7 @@ } }, { - "id": 1208, + "id": 162, "name": "off", "kind": 2048, "kindString": "Method", @@ -17605,7 +17351,7 @@ ], "signatures": [ { - "id": 1209, + "id": 163, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -17621,7 +17367,7 @@ }, "parameters": [ { - "id": 1210, + "id": 164, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17631,12 +17377,12 @@ }, "type": { "type": "reference", - "id": 1495, + "id": 1732, "name": "EmbedEvent" } }, { - "id": 1211, + "id": 165, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -17646,7 +17392,7 @@ }, "type": { "type": "reference", - "id": 2126, + "id": 2363, "name": "MessageCallback" } } @@ -17667,7 +17413,7 @@ } }, { - "id": 1202, + "id": 156, "name": "on", "kind": 2048, "kindString": "Method", @@ -17683,7 +17429,7 @@ ], "signatures": [ { - "id": 1203, + "id": 157, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -17703,7 +17449,7 @@ }, "parameters": [ { - "id": 1204, + "id": 158, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17713,12 +17459,12 @@ }, "type": { "type": "reference", - "id": 1495, + "id": 1732, "name": "EmbedEvent" } }, { - "id": 1205, + "id": 159, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -17728,12 +17474,12 @@ }, "type": { "type": "reference", - "id": 2126, + "id": 2363, "name": "MessageCallback" } }, { - "id": 1206, + "id": 160, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -17743,13 +17489,13 @@ }, "type": { "type": "reference", - "id": 2123, + "id": 2360, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1207, + "id": 161, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -17778,7 +17524,7 @@ } }, { - "id": 1225, + "id": 181, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -17794,7 +17540,7 @@ ], "signatures": [ { - "id": 1226, + "id": 182, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -17804,7 +17550,7 @@ }, "parameters": [ { - "id": 1227, + "id": 183, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -17841,7 +17587,7 @@ } }, { - "id": 1238, + "id": 194, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -17857,7 +17603,7 @@ ], "signatures": [ { - "id": 1239, + "id": 195, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17894,7 +17640,7 @@ } }, { - "id": 1117, + "id": 75, "name": "render", "kind": 2048, "kindString": "Method", @@ -17903,25 +17649,28 @@ }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 166, + "fileName": "embed/search.ts", + "line": 484, "character": 17 } ], "signatures": [ { - "id": 1118, + "id": 76, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Render the embedded ThoughtSpot search" + }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 1109, - "name": "SpotterEmbed" + "id": 55, + "name": "SearchEmbed" } ], "name": "Promise" @@ -17938,7 +17687,7 @@ } }, { - "id": 1242, + "id": 198, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17954,7 +17703,7 @@ ], "signatures": [ { - "id": 1243, + "id": 199, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17984,7 +17733,7 @@ } }, { - "id": 1244, + "id": 200, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18000,7 +17749,7 @@ ], "signatures": [ { - "id": 1245, + "id": 201, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18030,7 +17779,7 @@ } }, { - "id": 1212, + "id": 166, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18046,7 +17795,7 @@ ], "signatures": [ { - "id": 1213, + "id": 167, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18057,19 +17806,19 @@ }, "typeParameter": [ { - "id": 1214, + "id": 168, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1576, + "id": 1813, "name": "HostEvent" } }, { - "id": 1215, + "id": 169, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -18078,7 +17827,7 @@ ], "parameters": [ { - "id": 1216, + "id": 170, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18092,7 +17841,7 @@ } }, { - "id": 1217, + "id": 171, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18149,7 +17898,7 @@ } }, { - "id": 1218, + "id": 172, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18165,7 +17914,7 @@ ], "signatures": [ { - "id": 1219, + "id": 173, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18176,21 +17925,21 @@ }, "typeParameter": [ { - "id": 1220, + "id": 174, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2307, + "id": 2544, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1221, + "id": 175, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18204,7 +17953,7 @@ } }, { - "id": 1222, + "id": 176, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -18257,36 +18006,37 @@ "title": "Constructors", "kind": 512, "children": [ - 1110 + 56 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1234, - 1253, - 1115, - 1248, - 1228, - 1236, - 1246, - 1208, - 1202, - 1225, - 1238, - 1117, - 1242, - 1244, - 1212, - 1218 + 190, + 209, + 73, + 177, + 204, + 184, + 192, + 202, + 162, + 156, + 181, + 194, + 75, + 198, + 200, + 166, + 172 ] } ], "sources": [ { - "fileName": "embed/conversation.ts", - "line": 112, + "fileName": "embed/search.ts", + "line": 315, "character": 13 } ], @@ -18298,1283 +18048,1640 @@ ] }, { - "id": 2027, - "name": "AppViewConfig", - "kind": 256, - "kindString": "Interface", + "id": 1051, + "name": "SpotterAgentEmbed", + "kind": 128, + "kindString": "Class", "flags": {}, "comment": { - "shortText": "The view configuration for full app embedding.", + "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", "tags": [ + { + "tag": "example", + "text": "\n```js\nimport { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new SpotterAgentEmbed({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" + }, { "tag": "group", - "text": "Embed components\n" + "text": "Embed components" + }, + { + "tag": "version", + "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" } ] }, "children": [ { - "id": 2058, - "name": "additionalFlags", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" - } - ] - }, + "id": 1052, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, "sources": [ { - "fileName": "types.ts", - "line": 843, + "fileName": "embed/bodyless-conversation.ts", + "line": 100, "character": 4 } ], - "type": { - "type": "reflection", - "declaration": { - "id": 2059, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", + "signatures": [ + { + "id": 1053, + "name": "new SpotterAgentEmbed", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "indexSignature": { - "id": 2060, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 2061, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } + "parameters": [ + { + "id": 1054, + "name": "viewConfig", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1067, + "name": "SpotterAgentEmbedViewConfig" } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] } + ], + "type": { + "type": "reference", + "id": 1051, + "name": "SpotterAgentEmbed" } } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.additionalFlags" - } + ] }, { - "id": 2093, - "name": "collapseSearchBar", - "kind": 1024, - "kindString": "Property", + "id": 1056, + "name": "sendMessage", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", - "tags": [ - { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 1076, - "character": 4 + "fileName": "embed/bodyless-conversation.ts", + "line": 109, + "character": 17 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.collapseSearchBar" - } + "signatures": [ + { + "id": 1057, + "name": "sendMessage", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1058, + "name": "userMessage", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reflection", + "declaration": { + "id": 1059, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1061, + "name": "container", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + } + }, + { + "id": 1060, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 1062, + "name": "viz", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1061, + 1060, + 1062 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 1063, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1064, + "name": "container", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLDivElement" + } + }, + { + "id": 1066, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + } + }, + { + "id": 1065, + "name": "viz", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "name": "ConversationMessage" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1064, + 1066, + 1065 + ] + } + ] + } + } + ] + } + ], + "name": "Promise" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1052 + ] }, { - "id": 2047, - "name": "collapseSearchBarInitially", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true + "title": "Methods", + "kind": 2048, + "children": [ + 1056 + ] + } + ], + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 97, + "character": 13 + } + ] + }, + { + "id": 1152, + "name": "SpotterEmbed", + "kind": 128, + "kindString": "Class", + "flags": {}, + "comment": { + "shortText": "Embed ThoughtSpot AI Conversation.", + "tags": [ + { + "tag": "group", + "text": "Embed components" }, - "comment": { - "shortText": "To set the initial state of the search bar in case of saved-answers.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "deprecated", - "text": "Use {@link collapseSearchBar} instead\n" - } - ] + { + "tag": "example", + "text": "\n```js\nconst conversation = new SpotterEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + } + ] + }, + "children": [ + { + "id": 1153, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, "sources": [ { - "fileName": "embed/app.ts", - "line": 371, + "fileName": "embed/conversation.ts", + "line": 194, "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2073, - "name": "contextMenuTrigger", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + "signatures": [ + { + "id": 1154, + "name": "new SpotterEmbed", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1155, + "name": "container", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLElement" + } + }, + { + "id": 1156, + "name": "viewConfig", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1299, + "name": "SpotterEmbedViewConfig" + } + } + ], + "type": { + "type": "reference", + "id": 1152, + "name": "SpotterEmbed" }, - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + "overwrites": { + "type": "reference", + "name": "TsEmbed.constructor" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 875, - "character": 4 } ], - "type": { - "type": "reference", - "id": 1771, - "name": "ContextMenuTriggerOptions" - }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "Omit.contextMenuTrigger" + "name": "TsEmbed.constructor" } }, { - "id": 2057, - "name": "customizations", - "kind": 1024, - "kindString": "Property", + "id": 1277, + "name": "destroy", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" - }, - { - "tag": "default", - "text": "''\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 850, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1207, + "character": 11 } ], - "type": { - "type": "reference", - "id": 2139, - "name": "CustomisationsInterface" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.customizations" - } - }, - { - "id": 2048, - "name": "dataPanelCustomGroupsAccordionInitialState", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This controls the initial behaviour of custom column groups accordion.\nIt takes DataPanelCustomColumnGroupsAccordionState enum values as input.\nList of different enum values:-\n- EXPAND_ALL: Expand all the accordion initially in data panel v2.\n- COLLAPSE_ALL: Collapse all the accordions initially in data panel v2.\n- EXPAND_FIRST: Expand the first accordion and collapse the rest.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + "signatures": [ + { + "id": 1278, + "name": "destroy", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Destroys the ThoughtSpot embed, and remove any nodes from the DOM.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.19.1 | ThoughtSpot: *\n" + } + ] }, - { - "tag": "default", - "text": "DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL" + "type": { + "type": "intrinsic", + "name": "void" }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n dataPanelCustomGroupsAccordionInitialState:\n DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL,\n});\n```\n" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.destroy" } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 390, - "character": 4 } ], - "type": { + "inheritedFrom": { "type": "reference", - "name": "DataPanelCustomColumnGroupsAccordionState" + "name": "TsEmbed.destroy" } }, { - "id": 2094, - "name": "dataPanelV2", - "kind": 1024, - "kindString": "Property", + "id": 1296, + "name": "getAnswerService", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to control Data panel experience", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 1107, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1384, + "character": 17 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.dataPanelV2" - } - }, - { - "id": 2030, - "name": "disableProfileAndHelp", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Control the visibility of the help (?) and profile buttons on the\nGlobal nav-bar. By default, these buttons are visible on the nav-bar.", - "tags": [ - { - "tag": "default", - "text": "false" + "signatures": [ + { + "id": 1297, + "name": "getAnswerService", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Returns the answerService which can be used to make arbitrary graphql calls on top\nsession.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.25.0 / ThoughtSpot 9.10.0\n" + } + ] }, - { - "tag": "version", - "text": "SDK: 1.2.0 | Thoughtspot: 8.4.0.cl" + "parameters": [ + { + "id": 1298, + "name": "vizId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "comment": { + "text": "to get for a specific viz in case of a Liveboard." + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "id": 1608, + "name": "AnswerService" + } + ], + "name": "Promise" }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n disableProfileAndHelp: true,\n})\n```\n" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getAnswerService" } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 139, - "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getAnswerService" } }, { - "id": 2076, - "name": "disableRedirectionLinksInNewTab", - "kind": 1024, - "kindString": "Property", + "id": 1158, + "name": "getIframeSrc", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 1094, - "character": 4 + "fileName": "embed/conversation.ts", + "line": 199, + "character": 11 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" - } - }, - { - "id": 2067, - "name": "disabledActionReason", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The tooltip to display for disabled actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "signatures": [ + { + "id": 1159, + "name": "getIframeSrc", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" + "overwrites": { + "type": "reference", + "name": "TsEmbed.getIframeSrc" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 727, - "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "Omit.disabledActionReason" + "name": "TsEmbed.getIframeSrc" } }, { - "id": 2066, - "name": "disabledActions", - "kind": 1024, - "kindString": "Property", + "id": 1291, + "name": "getPreRenderIds", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 714, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1371, + "character": 11 } ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disabledActions" - } - }, - { - "id": 2089, - "name": "doNotTrackPreRenderSize", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", - "tags": [ - { - "tag": "default", - "text": "false" + "signatures": [ + { + "id": 1292, + "name": "getPreRenderIds", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Retrieves unique HTML element IDs for PreRender-related elements.\nThese IDs are constructed based on the provided 'preRenderId' from 'viewConfig'.", + "returns": "An object containing the IDs for the PreRender elements.", + "tags": [ + { + "tag": "property", + "text": "{string} wrapper - The HTML element ID for the PreRender wrapper." + }, + { + "tag": "property", + "text": "{string} child - The HTML element ID for the PreRender child.\n" + } + ] }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + "type": { + "type": "reflection", + "declaration": { + "id": 1293, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1295, + "name": "child", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "defaultValue": "..." + }, + { + "id": 1294, + "name": "wrapper", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1295, + 1294 + ] + } + ] + } }, - { - "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getPreRenderIds" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1035, - "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" + "name": "TsEmbed.getPreRenderIds" } }, { - "id": 2049, - "name": "enable2ColumnLayout", - "kind": 1024, - "kindString": "Property", + "id": 1271, + "name": "getThoughtSpotPostUrlParams", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This attribute can be used to enable the two-column layout on an embedded Liveboard", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot:10.1.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n enable2ColumnLayout: true,\n})\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "embed/app.ts", - "line": 404, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1177, + "character": 11 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2046, - "name": "enableAskSage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "enable or disable ask sage", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.29.0 | Thoughtspot: 9.12.0.cl" + "signatures": [ + { + "id": 1272, + "name": "getThoughtSpotPostUrlParams", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Get the Post Url Params for THOUGHTSPOT from the current\nhost app URL.\nTHOUGHTSPOT URL params starts with a prefix \"ts-\"", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.14.0 | ThoughtSpot: 8.4.0.cl, 8.4.1-sw\n" + } + ] }, - { - "tag": "default", - "text": "false\n" + "parameters": [ + { + "id": 1273, + "name": "additionalParams", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1274, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1275, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1276, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + } + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getThoughtSpotPostUrlParams" } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 364, - "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 2095, - "name": "enableCustomColumnGroups", - "kind": 1024, - "kindString": "Property", + "id": 1279, + "name": "getUnderlyingFrameElement", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To enable custom column groups in data panel v2", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 1120, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1216, + "character": 11 + } + ], + "signatures": [ + { + "id": 1280, + "name": "getUnderlyingFrameElement", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLIFrameElement" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.getUnderlyingFrameElement" + } } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableCustomColumnGroups" + "name": "TsEmbed.getUnderlyingFrameElement" } }, { - "id": 2031, - "name": "enablePendoHelp", - "kind": 1024, - "kindString": "Property", + "id": 1289, + "name": "hidePreRender", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "tags": [ - { - "tag": "version", - "text": "SDK: 1.36.3 | ThoughtSpot: 10.1.0.cl" - }, - { - "tag": "default", - "text": "true\nWhether the help menu in the top nav bar should be served\nfrom Pendo or ThoughtSpot's internal help items." - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n enablePendoHelp: false,\n});\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "embed/app.ts", - "line": 153, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1343, + "character": 11 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2039, - "name": "enableSearchAssist", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the Search Assist feature is enabled.", - "tags": [ - { - "tag": "default", - "text": "true" + "signatures": [ + { + "id": 1290, + "name": "hidePreRender", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Hides the PreRender component if it is available.\nIf the component is not preRendered, it issues a warning." }, - { - "tag": "version", - "text": "SDK: 1.13.0 | ThoughtSpot: 8.5.0.cl, 8.8.1-sw" + "type": { + "type": "intrinsic", + "name": "void" }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n enableSearchAssist: true,\n})\n```\n" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.hidePreRender" } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 272, - "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.hidePreRender" } }, { - "id": 2092, - "name": "enableV2Shell_experimental", - "kind": 1024, - "kindString": "Property", + "id": 1251, + "name": "off", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 1064, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1061, + "character": 11 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.enableV2Shell_experimental" - } - }, - { - "id": 2088, - "name": "excludeRuntimeFiltersfromURL", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" + "signatures": [ + { + "id": 1252, + "name": "off", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Removes an event listener for a particular event type.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst errorHandler = (data) => { console.error(data); };\ntsEmbed.on(EmbedEvent.Error, errorHandler);\ntsEmbed.off(EmbedEvent.Error, errorHandler);\n```\n" + } + ] }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + "parameters": [ + { + "id": 1253, + "name": "messageType", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The message type" + }, + "type": { + "type": "reference", + "id": 1732, + "name": "EmbedEvent" + } + }, + { + "id": 1254, + "name": "callback", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The callback to remove" + }, + "type": { + "type": "reference", + "id": 2363, + "name": "MessageCallback" + } + } + ], + "type": { + "type": "reference", + "name": "TsEmbed" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.off" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 913, - "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeFiltersfromURL" + "name": "TsEmbed.off" } }, { - "id": 2091, - "name": "excludeRuntimeParametersfromURL", - "kind": 1024, - "kindString": "Property", + "id": 1245, + "name": "on", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 1050, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1032, + "character": 11 + } + ], + "signatures": [ + { + "id": 1246, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" + }, + { + "tag": "example", + "text": "\n```js\ntsEmbed.on(EmbedEvent.Save, (data) => {\n console.log(\"Answer save clicked\", data);\n}, {\n start: true // This will trigger the callback on start of save\n});\n```\n" + } + ] + }, + "parameters": [ + { + "id": 1247, + "name": "messageType", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The message type" + }, + "type": { + "type": "reference", + "id": 1732, + "name": "EmbedEvent" + } + }, + { + "id": 1248, + "name": "callback", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "A callback as a function" + }, + "type": { + "type": "reference", + "id": 2363, + "name": "MessageCallback" + } + }, + { + "id": 1249, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The message options" + }, + "type": { + "type": "reference", + "id": 2360, + "name": "MessageOptions" + }, + "defaultValue": "..." + }, + { + "id": 1250, + "name": "isRegisteredBySDK", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" + } + ], + "type": { + "type": "reference", + "name": "TsEmbed" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.on" + } } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeParametersfromURL" + "name": "TsEmbed.on" } }, { - "id": 2078, - "name": "exposeTranslationIDs", - "kind": 1024, - "kindString": "Property", + "id": 1268, + "name": "preRender", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to expose translation IDs on the embedded app.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 1082, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1161, + "character": 17 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.exposeTranslationIDs" - } - }, - { - "id": 2081, - "name": "frameParams", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + "signatures": [ + { + "id": 1269, + "name": "preRender", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Creates the preRender shell" }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" + "parameters": [ + { + "id": 1270, + "name": "showPreRenderByDefault", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "Show the preRender after render, hidden by default\n" + }, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "TsEmbed" + } + ], + "name": "Promise" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.preRender" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 690, - "character": 4 } ], - "type": { - "type": "reference", - "id": 2101, - "name": "FrameParams" - }, "inheritedFrom": { "type": "reference", - "name": "Omit.frameParams" + "name": "TsEmbed.preRender" } }, { - "id": 2040, - "name": "fullHeight", - "kind": 1024, - "kindString": "Property", + "id": 1281, + "name": "prerenderGeneric", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the Liveboard container dynamically resizes\naccording to the height of the Liveboard.", - "text": "**Note**: Using fullHeight loads all visualizations\non the Liveboard simultaneously, which results in\nmultiple warehouse queries and potentially a\nlonger wait for the topmost visualizations to\ndisplay on the screen. Setting fullHeight to\n`false` fetches visualizations incrementally as\nusers scroll the page to view the charts and tables.\n", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.4.0.cl, 9.4.0-sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n fullHeight: true,\n})\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "embed/app.ts", - "line": 294, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1227, + "character": 17 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2068, - "name": "hiddenActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "signatures": [ + { + "id": 1282, + "name": "prerenderGeneric", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Prerenders a generic instance of the TS component.\nThis means without the path but with the flags already applied.\nThis is useful for prerendering the component in the background.", + "returns": "\n", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.22.0" + } + ] }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" }, - { - "tag": "important", - "text": "\n" + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.prerenderGeneric" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 742, - "character": 4 } ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" - } - }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenActions" + "name": "TsEmbed.prerenderGeneric" } }, { - "id": 2064, - "name": "hiddenHomeLeftNavItems", - "kind": 1024, - "kindString": "Property", + "id": 1160, + "name": "render", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." - }, - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 999, - "character": 4 + "fileName": "embed/conversation.ts", + "line": 247, + "character": 17 } ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2107, - "name": "HomeLeftNavItem" + "signatures": [ + { + "id": 1161, + "name": "render", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "id": 1152, + "name": "SpotterEmbed" + } + ], + "name": "Promise" + }, + "overwrites": { + "type": "reference", + "name": "TsEmbed.render" + } } - }, - "inheritedFrom": { + ], + "overwrites": { "type": "reference", - "name": "Omit.hiddenHomeLeftNavItems" + "name": "TsEmbed.render" } }, { - "id": 2062, - "name": "hiddenHomepageModules", - "kind": 1024, - "kindString": "Property", + "id": 1285, + "name": "showPreRender", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 946, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1275, + "character": 17 } ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2115, - "name": "HomepageModule" + "signatures": [ + { + "id": 1286, + "name": "showPreRender", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Displays the PreRender component.\nIf the component is not preRendered, it attempts to create and render it.\nAlso, synchronizes the style of the PreRender component with the embedding\nelement." + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "TsEmbed" + } + ], + "name": "Promise" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.showPreRender" + } } - }, + ], "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenHomepageModules" + "name": "TsEmbed.showPreRender" } }, { - "id": 2065, - "name": "hiddenListColumns", - "kind": 1024, - "kindString": "Property", + "id": 1287, + "name": "syncPreRenderStyle", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is appplicable only in full app embedding.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 1151, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1324, + "character": 11 } ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2314, - "name": "ListPageColumns" + "signatures": [ + { + "id": 1288, + "name": "syncPreRenderStyle", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Synchronizes the style properties of the PreRender component with the embedding\nelement. This function adjusts the position, width, and height of the PreRender\ncomponent\nto match the dimensions and position of the embedding element.", + "tags": [ + { + "tag": "throws", + "text": "{Error} Throws an error if the embedding element (passed as domSelector)\nis not defined or not found.\n" + } + ] + }, + "type": { + "type": "intrinsic", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.syncPreRenderStyle" + } } - }, + ], "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenListColumns" + "name": "TsEmbed.syncPreRenderStyle" } }, { - "id": 2070, - "name": "hiddenTabs", - "kind": 1024, - "kindString": "Property", + "id": 1255, + "name": "trigger", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "types.ts", - "line": 929, - "character": 4 + "fileName": "embed/ts-embed.ts", + "line": 1100, + "character": 17 } ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" + "signatures": [ + { + "id": 1256, + "name": "trigger", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Triggers an event to the embedded app", + "returns": "A promise that resolves with the response from the embedded app\n" + }, + "typeParameter": [ + { + "id": 1257, + "name": "HostEventT", + "kind": 131072, + "kindString": "Type parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1813, + "name": "HostEvent" + } + }, + { + "id": 1258, + "name": "PayloadT", + "kind": 131072, + "kindString": "Type parameter", + "flags": {} + } + ], + "parameters": [ + { + "id": 1259, + "name": "messageType", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The event type" + }, + "type": { + "type": "reference", + "name": "HostEventT" + } + }, + { + "id": 1260, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The payload to send with the message" + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "PayloadT" + }, + { + "type": "reference", + "name": "HostEventT" + } + ], + "name": "TriggerPayload" + }, + "defaultValue": "..." + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "PayloadT" + }, + { + "type": "reference", + "name": "HostEventT" + } + ], + "name": "TriggerResponse" + } + ], + "name": "Promise" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.trigger" + } } - }, + ], "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenTabs" + "name": "TsEmbed.trigger" } }, { - "id": 2032, - "name": "hideApplicationSwitcher", - "kind": 1024, - "kindString": "Property", + "id": 1261, + "name": "triggerUIPassThrough", + "kind": 2048, + "kindString": "Method", "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Control the visibility of the application switcher button on the nav-bar.\nBy default, the application switcher is shown.", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideApplicationSwitcher : true,\n})\n```\n" - } - ] + "isPublic": true }, "sources": [ { - "fileName": "embed/app.ts", - "line": 171, - "character": 4 - } + "fileName": "embed/ts-embed.ts", + "line": 1126, + "character": 17 + } ], - "type": { - "type": "intrinsic", - "name": "boolean" + "signatures": [ + { + "id": 1262, + "name": "triggerUIPassThrough", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Triggers an event to the embedded app, skipping the UI flow.", + "returns": "- A promise that resolves with the response\nfrom the embedded app.\n" + }, + "typeParameter": [ + { + "id": 1263, + "name": "UIPassthroughEventT", + "kind": 131072, + "kindString": "Type parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 2544, + "name": "UIPassthroughEvent" + } + } + ], + "parameters": [ + { + "id": 1264, + "name": "apiName", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The name of the API to be triggered." + }, + "type": { + "type": "reference", + "name": "UIPassthroughEventT" + } + }, + { + "id": 1265, + "name": "parameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "The parameters to be passed to the API." + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "UIPassthroughEventT" + } + ], + "name": "UIPassthroughRequest" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "UIPassthroughEventT" + } + ], + "name": "UIPassthroughArrayResponse" + } + ], + "name": "Promise" + }, + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.triggerUIPassThrough" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "TsEmbed.triggerUIPassThrough" } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1153 + ] }, { - "id": 2029, - "name": "hideHomepageLeftNav", + "title": "Methods", + "kind": 2048, + "children": [ + 1277, + 1296, + 1158, + 1291, + 1271, + 1279, + 1289, + 1251, + 1245, + 1268, + 1281, + 1160, + 1285, + 1287, + 1255, + 1261 + ] + } + ], + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 193, + "character": 13 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "TsEmbed" + } + ] + }, + { + "id": 2264, + "name": "AppViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The view configuration for full app embedding.", + "tags": [ + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, + "children": [ + { + "id": 2295, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Control the visibility of the left navigation bar on the Homepage.\nIf showPrimaryNavbar is true, that is, if the Global and Homepage\nnav-bars are visible, this flag will only hide the homepage left nav-bar.\nThe showPrimaryNavbar flag takes precedence over the hideHomepageLeftNav.", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" }, { "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideHomepageLeftNav : true,\n})\n```\n" + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 125, + "fileName": "types.ts", + "line": 843, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reflection", + "declaration": { + "id": 2296, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 2297, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 2298, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.additionalFlags" } }, { - "id": 2054, - "name": "hideIrrelevantChipsInLiveboardTabs", + "id": 2330, + "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to enable/disable hide irrelevant filters in Liveboard tab", + "shortText": "To set the initial state of the search bar in case of saved Answers.", "tags": [ { "tag": "default", - "text": "false" + "text": "true" }, { "tag": "version", - "text": "SDK: 1.36.0 | ThoughtSpot:10.6.0.cl" + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n hideIrrelevantChipsInLiveboardTabs: true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 456, + "fileName": "types.ts", + "line": 1076, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.collapseSearchBar" } }, { - "id": 2041, - "name": "hideLiveboardHeader", + "id": 2284, + "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide Liveboard header", + "shortText": "To set the initial state of the search bar in case of saved-answers.", "tags": [ { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" }, { "tag": "default", "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideLiveboardHeader : true,\n})\n```\n" + "tag": "deprecated", + "text": "Use {@link collapseSearchBar} instead\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 307, + "line": 371, "character": 4 } ], @@ -19584,134 +19691,147 @@ } }, { - "id": 2037, - "name": "hideObjects", + "id": 2310, + "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The array of GUIDs to be hidden", + "shortText": "flag to set ContextMenu Trigger to either left or right click.", "tags": [ { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1-sw" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideObjects: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 252, + "fileName": "types.ts", + "line": 875, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "reference", + "id": 2008, + "name": "ContextMenuTriggerOptions" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.contextMenuTrigger" } }, { - "id": 2033, - "name": "hideOrgSwitcher", + "id": 2294, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Control the visibility of the Org switcher button on the nav-bar.\nBy default, the Org switcher button is shown.", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", "tags": [ { "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" }, { "tag": "default", - "text": "true" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideOrgSwitcher : true,\n})\n```\n" + "text": "''\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 189, + "fileName": "types.ts", + "line": 850, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 2376, + "name": "CustomisationsInterface" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.customizations" } }, { - "id": 2051, - "name": "homePageSearchBarMode", + "id": 2285, + "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to use home page search bar mode", + "shortText": "This controls the initial behaviour of custom column groups accordion.\nIt takes DataPanelCustomColumnGroupsAccordionState enum values as input.\nList of different enum values:-\n- EXPAND_ALL: Expand all the accordion initially in data panel v2.\n- COLLAPSE_ALL: Collapse all the accordions initially in data panel v2.\n- EXPAND_FIRST: Expand the first accordion and collapse the rest.", "tags": [ { "tag": "version", - "text": "SDK : 1.33.0 | Thoughtspot : 10.3.0.cl\n" + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + }, + { + "tag": "default", + "text": "DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n dataPanelCustomGroupsAccordionInitialState:\n DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL,\n});\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 414, + "line": 390, "character": 4 } ], "type": { "type": "reference", - "id": 2280, - "name": "HomePageSearchBarMode" + "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2086, - "name": "insertAsSibling", + "id": 2331, + "name": "dataPanelV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "shortText": "Flag to control Data panel experience", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 863, + "line": 1107, "character": 4 } ], @@ -19721,19 +19841,19 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.insertAsSibling" + "name": "Omit.dataPanelV2" } }, { - "id": 2052, - "name": "isLiveboardCompactHeaderEnabled", + "id": 2267, + "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to enable the compact header in Liveboard", + "shortText": "Control the visibility of the help (?) and profile buttons on the\nGlobal nav-bar. By default, these buttons are visible on the nav-bar.", "tags": [ { "tag": "default", @@ -19741,18 +19861,18 @@ }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.3.0.cl" + "text": "SDK: 1.2.0 | Thoughtspot: 8.4.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n isLiveboardCompactHeaderEnabled: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n disableProfileAndHelp: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 428, + "line": 139, "character": 4 } ], @@ -19762,129 +19882,149 @@ } }, { - "id": 2045, - "name": "isLiveboardHeaderSticky", + "id": 2313, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to control if Liveboard header is sticky or not.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n isLiveboardHeaderSticky: true,\n});\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl\n" + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 358, + "fileName": "types.ts", + "line": 1094, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 2050, - "name": "isOnBeforeGetVizDataInterceptEnabled", + "id": 2304, + "name": "disabledActionReason", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "shortText": "The tooltip to display for disabled actions.", "tags": [ { "tag": "version", - "text": "SDK : 1.29.0 | Thoughtspot : 10.1.0.cl\n" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 409, + "fileName": "types.ts", + "line": 727, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disabledActionReason" } }, { - "id": 2056, - "name": "isUnifiedSearchExperienceEnabled", + "id": 2303, + "name": "disabledActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to enable unified search experience for full app embed.", + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", "tags": [ - { - "tag": "default", - "text": "true" - }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot:10.5.0.cl" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n isUnifiedSearchExperienceEnabled: true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 484, + "fileName": "types.ts", + "line": 714, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1878, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disabledActions" } }, { - "id": 2074, - "name": "linkOverride", + "id": 2326, + "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 887, + "line": 1035, "character": 4 } ], @@ -19894,75 +20034,71 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.linkOverride" + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 2072, - "name": "locale", + "id": 2286, + "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The locale settings to apply to the embedded view.", + "shortText": "This attribute can be used to enable the two-column layout on an embedded Liveboard", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.32.0 | ThoughtSpot:10.1.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n enable2ColumnLayout: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 822, + "fileName": "embed/app.ts", + "line": 404, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.locale" + "name": "boolean" } }, { - "id": 2044, - "name": "modularHomeExperience", + "id": 2283, + "name": "enableAskSage", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to control new Modular Home experience.", + "shortText": "enable or disable ask sage", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + "text": "SDK: 1.29.0 | Thoughtspot: 9.12.0.cl" }, { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n modularHomeExperience : true,\n})\n```\n" + "tag": "default", + "text": "false\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 346, + "line": 364, "character": 4 } ], @@ -19972,174 +20108,370 @@ } }, { - "id": 2077, - "name": "overrideOrgId", + "id": 2332, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "shortText": "To enable custom column groups in data panel v2", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + "tag": "version", + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" }, { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1136, + "line": 1120, "character": 4 } ], "type": { "type": "intrinsic", - "name": "number" + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.overrideOrgId" + "name": "Omit.enableCustomColumnGroups" } }, { - "id": 2035, - "name": "pageId", + "id": 2268, + "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The application page to set as the start page\nin the embedded view.", - "text": "Use this to open to particular page in the app. To open to a specific\npath within the app, use the `path` attribute which is more flexible.", "tags": [ { "tag": "version", - "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + "text": "SDK: 1.36.3 | ThoughtSpot: 10.1.0.cl" + }, + { + "tag": "default", + "text": "true\nWhether the help menu in the top nav bar should be served\nfrom Pendo or ThoughtSpot's internal help items." }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n pageId : Page.Answers | Page.Data\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n enablePendoHelp: false,\n});\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 223, + "line": 153, "character": 4 } ], "type": { - "type": "reference", - "id": 1454, - "name": "Page" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 2034, - "name": "path", + "id": 2276, + "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "A URL path to the embedded application page\nIf both path and pageId attributes are defined, the path definition\ntakes precedence. This is the path post the `#/` in the URL of the standalone\nThoughtSpot app. Use this to open the embedded view to a specific path.", - "text": "For eg, if you want the component to open to a specific Liveboard\nyou could set the path to `pinboard//tab/`.", + "shortText": "If set to true, the Search Assist feature is enabled.", "tags": [ { - "tag": "version", - "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.13.0 | ThoughtSpot: 8.5.0.cl, 8.8.1-sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n path:\"pinboard/1234/tab/7464\"\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n enableSearchAssist: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 207, + "line": 272, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2079, - "name": "preRenderId", + "id": 2329, + "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" }, { "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1014, + "line": 1064, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.preRenderId" + "name": "Omit.enableV2Shell_experimental" } }, { - "id": 2063, - "name": "reorderedHomepageModules", + "id": 2325, + "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 913, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeFiltersfromURL" + } + }, + { + "id": 2328, + "name": "excludeRuntimeParametersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1050, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeParametersfromURL" + } + }, + { + "id": 2315, + "name": "exposeTranslationIDs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to expose translation IDs on the embedded app.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1082, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.exposeTranslationIDs" + } + }, + { + "id": 2318, + "name": "frameParams", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 963, + "line": 690, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 2338, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.frameParams" + } + }, + { + "id": 2277, + "name": "fullHeight", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If set to true, the Liveboard container dynamically resizes\naccording to the height of the Liveboard.", + "text": "**Note**: Using fullHeight loads all visualizations\non the Liveboard simultaneously, which results in\nmultiple warehouse queries and potentially a\nlonger wait for the topmost visualizations to\ndisplay on the screen. Setting fullHeight to\n`false` fetches visualizations incrementally as\nusers scroll the page to view the charts and tables.\n", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.4.0.cl, 9.4.0-sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n fullHeight: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 294, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2305, + "name": "hiddenActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + }, + { + "tag": "important", + "text": "\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 742, "character": 4 } ], @@ -20147,40 +20479,40 @@ "type": "array", "elementType": { "type": "reference", - "id": 2115, - "name": "HomepageModule" + "id": 1878, + "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.reorderedHomepageModules" + "name": "Omit.hiddenActions" } }, { - "id": 2084, - "name": "runtimeFilters", + "id": 2301, + "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", "tags": [ { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 792, + "line": 999, "character": 4 } ], @@ -20188,40 +20520,41 @@ "type": "array", "elementType": { "type": "reference", - "id": 1475, - "name": "RuntimeFilter" + "id": 2344, + "name": "HomeLeftNavItem" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeFilters" + "name": "Omit.hiddenHomeLeftNavItems" } }, { - "id": 2085, - "name": "runtimeParameters", + "id": 2299, + "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 810, + "line": 946, "character": 4 } ], @@ -20229,66 +20562,112 @@ "type": "array", "elementType": { "type": "reference", - "id": 2254, - "name": "RuntimeParameter" + "id": 2352, + "name": "HomepageModule" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeParameters" + "name": "Omit.hiddenHomepageModules" } }, { - "id": 2071, - "name": "showAlerts", + "id": 2302, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", "tags": [ { "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 773, + "line": 1151, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2551, + "name": "ListPageColumns" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.showAlerts" + "name": "Omit.hiddenListColumns" } }, { - "id": 2043, - "name": "showLiveboardDescription", + "id": 2307, + "name": "hiddenTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide Liveboard description", + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 929, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenTabs" + } + }, + { + "id": 2269, + "name": "hideApplicationSwitcher", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Control the visibility of the application switcher button on the nav-bar.\nBy default, the application switcher is shown.", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" }, { "tag": "default", @@ -20296,14 +20675,14 @@ }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showLiveboardDescription:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideApplicationSwitcher : true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 333, + "line": 171, "character": 4 } ], @@ -20313,34 +20692,35 @@ } }, { - "id": 2055, - "name": "showLiveboardReverifyBanner", + "id": 2266, + "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to show or hide the re-verify banner on the Liveboard compact header", + "shortText": "Control the visibility of the left navigation bar on the Homepage.\nIf showPrimaryNavbar is true, that is, if the Global and Homepage\nnav-bars are visible, this flag will only hide the homepage left nav-bar.\nThe showPrimaryNavbar flag takes precedence over the hideHomepageLeftNav.", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { "tag": "default", - "text": "true" + "text": "false" }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showLiveboardReverifyBanner: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideHomepageLeftNav : true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 470, + "line": 125, "character": 4 } ], @@ -20350,34 +20730,34 @@ } }, { - "id": 2042, - "name": "showLiveboardTitle", + "id": 2291, + "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide Liveboard title", + "shortText": "This flag is used to enable/disable hide irrelevant filters in Liveboard tab", "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" - }, { "tag": "default", "text": "false" }, + { + "tag": "version", + "text": "SDK: 1.36.0 | ThoughtSpot:10.6.0.cl" + }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showLiveboardTitle:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n hideIrrelevantChipsInLiveboardTabs: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 320, + "line": 456, "character": 4 } ], @@ -20387,34 +20767,34 @@ } }, { - "id": 2053, - "name": "showLiveboardVerifiedBadge", + "id": 2278, + "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to show or hide the Liveboard verified icon in the compact header.", + "shortText": "Show or hide Liveboard header", "tags": [ { - "tag": "default", - "text": "true" + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" }, { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + "tag": "default", + "text": "false" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showLiveboardVerifiedBadge: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideLiveboardHeader : true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 442, + "line": 307, "character": 4 } ], @@ -20424,578 +20804,1637 @@ } }, { - "id": 2028, - "name": "showPrimaryNavbar", + "id": 2274, + "name": "hideObjects", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If true, the top navigation bar within the ThoughtSpot app\nis displayed. By default, the navigation bar is hidden.\nThis flag also controls the homepage left navigation bar.", + "shortText": "The array of GUIDs to be hidden", "tags": [ - { - "tag": "default", - "text": "true" - }, { "tag": "version", - "text": "SDK: 1.2.0 | Thoughtspot: 8.4.0.cl" + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1-sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showPrimaryNavbar:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideObjects: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 105, + "line": 252, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 2036, - "name": "tag", + "id": 2270, + "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This puts a filter tag on the application. All metadata lists in the\napplication, such as Liveboards and answers, would be filtered by this\ntag.", + "shortText": "Control the visibility of the Org switcher button on the nav-bar.\nBy default, the Org switcher button is shown.", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { "tag": "version", - "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + }, + { + "tag": "default", + "text": "true" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n tag:'value',\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideOrgSwitcher : true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 237, + "line": 189, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2069, - "name": "visibleActions", + "id": 2288, + "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", + "shortText": "Flag to use home page search bar mode", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, + "text": "SDK : 1.33.0 | Thoughtspot : 10.3.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 414, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 2517, + "name": "HomePageSearchBarMode" + } + }, + { + "id": 2323, + "name": "insertAsSibling", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "tags": [ { - "tag": "important", - "text": "" + "tag": "version", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 760, + "line": 863, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1641, - "name": "Action" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.visibleActions" + "name": "Omit.insertAsSibling" } - } - ], - "groups": [ + }, { - "title": "Properties", + "id": 2289, + "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, - "children": [ - 2058, - 2093, - 2047, - 2073, - 2057, - 2048, - 2094, - 2030, - 2076, - 2067, - 2066, - 2089, - 2049, - 2046, - 2095, - 2031, - 2039, - 2092, - 2088, - 2091, - 2078, - 2081, - 2040, - 2068, - 2064, - 2062, - 2065, - 2070, - 2032, - 2029, - 2054, - 2041, - 2037, - 2033, - 2051, - 2086, - 2052, - 2045, - 2050, - 2056, - 2074, - 2072, - 2044, - 2077, - 2035, - 2034, - 2079, - 2063, - 2084, - 2085, - 2071, - 2043, - 2055, - 2042, - 2053, - 2028, - 2036, - 2069 - ] - } - ], - "sources": [ - { - "fileName": "embed/app.ts", - "line": 90, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to enable the compact header in Liveboard", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot:10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n isLiveboardCompactHeaderEnabled: true,\n})\n```\n" + } + ] + }, + "sources": [ { - "type": "literal", - "value": "visibleTabs" + "fileName": "embed/app.ts", + "line": 428, + "character": 4 } ], - "name": "Omit" - } - ] - }, - { - "id": 1318, - "name": "AuthEventEmitter", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "Event emitter returned from {@link init}.", - "tags": [ - { - "tag": "group", - "text": "Authentication / Init\n" + "type": { + "type": "intrinsic", + "name": "boolean" } - ] - }, - "children": [ + }, { - "id": 1355, - "name": "emit", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ - { - "id": 1356, - "name": "emit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Trigger an event on the emitter returned from init." + "id": 2282, + "name": "isLiveboardHeaderSticky", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to control if Liveboard header is sticky or not.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n isLiveboardHeaderSticky: true,\n});\n```" }, - "parameters": [ - { - "id": 1357, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1317, - "name": "TRIGGER_SSO_POPUP" - } - }, - { - "id": 1358, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl\n" } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 358, + "character": 4 } - ] + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } }, { - "id": 1359, - "name": "off", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ + "id": 2287, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.29.0 | Thoughtspot : 10.1.0.cl\n" + } + ] + }, + "sources": [ { - "id": 1360, - "name": "off", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Remove listener from the emitter returned from init." + "fileName": "embed/app.ts", + "line": 409, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2293, + "name": "isUnifiedSearchExperienceEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag is used to enable unified search experience for full app embed.", + "tags": [ + { + "tag": "default", + "text": "true" }, - "parameters": [ - { - "id": 1361, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "reference", - "id": 1309, - "name": "AuthStatus" - } - }, - { - "id": 1362, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1363, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 1364, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1365, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - }, - { - "id": 1366, - "name": "context", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - }, - { - "id": 1367, - "name": "once", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "\n" - }, - "type": { - "type": "intrinsic", - "name": "boolean" - } - } - ], - "type": { - "type": "reference", - "id": 1318, - "name": "AuthEventEmitter" + { + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot:10.5.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n isUnifiedSearchExperienceEnabled: true,\n})\n```\n" } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 484, + "character": 4 } - ] + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } }, { - "id": 1319, - "name": "on", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ - { - "id": 1320, - "name": "on", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Register a listener on Auth failure." + "id": 2311, + "name": "linkOverride", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" }, - "parameters": [ - { - "id": 1321, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "reference", - "id": 1310, - "name": "FAILURE" - } - }, - { - "id": 1322, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "\n" - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1323, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 1324, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1325, - "name": "failureType", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1303, - "name": "AuthFailureType" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1318, - "name": "AuthEventEmitter" + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" } - }, + ] + }, + "sources": [ { - "id": 1326, - "name": "on", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Register a listener on Auth SDK success." + "fileName": "types.ts", + "line": 887, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.linkOverride" + } + }, + { + "id": 2309, + "name": "locale", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The locale settings to apply to the embedded view.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, - "parameters": [ - { - "id": 1327, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "id": 1311, - "name": "SDK_SUCCESS" - }, - { - "type": "reference", - "id": 1314, - "name": "LOGOUT" - }, - { - "type": "reference", - "id": 1315, - "name": "WAITING_FOR_POPUP" - } - ] - } - }, - { - "id": 1328, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "\n" - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1329, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 1330, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1318, - "name": "AuthEventEmitter" + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" } - }, + ] + }, + "sources": [ { - "id": 1331, - "name": "on", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1332, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { + "fileName": "types.ts", + "line": 822, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.locale" + } + }, + { + "id": 2281, + "name": "modularHomeExperience", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to control new Modular Home experience.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n modularHomeExperience : true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 346, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2314, + "name": "overrideOrgId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1136, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.overrideOrgId" + } + }, + { + "id": 2272, + "name": "pageId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The application page to set as the start page\nin the embedded view.", + "text": "Use this to open to particular page in the app. To open to a specific\npath within the app, use the `path` attribute which is more flexible.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n pageId : Page.Answers | Page.Data\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 223, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1691, + "name": "Page" + } + }, + { + "id": 2271, + "name": "path", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "A URL path to the embedded application page\nIf both path and pageId attributes are defined, the path definition\ntakes precedence. This is the path post the `#/` in the URL of the standalone\nThoughtSpot app. Use this to open the embedded view to a specific path.", + "text": "For eg, if you want the component to open to a specific Liveboard\nyou could set the path to `pinboard//tab/`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n path:\"pinboard/1234/tab/7464\"\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 207, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2316, + "name": "preRenderId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1014, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.preRenderId" + } + }, + { + "id": 2300, + "name": "reorderedHomepageModules", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 963, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2352, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.reorderedHomepageModules" + } + }, + { + "id": 2321, + "name": "runtimeFilters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 792, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1712, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.runtimeFilters" + } + }, + { + "id": 2322, + "name": "runtimeParameters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 810, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2491, + "name": "RuntimeParameter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.runtimeParameters" + } + }, + { + "id": 2308, + "name": "showAlerts", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 773, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.showAlerts" + } + }, + { + "id": 2280, + "name": "showLiveboardDescription", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show or hide Liveboard description", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showLiveboardDescription:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 333, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2292, + "name": "showLiveboardReverifyBanner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to show or hide the re-verify banner on the Liveboard compact header", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showLiveboardReverifyBanner: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 470, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2279, + "name": "showLiveboardTitle", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show or hide Liveboard title", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showLiveboardTitle:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 320, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2290, + "name": "showLiveboardVerifiedBadge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to show or hide the Liveboard verified icon in the compact header.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showLiveboardVerifiedBadge: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 442, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2265, + "name": "showPrimaryNavbar", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If true, the top navigation bar within the ThoughtSpot app\nis displayed. By default, the navigation bar is hidden.\nThis flag also controls the homepage left navigation bar.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.2.0 | Thoughtspot: 8.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showPrimaryNavbar:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 105, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2273, + "name": "tag", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This puts a filter tag on the application. All metadata lists in the\napplication, such as Liveboards and answers, would be filtered by this\ntag.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n tag:'value',\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 237, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2306, + "name": "visibleActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "important", + "text": "" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 760, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1878, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.visibleActions" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2295, + 2330, + 2284, + 2310, + 2294, + 2285, + 2331, + 2267, + 2313, + 2304, + 2303, + 2326, + 2286, + 2283, + 2332, + 2268, + 2276, + 2329, + 2325, + 2328, + 2315, + 2318, + 2277, + 2305, + 2301, + 2299, + 2302, + 2307, + 2269, + 2266, + 2291, + 2278, + 2274, + 2270, + 2288, + 2323, + 2289, + 2282, + 2287, + 2293, + 2311, + 2309, + 2281, + 2314, + 2272, + 2271, + 2316, + 2300, + 2321, + 2322, + 2308, + 2280, + 2292, + 2279, + 2290, + 2265, + 2273, + 2306 + ] + } + ], + "sources": [ + { + "fileName": "embed/app.ts", + "line": 90, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "literal", + "value": "visibleTabs" + } + ], + "name": "Omit" + } + ] + }, + { + "id": 1555, + "name": "AuthEventEmitter", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Event emitter returned from {@link init}.", + "tags": [ + { + "tag": "group", + "text": "Authentication / Init\n" + } + ] + }, + "children": [ + { + "id": 1592, + "name": "emit", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ + { + "id": 1593, + "name": "emit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Trigger an event on the emitter returned from init." + }, + "parameters": [ + { + "id": 1594, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1554, + "name": "TRIGGER_SSO_POPUP" + } + }, + { + "id": 1595, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ] + }, + { + "id": 1596, + "name": "off", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ + { + "id": 1597, + "name": "off", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Remove listener from the emitter returned from init." + }, + "parameters": [ + { + "id": 1598, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "reference", + "id": 1546, + "name": "AuthStatus" + } + }, + { + "id": 1599, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1600, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1601, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1602, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + }, + { + "id": 1603, + "name": "context", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 1604, + "name": "once", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "type": { + "type": "reference", + "id": 1555, + "name": "AuthEventEmitter" + } + } + ] + }, + { + "id": 1556, + "name": "on", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ + { + "id": 1557, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Register a listener on Auth failure." + }, + "parameters": [ + { + "id": 1558, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "reference", + "id": 1547, + "name": "FAILURE" + } + }, + { + "id": 1559, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1560, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1561, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1562, + "name": "failureType", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1540, + "name": "AuthFailureType" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1555, + "name": "AuthEventEmitter" + } + }, + { + "id": 1563, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Register a listener on Auth SDK success." + }, + "parameters": [ + { + "id": 1564, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "id": 1548, + "name": "SDK_SUCCESS" + }, + { + "type": "reference", + "id": 1551, + "name": "LOGOUT" + }, + { + "type": "reference", + "id": 1552, + "name": "WAITING_FOR_POPUP" + } + ] + } + }, + { + "id": 1565, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1566, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1567, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1555, + "name": "AuthEventEmitter" + } + }, + { + "id": 1568, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1569, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1550, + "name": "SUCCESS" + } + }, + { + "id": 1570, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1571, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1572, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1573, + "name": "sessionInfo", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1555, + "name": "AuthEventEmitter" + } + } + ] + }, + { + "id": 1574, + "name": "once", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ + { + "id": 1575, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1576, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1547, + "name": "FAILURE" + } + }, + { + "id": 1577, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1578, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1579, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1580, + "name": "failureType", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1540, + "name": "AuthFailureType" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1555, + "name": "AuthEventEmitter" + } + }, + { + "id": 1581, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1582, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "id": 1548, + "name": "SDK_SUCCESS" + }, + { + "type": "reference", + "id": 1551, + "name": "LOGOUT" + }, + { + "type": "reference", + "id": 1552, + "name": "WAITING_FOR_POPUP" + } + ] + } + }, + { + "id": 1583, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1584, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1585, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1555, + "name": "AuthEventEmitter" + } + }, + { + "id": 1586, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1587, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { "type": "reference", - "id": 1313, + "id": 1550, "name": "SUCCESS" } }, { - "id": 1333, + "id": 1588, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -21003,21 +22442,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1334, + "id": 1589, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1335, + "id": 1590, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1336, + "id": 1591, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -21037,299 +22476,2962 @@ } } } - ], - "type": { - "type": "reference", - "id": 1318, - "name": "AuthEventEmitter" + ], + "type": { + "type": "reference", + "id": 1555, + "name": "AuthEventEmitter" + } + } + ] + }, + { + "id": 1605, + "name": "removeAllListeners", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ + { + "id": 1606, + "name": "removeAllListeners", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Remove all the event listeners" + }, + "parameters": [ + { + "id": 1607, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "reference", + "id": 1546, + "name": "AuthStatus" + } + } + ], + "type": { + "type": "reference", + "id": 1555, + "name": "AuthEventEmitter" + } + } + ] + } + ], + "groups": [ + { + "title": "Methods", + "kind": 2048, + "children": [ + 1592, + 1596, + 1556, + 1574, + 1605 + ] + } + ], + "sources": [ + { + "fileName": "auth.ts", + "line": 85, + "character": 17 + } + ] + }, + { + "id": 1109, + "name": "BodylessConversationViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Configuration for bodyless conversation options.", + "tags": [ + { + "tag": "deprecated", + "text": "Use {@link SpotterAgentEmbedViewConfig} instead." + }, + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, + "children": [ + { + "id": 1123, + "name": "additionalFlags", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 843, + "character": 4 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1124, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1125, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1126, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.additionalFlags" + } + }, + { + "id": 1144, + "name": "collapseSearchBar", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To set the initial state of the search bar in case of saved Answers.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1076, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.collapseSearchBar" + } + }, + { + "id": 1129, + "name": "contextMenuTrigger", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 875, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 2008, + "name": "ContextMenuTriggerOptions" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.contextMenuTrigger" + } + }, + { + "id": 1127, + "name": "customizations", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + }, + { + "tag": "default", + "text": "''\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 850, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 2376, + "name": "CustomisationsInterface" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.customizations" + } + }, + { + "id": 1147, + "name": "dataPanelV2", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to control Data panel experience", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1107, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.dataPanelV2" + } + }, + { + "id": 1146, + "name": "disableRedirectionLinksInNewTab", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1094, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disableRedirectionLinksInNewTab" + } + }, + { + "id": 1116, + "name": "disabledActionReason", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The tooltip to display for disabled actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 727, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disabledActionReason" + } + }, + { + "id": 1115, + "name": "disabledActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 714, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1878, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disabledActions" + } + }, + { + "id": 1140, + "name": "doNotTrackPreRenderSize", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + }, + { + "tag": "example", + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1035, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.doNotTrackPreRenderSize" + } + }, + { + "id": 1148, + "name": "enableCustomColumnGroups", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To enable custom column groups in data panel v2", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1120, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.enableCustomColumnGroups" + } + }, + { + "id": 1143, + "name": "enableV2Shell_experimental", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1064, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.enableV2Shell_experimental" + } + }, + { + "id": 1133, + "name": "excludeRuntimeFiltersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 913, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.excludeRuntimeFiltersfromURL" + } + }, + { + "id": 1142, + "name": "excludeRuntimeParametersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1050, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.excludeRuntimeParametersfromURL" + } + }, + { + "id": 1145, + "name": "exposeTranslationIDs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to expose translation IDs on the embedded app.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1082, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.exposeTranslationIDs" + } + }, + { + "id": 1112, + "name": "frameParams", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 690, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 2338, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.frameParams" + } + }, + { + "id": 1117, + "name": "hiddenActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + }, + { + "tag": "important", + "text": "\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 742, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1878, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenActions" + } + }, + { + "id": 1138, + "name": "hiddenHomeLeftNavItems", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." + }, + { + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 999, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2344, + "name": "HomeLeftNavItem" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomeLeftNavItems" + } + }, + { + "id": 1135, + "name": "hiddenHomepageModules", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 946, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2352, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomepageModules" + } + }, + { + "id": 1150, + "name": "hiddenListColumns", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1151, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2551, + "name": "ListPageColumns" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenListColumns" + } + }, + { + "id": 1134, + "name": "hiddenTabs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 929, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenTabs" + } + }, + { + "id": 1128, + "name": "insertAsSibling", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 863, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.insertAsSibling" + } + }, + { + "id": 1130, + "name": "linkOverride", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 887, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.linkOverride" + } + }, + { + "id": 1122, + "name": "locale", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The locale settings to apply to the embedded view.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 822, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.locale" + } + }, + { + "id": 1149, + "name": "overrideOrgId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1136, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.overrideOrgId" + } + }, + { + "id": 1139, + "name": "preRenderId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1014, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.preRenderId" + } + }, + { + "id": 1136, + "name": "reorderedHomepageModules", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 963, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2352, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.reorderedHomepageModules" + } + }, + { + "id": 1120, + "name": "runtimeFilters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 792, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1712, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.runtimeFilters" + } + }, + { + "id": 1121, + "name": "runtimeParameters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 810, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2491, + "name": "RuntimeParameter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.runtimeParameters" + } + }, + { + "id": 1119, + "name": "showAlerts", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 773, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.showAlerts" + } + }, + { + "id": 1118, + "name": "visibleActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "important", + "text": "" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 760, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1878, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleActions" + } + }, + { + "id": 1137, + "name": "visibleTabs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", + "text": "Use either `visibleTabs` or `hiddenTabs`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 981, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleTabs" + } + }, + { + "id": 1110, + "name": "worksheetId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "comment": { + "shortText": "The ID of the worksheet to use for the conversation." + }, + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 27, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1123, + 1144, + 1129, + 1127, + 1147, + 1146, + 1116, + 1115, + 1140, + 1148, + 1143, + 1133, + 1142, + 1145, + 1112, + 1117, + 1138, + 1135, + 1150, + 1134, + 1128, + 1130, + 1122, + 1149, + 1139, + 1136, + 1120, + 1121, + 1119, + 1118, + 1137, + 1110 + ] + } + ], + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 23, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "ViewConfig" + } + ] + }, + { + "id": 1346, + "name": "ConversationViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The configuration for the embedded conversation options.", + "tags": [ + { + "tag": "deprecated", + "text": "Use {@link SpotterEmbedViewConfig} instead." + }, + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, + "children": [ + { + "id": 1366, + "name": "additionalFlags", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 843, + "character": 4 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1367, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1368, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1369, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.additionalFlags" + } + }, + { + "id": 1387, + "name": "collapseSearchBar", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To set the initial state of the search bar in case of saved Answers.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1076, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.collapseSearchBar" + } + }, + { + "id": 1372, + "name": "contextMenuTrigger", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 875, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 2008, + "name": "ContextMenuTriggerOptions" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.contextMenuTrigger" + } + }, + { + "id": 1370, + "name": "customizations", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + }, + { + "tag": "default", + "text": "''\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 850, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 2376, + "name": "CustomisationsInterface" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.customizations" + } + }, + { + "id": 1351, + "name": "dataPanelV2", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to control Data panel experience", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.36.0 | ThoughtSpot Cloud: 10.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 148, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "overwrites": { + "type": "reference", + "name": "ViewConfig.dataPanelV2" + } + }, + { + "id": 1389, + "name": "disableRedirectionLinksInNewTab", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1094, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disableRedirectionLinksInNewTab" + } + }, + { + "id": 1349, + "name": "disableSourceSelection", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "disableSourceSelection : Disables data source selection\nbut still display the selected data source.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n disableSourceSelection : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 123, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1359, + "name": "disabledActionReason", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The tooltip to display for disabled actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 727, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disabledActionReason" + } + }, + { + "id": 1358, + "name": "disabledActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 714, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1878, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disabledActions" + } + }, + { + "id": 1383, + "name": "doNotTrackPreRenderSize", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + }, + { + "tag": "example", + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1035, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.doNotTrackPreRenderSize" + } + }, + { + "id": 1390, + "name": "enableCustomColumnGroups", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To enable custom column groups in data panel v2", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1120, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.enableCustomColumnGroups" + } + }, + { + "id": 1386, + "name": "enableV2Shell_experimental", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1064, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.enableV2Shell_experimental" + } + }, + { + "id": 1376, + "name": "excludeRuntimeFiltersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 913, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.excludeRuntimeFiltersfromURL" + } + }, + { + "id": 1385, + "name": "excludeRuntimeParametersfromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1050, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.excludeRuntimeParametersfromURL" + } + }, + { + "id": 1388, + "name": "exposeTranslationIDs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag can be used to expose translation IDs on the embedded app.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1082, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.exposeTranslationIDs" + } + }, + { + "id": 1355, + "name": "frameParams", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 690, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 2338, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.frameParams" + } + }, + { + "id": 1360, + "name": "hiddenActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + }, + { + "tag": "important", + "text": "\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 742, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1878, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenActions" + } + }, + { + "id": 1381, + "name": "hiddenHomeLeftNavItems", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." + }, + { + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 999, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2344, + "name": "HomeLeftNavItem" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomeLeftNavItems" + } + }, + { + "id": 1378, + "name": "hiddenHomepageModules", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 946, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2352, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomepageModules" + } + }, + { + "id": 1392, + "name": "hiddenListColumns", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1151, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2551, + "name": "ListPageColumns" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenListColumns" + } + }, + { + "id": 1377, + "name": "hiddenTabs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 929, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenTabs" + } + }, + { + "id": 1353, + "name": "hideSampleQuestions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "hideSampleQuestions : Hide sample questions on\nthe initial screen of the conversation.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n hideSampleQuestions : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 175, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1350, + "name": "hideSourceSelection", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "hideSourceSelection : Hide data source selection", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n hideSourceSelection : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 135, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1371, + "name": "insertAsSibling", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 863, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.insertAsSibling" + } + }, + { + "id": 1373, + "name": "linkOverride", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 887, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.linkOverride" + } + }, + { + "id": 1365, + "name": "locale", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The locale settings to apply to the embedded view.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 822, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.locale" + } + }, + { + "id": 1391, + "name": "overrideOrgId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1136, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.overrideOrgId" + } + }, + { + "id": 1382, + "name": "preRenderId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1014, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.preRenderId" + } + }, + { + "id": 1379, + "name": "reorderedHomepageModules", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 963, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2352, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.reorderedHomepageModules" + } + }, + { + "id": 1363, + "name": "runtimeFilters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 792, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1712, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.runtimeFilters" + } + }, + { + "id": 1364, + "name": "runtimeParameters", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 810, + "character": 4 } - ] + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2491, + "name": "RuntimeParameter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.runtimeParameters" + } }, { - "id": 1337, - "name": "once", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ + "id": 1348, + "name": "searchOptions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Ability to pass a starting search query to the conversation." + }, + "sources": [ { - "id": 1338, - "name": "once", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1339, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1310, - "name": "FAILURE" - } - }, - { - "id": 1340, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1341, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 1342, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1343, - "name": "failureType", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1303, - "name": "AuthFailureType" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1318, - "name": "AuthEventEmitter" + "fileName": "embed/conversation.ts", + "line": 110, + "character": 4 + } + ], + "type": { + "type": "reference", + "name": "SearchOptions" + } + }, + { + "id": 1362, + "name": "showAlerts", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" } - }, + ] + }, + "sources": [ { - "id": 1344, - "name": "once", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1345, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "id": 1311, - "name": "SDK_SUCCESS" - }, - { - "type": "reference", - "id": 1314, - "name": "LOGOUT" - }, - { - "type": "reference", - "id": 1315, - "name": "WAITING_FOR_POPUP" - } - ] - } - }, - { - "id": 1346, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1347, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 1348, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1318, - "name": "AuthEventEmitter" + "fileName": "types.ts", + "line": 773, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.showAlerts" + } + }, + { + "id": 1352, + "name": "showSpotterLimitations", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "showSpotterLimitations : show limitation text\nof the spotter underneath the chat input.\ndefault is false.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n showSpotterLimitations : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.36.0 | Thoughtspot: 10.5.0.cl\n" } - }, + ] + }, + "sources": [ { - "id": 1349, - "name": "once", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1350, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1313, - "name": "SUCCESS" - } - }, - { - "id": 1351, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1352, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 1353, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1354, - "name": "sessionInfo", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1318, - "name": "AuthEventEmitter" - } + "fileName": "embed/conversation.ts", + "line": 162, + "character": 4 } - ] + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } }, { - "id": 1368, - "name": "removeAllListeners", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ + "id": 1361, + "name": "visibleActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "important", + "text": "" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + } + ] + }, + "sources": [ { - "id": 1369, - "name": "removeAllListeners", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Remove all the event listeners" + "fileName": "types.ts", + "line": 760, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1878, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleActions" + } + }, + { + "id": 1380, + "name": "visibleTabs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", + "text": "Use either `visibleTabs` or `hiddenTabs`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" }, - "parameters": [ - { - "id": 1370, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "\n" - }, - "type": { - "type": "reference", - "id": 1309, - "name": "AuthStatus" - } - } - ], - "type": { - "type": "reference", - "id": 1318, - "name": "AuthEventEmitter" + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 981, + "character": 4 } - ] + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleTabs" + } + }, + { + "id": 1347, + "name": "worksheetId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "comment": { + "shortText": "The ID of the worksheet to use for the conversation." + }, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 106, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } } ], "groups": [ { - "title": "Methods", - "kind": 2048, + "title": "Properties", + "kind": 1024, "children": [ - 1355, + 1366, + 1387, + 1372, + 1370, + 1351, + 1389, + 1349, 1359, - 1319, - 1337, - 1368 + 1358, + 1383, + 1390, + 1386, + 1376, + 1385, + 1388, + 1355, + 1360, + 1381, + 1378, + 1392, + 1377, + 1353, + 1350, + 1371, + 1373, + 1365, + 1391, + 1382, + 1379, + 1363, + 1364, + 1348, + 1362, + 1352, + 1361, + 1380, + 1347 ] } ], "sources": [ { - "fileName": "auth.ts", - "line": 85, + "fileName": "embed/conversation.ts", + "line": 102, "character": 17 } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "ViewConfig" + } ] }, { - "id": 2287, + "id": 2524, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -21344,7 +25446,7 @@ }, "children": [ { - "id": 2288, + "id": 2525, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -21361,14 +25463,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2289, + "id": 2526, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2290, + "id": 2527, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -21382,12 +25484,12 @@ ], "type": { "type": "reference", - "id": 2284, + "id": 2521, "name": "VizPoint" } }, { - "id": 2291, + "id": 2528, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -21403,7 +25505,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2284, + "id": 2521, "name": "VizPoint" } } @@ -21414,8 +25516,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2290, - 2291 + 2527, + 2528 ] } ] @@ -21423,7 +25525,7 @@ } }, { - "id": 2292, + "id": 2529, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -21438,14 +25540,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2293, + "id": 2530, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2301, + "id": 2538, "name": "columns", "kind": 1024, "kindString": "Property", @@ -21466,7 +25568,7 @@ } }, { - "id": 2302, + "id": 2539, "name": "data", "kind": 1024, "kindString": "Property", @@ -21487,7 +25589,7 @@ } }, { - "id": 2295, + "id": 2532, "name": "id", "kind": 1024, "kindString": "Property", @@ -21505,7 +25607,7 @@ } }, { - "id": 2294, + "id": 2531, "name": "name", "kind": 1024, "kindString": "Property", @@ -21523,7 +25625,7 @@ } }, { - "id": 2296, + "id": 2533, "name": "sources", "kind": 1024, "kindString": "Property", @@ -21538,14 +25640,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2297, + "id": 2534, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2298, + "id": 2535, "name": "header", "kind": 1024, "kindString": "Property", @@ -21560,14 +25662,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2299, + "id": 2536, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2300, + "id": 2537, "name": "guid", "kind": 1024, "kindString": "Property", @@ -21590,7 +25692,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2300 + 2537 ] } ] @@ -21603,7 +25705,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2298 + 2535 ] } ] @@ -21616,23 +25718,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2301, - 2302, - 2295, - 2294, - 2296 + 2538, + 2539, + 2532, + 2531, + 2533 ] } ], "indexSignature": { - "id": 2303, + "id": 2540, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2304, + "id": 2541, "name": "key", "kind": 32768, "flags": {}, @@ -21651,7 +25753,7 @@ } }, { - "id": 2305, + "id": 2542, "name": "session", "kind": 1024, "kindString": "Property", @@ -21665,12 +25767,12 @@ ], "type": { "type": "reference", - "id": 1444, + "id": 1681, "name": "SessionInterface" } }, { - "id": 2306, + "id": 2543, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -21695,10 +25797,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2288, - 2292, - 2305, - 2306 + 2525, + 2529, + 2542, + 2543 ] } ], @@ -21711,7 +25813,7 @@ ] }, { - "id": 2161, + "id": 2398, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -21721,7 +25823,7 @@ }, "children": [ { - "id": 2215, + "id": 2452, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -21744,7 +25846,7 @@ } }, { - "id": 2214, + "id": 2451, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -21767,7 +25869,7 @@ } }, { - "id": 2184, + "id": 2421, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -21790,7 +25892,7 @@ } }, { - "id": 2185, + "id": 2422, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -21813,7 +25915,7 @@ } }, { - "id": 2187, + "id": 2424, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -21836,7 +25938,7 @@ } }, { - "id": 2186, + "id": 2423, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -21859,7 +25961,7 @@ } }, { - "id": 2166, + "id": 2403, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -21882,7 +25984,7 @@ } }, { - "id": 2227, + "id": 2464, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -21905,7 +26007,7 @@ } }, { - "id": 2228, + "id": 2465, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -21928,7 +26030,7 @@ } }, { - "id": 2225, + "id": 2462, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -21951,7 +26053,7 @@ } }, { - "id": 2226, + "id": 2463, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -21974,7 +26076,7 @@ } }, { - "id": 2189, + "id": 2426, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -21997,7 +26099,7 @@ } }, { - "id": 2194, + "id": 2431, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -22020,7 +26122,7 @@ } }, { - "id": 2191, + "id": 2428, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -22043,7 +26145,7 @@ } }, { - "id": 2193, + "id": 2430, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -22066,7 +26168,7 @@ } }, { - "id": 2192, + "id": 2429, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -22089,7 +26191,7 @@ } }, { - "id": 2190, + "id": 2427, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -22112,7 +26214,7 @@ } }, { - "id": 2199, + "id": 2436, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -22135,7 +26237,7 @@ } }, { - "id": 2196, + "id": 2433, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -22158,7 +26260,7 @@ } }, { - "id": 2198, + "id": 2435, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -22181,7 +26283,7 @@ } }, { - "id": 2197, + "id": 2434, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -22204,7 +26306,7 @@ } }, { - "id": 2195, + "id": 2432, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -22227,7 +26329,7 @@ } }, { - "id": 2203, + "id": 2440, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -22250,7 +26352,7 @@ } }, { - "id": 2202, + "id": 2439, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -22273,7 +26375,7 @@ } }, { - "id": 2201, + "id": 2438, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -22296,7 +26398,7 @@ } }, { - "id": 2200, + "id": 2437, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -22319,7 +26421,7 @@ } }, { - "id": 2188, + "id": 2425, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -22342,7 +26444,7 @@ } }, { - "id": 2250, + "id": 2487, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -22365,7 +26467,7 @@ } }, { - "id": 2253, + "id": 2490, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -22388,7 +26490,7 @@ } }, { - "id": 2248, + "id": 2485, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -22411,7 +26513,7 @@ } }, { - "id": 2251, + "id": 2488, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -22434,7 +26536,7 @@ } }, { - "id": 2252, + "id": 2489, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -22457,7 +26559,7 @@ } }, { - "id": 2247, + "id": 2484, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -22480,7 +26582,7 @@ } }, { - "id": 2249, + "id": 2486, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -22503,7 +26605,7 @@ } }, { - "id": 2220, + "id": 2457, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -22526,7 +26628,7 @@ } }, { - "id": 2219, + "id": 2456, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -22549,7 +26651,7 @@ } }, { - "id": 2222, + "id": 2459, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -22572,7 +26674,7 @@ } }, { - "id": 2221, + "id": 2458, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -22595,7 +26697,7 @@ } }, { - "id": 2218, + "id": 2455, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -22618,7 +26720,7 @@ } }, { - "id": 2216, + "id": 2453, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -22641,7 +26743,7 @@ } }, { - "id": 2217, + "id": 2454, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -22664,7 +26766,7 @@ } }, { - "id": 2223, + "id": 2460, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -22687,7 +26789,7 @@ } }, { - "id": 2224, + "id": 2461, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -22710,7 +26812,7 @@ } }, { - "id": 2235, + "id": 2472, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -22733,7 +26835,7 @@ } }, { - "id": 2236, + "id": 2473, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -22756,7 +26858,7 @@ } }, { - "id": 2239, + "id": 2476, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -22779,7 +26881,7 @@ } }, { - "id": 2237, + "id": 2474, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -22802,7 +26904,7 @@ } }, { - "id": 2238, + "id": 2475, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -22825,7 +26927,7 @@ } }, { - "id": 2246, + "id": 2483, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -22848,7 +26950,7 @@ } }, { - "id": 2245, + "id": 2482, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -22871,7 +26973,7 @@ } }, { - "id": 2244, + "id": 2481, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -22894,7 +26996,7 @@ } }, { - "id": 2243, + "id": 2480, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -22917,7 +27019,7 @@ } }, { - "id": 2241, + "id": 2478, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -22940,7 +27042,7 @@ } }, { - "id": 2240, + "id": 2477, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -22963,7 +27065,7 @@ } }, { - "id": 2233, + "id": 2470, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -22986,7 +27088,7 @@ } }, { - "id": 2230, + "id": 2467, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -23009,7 +27111,7 @@ } }, { - "id": 2229, + "id": 2466, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -23032,7 +27134,7 @@ } }, { - "id": 2231, + "id": 2468, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -23055,7 +27157,7 @@ } }, { - "id": 2234, + "id": 2471, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -23078,7 +27180,7 @@ } }, { - "id": 2232, + "id": 2469, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -23101,7 +27203,7 @@ } }, { - "id": 2167, + "id": 2404, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -23124,7 +27226,7 @@ } }, { - "id": 2168, + "id": 2405, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -23147,7 +27249,7 @@ } }, { - "id": 2162, + "id": 2399, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -23170,7 +27272,7 @@ } }, { - "id": 2163, + "id": 2400, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -23193,7 +27295,7 @@ } }, { - "id": 2164, + "id": 2401, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -23216,7 +27318,7 @@ } }, { - "id": 2165, + "id": 2402, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -23239,7 +27341,7 @@ } }, { - "id": 2176, + "id": 2413, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -23262,7 +27364,7 @@ } }, { - "id": 2180, + "id": 2417, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -23285,7 +27387,7 @@ } }, { - "id": 2181, + "id": 2418, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -23308,7 +27410,7 @@ } }, { - "id": 2179, + "id": 2416, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -23331,7 +27433,7 @@ } }, { - "id": 2175, + "id": 2412, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -23354,7 +27456,7 @@ } }, { - "id": 2178, + "id": 2415, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -23377,7 +27479,7 @@ } }, { - "id": 2172, + "id": 2409, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -23400,7 +27502,7 @@ } }, { - "id": 2173, + "id": 2410, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -23423,7 +27525,7 @@ } }, { - "id": 2174, + "id": 2411, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -23446,7 +27548,7 @@ } }, { - "id": 2169, + "id": 2406, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -23469,7 +27571,7 @@ } }, { - "id": 2170, + "id": 2407, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -23492,7 +27594,7 @@ } }, { - "id": 2171, + "id": 2408, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -23515,7 +27617,7 @@ } }, { - "id": 2177, + "id": 2414, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -23538,7 +27640,7 @@ } }, { - "id": 2242, + "id": 2479, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -23561,7 +27663,7 @@ } }, { - "id": 2182, + "id": 2419, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -23584,7 +27686,7 @@ } }, { - "id": 2183, + "id": 2420, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -23607,7 +27709,7 @@ } }, { - "id": 2212, + "id": 2449, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -23630,7 +27732,7 @@ } }, { - "id": 2210, + "id": 2447, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -23653,7 +27755,7 @@ } }, { - "id": 2211, + "id": 2448, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -23676,7 +27778,7 @@ } }, { - "id": 2207, + "id": 2444, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -23699,7 +27801,7 @@ } }, { - "id": 2208, + "id": 2445, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -23722,7 +27824,7 @@ } }, { - "id": 2209, + "id": 2446, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -23745,7 +27847,7 @@ } }, { - "id": 2213, + "id": 2450, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -23768,7 +27870,7 @@ } }, { - "id": 2204, + "id": 2441, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -23791,7 +27893,7 @@ } }, { - "id": 2205, + "id": 2442, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -23814,7 +27916,7 @@ } }, { - "id": 2206, + "id": 2443, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -23842,98 +27944,98 @@ "title": "Properties", "kind": 1024, "children": [ - 2215, - 2214, - 2184, - 2185, - 2187, - 2186, - 2166, - 2227, - 2228, - 2225, - 2226, - 2189, - 2194, - 2191, - 2193, - 2192, - 2190, - 2199, - 2196, - 2198, - 2197, - 2195, - 2203, - 2202, - 2201, - 2200, - 2188, - 2250, - 2253, - 2248, - 2251, - 2252, - 2247, - 2249, - 2220, - 2219, - 2222, - 2221, - 2218, - 2216, - 2217, - 2223, - 2224, - 2235, - 2236, - 2239, - 2237, - 2238, - 2246, - 2245, - 2244, - 2243, - 2241, - 2240, - 2233, - 2230, - 2229, - 2231, - 2234, - 2232, - 2167, - 2168, - 2162, - 2163, - 2164, - 2165, - 2176, - 2180, - 2181, - 2179, - 2175, - 2178, - 2172, - 2173, - 2174, - 2169, - 2170, - 2171, - 2177, - 2242, - 2182, - 2183, - 2212, - 2210, - 2211, - 2207, - 2208, - 2209, - 2213, - 2204, - 2205, - 2206 + 2452, + 2451, + 2421, + 2422, + 2424, + 2423, + 2403, + 2464, + 2465, + 2462, + 2463, + 2426, + 2431, + 2428, + 2430, + 2429, + 2427, + 2436, + 2433, + 2435, + 2434, + 2432, + 2440, + 2439, + 2438, + 2437, + 2425, + 2487, + 2490, + 2485, + 2488, + 2489, + 2484, + 2486, + 2457, + 2456, + 2459, + 2458, + 2455, + 2453, + 2454, + 2460, + 2461, + 2472, + 2473, + 2476, + 2474, + 2475, + 2483, + 2482, + 2481, + 2480, + 2478, + 2477, + 2470, + 2467, + 2466, + 2468, + 2471, + 2469, + 2404, + 2405, + 2399, + 2400, + 2401, + 2402, + 2413, + 2417, + 2418, + 2416, + 2412, + 2415, + 2409, + 2410, + 2411, + 2406, + 2407, + 2408, + 2414, + 2479, + 2419, + 2420, + 2449, + 2447, + 2448, + 2444, + 2445, + 2446, + 2450, + 2441, + 2442, + 2443 ] } ], @@ -23946,7 +28048,7 @@ ] }, { - "id": 2149, + "id": 2386, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -23956,7 +28058,7 @@ }, "children": [ { - "id": 2151, + "id": 2388, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -23972,12 +28074,12 @@ ], "type": { "type": "reference", - "id": 2152, + "id": 2389, "name": "customCssInterface" } }, { - "id": 2150, + "id": 2387, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -24002,8 +28104,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2151, - 2150 + 2388, + 2387 ] } ], @@ -24016,7 +28118,7 @@ ] }, { - "id": 2139, + "id": 2376, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -24032,7 +28134,7 @@ }, "children": [ { - "id": 2141, + "id": 2378, "name": "content", "kind": 1024, "kindString": "Property", @@ -24049,14 +28151,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2142, + "id": 2379, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2144, + "id": 2381, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -24086,7 +28188,7 @@ } }, { - "id": 2145, + "id": 2382, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -24106,7 +28208,7 @@ } }, { - "id": 2143, + "id": 2380, "name": "strings", "kind": 1024, "kindString": "Property", @@ -24149,21 +28251,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2144, - 2145, - 2143 + 2381, + 2382, + 2380 ] } ], "indexSignature": { - "id": 2146, + "id": 2383, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2147, + "id": 2384, "name": "key", "kind": 32768, "flags": {}, @@ -24182,7 +28284,7 @@ } }, { - "id": 2148, + "id": 2385, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -24202,7 +28304,7 @@ } }, { - "id": 2140, + "id": 2377, "name": "style", "kind": 1024, "kindString": "Property", @@ -24218,7 +28320,7 @@ ], "type": { "type": "reference", - "id": 2149, + "id": 2386, "name": "CustomStyles" } } @@ -24228,9 +28330,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2141, - 2148, - 2140 + 2378, + 2385, + 2377 ] } ], @@ -24243,7 +28345,7 @@ ] }, { - "id": 1775, + "id": 2012, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -24259,7 +28361,7 @@ }, "children": [ { - "id": 1817, + "id": 2054, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -24289,20 +28391,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1818, + "id": 2055, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1819, + "id": 2056, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1820, + "id": 2057, "name": "key", "kind": 32768, "flags": {}, @@ -24334,7 +28436,7 @@ } }, { - "id": 1778, + "id": 2015, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -24357,7 +28459,7 @@ } }, { - "id": 1799, + "id": 2036, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -24399,7 +28501,7 @@ } }, { - "id": 1801, + "id": 2038, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -24428,7 +28530,7 @@ } }, { - "id": 1777, + "id": 2014, "name": "authType", "kind": 1024, "kindString": "Property", @@ -24445,12 +28547,12 @@ ], "type": { "type": "reference", - "id": 1463, + "id": 1700, "name": "AuthType" } }, { - "id": 1790, + "id": 2027, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -24479,7 +28581,7 @@ } }, { - "id": 1802, + "id": 2039, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -24512,7 +28614,7 @@ } }, { - "id": 1793, + "id": 2030, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -24541,7 +28643,7 @@ } }, { - "id": 1814, + "id": 2051, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -24570,7 +28672,7 @@ } }, { - "id": 1821, + "id": 2058, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -24613,7 +28715,7 @@ } }, { - "id": 1798, + "id": 2035, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -24638,12 +28740,12 @@ ], "type": { "type": "reference", - "id": 2139, + "id": 2376, "name": "CustomisationsInterface" } }, { - "id": 1812, + "id": 2049, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -24672,7 +28774,7 @@ } }, { - "id": 1795, + "id": 2032, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -24702,7 +28804,7 @@ } }, { - "id": 1816, + "id": 2053, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -24731,7 +28833,7 @@ } }, { - "id": 1791, + "id": 2028, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -24764,7 +28866,7 @@ } }, { - "id": 1822, + "id": 2059, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -24784,7 +28886,7 @@ } }, { - "id": 1811, + "id": 2048, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -24813,7 +28915,7 @@ } }, { - "id": 1789, + "id": 2026, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -24842,7 +28944,7 @@ } }, { - "id": 1784, + "id": 2021, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -24876,7 +28978,7 @@ } }, { - "id": 1810, + "id": 2047, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -24909,12 +29011,12 @@ ], "type": { "type": "reference", - "id": 2257, + "id": 2494, "name": "LogLevel" } }, { - "id": 1792, + "id": 2029, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -24943,7 +29045,7 @@ } }, { - "id": 1783, + "id": 2020, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -24976,7 +29078,7 @@ } }, { - "id": 1813, + "id": 2050, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -25005,7 +29107,7 @@ } }, { - "id": 1782, + "id": 2019, "name": "password", "kind": 1024, "kindString": "Property", @@ -25029,7 +29131,7 @@ } }, { - "id": 1808, + "id": 2045, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -25058,7 +29160,7 @@ } }, { - "id": 1794, + "id": 2031, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -25091,7 +29193,7 @@ } }, { - "id": 1785, + "id": 2022, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -25121,7 +29223,7 @@ } }, { - "id": 1787, + "id": 2024, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -25150,7 +29252,7 @@ } }, { - "id": 1809, + "id": 2046, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -25179,7 +29281,7 @@ } }, { - "id": 1788, + "id": 2025, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -25208,7 +29310,7 @@ } }, { - "id": 1797, + "id": 2034, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -25231,7 +29333,7 @@ } }, { - "id": 1796, + "id": 2033, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -25260,7 +29362,7 @@ } }, { - "id": 1776, + "id": 2013, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -25281,7 +29383,7 @@ } }, { - "id": 1800, + "id": 2037, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -25304,7 +29406,7 @@ } }, { - "id": 1781, + "id": 2018, "name": "username", "kind": 1024, "kindString": "Property", @@ -25327,7 +29429,7 @@ } }, { - "id": 1779, + "id": 2016, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -25343,7 +29445,7 @@ ], "signatures": [ { - "id": 1780, + "id": 2017, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -25371,48 +29473,48 @@ "title": "Properties", "kind": 1024, "children": [ - 1817, - 1778, - 1799, - 1801, - 1777, - 1790, - 1802, - 1793, - 1814, - 1821, - 1798, - 1812, - 1795, - 1816, - 1791, - 1822, - 1811, - 1789, - 1784, - 1810, - 1792, - 1783, - 1813, - 1782, - 1808, - 1794, - 1785, - 1787, - 1809, - 1788, - 1797, - 1796, - 1776, - 1800, - 1781 + 2054, + 2015, + 2036, + 2038, + 2014, + 2027, + 2039, + 2030, + 2051, + 2058, + 2035, + 2049, + 2032, + 2053, + 2028, + 2059, + 2048, + 2026, + 2021, + 2047, + 2029, + 2020, + 2050, + 2019, + 2045, + 2031, + 2022, + 2024, + 2046, + 2025, + 2034, + 2033, + 2013, + 2037, + 2018 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1779 + 2016 ] } ], @@ -25425,7 +29527,7 @@ ] }, { - "id": 2101, + "id": 2338, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -25441,7 +29543,7 @@ }, "children": [ { - "id": 2103, + "id": 2340, "name": "height", "kind": 1024, "kindString": "Property", @@ -25473,7 +29575,7 @@ } }, { - "id": 2104, + "id": 2341, "name": "loading", "kind": 1024, "kindString": "Property", @@ -25509,7 +29611,7 @@ } }, { - "id": 2102, + "id": 2339, "name": "width", "kind": 1024, "kindString": "Property", @@ -25546,9 +29648,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2103, - 2104, - 2102 + 2340, + 2341, + 2339 ] } ], @@ -25560,7 +29662,7 @@ } ], "indexSignature": { - "id": 2105, + "id": 2342, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -25570,7 +29672,7 @@ }, "parameters": [ { - "id": 2106, + "id": 2343, "name": "key", "kind": 32768, "flags": {}, @@ -25604,7 +29706,7 @@ } }, { - "id": 1915, + "id": 2152, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -25620,7 +29722,7 @@ }, "children": [ { - "id": 1926, + "id": 2163, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -25653,7 +29755,7 @@ } }, { - "id": 1944, + "id": 2181, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -25683,20 +29785,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1945, + "id": 2182, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1946, + "id": 2183, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1947, + "id": 2184, "name": "key", "kind": 32768, "flags": {}, @@ -25732,7 +29834,7 @@ } }, { - "id": 1977, + "id": 2214, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -25773,7 +29875,7 @@ } }, { - "id": 1957, + "id": 2194, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -25802,7 +29904,7 @@ ], "type": { "type": "reference", - "id": 1771, + "id": 2008, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -25811,7 +29913,7 @@ } }, { - "id": 1942, + "id": 2179, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -25848,7 +29950,7 @@ } }, { - "id": 1943, + "id": 2180, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -25877,7 +29979,7 @@ ], "type": { "type": "reference", - "id": 2139, + "id": 2376, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -25886,7 +29988,7 @@ } }, { - "id": 1978, + "id": 2215, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -25927,7 +30029,7 @@ } }, { - "id": 1917, + "id": 2154, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -25964,7 +30066,7 @@ } }, { - "id": 1960, + "id": 2197, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -26001,7 +30103,7 @@ } }, { - "id": 1950, + "id": 2187, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -26038,7 +30140,7 @@ } }, { - "id": 1949, + "id": 2186, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -26069,7 +30171,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -26079,7 +30181,7 @@ } }, { - "id": 1973, + "id": 2210, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -26120,7 +30222,7 @@ } }, { - "id": 1933, + "id": 2170, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -26157,7 +30259,7 @@ } }, { - "id": 1932, + "id": 2169, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -26194,7 +30296,7 @@ } }, { - "id": 1979, + "id": 2216, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -26235,7 +30337,7 @@ } }, { - "id": 1976, + "id": 2213, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -26272,7 +30374,7 @@ } }, { - "id": 1918, + "id": 2155, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -26308,7 +30410,7 @@ } }, { - "id": 1972, + "id": 2209, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -26346,7 +30448,7 @@ } }, { - "id": 1975, + "id": 2212, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -26384,7 +30486,7 @@ } }, { - "id": 1962, + "id": 2199, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -26421,7 +30523,7 @@ } }, { - "id": 1965, + "id": 2202, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -26450,7 +30552,7 @@ ], "type": { "type": "reference", - "id": 2101, + "id": 2338, "name": "FrameParams" }, "inheritedFrom": { @@ -26459,7 +30561,7 @@ } }, { - "id": 1916, + "id": 2153, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -26493,7 +30595,7 @@ } }, { - "id": 1951, + "id": 2188, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -26528,7 +30630,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -26538,7 +30640,7 @@ } }, { - "id": 1948, + "id": 2185, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -26570,7 +30672,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2314, + "id": 2551, "name": "ListPageColumns" } }, @@ -26580,7 +30682,7 @@ } }, { - "id": 1953, + "id": 2190, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -26620,7 +30722,7 @@ } }, { - "id": 1938, + "id": 2175, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -26657,7 +30759,7 @@ } }, { - "id": 1928, + "id": 2165, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -26694,7 +30796,7 @@ } }, { - "id": 1927, + "id": 2164, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -26727,7 +30829,7 @@ } }, { - "id": 1970, + "id": 2207, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -26764,7 +30866,7 @@ } }, { - "id": 1935, + "id": 2172, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -26801,7 +30903,7 @@ } }, { - "id": 1931, + "id": 2168, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -26834,7 +30936,7 @@ } }, { - "id": 1958, + "id": 2195, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -26871,7 +30973,7 @@ } }, { - "id": 1919, + "id": 2156, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -26904,7 +31006,7 @@ } }, { - "id": 1925, + "id": 2162, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -26937,7 +31039,7 @@ } }, { - "id": 1956, + "id": 2193, "name": "locale", "kind": 1024, "kindString": "Property", @@ -26974,7 +31076,7 @@ } }, { - "id": 1961, + "id": 2198, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -27011,7 +31113,7 @@ } }, { - "id": 1963, + "id": 2200, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -27048,7 +31150,7 @@ } }, { - "id": 1922, + "id": 2159, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -27081,7 +31183,7 @@ } }, { - "id": 1968, + "id": 2205, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -27112,7 +31214,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1475, + "id": 1712, "name": "RuntimeFilter" } }, @@ -27122,7 +31224,7 @@ } }, { - "id": 1969, + "id": 2206, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -27153,7 +31255,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2254, + "id": 2491, "name": "RuntimeParameter" } }, @@ -27163,7 +31265,7 @@ } }, { - "id": 1955, + "id": 2192, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -27200,7 +31302,7 @@ } }, { - "id": 1930, + "id": 2167, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -27237,7 +31339,7 @@ } }, { - "id": 1937, + "id": 2174, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -27274,7 +31376,7 @@ } }, { - "id": 1929, + "id": 2166, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -27311,7 +31413,7 @@ } }, { - "id": 1936, + "id": 2173, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -27348,7 +31450,7 @@ } }, { - "id": 1934, + "id": 2171, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -27382,7 +31484,7 @@ } }, { - "id": 1952, + "id": 2189, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -27418,7 +31520,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -27428,7 +31530,7 @@ } }, { - "id": 1954, + "id": 2191, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -27469,7 +31571,7 @@ } }, { - "id": 1923, + "id": 2160, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -27505,7 +31607,7 @@ } }, { - "id": 1921, + "id": 2158, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -27543,56 +31645,56 @@ "title": "Properties", "kind": 1024, "children": [ - 1926, - 1944, - 1977, - 1957, - 1942, - 1943, - 1978, - 1917, - 1960, - 1950, - 1949, - 1973, - 1933, - 1932, - 1979, - 1976, - 1918, - 1972, - 1975, - 1962, - 1965, - 1916, - 1951, - 1948, - 1953, - 1938, - 1928, - 1927, - 1970, - 1935, - 1931, - 1958, - 1919, - 1925, - 1956, - 1961, - 1963, - 1922, - 1968, - 1969, - 1955, - 1930, - 1937, - 1929, - 1936, - 1934, - 1952, - 1954, - 1923, - 1921 + 2163, + 2181, + 2214, + 2194, + 2179, + 2180, + 2215, + 2154, + 2197, + 2187, + 2186, + 2210, + 2170, + 2169, + 2216, + 2213, + 2155, + 2209, + 2212, + 2199, + 2202, + 2153, + 2188, + 2185, + 2190, + 2175, + 2165, + 2164, + 2207, + 2172, + 2168, + 2195, + 2156, + 2162, + 2193, + 2198, + 2200, + 2159, + 2205, + 2206, + 2192, + 2167, + 2174, + 2166, + 2173, + 2171, + 2189, + 2191, + 2160, + 2158 ] } ], @@ -27634,7 +31736,7 @@ ] }, { - "id": 1475, + "id": 1712, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -27644,7 +31746,7 @@ }, "children": [ { - "id": 1476, + "id": 1713, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -27665,7 +31767,7 @@ } }, { - "id": 1477, + "id": 1714, "name": "operator", "kind": 1024, "kindString": "Property", @@ -27682,12 +31784,12 @@ ], "type": { "type": "reference", - "id": 1479, + "id": 1716, "name": "RuntimeFilterOp" } }, { - "id": 1478, + "id": 1715, "name": "values", "kind": 1024, "kindString": "Property", @@ -27733,9 +31835,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1476, - 1477, - 1478 + 1713, + 1714, + 1715 ] } ], @@ -27748,7 +31850,7 @@ ] }, { - "id": 2254, + "id": 2491, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -27758,7 +31860,7 @@ }, "children": [ { - "id": 2255, + "id": 2492, "name": "name", "kind": 1024, "kindString": "Property", @@ -27779,7 +31881,7 @@ } }, { - "id": 2256, + "id": 2493, "name": "value", "kind": 1024, "kindString": "Property", @@ -27818,8 +31920,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2255, - 2256 + 2492, + 2493 ] } ], @@ -27832,7 +31934,7 @@ ] }, { - "id": 1980, + "id": 2217, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -27852,7 +31954,7 @@ }, "children": [ { - "id": 1993, + "id": 2230, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -27882,20 +31984,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1994, + "id": 2231, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1995, + "id": 2232, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1996, + "id": 2233, "name": "key", "kind": 32768, "flags": {}, @@ -27931,7 +32033,7 @@ } }, { - "id": 2024, + "id": 2261, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -27972,7 +32074,7 @@ } }, { - "id": 2004, + "id": 2241, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -28001,7 +32103,7 @@ ], "type": { "type": "reference", - "id": 1771, + "id": 2008, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -28010,7 +32112,7 @@ } }, { - "id": 1992, + "id": 2229, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -28039,7 +32141,7 @@ ], "type": { "type": "reference", - "id": 2139, + "id": 2376, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -28048,7 +32150,7 @@ } }, { - "id": 2025, + "id": 2262, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -28089,7 +32191,7 @@ } }, { - "id": 1990, + "id": 2227, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -28112,7 +32214,7 @@ } }, { - "id": 2007, + "id": 2244, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -28149,7 +32251,7 @@ } }, { - "id": 1985, + "id": 2222, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -28178,7 +32280,7 @@ } }, { - "id": 1999, + "id": 2236, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -28215,7 +32317,7 @@ } }, { - "id": 1998, + "id": 2235, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -28246,7 +32348,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -28256,7 +32358,7 @@ } }, { - "id": 2020, + "id": 2257, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -28297,7 +32399,7 @@ } }, { - "id": 2026, + "id": 2263, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -28338,7 +32440,7 @@ } }, { - "id": 2023, + "id": 2260, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -28375,7 +32477,7 @@ } }, { - "id": 2019, + "id": 2256, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -28413,7 +32515,7 @@ } }, { - "id": 2022, + "id": 2259, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -28451,7 +32553,7 @@ } }, { - "id": 2009, + "id": 2246, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -28488,7 +32590,7 @@ } }, { - "id": 2012, + "id": 2249, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -28517,7 +32619,7 @@ ], "type": { "type": "reference", - "id": 2101, + "id": 2338, "name": "FrameParams" }, "inheritedFrom": { @@ -28526,7 +32628,7 @@ } }, { - "id": 2000, + "id": 2237, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -28561,7 +32663,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -28571,7 +32673,7 @@ } }, { - "id": 1997, + "id": 2234, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -28603,7 +32705,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2314, + "id": 2551, "name": "ListPageColumns" } }, @@ -28613,7 +32715,7 @@ } }, { - "id": 1987, + "id": 2224, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -28642,7 +32744,7 @@ } }, { - "id": 1984, + "id": 2221, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -28671,7 +32773,7 @@ } }, { - "id": 1989, + "id": 2226, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -28700,7 +32802,7 @@ } }, { - "id": 1983, + "id": 2220, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -28733,7 +32835,7 @@ } }, { - "id": 1986, + "id": 2223, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -28762,7 +32864,7 @@ } }, { - "id": 2017, + "id": 2254, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -28799,7 +32901,7 @@ } }, { - "id": 2005, + "id": 2242, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -28836,7 +32938,7 @@ } }, { - "id": 2003, + "id": 2240, "name": "locale", "kind": 1024, "kindString": "Property", @@ -28873,7 +32975,7 @@ } }, { - "id": 2008, + "id": 2245, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -28910,7 +33012,7 @@ } }, { - "id": 2010, + "id": 2247, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -28947,7 +33049,7 @@ } }, { - "id": 2015, + "id": 2252, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -28978,7 +33080,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1475, + "id": 1712, "name": "RuntimeFilter" } }, @@ -28988,7 +33090,7 @@ } }, { - "id": 2016, + "id": 2253, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -29019,7 +33121,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2254, + "id": 2491, "name": "RuntimeParameter" } }, @@ -29029,7 +33131,7 @@ } }, { - "id": 1991, + "id": 2228, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -29063,7 +33165,7 @@ } }, { - "id": 2002, + "id": 2239, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -29100,7 +33202,7 @@ } }, { - "id": 1981, + "id": 2218, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -29129,7 +33231,7 @@ } }, { - "id": 1988, + "id": 2225, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -29158,7 +33260,7 @@ } }, { - "id": 2001, + "id": 2238, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -29194,7 +33296,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -29209,42 +33311,42 @@ "title": "Properties", "kind": 1024, "children": [ - 1993, - 2024, - 2004, - 1992, - 2025, - 1990, - 2007, - 1985, - 1999, - 1998, - 2020, - 2026, - 2023, - 2019, - 2022, - 2009, - 2012, - 2000, - 1997, - 1987, - 1984, - 1989, - 1983, - 1986, - 2017, - 2005, - 2003, - 2008, - 2010, - 2015, - 2016, - 1991, - 2002, - 1981, - 1988, - 2001 + 2230, + 2261, + 2241, + 2229, + 2262, + 2227, + 2244, + 2222, + 2236, + 2235, + 2257, + 2263, + 2260, + 2256, + 2259, + 2246, + 2249, + 2237, + 2234, + 2224, + 2221, + 2226, + 2220, + 2223, + 2254, + 2242, + 2240, + 2245, + 2247, + 2252, + 2253, + 2228, + 2239, + 2218, + 2225, + 2238 ] } ], @@ -29294,7 +33396,7 @@ ] }, { - "id": 1877, + "id": 2114, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -29309,7 +33411,7 @@ }, "children": [ { - "id": 1884, + "id": 2121, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -29339,20 +33441,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1885, + "id": 2122, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1886, + "id": 2123, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1887, + "id": 2124, "name": "key", "kind": 32768, "flags": {}, @@ -29388,7 +33490,7 @@ } }, { - "id": 1913, + "id": 2150, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -29429,7 +33531,7 @@ } }, { - "id": 1894, + "id": 2131, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -29458,7 +33560,7 @@ ], "type": { "type": "reference", - "id": 1771, + "id": 2008, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -29467,7 +33569,7 @@ } }, { - "id": 1883, + "id": 2120, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -29496,7 +33598,7 @@ ], "type": { "type": "reference", - "id": 2139, + "id": 2376, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -29505,7 +33607,7 @@ } }, { - "id": 1879, + "id": 2116, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -29538,7 +33640,7 @@ } }, { - "id": 1878, + "id": 2115, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -29578,7 +33680,7 @@ } }, { - "id": 1897, + "id": 2134, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -29615,7 +33717,7 @@ } }, { - "id": 1890, + "id": 2127, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -29652,7 +33754,7 @@ } }, { - "id": 1889, + "id": 2126, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -29683,7 +33785,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -29693,7 +33795,7 @@ } }, { - "id": 1909, + "id": 2146, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -29734,7 +33836,7 @@ } }, { - "id": 1914, + "id": 2151, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -29775,7 +33877,7 @@ } }, { - "id": 1912, + "id": 2149, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -29812,7 +33914,7 @@ } }, { - "id": 1908, + "id": 2145, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -29850,7 +33952,7 @@ } }, { - "id": 1911, + "id": 2148, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -29888,7 +33990,7 @@ } }, { - "id": 1882, + "id": 2119, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -29921,7 +34023,7 @@ } }, { - "id": 1899, + "id": 2136, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -29958,7 +34060,7 @@ } }, { - "id": 1902, + "id": 2139, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -29987,7 +34089,7 @@ ], "type": { "type": "reference", - "id": 2101, + "id": 2338, "name": "FrameParams" }, "inheritedFrom": { @@ -29996,7 +34098,7 @@ } }, { - "id": 1891, + "id": 2128, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -30031,7 +34133,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -30041,7 +34143,7 @@ } }, { - "id": 1888, + "id": 2125, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -30073,7 +34175,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2314, + "id": 2551, "name": "ListPageColumns" } }, @@ -30083,7 +34185,7 @@ } }, { - "id": 1906, + "id": 2143, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -30120,7 +34222,7 @@ } }, { - "id": 1895, + "id": 2132, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -30157,7 +34259,7 @@ } }, { - "id": 1893, + "id": 2130, "name": "locale", "kind": 1024, "kindString": "Property", @@ -30194,7 +34296,7 @@ } }, { - "id": 1898, + "id": 2135, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -30231,7 +34333,7 @@ } }, { - "id": 1900, + "id": 2137, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -30268,7 +34370,7 @@ } }, { - "id": 1905, + "id": 2142, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -30299,7 +34401,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2254, + "id": 2491, "name": "RuntimeParameter" } }, @@ -30309,7 +34411,7 @@ } }, { - "id": 1881, + "id": 2118, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -30343,7 +34445,7 @@ } }, { - "id": 1880, + "id": 2117, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -30376,7 +34478,7 @@ } }, { - "id": 1892, + "id": 2129, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -30412,7 +34514,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -30427,34 +34529,34 @@ "title": "Properties", "kind": 1024, "children": [ - 1884, - 1913, - 1894, - 1883, - 1879, - 1878, - 1897, - 1890, - 1889, - 1909, - 1914, - 1912, - 1908, - 1911, - 1882, - 1899, - 1902, - 1891, - 1888, - 1906, - 1895, - 1893, - 1898, - 1900, - 1905, - 1881, - 1880, - 1892 + 2121, + 2150, + 2131, + 2120, + 2116, + 2115, + 2134, + 2127, + 2126, + 2146, + 2151, + 2149, + 2145, + 2148, + 2119, + 2136, + 2139, + 2128, + 2125, + 2143, + 2132, + 2130, + 2135, + 2137, + 2142, + 2118, + 2117, + 2129 ] } ], @@ -30516,7 +34618,7 @@ ] }, { - "id": 1823, + "id": 2060, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -30532,7 +34634,7 @@ }, "children": [ { - "id": 1843, + "id": 2080, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -30562,20 +34664,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1844, + "id": 2081, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1845, + "id": 2082, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1846, + "id": 2083, "name": "key", "kind": 32768, "flags": {}, @@ -30611,7 +34713,7 @@ } }, { - "id": 1835, + "id": 2072, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -30644,7 +34746,7 @@ } }, { - "id": 1825, + "id": 2062, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -30677,7 +34779,7 @@ } }, { - "id": 1824, + "id": 2061, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -30710,7 +34812,7 @@ } }, { - "id": 1874, + "id": 2111, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -30751,7 +34853,7 @@ } }, { - "id": 1838, + "id": 2075, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -30788,7 +34890,7 @@ } }, { - "id": 1854, + "id": 2091, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -30817,7 +34919,7 @@ ], "type": { "type": "reference", - "id": 1771, + "id": 2008, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -30826,7 +34928,7 @@ } }, { - "id": 1842, + "id": 2079, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -30855,7 +34957,7 @@ ], "type": { "type": "reference", - "id": 2139, + "id": 2376, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -30864,7 +34966,7 @@ } }, { - "id": 1840, + "id": 2077, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -30901,7 +35003,7 @@ } }, { - "id": 1875, + "id": 2112, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -30942,7 +35044,7 @@ } }, { - "id": 1831, + "id": 2068, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -30975,7 +35077,7 @@ } }, { - "id": 1830, + "id": 2067, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -31011,7 +35113,7 @@ } }, { - "id": 1857, + "id": 2094, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -31048,7 +35150,7 @@ } }, { - "id": 1849, + "id": 2086, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -31085,7 +35187,7 @@ } }, { - "id": 1848, + "id": 2085, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -31116,7 +35218,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -31126,7 +35228,7 @@ } }, { - "id": 1870, + "id": 2107, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -31167,7 +35269,7 @@ } }, { - "id": 1876, + "id": 2113, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -31208,7 +35310,7 @@ } }, { - "id": 1828, + "id": 2065, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -31241,7 +35343,7 @@ } }, { - "id": 1873, + "id": 2110, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -31278,7 +35380,7 @@ } }, { - "id": 1869, + "id": 2106, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -31316,7 +35418,7 @@ } }, { - "id": 1872, + "id": 2109, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -31354,7 +35456,7 @@ } }, { - "id": 1834, + "id": 2071, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -31387,7 +35489,7 @@ } }, { - "id": 1859, + "id": 2096, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -31424,7 +35526,7 @@ } }, { - "id": 1841, + "id": 2078, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -31461,7 +35563,7 @@ } }, { - "id": 1829, + "id": 2066, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -31494,7 +35596,7 @@ } }, { - "id": 1862, + "id": 2099, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -31523,7 +35625,7 @@ ], "type": { "type": "reference", - "id": 2101, + "id": 2338, "name": "FrameParams" }, "inheritedFrom": { @@ -31532,7 +35634,7 @@ } }, { - "id": 1850, + "id": 2087, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -31567,7 +35669,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -31577,7 +35679,7 @@ } }, { - "id": 1847, + "id": 2084, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -31609,7 +35711,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2314, + "id": 2551, "name": "ListPageColumns" } }, @@ -31619,7 +35721,7 @@ } }, { - "id": 1826, + "id": 2063, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -31652,7 +35754,7 @@ } }, { - "id": 1827, + "id": 2064, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -31685,7 +35787,7 @@ } }, { - "id": 1836, + "id": 2073, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -31718,7 +35820,7 @@ } }, { - "id": 1867, + "id": 2104, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -31755,7 +35857,7 @@ } }, { - "id": 1839, + "id": 2076, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -31784,7 +35886,7 @@ } }, { - "id": 1855, + "id": 2092, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -31821,7 +35923,7 @@ } }, { - "id": 1853, + "id": 2090, "name": "locale", "kind": 1024, "kindString": "Property", @@ -31858,7 +35960,7 @@ } }, { - "id": 1858, + "id": 2095, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -31895,7 +35997,7 @@ } }, { - "id": 1860, + "id": 2097, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -31932,7 +36034,7 @@ } }, { - "id": 1865, + "id": 2102, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -31963,7 +36065,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1475, + "id": 1712, "name": "RuntimeFilter" } }, @@ -31973,7 +36075,7 @@ } }, { - "id": 1866, + "id": 2103, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -32004,7 +36106,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2254, + "id": 2491, "name": "RuntimeParameter" } }, @@ -32014,7 +36116,7 @@ } }, { - "id": 1833, + "id": 2070, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -32044,7 +36146,7 @@ } }, { - "id": 1832, + "id": 2069, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -32073,7 +36175,7 @@ } }, { - "id": 1852, + "id": 2089, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -32110,7 +36212,7 @@ } }, { - "id": 1837, + "id": 2074, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -32139,7 +36241,7 @@ } }, { - "id": 1851, + "id": 2088, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -32175,7 +36277,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -32190,50 +36292,50 @@ "title": "Properties", "kind": 1024, "children": [ - 1843, - 1835, - 1825, - 1824, - 1874, - 1838, - 1854, - 1842, - 1840, - 1875, - 1831, - 1830, - 1857, - 1849, - 1848, - 1870, - 1876, - 1828, - 1873, - 1869, - 1872, - 1834, - 1859, - 1841, - 1829, - 1862, - 1850, - 1847, - 1826, - 1827, - 1836, - 1867, - 1839, - 1855, - 1853, - 1858, - 1860, - 1865, - 1866, - 1833, - 1832, - 1852, - 1837, - 1851 + 2080, + 2072, + 2062, + 2061, + 2111, + 2075, + 2091, + 2079, + 2077, + 2112, + 2068, + 2067, + 2094, + 2086, + 2085, + 2107, + 2113, + 2065, + 2110, + 2106, + 2109, + 2071, + 2096, + 2078, + 2066, + 2099, + 2087, + 2084, + 2063, + 2064, + 2073, + 2104, + 2076, + 2092, + 2090, + 2095, + 2097, + 2102, + 2103, + 2070, + 2069, + 2089, + 2074, + 2088 ] } ], @@ -32283,14 +36385,14 @@ ] }, { - "id": 1444, + "id": 1681, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1447, + "id": 1684, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -32305,14 +36407,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1448, + "id": 1685, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1450, + "id": 1687, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -32330,7 +36432,7 @@ } }, { - "id": 1449, + "id": 1686, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -32353,8 +36455,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1450, - 1449 + 1687, + 1686 ] } ] @@ -32362,7 +36464,7 @@ } }, { - "id": 1446, + "id": 1683, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -32380,7 +36482,7 @@ } }, { - "id": 1445, + "id": 1682, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -32403,9 +36505,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1447, - 1446, - 1445 + 1684, + 1683, + 1682 ] } ], @@ -32583,7 +36685,7 @@ ], "type": { "type": "reference", - "id": 1771, + "id": 2008, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -32621,7 +36723,7 @@ ], "type": { "type": "reference", - "id": 2139, + "id": 2376, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -32776,7 +36878,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -33047,7 +37149,7 @@ ], "type": { "type": "reference", - "id": 2101, + "id": 2338, "name": "FrameParams" }, "inheritedFrom": { @@ -33091,7 +37193,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -33132,7 +37234,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2107, + "id": 2344, "name": "HomeLeftNavItem" } }, @@ -33174,7 +37276,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2115, + "id": 2352, "name": "HomepageModule" } }, @@ -33216,7 +37318,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2314, + "id": 2551, "name": "ListPageColumns" } }, @@ -33483,7 +37585,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2115, + "id": 2352, "name": "HomepageModule" } }, @@ -33524,7 +37626,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1475, + "id": 1712, "name": "RuntimeFilter" } }, @@ -33565,7 +37667,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2254, + "id": 2491, "name": "RuntimeParameter" } }, @@ -33648,7 +37750,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -33775,7 +37877,7 @@ ] }, { - "id": 1256, + "id": 1299, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -33791,7 +37893,7 @@ }, "children": [ { - "id": 1276, + "id": 1319, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33821,20 +37923,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1277, + "id": 1320, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1278, + "id": 1321, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1279, + "id": 1322, "name": "key", "kind": 32768, "flags": {}, @@ -33870,7 +37972,7 @@ } }, { - "id": 1297, + "id": 1340, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33911,7 +38013,7 @@ } }, { - "id": 1282, + "id": 1325, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33940,7 +38042,7 @@ ], "type": { "type": "reference", - "id": 1771, + "id": 2008, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33949,7 +38051,7 @@ } }, { - "id": 1280, + "id": 1323, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33978,7 +38080,7 @@ ], "type": { "type": "reference", - "id": 2139, + "id": 2376, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33987,7 +38089,7 @@ } }, { - "id": 1261, + "id": 1304, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -34028,7 +38130,7 @@ } }, { - "id": 1299, + "id": 1342, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34065,7 +38167,7 @@ } }, { - "id": 1259, + "id": 1302, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -34098,7 +38200,7 @@ } }, { - "id": 1269, + "id": 1312, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34135,7 +38237,7 @@ } }, { - "id": 1268, + "id": 1311, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34166,7 +38268,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -34176,7 +38278,7 @@ } }, { - "id": 1293, + "id": 1336, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34217,7 +38319,7 @@ } }, { - "id": 1300, + "id": 1343, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34258,7 +38360,7 @@ } }, { - "id": 1296, + "id": 1339, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34295,7 +38397,7 @@ } }, { - "id": 1286, + "id": 1329, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34333,7 +38435,7 @@ } }, { - "id": 1295, + "id": 1338, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34371,7 +38473,7 @@ } }, { - "id": 1298, + "id": 1341, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34408,7 +38510,7 @@ } }, { - "id": 1265, + "id": 1308, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34437,7 +38539,7 @@ ], "type": { "type": "reference", - "id": 2101, + "id": 2338, "name": "FrameParams" }, "inheritedFrom": { @@ -34446,7 +38548,7 @@ } }, { - "id": 1270, + "id": 1313, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34481,7 +38583,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -34491,7 +38593,7 @@ } }, { - "id": 1291, + "id": 1334, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -34522,7 +38624,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2107, + "id": 2344, "name": "HomeLeftNavItem" } }, @@ -34532,7 +38634,7 @@ } }, { - "id": 1288, + "id": 1331, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -34564,7 +38666,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2115, + "id": 2352, "name": "HomepageModule" } }, @@ -34574,7 +38676,7 @@ } }, { - "id": 1302, + "id": 1345, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -34606,7 +38708,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2314, + "id": 2551, "name": "ListPageColumns" } }, @@ -34616,7 +38718,7 @@ } }, { - "id": 1287, + "id": 1330, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -34656,7 +38758,7 @@ } }, { - "id": 1263, + "id": 1306, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -34689,7 +38791,7 @@ } }, { - "id": 1260, + "id": 1303, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -34722,7 +38824,7 @@ } }, { - "id": 1281, + "id": 1324, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34759,7 +38861,7 @@ } }, { - "id": 1283, + "id": 1326, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -34796,7 +38898,7 @@ } }, { - "id": 1275, + "id": 1318, "name": "locale", "kind": 1024, "kindString": "Property", @@ -34833,7 +38935,7 @@ } }, { - "id": 1301, + "id": 1344, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -34870,7 +38972,7 @@ } }, { - "id": 1292, + "id": 1335, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -34907,7 +39009,7 @@ } }, { - "id": 1289, + "id": 1332, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -34939,7 +39041,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2115, + "id": 2352, "name": "HomepageModule" } }, @@ -34949,7 +39051,7 @@ } }, { - "id": 1273, + "id": 1316, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -34980,7 +39082,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1475, + "id": 1712, "name": "RuntimeFilter" } }, @@ -34990,7 +39092,7 @@ } }, { - "id": 1274, + "id": 1317, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35021,7 +39123,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2254, + "id": 2491, "name": "RuntimeParameter" } }, @@ -35031,7 +39133,7 @@ } }, { - "id": 1258, + "id": 1301, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -35054,7 +39156,7 @@ } }, { - "id": 1272, + "id": 1315, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35091,7 +39193,7 @@ } }, { - "id": 1262, + "id": 1305, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -35124,7 +39226,7 @@ } }, { - "id": 1271, + "id": 1314, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35160,7 +39262,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1641, + "id": 1878, "name": "Action" } }, @@ -35170,7 +39272,7 @@ } }, { - "id": 1290, + "id": 1333, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -35211,7 +39313,7 @@ } }, { - "id": 1257, + "id": 1300, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -35237,43 +39339,43 @@ "title": "Properties", "kind": 1024, "children": [ - 1276, - 1297, - 1282, - 1280, - 1261, - 1299, - 1259, - 1269, - 1268, - 1293, - 1300, - 1296, - 1286, - 1295, - 1298, - 1265, - 1270, - 1291, - 1288, + 1319, + 1340, + 1325, + 1323, + 1304, + 1342, 1302, - 1287, - 1263, - 1260, - 1281, - 1283, - 1275, + 1312, + 1311, + 1336, + 1343, + 1339, + 1329, + 1338, + 1341, + 1308, + 1313, + 1334, + 1331, + 1345, + 1330, + 1306, + 1303, + 1324, + 1326, + 1318, + 1344, + 1335, + 1332, + 1316, + 1317, 1301, - 1292, - 1289, - 1273, - 1274, - 1258, - 1272, - 1262, - 1271, - 1290, - 1257 + 1315, + 1305, + 1314, + 1333, + 1300 ] } ], @@ -35292,14 +39394,14 @@ ] }, { - "id": 1451, + "id": 1688, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1452, + "id": 1689, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -35317,7 +39419,7 @@ } }, { - "id": 1453, + "id": 1690, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -35340,8 +39442,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1452, - 1453 + 1689, + 1690 ] } ], @@ -35354,14 +39456,14 @@ ] }, { - "id": 2284, + "id": 2521, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2285, + "id": 2522, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -35382,7 +39484,7 @@ } }, { - "id": 2286, + "id": 2523, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -35408,8 +39510,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2285, - 2286 + 2522, + 2523 ] } ], @@ -35422,7 +39524,7 @@ ] }, { - "id": 2152, + "id": 2389, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -35432,7 +39534,7 @@ }, "children": [ { - "id": 2154, + "id": 2391, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -35462,20 +39564,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2155, + "id": 2392, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2156, + "id": 2393, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2157, + "id": 2394, "name": "selector", "kind": 32768, "flags": {}, @@ -35488,7 +39590,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2158, + "id": 2395, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -35501,14 +39603,14 @@ } ], "indexSignature": { - "id": 2159, + "id": 2396, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2160, + "id": 2397, "name": "declaration", "kind": 32768, "flags": {}, @@ -35530,7 +39632,7 @@ } }, { - "id": 2153, + "id": 2390, "name": "variables", "kind": 1024, "kindString": "Property", @@ -35549,7 +39651,7 @@ ], "type": { "type": "reference", - "id": 2161, + "id": 2398, "name": "CustomCssVariables" } } @@ -35559,8 +39661,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2154, - 2153 + 2391, + 2390 ] } ], @@ -35865,7 +39967,7 @@ ] }, { - "id": 2122, + "id": 2359, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -35892,7 +39994,7 @@ } }, { - "id": 2126, + "id": 2363, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -35907,7 +40009,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2127, + "id": 2364, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -35930,7 +40032,7 @@ ], "signatures": [ { - "id": 2128, + "id": 2365, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -35940,19 +40042,19 @@ }, "parameters": [ { - "id": 2129, + "id": 2366, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2134, + "id": 2371, "name": "MessagePayload" } }, { - "id": 2130, + "id": 2367, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -35962,7 +40064,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2131, + "id": 2368, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -35976,7 +40078,7 @@ ], "signatures": [ { - "id": 2132, + "id": 2369, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -35986,7 +40088,7 @@ }, "parameters": [ { - "id": 2133, + "id": 2370, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -36017,7 +40119,7 @@ } }, { - "id": 2123, + "id": 2360, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -36041,14 +40143,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2124, + "id": 2361, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2125, + "id": 2362, "name": "start", "kind": 1024, "kindString": "Property", @@ -36076,7 +40178,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2125 + 2362 ] } ], @@ -36091,7 +40193,7 @@ } }, { - "id": 2134, + "id": 2371, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -36115,14 +40217,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2135, + "id": 2372, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2137, + "id": 2374, "name": "data", "kind": 1024, "kindString": "Property", @@ -36140,7 +40242,7 @@ } }, { - "id": 2138, + "id": 2375, "name": "status", "kind": 1024, "kindString": "Property", @@ -36160,7 +40262,7 @@ } }, { - "id": 2136, + "id": 2373, "name": "type", "kind": 1024, "kindString": "Property", @@ -36183,9 +40285,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2137, - 2138, - 2136 + 2374, + 2375, + 2373 ] } ], @@ -36199,6 +40301,39 @@ } } }, + { + "id": 1151, + "name": "BodylessConversation", + "kind": 32, + "kindString": "Variable", + "flags": { + "isConst": true + }, + "comment": { + "tags": [ + { + "tag": "deprecated", + "text": "Use {@link SpotterAgentEmbed} instead.\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 132, + "character": 13 + } + ], + "type": { + "type": "query", + "queryType": { + "type": "reference", + "id": 1051, + "name": "SpotterAgentEmbed" + } + }, + "defaultValue": "..." + }, { "id": 51, "name": "createLiveboardWithAnswers", @@ -36249,7 +40384,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1371, + "id": 1608, "name": "AnswerService" } } @@ -36511,7 +40646,7 @@ ], "type": { "type": "reference", - "id": 1371, + "id": 1608, "name": "AnswerService" } }, @@ -36590,7 +40725,7 @@ }, "type": { "type": "reference", - "id": 1775, + "id": 2012, "name": "EmbedConfig" } } @@ -36690,14 +40825,14 @@ }, "type": { "type": "reference", - "id": 1775, + "id": 2012, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1318, + "id": 1555, "name": "AuthEventEmitter" } } @@ -36837,7 +40972,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2096, + "id": 2333, "name": "PrefetchFeatures" } } @@ -36909,7 +41044,7 @@ ] }, { - "id": 2320, + "id": 2557, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -36925,7 +41060,7 @@ ], "signatures": [ { - "id": 2321, + "id": 2558, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -37119,7 +41254,7 @@ ] }, { - "id": 2264, + "id": 2501, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -37133,7 +41268,7 @@ ], "signatures": [ { - "id": 2265, + "id": 2502, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -37143,7 +41278,7 @@ }, "parameters": [ { - "id": 2266, + "id": 2503, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -37155,7 +41290,7 @@ } }, { - "id": 2267, + "id": 2504, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -37166,7 +41301,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2268, + "id": 2505, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -37189,64 +41324,67 @@ "title": "Enumerations", "kind": 4, "children": [ - 1641, - 1316, - 1303, - 1309, - 1463, - 1771, - 1637, - 1495, - 2107, - 2280, - 2115, - 1576, - 2314, - 2257, - 1454, - 2096, - 1479, - 2307 + 1878, + 1553, + 1540, + 1546, + 1700, + 2008, + 1874, + 1732, + 2344, + 2517, + 2352, + 1813, + 2551, + 2494, + 1691, + 2333, + 1716, + 2544 ] }, { "title": "Classes", "kind": 128, "children": [ - 1371, + 1608, 872, + 1393, 528, 715, 212, 55, 1051, - 1109 + 1152 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2027, - 1318, - 2287, - 2161, - 2149, - 2139, - 1775, - 2101, - 1915, - 1475, - 2254, - 1980, - 1877, - 1823, - 1444, - 1067, - 1256, - 1451, - 2284, + 2264, + 1555, + 1109, + 1346, + 2524, + 2398, + 2386, + 2376, + 2012, + 2338, 2152, + 1712, + 2491, + 2217, + 2114, + 2060, + 1681, + 1067, + 1299, + 1688, + 2521, + 2389, 21, 25 ] @@ -37255,10 +41393,17 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2122, - 2126, - 2123, - 2134 + 2359, + 2363, + 2360, + 2371 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1151 ] }, { @@ -37274,9 +41419,9 @@ 1, 4, 7, - 2320, + 2557, 37, - 2264 + 2501 ] } ], From de0147e3f7a4de9789338b676bc5b4b4670eb6e6 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 24 Apr 2025 15:28:16 +0530 Subject: [PATCH 04/29] bug fix --- src/embed/bodyless-conversation.ts | 52 +- static/typedoc/typedoc.json | 4549 +++++++++++++++------------- 2 files changed, 2433 insertions(+), 2168 deletions(-) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index 406ca99c..d8afbf10 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -92,7 +92,7 @@ class ConversationMessage extends TsEmbed { * document.body.appendChild(container); // or to any other element * ``` * @group Embed components - * @version SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl + * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl */ export class SpotterAgentEmbed { private conversationService: ConversationService; @@ -127,7 +127,53 @@ export class SpotterAgentEmbed { /** - * @deprecated Use {@link SpotterAgentEmbed} instead. + * Create a conversation embed, which can be integrated inside + * chatbots or other conversational interfaces. + * @deprecated This class is deprecated. Use {@link SpotterAgentEmbed} instead. + * @example + * ```js + * import { BodylessConversation } from '@thoughtspot/visual-embed-sdk'; + * + * const conversation = new BodylessConversation({ + * worksheetId: 'worksheetId', + * }); + * + * const { container, error } = await conversation.sendMessage('show me sales by region'); + * + * // append the container to the DOM + * document.body.appendChild(container); // or to any other element + * ``` + * @group Embed components + * @version SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl */ -export const BodylessConversation = SpotterAgentEmbed; +export class BodylessConversation { + private conversationService: ConversationService; + + constructor(private viewConfig: BodylessConversationViewConfig) { + const embedConfig = getEmbedConfig(); + + this.conversationService = new ConversationService( + embedConfig.thoughtSpotHost, + viewConfig.worksheetId, + ); + } + + public async sendMessage(userMessage: string) { + const { data, error } = await this.conversationService.sendMessage(userMessage); + if (error) { + return { error }; + } + + const container = document.createElement('div'); + const embed = new ConversationMessage(container, { + ...this.viewConfig, + sessionId: data.sessionId, + genNo: data.genNo, + acSessionId: data.stateKey.transactionId, + acGenNo: data.stateKey.generationNumber, + }); + await embed.render(); + return { container, viz: embed }; + } +} diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 0472e469..cc2be4e1 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 1878, + "id": 1893, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 1990, + "id": 2005, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -55,7 +55,7 @@ "defaultValue": "\"AIHighlights\"" }, { - "id": 1898, + "id": 1913, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -83,7 +83,7 @@ "defaultValue": "\"addSimpleCohort\"" }, { - "id": 1891, + "id": 1906, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -111,7 +111,7 @@ "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 1890, + "id": 1905, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -135,7 +135,7 @@ "defaultValue": "\"addFilter\"" }, { - "id": 1896, + "id": 1911, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -159,7 +159,7 @@ "defaultValue": "\"addFormula\"" }, { - "id": 1897, + "id": 1912, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -183,7 +183,7 @@ "defaultValue": "\"addParameter\"" }, { - "id": 1899, + "id": 1914, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -211,7 +211,7 @@ "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 1973, + "id": 1988, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -239,7 +239,7 @@ "defaultValue": "\"addTab\"" }, { - "id": 1946, + "id": 1961, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -267,7 +267,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 1987, + "id": 2002, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -295,7 +295,7 @@ "defaultValue": "\"addToWatchlist\"" }, { - "id": 1945, + "id": 1960, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -323,7 +323,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1944, + "id": 1959, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -351,7 +351,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1986, + "id": 2001, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -380,7 +380,7 @@ "defaultValue": "\"AskAi\"" }, { - "id": 1957, + "id": 1972, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -408,7 +408,7 @@ "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 1960, + "id": 1975, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -436,7 +436,7 @@ "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 1965, + "id": 1980, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -464,7 +464,7 @@ "defaultValue": "\"axisMenuEdit\"" }, { - "id": 1959, + "id": 1974, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -492,7 +492,7 @@ "defaultValue": "\"axisMenuFilter\"" }, { - "id": 1962, + "id": 1977, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -520,7 +520,7 @@ "defaultValue": "\"axisMenuGroup\"" }, { - "id": 1966, + "id": 1981, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -548,7 +548,7 @@ "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 1963, + "id": 1978, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -576,7 +576,7 @@ "defaultValue": "\"axisMenuPosition\"" }, { - "id": 1968, + "id": 1983, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -604,7 +604,7 @@ "defaultValue": "\"axisMenuRemove\"" }, { - "id": 1964, + "id": 1979, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -632,7 +632,7 @@ "defaultValue": "\"axisMenuRename\"" }, { - "id": 1961, + "id": 1976, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -660,7 +660,7 @@ "defaultValue": "\"axisMenuSort\"" }, { - "id": 1967, + "id": 1982, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -688,7 +688,7 @@ "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 1958, + "id": 1973, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -716,7 +716,7 @@ "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 1999, + "id": 2014, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -744,7 +744,7 @@ "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 1895, + "id": 1910, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -768,7 +768,7 @@ "defaultValue": "\"chooseDataSources\"" }, { - "id": 1894, + "id": 1909, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -796,7 +796,7 @@ "defaultValue": "\"collapseDataPanel\"" }, { - "id": 1893, + "id": 1908, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -824,7 +824,7 @@ "defaultValue": "\"collapseDataSources\"" }, { - "id": 2006, + "id": 2021, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -852,7 +852,7 @@ "defaultValue": "\"columnRename\"" }, { - "id": 1892, + "id": 1907, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -876,7 +876,7 @@ "defaultValue": "\"configureFilter\"" }, { - "id": 1937, + "id": 1952, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -891,7 +891,7 @@ "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 1885, + "id": 1900, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -915,7 +915,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1936, + "id": 1951, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -939,7 +939,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2007, + "id": 2022, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -967,7 +967,7 @@ "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 1984, + "id": 1999, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -995,7 +995,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 1948, + "id": 1963, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1023,7 +1023,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 1953, + "id": 1968, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1051,7 +1051,7 @@ "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2004, + "id": 2019, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1079,7 +1079,7 @@ "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 1996, + "id": 2011, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1107,7 +1107,7 @@ "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 1998, + "id": 2013, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1135,7 +1135,7 @@ "defaultValue": "\"disableChipReorder\"" }, { - "id": 1907, + "id": 1922, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1159,7 +1159,7 @@ "defaultValue": "\"download\"" }, { - "id": 1910, + "id": 1925, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1183,7 +1183,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1909, + "id": 1924, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1208,7 +1208,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1908, + "id": 1923, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1232,7 +1232,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1911, + "id": 1926, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1256,7 +1256,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1941, + "id": 1956, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1280,7 +1280,7 @@ "defaultValue": "\"DRILL\"" }, { - "id": 1935, + "id": 1950, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1304,7 +1304,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1934, + "id": 1949, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1328,7 +1328,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1919, + "id": 1934, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1352,7 +1352,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1884, + "id": 1899, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1376,7 +1376,7 @@ "defaultValue": "\"editACopy\"" }, { - "id": 1947, + "id": 1962, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1404,7 +1404,7 @@ "defaultValue": "\"editDetails\"" }, { - "id": 1939, + "id": 1954, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1419,7 +1419,7 @@ "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2003, + "id": 2018, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1447,7 +1447,7 @@ "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 1976, + "id": 1991, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1475,7 +1475,7 @@ "defaultValue": "\"editSageAnswer\"" }, { - "id": 1991, + "id": 2006, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1503,7 +1503,7 @@ "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 1916, + "id": 1931, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1527,7 +1527,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1920, + "id": 1935, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1551,7 +1551,7 @@ "defaultValue": "\"editTitle\"" }, { - "id": 2005, + "id": 2020, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1579,7 +1579,7 @@ "defaultValue": "\"editTokens\"" }, { - "id": 1974, + "id": 1989, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1607,7 +1607,7 @@ "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 1933, + "id": 1948, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1631,7 +1631,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1913, + "id": 1928, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1656,7 +1656,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1914, + "id": 1929, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1680,7 +1680,7 @@ "defaultValue": "\"importTSL\"" }, { - "id": 1997, + "id": 2012, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1708,7 +1708,7 @@ "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 1927, + "id": 1942, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1732,7 +1732,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1982, + "id": 1997, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1760,7 +1760,7 @@ "defaultValue": "\"liveboardUsers\"" }, { - "id": 1883, + "id": 1898, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1784,7 +1784,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1980, + "id": 1995, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1808,7 +1808,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 1952, + "id": 1967, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1836,7 +1836,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 1995, + "id": 2010, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1864,7 +1864,7 @@ "defaultValue": "\"manageTags\"" }, { - "id": 1972, + "id": 1987, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1892,7 +1892,7 @@ "defaultValue": "\"markAsVerified\"" }, { - "id": 1978, + "id": 1993, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1919,7 +1919,7 @@ "defaultValue": "\"modifySageAnswer\"" }, { - "id": 1979, + "id": 1994, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1943,7 +1943,7 @@ "defaultValue": "\"onContainerMove\"" }, { - "id": 1989, + "id": 2004, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -1971,7 +1971,7 @@ "defaultValue": "\"organiseFavourites\"" }, { - "id": 1992, + "id": 2007, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1999,7 +1999,7 @@ "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 1981, + "id": 1996, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2027,7 +2027,7 @@ "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 1930, + "id": 1945, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2051,7 +2051,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1917, + "id": 1932, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2075,7 +2075,7 @@ "defaultValue": "\"present\"" }, { - "id": 2000, + "id": 2015, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2103,7 +2103,7 @@ "defaultValue": "\"previewDataSpotter\"" }, { - "id": 1943, + "id": 1958, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2128,7 +2128,7 @@ "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 1921, + "id": 1936, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2152,7 +2152,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1956, + "id": 1971, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2180,7 +2180,7 @@ "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 1988, + "id": 2003, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2208,7 +2208,7 @@ "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 1970, + "id": 1985, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2236,7 +2236,7 @@ "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 1949, + "id": 1964, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2267,7 +2267,7 @@ "defaultValue": "\"reportError\"" }, { - "id": 1942, + "id": 1957, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2291,7 +2291,7 @@ "defaultValue": "\"requestAccess\"" }, { - "id": 1971, + "id": 1986, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2319,7 +2319,7 @@ "defaultValue": "\"requestVerification\"" }, { - "id": 2001, + "id": 2016, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2347,7 +2347,7 @@ "defaultValue": "\"resetSpotterChat\"" }, { - "id": 1977, + "id": 1992, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2375,7 +2375,7 @@ "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 1879, + "id": 1894, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2399,7 +2399,7 @@ "defaultValue": "\"save\"" }, { - "id": 1882, + "id": 1897, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2423,7 +2423,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 1887, + "id": 1902, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2447,7 +2447,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1888, + "id": 1903, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2471,7 +2471,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1940, + "id": 1955, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2486,7 +2486,7 @@ "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 1889, + "id": 1904, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2510,7 +2510,7 @@ "defaultValue": "\"share\"" }, { - "id": 1904, + "id": 1919, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2528,7 +2528,7 @@ "defaultValue": "\"shareViz\"" }, { - "id": 1975, + "id": 1990, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2556,7 +2556,7 @@ "defaultValue": "\"showSageQuery\"" }, { - "id": 1906, + "id": 1921, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2580,7 +2580,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1901, + "id": 1916, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2604,7 +2604,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2002, + "id": 2017, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2632,7 +2632,7 @@ "defaultValue": "\"spotterFeedback\"" }, { - "id": 1932, + "id": 1947, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2656,7 +2656,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1951, + "id": 1966, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2684,7 +2684,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1950, + "id": 1965, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2712,7 +2712,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1954, + "id": 1969, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2740,7 +2740,7 @@ "defaultValue": "\"syncToSlack\"" }, { - "id": 1955, + "id": 1970, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2768,7 +2768,7 @@ "defaultValue": "\"syncToTeams\"" }, { - "id": 1983, + "id": 1998, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2800,7 +2800,7 @@ "defaultValue": "\"tml\"" }, { - "id": 1918, + "id": 1933, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -2824,7 +2824,7 @@ "defaultValue": "\"toggleSize\"" }, { - "id": 1994, + "id": 2009, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2852,7 +2852,7 @@ "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 1915, + "id": 1930, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -2876,7 +2876,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1985, + "id": 2000, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -2904,7 +2904,7 @@ "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 1993, + "id": 2008, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2937,117 +2937,117 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1990, - 1898, - 1891, - 1890, - 1896, - 1897, - 1899, - 1973, - 1946, - 1987, - 1945, - 1944, - 1986, - 1957, + 2005, + 1913, + 1906, + 1905, + 1911, + 1912, + 1914, + 1988, + 1961, + 2002, 1960, - 1965, 1959, - 1962, - 1966, + 2001, + 1972, + 1975, + 1980, + 1974, + 1977, + 1981, + 1978, + 1983, + 1979, + 1976, + 1982, + 1973, + 2014, + 1910, + 1909, + 1908, + 2021, + 1907, + 1952, + 1900, + 1951, + 2022, + 1999, 1963, 1968, - 1964, - 1961, - 1967, - 1958, - 1999, - 1895, - 1894, - 1893, + 2019, + 2011, + 2013, + 1922, + 1925, + 1924, + 1923, + 1926, + 1956, + 1950, + 1949, + 1934, + 1899, + 1962, + 1954, + 2018, + 1991, 2006, - 1892, - 1937, - 1885, - 1936, - 2007, - 1984, + 1931, + 1935, + 2020, + 1989, 1948, - 1953, + 1928, + 1929, + 2012, + 1942, + 1997, + 1898, + 1995, + 1967, + 2010, + 1987, + 1993, + 1994, 2004, + 2007, 1996, - 1998, - 1907, - 1910, - 1909, - 1908, - 1911, - 1941, - 1935, - 1934, - 1919, - 1884, - 1947, - 1939, + 1945, + 1932, + 2015, + 1958, + 1936, + 1971, 2003, - 1976, - 1991, + 1985, + 1964, + 1957, + 1986, + 2016, + 1992, + 1894, + 1897, + 1902, + 1903, + 1955, + 1904, + 1919, + 1990, + 1921, 1916, - 1920, - 2005, - 1974, + 2017, + 1947, + 1966, + 1965, + 1969, + 1970, + 1998, 1933, - 1913, - 1914, - 1997, - 1927, - 1982, - 1883, - 1980, - 1952, - 1995, - 1972, - 1978, - 1979, - 1989, - 1992, - 1981, + 2009, 1930, - 1917, 2000, - 1943, - 1921, - 1956, - 1988, - 1970, - 1949, - 1942, - 1971, - 2001, - 1977, - 1879, - 1882, - 1887, - 1888, - 1940, - 1889, - 1904, - 1975, - 1906, - 1901, - 2002, - 1932, - 1951, - 1950, - 1954, - 1955, - 1983, - 1918, - 1994, - 1915, - 1985, - 1993 + 2008 ] } ], @@ -3060,7 +3060,7 @@ ] }, { - "id": 1553, + "id": 1568, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3076,7 +3076,7 @@ }, "children": [ { - "id": 1554, + "id": 1569, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3099,7 +3099,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1554 + 1569 ] } ], @@ -3112,7 +3112,7 @@ ] }, { - "id": 1540, + "id": 1555, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3128,7 +3128,7 @@ }, "children": [ { - "id": 1543, + "id": 1558, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3143,7 +3143,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1545, + "id": 1560, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3158,7 +3158,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1542, + "id": 1557, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3173,7 +3173,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1544, + "id": 1559, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3188,7 +3188,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1541, + "id": 1556, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3208,11 +3208,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1543, - 1545, - 1542, - 1544, - 1541 + 1558, + 1560, + 1557, + 1559, + 1556 ] } ], @@ -3225,7 +3225,7 @@ ] }, { - "id": 1546, + "id": 1561, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3241,7 +3241,7 @@ }, "children": [ { - "id": 1547, + "id": 1562, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3259,7 +3259,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1551, + "id": 1566, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3277,7 +3277,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1548, + "id": 1563, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3295,7 +3295,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1550, + "id": 1565, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3313,7 +3313,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1552, + "id": 1567, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3342,11 +3342,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1547, - 1551, - 1548, - 1550, - 1552 + 1562, + 1566, + 1563, + 1565, + 1567 ] } ], @@ -3359,7 +3359,7 @@ ] }, { - "id": 1700, + "id": 1715, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3375,7 +3375,7 @@ }, "children": [ { - "id": 1711, + "id": 1726, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3394,7 +3394,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1702, + "id": 1717, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3423,7 +3423,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1701, + "id": 1716, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3447,7 +3447,7 @@ "defaultValue": "\"None\"" }, { - "id": 1707, + "id": 1722, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3465,7 +3465,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1705, + "id": 1720, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3498,7 +3498,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1709, + "id": 1724, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3522,7 +3522,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1710, + "id": 1725, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3555,13 +3555,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1711, - 1702, - 1701, - 1707, - 1705, - 1709, - 1710 + 1726, + 1717, + 1716, + 1722, + 1720, + 1724, + 1725 ] } ], @@ -3574,7 +3574,7 @@ ] }, { - "id": 2008, + "id": 2023, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3584,7 +3584,7 @@ }, "children": [ { - "id": 2011, + "id": 2026, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3599,7 +3599,7 @@ "defaultValue": "\"both-clicks\"" }, { - "id": 2009, + "id": 2024, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3614,7 +3614,7 @@ "defaultValue": "\"left-click\"" }, { - "id": 2010, + "id": 2025, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3634,9 +3634,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2011, - 2009, - 2010 + 2026, + 2024, + 2025 ] } ], @@ -3649,7 +3649,7 @@ ] }, { - "id": 1874, + "id": 1889, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -3659,7 +3659,7 @@ }, "children": [ { - "id": 1876, + "id": 1891, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -3677,7 +3677,7 @@ "defaultValue": "\"collapse\"" }, { - "id": 1877, + "id": 1892, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -3695,7 +3695,7 @@ "defaultValue": "\"expand\"" }, { - "id": 1875, + "id": 1890, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -3718,9 +3718,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1876, - 1877, - 1875 + 1891, + 1892, + 1890 ] } ], @@ -3733,7 +3733,7 @@ ] }, { - "id": 1732, + "id": 1747, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -3758,7 +3758,7 @@ }, "children": [ { - "id": 1760, + "id": 1775, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -3786,7 +3786,7 @@ "defaultValue": "\"*\"" }, { - "id": 1740, + "id": 1755, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -3818,7 +3818,7 @@ "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1783, + "id": 1798, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -3846,7 +3846,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 1745, + "id": 1760, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -3878,7 +3878,7 @@ "defaultValue": "\"alert\"" }, { - "id": 1780, + "id": 1795, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -3906,7 +3906,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1767, + "id": 1782, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -3934,7 +3934,7 @@ "defaultValue": "\"answerDelete\"" }, { - "id": 1806, + "id": 1821, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -3974,7 +3974,7 @@ "defaultValue": "\"AskSageInit\"" }, { - "id": 1746, + "id": 1761, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4002,7 +4002,7 @@ "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1734, + "id": 1749, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4034,7 +4034,7 @@ "defaultValue": "\"authInit\"" }, { - "id": 1790, + "id": 1805, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4062,7 +4062,7 @@ "defaultValue": "\"cancel\"" }, { - "id": 1778, + "id": 1793, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4090,7 +4090,7 @@ "defaultValue": "\"copyAEdit\"" }, { - "id": 1792, + "id": 1807, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4118,7 +4118,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1773, + "id": 1788, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4146,7 +4146,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1800, + "id": 1815, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4170,7 +4170,7 @@ "defaultValue": "\"createConnection\"" }, { - "id": 1811, + "id": 1826, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4195,7 +4195,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 1812, + "id": 1827, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4219,7 +4219,7 @@ "defaultValue": "\"createModel\"" }, { - "id": 1805, + "id": 1820, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4243,7 +4243,7 @@ "defaultValue": "\"createWorksheet\"" }, { - "id": 1793, + "id": 1808, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4271,7 +4271,7 @@ "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1741, + "id": 1756, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4307,7 +4307,7 @@ "defaultValue": "\"customAction\"" }, { - "id": 1736, + "id": 1751, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4343,7 +4343,7 @@ "defaultValue": "\"data\"" }, { - "id": 1739, + "id": 1754, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4375,7 +4375,7 @@ "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1788, + "id": 1803, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4403,7 +4403,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1804, + "id": 1819, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4435,7 +4435,7 @@ "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1758, + "id": 1773, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4463,7 +4463,7 @@ "defaultValue": "\"dialog-close\"" }, { - "id": 1757, + "id": 1772, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -4491,7 +4491,7 @@ "defaultValue": "\"dialog-open\"" }, { - "id": 1762, + "id": 1777, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -4520,7 +4520,7 @@ "defaultValue": "\"download\"" }, { - "id": 1765, + "id": 1780, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -4548,7 +4548,7 @@ "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1764, + "id": 1779, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -4576,7 +4576,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1763, + "id": 1778, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -4604,7 +4604,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1766, + "id": 1781, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -4632,7 +4632,7 @@ "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1772, + "id": 1787, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -4660,7 +4660,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1771, + "id": 1786, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -4688,7 +4688,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1738, + "id": 1753, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -4732,7 +4732,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 1785, + "id": 1800, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -4760,7 +4760,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1775, + "id": 1790, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -4788,7 +4788,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1744, + "id": 1759, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -4825,7 +4825,7 @@ "defaultValue": "\"Error\"" }, { - "id": 1791, + "id": 1806, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -4853,7 +4853,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1776, + "id": 1791, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -4881,7 +4881,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1796, + "id": 1811, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4905,7 +4905,7 @@ "defaultValue": "\"filterChanged\"" }, { - "id": 1752, + "id": 1767, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -4933,7 +4933,7 @@ "defaultValue": "\"getDataClick\"" }, { - "id": 1733, + "id": 1748, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -4961,7 +4961,7 @@ "defaultValue": "\"init\"" }, { - "id": 1782, + "id": 1797, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -4989,7 +4989,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1759, + "id": 1774, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5021,7 +5021,7 @@ "defaultValue": "\"PinboardRendered\"" }, { - "id": 1735, + "id": 1750, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5053,7 +5053,7 @@ "defaultValue": "\"load\"" }, { - "id": 1786, + "id": 1801, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5081,7 +5081,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1755, + "id": 1770, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5109,7 +5109,7 @@ "defaultValue": "\"noCookieAccess\"" }, { - "id": 1808, + "id": 1823, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5146,7 +5146,7 @@ "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 1809, + "id": 1824, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5170,7 +5170,7 @@ "defaultValue": "\"parameterChanged\"" }, { - "id": 1768, + "id": 1783, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5198,7 +5198,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1787, + "id": 1802, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5230,7 +5230,7 @@ "defaultValue": "\"present\"" }, { - "id": 1737, + "id": 1752, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5258,7 +5258,7 @@ "defaultValue": "\"queryChanged\"" }, { - "id": 1807, + "id": 1822, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5282,7 +5282,7 @@ "defaultValue": "\"rename\"" }, { - "id": 1803, + "id": 1818, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5322,7 +5322,7 @@ "defaultValue": "\"resetLiveboard\"" }, { - "id": 1753, + "id": 1768, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -5350,7 +5350,7 @@ "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1797, + "id": 1812, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -5374,7 +5374,7 @@ "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1798, + "id": 1813, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -5398,7 +5398,7 @@ "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1761, + "id": 1776, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -5426,7 +5426,7 @@ "defaultValue": "\"save\"" }, { - "id": 1777, + "id": 1792, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -5454,7 +5454,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 1802, + "id": 1817, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5494,7 +5494,7 @@ "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1784, + "id": 1799, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -5522,7 +5522,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1789, + "id": 1804, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -5550,7 +5550,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1770, + "id": 1785, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -5578,7 +5578,7 @@ "defaultValue": "\"share\"" }, { - "id": 1779, + "id": 1794, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -5606,7 +5606,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1769, + "id": 1784, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -5634,7 +5634,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1810, + "id": 1825, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -5663,7 +5663,7 @@ "defaultValue": "\"TableVizRendered\"" }, { - "id": 1799, + "id": 1814, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -5687,7 +5687,7 @@ "defaultValue": "\"updateConnection\"" }, { - "id": 1801, + "id": 1816, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5727,7 +5727,7 @@ "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1774, + "id": 1789, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -5755,7 +5755,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1743, + "id": 1758, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -5791,7 +5791,7 @@ "defaultValue": "\"vizPointClick\"" }, { - "id": 1742, + "id": 1757, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -5823,7 +5823,7 @@ "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1794, + "id": 1809, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -5856,77 +5856,77 @@ "title": "Enumeration members", "kind": 16, "children": [ + 1775, + 1755, + 1798, 1760, - 1740, - 1783, - 1745, - 1780, - 1767, - 1806, - 1746, - 1734, - 1790, - 1778, - 1792, - 1773, - 1800, - 1811, - 1812, + 1795, + 1782, + 1821, + 1761, + 1749, 1805, 1793, - 1741, - 1736, - 1739, + 1807, 1788, - 1804, - 1758, - 1757, - 1762, - 1765, - 1764, - 1763, - 1766, - 1772, - 1771, - 1738, - 1785, - 1775, - 1744, - 1791, - 1776, - 1796, - 1752, - 1733, - 1782, - 1759, - 1735, - 1786, - 1755, + 1815, + 1826, + 1827, + 1820, 1808, - 1809, - 1768, - 1787, - 1737, - 1807, + 1756, + 1751, + 1754, 1803, + 1819, + 1773, + 1772, + 1777, + 1780, + 1779, + 1778, + 1781, + 1787, + 1786, 1753, + 1800, + 1790, + 1759, + 1806, + 1791, + 1811, + 1767, + 1748, 1797, - 1798, - 1761, - 1777, + 1774, + 1750, + 1801, + 1770, + 1823, + 1824, + 1783, 1802, + 1752, + 1822, + 1818, + 1768, + 1812, + 1813, + 1776, + 1792, + 1817, + 1799, + 1804, + 1785, + 1794, 1784, + 1825, + 1814, + 1816, 1789, - 1770, - 1779, - 1769, - 1810, - 1799, - 1801, - 1774, - 1743, - 1742, - 1794 + 1758, + 1757, + 1809 ] } ], @@ -5939,7 +5939,7 @@ ] }, { - "id": 2344, + "id": 2359, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -5949,7 +5949,7 @@ }, "children": [ { - "id": 2348, + "id": 2363, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -5972,7 +5972,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2346, + "id": 2361, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -5995,7 +5995,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2351, + "id": 2366, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6018,7 +6018,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2347, + "id": 2362, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6041,7 +6041,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2349, + "id": 2364, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6064,7 +6064,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2345, + "id": 2360, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6087,7 +6087,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2350, + "id": 2365, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6115,13 +6115,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2348, - 2346, - 2351, - 2347, - 2349, - 2345, - 2350 + 2363, + 2361, + 2366, + 2362, + 2364, + 2360, + 2365 ] } ], @@ -6134,14 +6134,14 @@ ] }, { - "id": 2517, + "id": 2532, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2519, + "id": 2534, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -6156,7 +6156,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2520, + "id": 2535, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -6171,7 +6171,7 @@ "defaultValue": "\"none\"" }, { - "id": 2518, + "id": 2533, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -6191,9 +6191,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2519, - 2520, - 2518 + 2534, + 2535, + 2533 ] } ], @@ -6206,7 +6206,7 @@ ] }, { - "id": 2352, + "id": 2367, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -6222,7 +6222,7 @@ }, "children": [ { - "id": 2355, + "id": 2370, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -6240,7 +6240,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2358, + "id": 2373, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -6258,7 +6258,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2356, + "id": 2371, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -6276,7 +6276,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2353, + "id": 2368, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -6294,7 +6294,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2357, + "id": 2372, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -6312,7 +6312,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2354, + "id": 2369, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -6335,12 +6335,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2355, - 2358, - 2356, - 2353, - 2357, - 2354 + 2370, + 2373, + 2371, + 2368, + 2372, + 2369 ] } ], @@ -6353,7 +6353,7 @@ ] }, { - "id": 1813, + "id": 1828, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -6382,7 +6382,7 @@ }, "children": [ { - "id": 1824, + "id": 1839, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -6415,7 +6415,7 @@ "defaultValue": "\"addColumns\"" }, { - "id": 1864, + "id": 1879, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -6443,7 +6443,7 @@ "defaultValue": "\"AskSage\"" }, { - "id": 1841, + "id": 1856, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -6476,7 +6476,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1838, + "id": 1853, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -6513,7 +6513,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 1845, + "id": 1860, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -6546,7 +6546,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1847, + "id": 1862, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -6578,7 +6578,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1849, + "id": 1864, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -6606,7 +6606,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1834, + "id": 1849, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -6635,7 +6635,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1848, + "id": 1863, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -6663,7 +6663,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1850, + "id": 1865, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -6691,7 +6691,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1815, + "id": 1830, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -6743,7 +6743,7 @@ "defaultValue": "\"triggerDrillDown\"" }, { - "id": 1840, + "id": 1855, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -6777,7 +6777,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1832, + "id": 1847, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -6805,7 +6805,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1837, + "id": 1852, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -6838,7 +6838,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1831, + "id": 1846, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -6866,7 +6866,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1863, + "id": 1878, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -6898,7 +6898,7 @@ "defaultValue": "\"getAnswerSession\"" }, { - "id": 1857, + "id": 1872, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -6926,7 +6926,7 @@ "defaultValue": "\"getFilters\"" }, { - "id": 1818, + "id": 1833, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -6954,7 +6954,7 @@ "defaultValue": "\"GetIframeUrl\"" }, { - "id": 1868, + "id": 1883, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -6978,7 +6978,7 @@ "defaultValue": "\"GetParameters\"" }, { - "id": 1843, + "id": 1858, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -7010,7 +7010,7 @@ "defaultValue": "\"getTML\"" }, { - "id": 1859, + "id": 1874, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -7038,7 +7038,7 @@ "defaultValue": "\"getTabs\"" }, { - "id": 1828, + "id": 1843, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -7066,7 +7066,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1835, + "id": 1850, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -7106,7 +7106,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1839, + "id": 1854, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7147,7 +7147,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 1855, + "id": 1870, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -7180,7 +7180,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 1822, + "id": 1837, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -7213,7 +7213,7 @@ "defaultValue": "\"Navigate\"" }, { - "id": 1823, + "id": 1838, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -7246,7 +7246,7 @@ "defaultValue": "\"openFilter\"" }, { - "id": 1827, + "id": 1842, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -7310,7 +7310,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1842, + "id": 1857, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -7343,7 +7343,7 @@ "defaultValue": "\"present\"" }, { - "id": 1836, + "id": 1851, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -7375,7 +7375,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1825, + "id": 1840, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -7408,7 +7408,7 @@ "defaultValue": "\"removeColumn\"" }, { - "id": 1866, + "id": 1881, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -7436,7 +7436,7 @@ "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 1856, + "id": 1871, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -7464,7 +7464,7 @@ "defaultValue": "\"resetSearch\"" }, { - "id": 1852, + "id": 1867, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -7492,7 +7492,7 @@ "defaultValue": "\"save\"" }, { - "id": 1871, + "id": 1886, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -7525,7 +7525,7 @@ "defaultValue": "\"saveAnswer\"" }, { - "id": 1829, + "id": 1844, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -7553,7 +7553,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1830, + "id": 1845, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -7581,7 +7581,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1814, + "id": 1829, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7620,7 +7620,7 @@ "defaultValue": "\"search\"" }, { - "id": 1820, + "id": 1835, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -7653,7 +7653,7 @@ "defaultValue": "\"SetActiveTab\"" }, { - "id": 1861, + "id": 1876, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -7686,7 +7686,7 @@ "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 1860, + "id": 1875, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -7719,7 +7719,7 @@ "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 1819, + "id": 1834, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -7752,7 +7752,7 @@ "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 1851, + "id": 1866, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -7780,7 +7780,7 @@ "defaultValue": "\"share\"" }, { - "id": 1844, + "id": 1859, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -7813,7 +7813,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1846, + "id": 1861, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -7846,7 +7846,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1854, + "id": 1869, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -7879,7 +7879,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1853, + "id": 1868, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -7912,7 +7912,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1873, + "id": 1888, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -7945,7 +7945,7 @@ "defaultValue": "\"TransformTableVizData\"" }, { - "id": 1865, + "id": 1880, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -7973,7 +7973,7 @@ "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 1858, + "id": 1873, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -8019,7 +8019,7 @@ "defaultValue": "\"updateFilters\"" }, { - "id": 1867, + "id": 1882, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -8043,7 +8043,7 @@ "defaultValue": "\"UpdateParameters\"" }, { - "id": 1869, + "id": 1884, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8067,7 +8067,7 @@ "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 1821, + "id": 1836, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -8105,7 +8105,7 @@ "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 1862, + "id": 1877, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -8143,7 +8143,7 @@ "defaultValue": "\"updateSageQuery\"" }, { - "id": 1833, + "id": 1848, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -8171,7 +8171,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1826, + "id": 1841, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -8204,62 +8204,62 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1824, + 1839, + 1879, + 1856, + 1853, + 1860, + 1862, 1864, - 1841, - 1838, - 1845, - 1847, 1849, - 1834, - 1848, - 1850, - 1815, - 1840, - 1832, - 1837, - 1831, 1863, - 1857, - 1818, - 1868, - 1843, - 1859, - 1828, - 1835, - 1839, + 1865, + 1830, 1855, - 1822, - 1823, - 1827, - 1842, - 1836, - 1825, - 1866, - 1856, + 1847, 1852, - 1871, - 1829, - 1830, - 1814, - 1820, - 1861, - 1860, - 1819, - 1851, - 1844, 1846, - 1854, - 1853, - 1873, - 1865, + 1878, + 1872, + 1833, + 1883, 1858, + 1874, + 1843, + 1850, + 1854, + 1870, + 1837, + 1838, + 1842, + 1857, + 1851, + 1840, + 1881, + 1871, 1867, + 1886, + 1844, + 1845, + 1829, + 1835, + 1876, + 1875, + 1834, + 1866, + 1859, + 1861, 1869, - 1821, - 1862, - 1833, - 1826 + 1868, + 1888, + 1880, + 1873, + 1882, + 1884, + 1836, + 1877, + 1848, + 1841 ] } ], @@ -8272,7 +8272,7 @@ ] }, { - "id": 2551, + "id": 2566, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -8288,7 +8288,7 @@ }, "children": [ { - "id": 2554, + "id": 2569, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -8306,7 +8306,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2555, + "id": 2570, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -8324,7 +8324,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2552, + "id": 2567, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -8342,7 +8342,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2556, + "id": 2571, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8360,7 +8360,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2553, + "id": 2568, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -8383,11 +8383,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2554, - 2555, - 2552, - 2556, - 2553 + 2569, + 2570, + 2567, + 2571, + 2568 ] } ], @@ -8400,7 +8400,7 @@ ] }, { - "id": 2494, + "id": 2509, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -8410,7 +8410,7 @@ }, "children": [ { - "id": 2499, + "id": 2514, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -8438,7 +8438,7 @@ "defaultValue": "\"DEBUG\"" }, { - "id": 2496, + "id": 2511, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -8466,7 +8466,7 @@ "defaultValue": "\"ERROR\"" }, { - "id": 2498, + "id": 2513, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -8494,7 +8494,7 @@ "defaultValue": "\"INFO\"" }, { - "id": 2495, + "id": 2510, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -8522,7 +8522,7 @@ "defaultValue": "\"SILENT\"" }, { - "id": 2500, + "id": 2515, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -8550,7 +8550,7 @@ "defaultValue": "\"TRACE\"" }, { - "id": 2497, + "id": 2512, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -8583,12 +8583,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2499, - 2496, - 2498, - 2495, - 2500, - 2497 + 2514, + 2511, + 2513, + 2510, + 2515, + 2512 ] } ], @@ -8601,7 +8601,7 @@ ] }, { - "id": 1691, + "id": 1706, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -8611,7 +8611,7 @@ }, "children": [ { - "id": 1694, + "id": 1709, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -8629,7 +8629,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1697, + "id": 1712, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -8647,7 +8647,7 @@ "defaultValue": "\"data\"" }, { - "id": 1692, + "id": 1707, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -8665,7 +8665,7 @@ "defaultValue": "\"home\"" }, { - "id": 1695, + "id": 1710, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -8683,7 +8683,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1699, + "id": 1714, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -8701,7 +8701,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1693, + "id": 1708, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8719,7 +8719,7 @@ "defaultValue": "\"search\"" }, { - "id": 1698, + "id": 1713, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -8742,13 +8742,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1694, - 1697, - 1692, - 1695, - 1699, - 1693, - 1698 + 1709, + 1712, + 1707, + 1710, + 1714, + 1708, + 1713 ] } ], @@ -8761,14 +8761,14 @@ ] }, { - "id": 2333, + "id": 2348, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2334, + "id": 2349, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -8783,7 +8783,7 @@ "defaultValue": "\"FullApp\"" }, { - "id": 2336, + "id": 2351, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8798,7 +8798,7 @@ "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2335, + "id": 2350, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8813,7 +8813,7 @@ "defaultValue": "\"SearchEmbed\"" }, { - "id": 2337, + "id": 2352, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8833,10 +8833,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2334, - 2336, - 2335, - 2337 + 2349, + 2351, + 2350, + 2352 ] } ], @@ -8849,7 +8849,7 @@ ] }, { - "id": 1716, + "id": 1731, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -8859,7 +8859,7 @@ }, "children": [ { - "id": 1724, + "id": 1739, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -8877,7 +8877,7 @@ "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1729, + "id": 1744, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -8895,7 +8895,7 @@ "defaultValue": "\"BW\"" }, { - "id": 1728, + "id": 1743, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -8913,7 +8913,7 @@ "defaultValue": "\"BW_INC\"" }, { - "id": 1726, + "id": 1741, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -8931,7 +8931,7 @@ "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1727, + "id": 1742, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -8949,7 +8949,7 @@ "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1723, + "id": 1738, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -8967,7 +8967,7 @@ "defaultValue": "\"CONTAINS\"" }, { - "id": 1725, + "id": 1740, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -8985,7 +8985,7 @@ "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1717, + "id": 1732, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -9003,7 +9003,7 @@ "defaultValue": "\"EQ\"" }, { - "id": 1722, + "id": 1737, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -9021,7 +9021,7 @@ "defaultValue": "\"GE\"" }, { - "id": 1721, + "id": 1736, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -9039,7 +9039,7 @@ "defaultValue": "\"GT\"" }, { - "id": 1730, + "id": 1745, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -9057,7 +9057,7 @@ "defaultValue": "\"IN\"" }, { - "id": 1720, + "id": 1735, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -9075,7 +9075,7 @@ "defaultValue": "\"LE\"" }, { - "id": 1719, + "id": 1734, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -9093,7 +9093,7 @@ "defaultValue": "\"LT\"" }, { - "id": 1718, + "id": 1733, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -9111,7 +9111,7 @@ "defaultValue": "\"NE\"" }, { - "id": 1731, + "id": 1746, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -9134,21 +9134,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1724, - 1729, - 1728, - 1726, - 1727, - 1723, - 1725, - 1717, - 1722, - 1721, - 1730, - 1720, - 1719, - 1718, - 1731 + 1739, + 1744, + 1743, + 1741, + 1742, + 1738, + 1740, + 1732, + 1737, + 1736, + 1745, + 1735, + 1734, + 1733, + 1746 ] } ], @@ -9161,14 +9161,14 @@ ] }, { - "id": 2544, + "id": 2559, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2549, + "id": 2564, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -9183,7 +9183,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2548, + "id": 2563, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -9198,7 +9198,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2547, + "id": 2562, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -9213,7 +9213,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2550, + "id": 2565, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -9228,7 +9228,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2545, + "id": 2560, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -9243,7 +9243,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2546, + "id": 2561, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -9263,12 +9263,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2549, - 2548, - 2547, - 2550, - 2545, - 2546 + 2564, + 2563, + 2562, + 2565, + 2560, + 2561 ] } ], @@ -9281,7 +9281,7 @@ ] }, { - "id": 1608, + "id": 1623, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -9309,7 +9309,7 @@ }, "children": [ { - "id": 1609, + "id": 1624, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -9326,7 +9326,7 @@ ], "signatures": [ { - "id": 1610, + "id": 1625, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -9336,7 +9336,7 @@ }, "parameters": [ { - "id": 1611, + "id": 1626, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -9344,12 +9344,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1681, + "id": 1696, "name": "SessionInterface" } }, { - "id": 1612, + "id": 1627, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -9361,7 +9361,7 @@ } }, { - "id": 1613, + "id": 1628, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -9373,7 +9373,7 @@ } }, { - "id": 1614, + "id": 1629, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -9387,7 +9387,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2521, + "id": 2536, "name": "VizPoint" } } @@ -9395,14 +9395,14 @@ ], "type": { "type": "reference", - "id": 1608, + "id": 1623, "name": "AnswerService" } } ] }, { - "id": 1623, + "id": 1638, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -9418,7 +9418,7 @@ ], "signatures": [ { - "id": 1624, + "id": 1639, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -9429,7 +9429,7 @@ }, "parameters": [ { - "id": 1625, + "id": 1640, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -9458,7 +9458,7 @@ ] }, { - "id": 1626, + "id": 1641, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -9474,7 +9474,7 @@ ], "signatures": [ { - "id": 1627, + "id": 1642, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -9490,7 +9490,7 @@ }, "parameters": [ { - "id": 1628, + "id": 1643, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -9519,7 +9519,7 @@ ] }, { - "id": 1675, + "id": 1690, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -9535,14 +9535,14 @@ ], "signatures": [ { - "id": 1676, + "id": 1691, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1677, + "id": 1692, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -9567,7 +9567,7 @@ ] }, { - "id": 1629, + "id": 1644, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -9583,7 +9583,7 @@ ], "signatures": [ { - "id": 1630, + "id": 1645, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -9594,7 +9594,7 @@ }, "parameters": [ { - "id": 1631, + "id": 1646, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -9606,7 +9606,7 @@ } }, { - "id": 1632, + "id": 1647, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -9614,12 +9614,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1716, + "id": 1731, "name": "RuntimeFilterOp" } }, { - "id": 1633, + "id": 1648, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -9665,7 +9665,7 @@ ] }, { - "id": 1665, + "id": 1680, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -9681,7 +9681,7 @@ ], "signatures": [ { - "id": 1666, + "id": 1681, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -9692,7 +9692,7 @@ }, "parameters": [ { - "id": 1667, + "id": 1682, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -9706,7 +9706,7 @@ } }, { - "id": 1668, + "id": 1683, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -9734,7 +9734,7 @@ ] }, { - "id": 1643, + "id": 1658, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -9750,7 +9750,7 @@ ], "signatures": [ { - "id": 1644, + "id": 1659, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -9761,7 +9761,7 @@ }, "parameters": [ { - "id": 1645, + "id": 1660, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -9774,7 +9774,7 @@ "defaultValue": "'en-us'" }, { - "id": 1646, + "id": 1661, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -9803,7 +9803,7 @@ ] }, { - "id": 1636, + "id": 1651, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -9819,7 +9819,7 @@ ], "signatures": [ { - "id": 1637, + "id": 1652, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -9830,7 +9830,7 @@ }, "parameters": [ { - "id": 1638, + "id": 1653, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -9843,7 +9843,7 @@ "defaultValue": "0" }, { - "id": 1639, + "id": 1654, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -9862,14 +9862,14 @@ { "type": "reflection", "declaration": { - "id": 1640, + "id": 1655, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1641, + "id": 1656, "name": "columns", "kind": 1024, "kindString": "Property", @@ -9880,7 +9880,7 @@ } }, { - "id": 1642, + "id": 1657, "name": "data", "kind": 1024, "kindString": "Property", @@ -9896,8 +9896,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1641, - 1642 + 1656, + 1657 ] } ] @@ -9910,7 +9910,7 @@ ] }, { - "id": 1647, + "id": 1662, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -9926,7 +9926,7 @@ ], "signatures": [ { - "id": 1648, + "id": 1663, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -9937,7 +9937,7 @@ }, "parameters": [ { - "id": 1649, + "id": 1664, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -9950,7 +9950,7 @@ "defaultValue": "'en-us'" }, { - "id": 1650, + "id": 1665, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -9965,7 +9965,7 @@ "defaultValue": "false" }, { - "id": 1651, + "id": 1666, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -9994,7 +9994,7 @@ ] }, { - "id": 1671, + "id": 1686, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -10010,7 +10010,7 @@ ], "signatures": [ { - "id": 1672, + "id": 1687, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -10029,7 +10029,7 @@ ] }, { - "id": 1652, + "id": 1667, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -10045,7 +10045,7 @@ ], "signatures": [ { - "id": 1653, + "id": 1668, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -10056,7 +10056,7 @@ }, "parameters": [ { - "id": 1654, + "id": 1669, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -10069,7 +10069,7 @@ "defaultValue": "'en-us'" }, { - "id": 1655, + "id": 1670, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -10090,7 +10090,7 @@ ] }, { - "id": 1656, + "id": 1671, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -10106,7 +10106,7 @@ ], "signatures": [ { - "id": 1657, + "id": 1672, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -10116,7 +10116,7 @@ }, "parameters": [ { - "id": 1658, + "id": 1673, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -10129,7 +10129,7 @@ "defaultValue": "'en-us'" }, { - "id": 1659, + "id": 1674, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -10142,7 +10142,7 @@ "defaultValue": "false" }, { - "id": 1660, + "id": 1675, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -10165,7 +10165,7 @@ ] }, { - "id": 1634, + "id": 1649, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -10181,7 +10181,7 @@ ], "signatures": [ { - "id": 1635, + "id": 1650, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -10200,7 +10200,7 @@ ] }, { - "id": 1669, + "id": 1684, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -10216,7 +10216,7 @@ ], "signatures": [ { - "id": 1670, + "id": 1685, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -10227,14 +10227,14 @@ }, "type": { "type": "reference", - "id": 1681, + "id": 1696, "name": "SessionInterface" } } ] }, { - "id": 1618, + "id": 1633, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -10250,7 +10250,7 @@ ], "signatures": [ { - "id": 1619, + "id": 1634, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -10272,7 +10272,7 @@ ] }, { - "id": 1673, + "id": 1688, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -10288,7 +10288,7 @@ ], "signatures": [ { - "id": 1674, + "id": 1689, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -10307,7 +10307,7 @@ ] }, { - "id": 1661, + "id": 1676, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -10323,7 +10323,7 @@ ], "signatures": [ { - "id": 1662, + "id": 1677, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -10343,7 +10343,7 @@ }, "parameters": [ { - "id": 1663, + "id": 1678, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -10358,7 +10358,7 @@ } }, { - "id": 1664, + "id": 1679, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -10370,7 +10370,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1688, + "id": 1703, "name": "UnderlyingDataPoint" } } @@ -10381,7 +10381,7 @@ "typeArguments": [ { "type": "reference", - "id": 1608, + "id": 1623, "name": "AnswerService" } ], @@ -10391,7 +10391,7 @@ ] }, { - "id": 1620, + "id": 1635, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -10407,7 +10407,7 @@ ], "signatures": [ { - "id": 1621, + "id": 1636, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -10418,7 +10418,7 @@ }, "parameters": [ { - "id": 1622, + "id": 1637, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -10447,7 +10447,7 @@ ] }, { - "id": 1678, + "id": 1693, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -10463,14 +10463,14 @@ ], "signatures": [ { - "id": 1679, + "id": 1694, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1680, + "id": 1695, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -10494,31 +10494,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1609 + 1624 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1623, - 1626, - 1675, - 1629, - 1665, - 1643, - 1636, - 1647, + 1638, + 1641, + 1690, + 1644, + 1680, + 1658, + 1651, + 1662, + 1686, + 1667, 1671, - 1652, - 1656, - 1634, - 1669, - 1618, - 1673, - 1661, - 1620, - 1678 + 1649, + 1684, + 1633, + 1688, + 1676, + 1635, + 1693 ] } ], @@ -10575,7 +10575,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2359, + "id": 2374, "name": "DOMSelector" } }, @@ -10587,7 +10587,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2264, + "id": 2279, "name": "AppViewConfig" } } @@ -10708,7 +10708,7 @@ "typeArguments": [ { "type": "reference", - "id": 1608, + "id": 1623, "name": "AnswerService" } ], @@ -11183,7 +11183,7 @@ }, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, @@ -11198,7 +11198,7 @@ }, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } } @@ -11265,7 +11265,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, @@ -11277,7 +11277,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } }, @@ -11289,7 +11289,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2360, + "id": 2375, "name": "MessageOptions" }, "defaultValue": "..." @@ -11600,7 +11600,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1813, + "id": 1828, "name": "HostEvent" } }, @@ -11719,7 +11719,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2559, "name": "UIPassthroughEvent" } } @@ -11836,7 +11836,265 @@ ] }, { - "id": 1393, + "id": 1151, + "name": "BodylessConversation", + "kind": 128, + "kindString": "Class", + "flags": {}, + "comment": { + "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", + "tags": [ + { + "tag": "deprecated", + "text": "This class is deprecated. Use {@link SpotterAgentEmbed} instead." + }, + { + "tag": "example", + "text": "\n```js\nimport { BodylessConversation } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new BodylessConversation({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" + }, + { + "tag": "group", + "text": "Embed components" + }, + { + "tag": "version", + "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" + } + ] + }, + "children": [ + { + "id": 1152, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 152, + "character": 4 + } + ], + "signatures": [ + { + "id": 1153, + "name": "new BodylessConversation", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1154, + "name": "viewConfig", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1109, + "name": "BodylessConversationViewConfig" + } + } + ], + "type": { + "type": "reference", + "id": 1151, + "name": "BodylessConversation" + } + } + ] + }, + { + "id": 1156, + "name": "sendMessage", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 161, + "character": 17 + } + ], + "signatures": [ + { + "id": 1157, + "name": "sendMessage", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1158, + "name": "userMessage", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reflection", + "declaration": { + "id": 1159, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1161, + "name": "container", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + } + }, + { + "id": 1160, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 1162, + "name": "viz", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1161, + 1160, + 1162 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 1163, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1164, + "name": "container", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLDivElement" + } + }, + { + "id": 1166, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + } + }, + { + "id": 1165, + "name": "viz", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "name": "ConversationMessage" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1164, + 1166, + 1165 + ] + } + ] + } + } + ] + } + ], + "name": "Promise" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1152 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 1156 + ] + } + ], + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 149, + "character": 13 + } + ] + }, + { + "id": 1408, "name": "ConversationEmbed", "kind": 128, "kindString": "Class", @@ -11864,7 +12122,7 @@ }, "children": [ { - "id": 1394, + "id": 1409, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -11878,14 +12136,14 @@ ], "signatures": [ { - "id": 1395, + "id": 1410, "name": "new ConversationEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1396, + "id": 1411, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -11896,21 +12154,21 @@ } }, { - "id": 1397, + "id": 1412, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1346, + "id": 1361, "name": "ConversationViewConfig" } } ], "type": { "type": "reference", - "id": 1393, + "id": 1408, "name": "ConversationEmbed" }, "overwrites": { @@ -11925,7 +12183,7 @@ } }, { - "id": 1518, + "id": 1533, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -11941,7 +12199,7 @@ ], "signatures": [ { - "id": 1519, + "id": 1534, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -11971,7 +12229,7 @@ } }, { - "id": 1537, + "id": 1552, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -11987,7 +12245,7 @@ ], "signatures": [ { - "id": 1538, + "id": 1553, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -12003,7 +12261,7 @@ }, "parameters": [ { - "id": 1539, + "id": 1554, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12024,7 +12282,7 @@ "typeArguments": [ { "type": "reference", - "id": 1608, + "id": 1623, "name": "AnswerService" } ], @@ -12042,7 +12300,7 @@ } }, { - "id": 1399, + "id": 1414, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12058,7 +12316,7 @@ ], "signatures": [ { - "id": 1400, + "id": 1415, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12079,7 +12337,7 @@ } }, { - "id": 1532, + "id": 1547, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12095,7 +12353,7 @@ ], "signatures": [ { - "id": 1533, + "id": 1548, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12117,14 +12375,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1534, + "id": 1549, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1536, + "id": 1551, "name": "child", "kind": 1024, "kindString": "Property", @@ -12136,7 +12394,7 @@ "defaultValue": "..." }, { - "id": 1535, + "id": 1550, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12153,8 +12411,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1536, - 1535 + 1551, + 1550 ] } ] @@ -12172,7 +12430,7 @@ } }, { - "id": 1512, + "id": 1527, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12188,7 +12446,7 @@ ], "signatures": [ { - "id": 1513, + "id": 1528, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12204,7 +12462,7 @@ }, "parameters": [ { - "id": 1514, + "id": 1529, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12212,20 +12470,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1515, + "id": 1530, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1516, + "id": 1531, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1517, + "id": 1532, "name": "key", "kind": 32768, "flags": {}, @@ -12270,7 +12528,7 @@ } }, { - "id": 1520, + "id": 1535, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12286,7 +12544,7 @@ ], "signatures": [ { - "id": 1521, + "id": 1536, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12307,7 +12565,7 @@ } }, { - "id": 1530, + "id": 1545, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12323,7 +12581,7 @@ ], "signatures": [ { - "id": 1531, + "id": 1546, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12347,7 +12605,7 @@ } }, { - "id": 1492, + "id": 1507, "name": "off", "kind": 2048, "kindString": "Method", @@ -12363,7 +12621,7 @@ ], "signatures": [ { - "id": 1493, + "id": 1508, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12379,7 +12637,7 @@ }, "parameters": [ { - "id": 1494, + "id": 1509, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12389,12 +12647,12 @@ }, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, { - "id": 1495, + "id": 1510, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12404,7 +12662,7 @@ }, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } } @@ -12425,7 +12683,7 @@ } }, { - "id": 1486, + "id": 1501, "name": "on", "kind": 2048, "kindString": "Method", @@ -12441,7 +12699,7 @@ ], "signatures": [ { - "id": 1487, + "id": 1502, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -12461,7 +12719,7 @@ }, "parameters": [ { - "id": 1488, + "id": 1503, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12471,12 +12729,12 @@ }, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, { - "id": 1489, + "id": 1504, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12486,12 +12744,12 @@ }, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } }, { - "id": 1490, + "id": 1505, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -12501,13 +12759,13 @@ }, "type": { "type": "reference", - "id": 2360, + "id": 2375, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1491, + "id": 1506, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -12536,7 +12794,7 @@ } }, { - "id": 1509, + "id": 1524, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -12552,7 +12810,7 @@ ], "signatures": [ { - "id": 1510, + "id": 1525, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -12562,7 +12820,7 @@ }, "parameters": [ { - "id": 1511, + "id": 1526, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -12599,7 +12857,7 @@ } }, { - "id": 1522, + "id": 1537, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -12615,7 +12873,7 @@ ], "signatures": [ { - "id": 1523, + "id": 1538, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -12652,7 +12910,7 @@ } }, { - "id": 1401, + "id": 1416, "name": "render", "kind": 2048, "kindString": "Method", @@ -12668,7 +12926,7 @@ ], "signatures": [ { - "id": 1402, + "id": 1417, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -12678,7 +12936,7 @@ "typeArguments": [ { "type": "reference", - "id": 1393, + "id": 1408, "name": "ConversationEmbed" } ], @@ -12696,7 +12954,7 @@ } }, { - "id": 1526, + "id": 1541, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -12712,7 +12970,7 @@ ], "signatures": [ { - "id": 1527, + "id": 1542, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -12742,7 +13000,7 @@ } }, { - "id": 1528, + "id": 1543, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -12758,7 +13016,7 @@ ], "signatures": [ { - "id": 1529, + "id": 1544, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -12788,7 +13046,7 @@ } }, { - "id": 1496, + "id": 1511, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -12804,7 +13062,7 @@ ], "signatures": [ { - "id": 1497, + "id": 1512, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -12815,19 +13073,19 @@ }, "typeParameter": [ { - "id": 1498, + "id": 1513, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1813, + "id": 1828, "name": "HostEvent" } }, { - "id": 1499, + "id": 1514, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -12836,7 +13094,7 @@ ], "parameters": [ { - "id": 1500, + "id": 1515, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12850,7 +13108,7 @@ } }, { - "id": 1501, + "id": 1516, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -12907,7 +13165,7 @@ } }, { - "id": 1502, + "id": 1517, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -12923,7 +13181,7 @@ ], "signatures": [ { - "id": 1503, + "id": 1518, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -12934,21 +13192,21 @@ }, "typeParameter": [ { - "id": 1504, + "id": 1519, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2559, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1505, + "id": 1520, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -12962,7 +13220,7 @@ } }, { - "id": 1506, + "id": 1521, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13015,29 +13273,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1394 + 1409 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1518, + 1533, + 1552, + 1414, + 1547, + 1527, + 1535, + 1545, + 1507, + 1501, + 1524, 1537, - 1399, - 1532, - 1512, - 1520, - 1530, - 1492, - 1486, - 1509, - 1522, - 1401, - 1526, - 1528, - 1496, - 1502 + 1416, + 1541, + 1543, + 1511, + 1517 ] } ], @@ -13104,7 +13362,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2359, + "id": 2374, "name": "DOMSelector" } }, @@ -13116,7 +13374,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2152, + "id": 2167, "name": "LiveboardViewConfig" } } @@ -13237,7 +13495,7 @@ "typeArguments": [ { "type": "reference", - "id": 1608, + "id": 1623, "name": "AnswerService" } ], @@ -13703,7 +13961,7 @@ }, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, @@ -13718,7 +13976,7 @@ }, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } } @@ -13785,7 +14043,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, @@ -13797,7 +14055,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } }, @@ -13809,7 +14067,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2360, + "id": 2375, "name": "MessageOptions" }, "defaultValue": "..." @@ -14120,7 +14378,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1813, + "id": 1828, "name": "HostEvent" } }, @@ -14239,7 +14497,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2559, "name": "UIPassthroughEvent" } } @@ -14404,7 +14662,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2359, + "id": 2374, "name": "DOMSelector" } }, @@ -14416,7 +14674,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2217, + "id": 2232, "name": "SageViewConfig" } } @@ -14537,7 +14795,7 @@ "typeArguments": [ { "type": "reference", - "id": 1608, + "id": 1623, "name": "AnswerService" } ], @@ -14935,7 +15193,7 @@ }, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, @@ -14950,7 +15208,7 @@ }, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } } @@ -15017,7 +15275,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, @@ -15029,7 +15287,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } }, @@ -15041,7 +15299,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2360, + "id": 2375, "name": "MessageOptions" }, "defaultValue": "..." @@ -15353,7 +15611,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1813, + "id": 1828, "name": "HostEvent" } }, @@ -15472,7 +15730,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2559, "name": "UIPassthroughEvent" } } @@ -15647,7 +15905,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2114, + "id": 2129, "name": "SearchBarViewConfig" } } @@ -15768,7 +16026,7 @@ "typeArguments": [ { "type": "reference", - "id": 1608, + "id": 1623, "name": "AnswerService" } ], @@ -16133,7 +16391,7 @@ }, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, @@ -16148,7 +16406,7 @@ }, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } } @@ -16215,7 +16473,7 @@ }, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, @@ -16230,7 +16488,7 @@ }, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } }, @@ -16245,7 +16503,7 @@ }, "type": { "type": "reference", - "id": 2360, + "id": 2375, "name": "MessageOptions" }, "defaultValue": "..." @@ -16569,7 +16827,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1813, + "id": 1828, "name": "HostEvent" } }, @@ -16688,7 +16946,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2559, "name": "UIPassthroughEvent" } } @@ -16847,7 +17105,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2359, + "id": 2374, "name": "DOMSelector" } }, @@ -16859,7 +17117,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2060, + "id": 2075, "name": "SearchViewConfig" } } @@ -16980,7 +17238,7 @@ "typeArguments": [ { "type": "reference", - "id": 1608, + "id": 1623, "name": "AnswerService" } ], @@ -17377,7 +17635,7 @@ }, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, @@ -17392,7 +17650,7 @@ }, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } } @@ -17459,7 +17717,7 @@ }, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, @@ -17474,7 +17732,7 @@ }, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } }, @@ -17489,7 +17747,7 @@ }, "type": { "type": "reference", - "id": 2360, + "id": 2375, "name": "MessageOptions" }, "defaultValue": "..." @@ -17813,7 +18071,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1813, + "id": 1828, "name": "HostEvent" } }, @@ -17932,7 +18190,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2559, "name": "UIPassthroughEvent" } } @@ -18066,7 +18324,7 @@ }, { "tag": "version", - "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, @@ -18302,7 +18560,7 @@ ] }, { - "id": 1152, + "id": 1167, "name": "SpotterEmbed", "kind": 128, "kindString": "Class", @@ -18326,7 +18584,7 @@ }, "children": [ { - "id": 1153, + "id": 1168, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -18340,14 +18598,14 @@ ], "signatures": [ { - "id": 1154, + "id": 1169, "name": "new SpotterEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1155, + "id": 1170, "name": "container", "kind": 32768, "kindString": "Parameter", @@ -18358,21 +18616,21 @@ } }, { - "id": 1156, + "id": 1171, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1299, + "id": 1314, "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 1152, + "id": 1167, "name": "SpotterEmbed" }, "overwrites": { @@ -18387,7 +18645,7 @@ } }, { - "id": 1277, + "id": 1292, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -18403,7 +18661,7 @@ ], "signatures": [ { - "id": 1278, + "id": 1293, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -18433,7 +18691,7 @@ } }, { - "id": 1296, + "id": 1311, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -18449,7 +18707,7 @@ ], "signatures": [ { - "id": 1297, + "id": 1312, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -18465,7 +18723,7 @@ }, "parameters": [ { - "id": 1298, + "id": 1313, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -18486,7 +18744,7 @@ "typeArguments": [ { "type": "reference", - "id": 1608, + "id": 1623, "name": "AnswerService" } ], @@ -18504,7 +18762,7 @@ } }, { - "id": 1158, + "id": 1173, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -18520,7 +18778,7 @@ ], "signatures": [ { - "id": 1159, + "id": 1174, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -18541,7 +18799,7 @@ } }, { - "id": 1291, + "id": 1306, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -18557,7 +18815,7 @@ ], "signatures": [ { - "id": 1292, + "id": 1307, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -18579,14 +18837,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1293, + "id": 1308, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1295, + "id": 1310, "name": "child", "kind": 1024, "kindString": "Property", @@ -18598,7 +18856,7 @@ "defaultValue": "..." }, { - "id": 1294, + "id": 1309, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -18615,8 +18873,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1295, - 1294 + 1310, + 1309 ] } ] @@ -18634,7 +18892,7 @@ } }, { - "id": 1271, + "id": 1286, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -18650,7 +18908,7 @@ ], "signatures": [ { - "id": 1272, + "id": 1287, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -18666,7 +18924,7 @@ }, "parameters": [ { - "id": 1273, + "id": 1288, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -18674,20 +18932,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1274, + "id": 1289, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1275, + "id": 1290, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1276, + "id": 1291, "name": "key", "kind": 32768, "flags": {}, @@ -18732,7 +18990,7 @@ } }, { - "id": 1279, + "id": 1294, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -18748,7 +19006,7 @@ ], "signatures": [ { - "id": 1280, + "id": 1295, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -18769,7 +19027,7 @@ } }, { - "id": 1289, + "id": 1304, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -18785,7 +19043,7 @@ ], "signatures": [ { - "id": 1290, + "id": 1305, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -18809,7 +19067,7 @@ } }, { - "id": 1251, + "id": 1266, "name": "off", "kind": 2048, "kindString": "Method", @@ -18825,7 +19083,7 @@ ], "signatures": [ { - "id": 1252, + "id": 1267, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -18841,7 +19099,7 @@ }, "parameters": [ { - "id": 1253, + "id": 1268, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18851,12 +19109,12 @@ }, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, { - "id": 1254, + "id": 1269, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18866,7 +19124,7 @@ }, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } } @@ -18887,7 +19145,7 @@ } }, { - "id": 1245, + "id": 1260, "name": "on", "kind": 2048, "kindString": "Method", @@ -18903,7 +19161,7 @@ ], "signatures": [ { - "id": 1246, + "id": 1261, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -18923,7 +19181,7 @@ }, "parameters": [ { - "id": 1247, + "id": 1262, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18933,12 +19191,12 @@ }, "type": { "type": "reference", - "id": 1732, + "id": 1747, "name": "EmbedEvent" } }, { - "id": 1248, + "id": 1263, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -18948,12 +19206,12 @@ }, "type": { "type": "reference", - "id": 2363, + "id": 2378, "name": "MessageCallback" } }, { - "id": 1249, + "id": 1264, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18963,13 +19221,13 @@ }, "type": { "type": "reference", - "id": 2360, + "id": 2375, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 1250, + "id": 1265, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -18998,7 +19256,7 @@ } }, { - "id": 1268, + "id": 1283, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -19014,7 +19272,7 @@ ], "signatures": [ { - "id": 1269, + "id": 1284, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -19024,7 +19282,7 @@ }, "parameters": [ { - "id": 1270, + "id": 1285, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -19061,7 +19319,7 @@ } }, { - "id": 1281, + "id": 1296, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -19077,7 +19335,7 @@ ], "signatures": [ { - "id": 1282, + "id": 1297, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -19114,7 +19372,7 @@ } }, { - "id": 1160, + "id": 1175, "name": "render", "kind": 2048, "kindString": "Method", @@ -19130,7 +19388,7 @@ ], "signatures": [ { - "id": 1161, + "id": 1176, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -19140,7 +19398,7 @@ "typeArguments": [ { "type": "reference", - "id": 1152, + "id": 1167, "name": "SpotterEmbed" } ], @@ -19158,7 +19416,7 @@ } }, { - "id": 1285, + "id": 1300, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -19174,7 +19432,7 @@ ], "signatures": [ { - "id": 1286, + "id": 1301, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -19204,7 +19462,7 @@ } }, { - "id": 1287, + "id": 1302, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -19220,7 +19478,7 @@ ], "signatures": [ { - "id": 1288, + "id": 1303, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -19250,7 +19508,7 @@ } }, { - "id": 1255, + "id": 1270, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -19266,7 +19524,7 @@ ], "signatures": [ { - "id": 1256, + "id": 1271, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -19277,19 +19535,19 @@ }, "typeParameter": [ { - "id": 1257, + "id": 1272, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1813, + "id": 1828, "name": "HostEvent" } }, { - "id": 1258, + "id": 1273, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -19298,7 +19556,7 @@ ], "parameters": [ { - "id": 1259, + "id": 1274, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -19312,7 +19570,7 @@ } }, { - "id": 1260, + "id": 1275, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19369,7 +19627,7 @@ } }, { - "id": 1261, + "id": 1276, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -19385,7 +19643,7 @@ ], "signatures": [ { - "id": 1262, + "id": 1277, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -19396,21 +19654,21 @@ }, "typeParameter": [ { - "id": 1263, + "id": 1278, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2559, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1264, + "id": 1279, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -19424,7 +19682,7 @@ } }, { - "id": 1265, + "id": 1280, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -19477,29 +19735,29 @@ "title": "Constructors", "kind": 512, "children": [ - 1153 + 1168 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1277, + 1292, + 1311, + 1173, + 1306, + 1286, + 1294, + 1304, + 1266, + 1260, + 1283, 1296, - 1158, - 1291, - 1271, - 1279, - 1289, - 1251, - 1245, - 1268, - 1281, - 1160, - 1285, - 1287, - 1255, - 1261 + 1175, + 1300, + 1302, + 1270, + 1276 ] } ], @@ -19518,7 +19776,7 @@ ] }, { - "id": 2264, + "id": 2279, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -19534,7 +19792,7 @@ }, "children": [ { - "id": 2295, + "id": 2310, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -19564,20 +19822,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2296, + "id": 2311, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2297, + "id": 2312, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2298, + "id": 2313, "name": "key", "kind": 32768, "flags": {}, @@ -19613,7 +19871,7 @@ } }, { - "id": 2330, + "id": 2345, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -19654,7 +19912,7 @@ } }, { - "id": 2284, + "id": 2299, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -19691,7 +19949,7 @@ } }, { - "id": 2310, + "id": 2325, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -19720,7 +19978,7 @@ ], "type": { "type": "reference", - "id": 2008, + "id": 2023, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -19729,7 +19987,7 @@ } }, { - "id": 2294, + "id": 2309, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -19758,7 +20016,7 @@ ], "type": { "type": "reference", - "id": 2376, + "id": 2391, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -19767,7 +20025,7 @@ } }, { - "id": 2285, + "id": 2300, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -19804,7 +20062,7 @@ } }, { - "id": 2331, + "id": 2346, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -19845,7 +20103,7 @@ } }, { - "id": 2267, + "id": 2282, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -19882,7 +20140,7 @@ } }, { - "id": 2313, + "id": 2328, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -19919,7 +20177,7 @@ } }, { - "id": 2304, + "id": 2319, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -19956,7 +20214,7 @@ } }, { - "id": 2303, + "id": 2318, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -19987,7 +20245,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -19997,7 +20255,7 @@ } }, { - "id": 2326, + "id": 2341, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -20038,7 +20296,7 @@ } }, { - "id": 2286, + "id": 2301, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -20075,7 +20333,7 @@ } }, { - "id": 2283, + "id": 2298, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -20108,7 +20366,7 @@ } }, { - "id": 2332, + "id": 2347, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -20149,7 +20407,7 @@ } }, { - "id": 2268, + "id": 2283, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -20185,7 +20443,7 @@ } }, { - "id": 2276, + "id": 2291, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -20222,7 +20480,7 @@ } }, { - "id": 2329, + "id": 2344, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -20259,7 +20517,7 @@ } }, { - "id": 2325, + "id": 2340, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -20297,7 +20555,7 @@ } }, { - "id": 2328, + "id": 2343, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -20335,7 +20593,7 @@ } }, { - "id": 2315, + "id": 2330, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -20372,7 +20630,7 @@ } }, { - "id": 2318, + "id": 2333, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -20401,7 +20659,7 @@ ], "type": { "type": "reference", - "id": 2338, + "id": 2353, "name": "FrameParams" }, "inheritedFrom": { @@ -20410,7 +20668,7 @@ } }, { - "id": 2277, + "id": 2292, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -20444,7 +20702,7 @@ } }, { - "id": 2305, + "id": 2320, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -20479,7 +20737,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -20489,7 +20747,7 @@ } }, { - "id": 2301, + "id": 2316, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -20520,7 +20778,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2344, + "id": 2359, "name": "HomeLeftNavItem" } }, @@ -20530,7 +20788,7 @@ } }, { - "id": 2299, + "id": 2314, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -20562,7 +20820,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2352, + "id": 2367, "name": "HomepageModule" } }, @@ -20572,7 +20830,7 @@ } }, { - "id": 2302, + "id": 2317, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -20604,7 +20862,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2551, + "id": 2566, "name": "ListPageColumns" } }, @@ -20614,7 +20872,7 @@ } }, { - "id": 2307, + "id": 2322, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -20654,7 +20912,7 @@ } }, { - "id": 2269, + "id": 2284, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -20692,7 +20950,7 @@ } }, { - "id": 2266, + "id": 2281, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -20730,7 +20988,7 @@ } }, { - "id": 2291, + "id": 2306, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -20767,7 +21025,7 @@ } }, { - "id": 2278, + "id": 2293, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -20804,7 +21062,7 @@ } }, { - "id": 2274, + "id": 2289, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -20840,7 +21098,7 @@ } }, { - "id": 2270, + "id": 2285, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -20878,7 +21136,7 @@ } }, { - "id": 2288, + "id": 2303, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -20903,12 +21161,12 @@ ], "type": { "type": "reference", - "id": 2517, + "id": 2532, "name": "HomePageSearchBarMode" } }, { - "id": 2323, + "id": 2338, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -20945,7 +21203,7 @@ } }, { - "id": 2289, + "id": 2304, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -20982,7 +21240,7 @@ } }, { - "id": 2282, + "id": 2297, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -21015,7 +21273,7 @@ } }, { - "id": 2287, + "id": 2302, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -21044,7 +21302,7 @@ } }, { - "id": 2293, + "id": 2308, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -21081,7 +21339,7 @@ } }, { - "id": 2311, + "id": 2326, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -21118,7 +21376,7 @@ } }, { - "id": 2309, + "id": 2324, "name": "locale", "kind": 1024, "kindString": "Property", @@ -21155,7 +21413,7 @@ } }, { - "id": 2281, + "id": 2296, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -21192,7 +21450,7 @@ } }, { - "id": 2314, + "id": 2329, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -21229,7 +21487,7 @@ } }, { - "id": 2272, + "id": 2287, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -21259,12 +21517,12 @@ ], "type": { "type": "reference", - "id": 1691, + "id": 1706, "name": "Page" } }, { - "id": 2271, + "id": 2286, "name": "path", "kind": 1024, "kindString": "Property", @@ -21298,7 +21556,7 @@ } }, { - "id": 2316, + "id": 2331, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -21335,7 +21593,7 @@ } }, { - "id": 2300, + "id": 2315, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -21367,7 +21625,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2352, + "id": 2367, "name": "HomepageModule" } }, @@ -21377,7 +21635,7 @@ } }, { - "id": 2321, + "id": 2336, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -21408,7 +21666,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1712, + "id": 1727, "name": "RuntimeFilter" } }, @@ -21418,7 +21676,7 @@ } }, { - "id": 2322, + "id": 2337, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -21449,7 +21707,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2491, + "id": 2506, "name": "RuntimeParameter" } }, @@ -21459,7 +21717,7 @@ } }, { - "id": 2308, + "id": 2323, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -21496,7 +21754,7 @@ } }, { - "id": 2280, + "id": 2295, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -21533,7 +21791,7 @@ } }, { - "id": 2292, + "id": 2307, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -21570,7 +21828,7 @@ } }, { - "id": 2279, + "id": 2294, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -21607,7 +21865,7 @@ } }, { - "id": 2290, + "id": 2305, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -21644,7 +21902,7 @@ } }, { - "id": 2265, + "id": 2280, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -21681,7 +21939,7 @@ } }, { - "id": 2273, + "id": 2288, "name": "tag", "kind": 1024, "kindString": "Property", @@ -21714,7 +21972,7 @@ } }, { - "id": 2306, + "id": 2321, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -21750,7 +22008,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -21765,64 +22023,64 @@ "title": "Properties", "kind": 1024, "children": [ - 2295, - 2330, - 2284, 2310, - 2294, - 2285, - 2331, - 2267, - 2313, - 2304, - 2303, - 2326, - 2286, - 2283, - 2332, - 2268, - 2276, - 2329, + 2345, + 2299, 2325, + 2309, + 2300, + 2346, + 2282, 2328, - 2315, + 2319, 2318, - 2277, - 2305, + 2341, 2301, - 2299, - 2302, - 2307, - 2269, - 2266, + 2298, + 2347, + 2283, 2291, - 2278, - 2274, - 2270, - 2288, - 2323, - 2289, - 2282, - 2287, - 2293, - 2311, - 2309, - 2281, - 2314, - 2272, - 2271, + 2344, + 2340, + 2343, + 2330, + 2333, + 2292, + 2320, 2316, - 2300, - 2321, + 2314, + 2317, 2322, + 2284, + 2281, + 2306, + 2293, + 2289, + 2285, + 2303, + 2338, + 2304, + 2297, + 2302, 2308, + 2326, + 2324, + 2296, + 2329, + 2287, + 2286, + 2331, + 2315, + 2336, + 2337, + 2323, + 2295, + 2307, + 2294, + 2305, 2280, - 2292, - 2279, - 2290, - 2265, - 2273, - 2306 + 2288, + 2321 ] } ], @@ -21851,7 +22109,7 @@ ] }, { - "id": 1555, + "id": 1570, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -21867,14 +22125,14 @@ }, "children": [ { - "id": 1592, + "id": 1607, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1593, + "id": 1608, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -21884,19 +22142,19 @@ }, "parameters": [ { - "id": 1594, + "id": 1609, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1554, + "id": 1569, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1595, + "id": 1610, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -21920,14 +22178,14 @@ ] }, { - "id": 1596, + "id": 1611, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1597, + "id": 1612, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -21937,7 +22195,7 @@ }, "parameters": [ { - "id": 1598, + "id": 1613, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -21945,12 +22203,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1546, + "id": 1561, "name": "AuthStatus" } }, { - "id": 1599, + "id": 1614, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -21959,21 +22217,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1600, + "id": 1615, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1601, + "id": 1616, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1602, + "id": 1617, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -21999,7 +22257,7 @@ } }, { - "id": 1603, + "id": 1618, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -22011,7 +22269,7 @@ } }, { - "id": 1604, + "id": 1619, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -22027,21 +22285,21 @@ ], "type": { "type": "reference", - "id": 1555, + "id": 1570, "name": "AuthEventEmitter" } } ] }, { - "id": 1556, + "id": 1571, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1557, + "id": 1572, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -22051,7 +22309,7 @@ }, "parameters": [ { - "id": 1558, + "id": 1573, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -22059,12 +22317,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1547, + "id": 1562, "name": "FAILURE" } }, { - "id": 1559, + "id": 1574, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -22075,28 +22333,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1560, + "id": 1575, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1561, + "id": 1576, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1562, + "id": 1577, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1540, + "id": 1555, "name": "AuthFailureType" } } @@ -22113,12 +22371,12 @@ ], "type": { "type": "reference", - "id": 1555, + "id": 1570, "name": "AuthEventEmitter" } }, { - "id": 1563, + "id": 1578, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -22128,7 +22386,7 @@ }, "parameters": [ { - "id": 1564, + "id": 1579, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -22139,24 +22397,24 @@ "types": [ { "type": "reference", - "id": 1548, + "id": 1563, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1551, + "id": 1566, "name": "LOGOUT" }, { "type": "reference", - "id": 1552, + "id": 1567, "name": "WAITING_FOR_POPUP" } ] } }, { - "id": 1565, + "id": 1580, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -22167,14 +22425,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1566, + "id": 1581, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1567, + "id": 1582, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -22191,31 +22449,31 @@ ], "type": { "type": "reference", - "id": 1555, + "id": 1570, "name": "AuthEventEmitter" } }, { - "id": 1568, + "id": 1583, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1569, + "id": 1584, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1550, + "id": 1565, "name": "SUCCESS" } }, { - "id": 1570, + "id": 1585, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -22223,21 +22481,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1571, + "id": 1586, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1572, + "id": 1587, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1573, + "id": 1588, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -22260,40 +22518,40 @@ ], "type": { "type": "reference", - "id": 1555, + "id": 1570, "name": "AuthEventEmitter" } } ] }, { - "id": 1574, + "id": 1589, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1575, + "id": 1590, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1576, + "id": 1591, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1547, + "id": 1562, "name": "FAILURE" } }, { - "id": 1577, + "id": 1592, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -22301,28 +22559,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1578, + "id": 1593, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1579, + "id": 1594, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1580, + "id": 1595, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1540, + "id": 1555, "name": "AuthFailureType" } } @@ -22339,19 +22597,19 @@ ], "type": { "type": "reference", - "id": 1555, + "id": 1570, "name": "AuthEventEmitter" } }, { - "id": 1581, + "id": 1596, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1582, + "id": 1597, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -22361,24 +22619,24 @@ "types": [ { "type": "reference", - "id": 1548, + "id": 1563, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1551, + "id": 1566, "name": "LOGOUT" }, { "type": "reference", - "id": 1552, + "id": 1567, "name": "WAITING_FOR_POPUP" } ] } }, { - "id": 1583, + "id": 1598, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -22386,14 +22644,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1584, + "id": 1599, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1585, + "id": 1600, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -22410,31 +22668,31 @@ ], "type": { "type": "reference", - "id": 1555, + "id": 1570, "name": "AuthEventEmitter" } }, { - "id": 1586, + "id": 1601, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1587, + "id": 1602, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1550, + "id": 1565, "name": "SUCCESS" } }, { - "id": 1588, + "id": 1603, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -22442,21 +22700,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1589, + "id": 1604, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1590, + "id": 1605, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1591, + "id": 1606, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -22479,21 +22737,21 @@ ], "type": { "type": "reference", - "id": 1555, + "id": 1570, "name": "AuthEventEmitter" } } ] }, { - "id": 1605, + "id": 1620, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1606, + "id": 1621, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -22503,7 +22761,7 @@ }, "parameters": [ { - "id": 1607, + "id": 1622, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -22513,14 +22771,14 @@ }, "type": { "type": "reference", - "id": 1546, + "id": 1561, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1555, + "id": 1570, "name": "AuthEventEmitter" } } @@ -22532,11 +22790,11 @@ "title": "Methods", "kind": 2048, "children": [ - 1592, - 1596, - 1556, - 1574, - 1605 + 1607, + 1611, + 1571, + 1589, + 1620 ] } ], @@ -22718,7 +22976,7 @@ ], "type": { "type": "reference", - "id": 2008, + "id": 2023, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -22756,7 +23014,7 @@ ], "type": { "type": "reference", - "id": 2376, + "id": 2391, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22911,7 +23169,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -23182,7 +23440,7 @@ ], "type": { "type": "reference", - "id": 2338, + "id": 2353, "name": "FrameParams" }, "inheritedFrom": { @@ -23226,7 +23484,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -23267,7 +23525,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2344, + "id": 2359, "name": "HomeLeftNavItem" } }, @@ -23309,7 +23567,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2352, + "id": 2367, "name": "HomepageModule" } }, @@ -23351,7 +23609,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2551, + "id": 2566, "name": "ListPageColumns" } }, @@ -23618,7 +23876,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2352, + "id": 2367, "name": "HomepageModule" } }, @@ -23659,7 +23917,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1712, + "id": 1727, "name": "RuntimeFilter" } }, @@ -23700,7 +23958,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2491, + "id": 2506, "name": "RuntimeParameter" } }, @@ -23783,7 +24041,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -23910,7 +24168,7 @@ ] }, { - "id": 1346, + "id": 1361, "name": "ConversationViewConfig", "kind": 256, "kindString": "Interface", @@ -23930,7 +24188,7 @@ }, "children": [ { - "id": 1366, + "id": 1381, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -23960,20 +24218,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1367, + "id": 1382, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1368, + "id": 1383, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1369, + "id": 1384, "name": "key", "kind": 32768, "flags": {}, @@ -24009,7 +24267,7 @@ } }, { - "id": 1387, + "id": 1402, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -24050,7 +24308,7 @@ } }, { - "id": 1372, + "id": 1387, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -24079,7 +24337,7 @@ ], "type": { "type": "reference", - "id": 2008, + "id": 2023, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -24088,7 +24346,7 @@ } }, { - "id": 1370, + "id": 1385, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -24117,7 +24375,7 @@ ], "type": { "type": "reference", - "id": 2376, + "id": 2391, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -24126,7 +24384,7 @@ } }, { - "id": 1351, + "id": 1366, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -24167,7 +24425,7 @@ } }, { - "id": 1389, + "id": 1404, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -24204,7 +24462,7 @@ } }, { - "id": 1349, + "id": 1364, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -24237,7 +24495,7 @@ } }, { - "id": 1359, + "id": 1374, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -24274,7 +24532,7 @@ } }, { - "id": 1358, + "id": 1373, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -24305,7 +24563,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -24315,7 +24573,7 @@ } }, { - "id": 1383, + "id": 1398, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -24356,7 +24614,7 @@ } }, { - "id": 1390, + "id": 1405, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -24397,7 +24655,7 @@ } }, { - "id": 1386, + "id": 1401, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -24434,7 +24692,7 @@ } }, { - "id": 1376, + "id": 1391, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -24472,7 +24730,7 @@ } }, { - "id": 1385, + "id": 1400, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -24510,7 +24768,7 @@ } }, { - "id": 1388, + "id": 1403, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -24547,7 +24805,7 @@ } }, { - "id": 1355, + "id": 1370, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -24576,7 +24834,7 @@ ], "type": { "type": "reference", - "id": 2338, + "id": 2353, "name": "FrameParams" }, "inheritedFrom": { @@ -24585,7 +24843,7 @@ } }, { - "id": 1360, + "id": 1375, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -24620,7 +24878,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -24630,7 +24888,7 @@ } }, { - "id": 1381, + "id": 1396, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -24661,7 +24919,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2344, + "id": 2359, "name": "HomeLeftNavItem" } }, @@ -24671,7 +24929,7 @@ } }, { - "id": 1378, + "id": 1393, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -24703,7 +24961,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2352, + "id": 2367, "name": "HomepageModule" } }, @@ -24713,7 +24971,7 @@ } }, { - "id": 1392, + "id": 1407, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -24745,7 +25003,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2551, + "id": 2566, "name": "ListPageColumns" } }, @@ -24755,7 +25013,7 @@ } }, { - "id": 1377, + "id": 1392, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -24795,7 +25053,7 @@ } }, { - "id": 1353, + "id": 1368, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -24828,7 +25086,7 @@ } }, { - "id": 1350, + "id": 1365, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -24861,7 +25119,7 @@ } }, { - "id": 1371, + "id": 1386, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -24898,7 +25156,7 @@ } }, { - "id": 1373, + "id": 1388, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -24935,7 +25193,7 @@ } }, { - "id": 1365, + "id": 1380, "name": "locale", "kind": 1024, "kindString": "Property", @@ -24972,7 +25230,7 @@ } }, { - "id": 1391, + "id": 1406, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -25009,7 +25267,7 @@ } }, { - "id": 1382, + "id": 1397, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -25046,7 +25304,7 @@ } }, { - "id": 1379, + "id": 1394, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -25078,7 +25336,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2352, + "id": 2367, "name": "HomepageModule" } }, @@ -25088,7 +25346,7 @@ } }, { - "id": 1363, + "id": 1378, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -25119,7 +25377,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1712, + "id": 1727, "name": "RuntimeFilter" } }, @@ -25129,7 +25387,7 @@ } }, { - "id": 1364, + "id": 1379, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -25160,7 +25418,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2491, + "id": 2506, "name": "RuntimeParameter" } }, @@ -25170,7 +25428,7 @@ } }, { - "id": 1348, + "id": 1363, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -25193,7 +25451,7 @@ } }, { - "id": 1362, + "id": 1377, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -25230,7 +25488,7 @@ } }, { - "id": 1352, + "id": 1367, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -25263,7 +25521,7 @@ } }, { - "id": 1361, + "id": 1376, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -25299,7 +25557,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -25309,7 +25567,7 @@ } }, { - "id": 1380, + "id": 1395, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -25350,7 +25608,7 @@ } }, { - "id": 1347, + "id": 1362, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -25376,43 +25634,43 @@ "title": "Properties", "kind": 1024, "children": [ - 1366, + 1381, + 1402, 1387, - 1372, + 1385, + 1366, + 1404, + 1364, + 1374, + 1373, + 1398, + 1405, + 1401, + 1391, + 1400, + 1403, 1370, - 1351, - 1389, - 1349, - 1359, - 1358, - 1383, - 1390, + 1375, + 1396, + 1393, + 1407, + 1392, + 1368, + 1365, 1386, - 1376, - 1385, 1388, - 1355, - 1360, - 1381, + 1380, + 1406, + 1397, + 1394, 1378, - 1392, - 1377, - 1353, - 1350, - 1371, - 1373, - 1365, - 1391, - 1382, 1379, 1363, - 1364, - 1348, - 1362, - 1352, - 1361, - 1380, - 1347 + 1377, + 1367, + 1376, + 1395, + 1362 ] } ], @@ -25431,7 +25689,7 @@ ] }, { - "id": 2524, + "id": 2539, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -25446,7 +25704,7 @@ }, "children": [ { - "id": 2525, + "id": 2540, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -25463,14 +25721,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2526, + "id": 2541, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2527, + "id": 2542, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -25484,12 +25742,12 @@ ], "type": { "type": "reference", - "id": 2521, + "id": 2536, "name": "VizPoint" } }, { - "id": 2528, + "id": 2543, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -25505,7 +25763,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2521, + "id": 2536, "name": "VizPoint" } } @@ -25516,8 +25774,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2527, - 2528 + 2542, + 2543 ] } ] @@ -25525,7 +25783,7 @@ } }, { - "id": 2529, + "id": 2544, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -25540,14 +25798,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2530, + "id": 2545, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2538, + "id": 2553, "name": "columns", "kind": 1024, "kindString": "Property", @@ -25568,7 +25826,7 @@ } }, { - "id": 2539, + "id": 2554, "name": "data", "kind": 1024, "kindString": "Property", @@ -25589,7 +25847,7 @@ } }, { - "id": 2532, + "id": 2547, "name": "id", "kind": 1024, "kindString": "Property", @@ -25607,7 +25865,7 @@ } }, { - "id": 2531, + "id": 2546, "name": "name", "kind": 1024, "kindString": "Property", @@ -25625,7 +25883,7 @@ } }, { - "id": 2533, + "id": 2548, "name": "sources", "kind": 1024, "kindString": "Property", @@ -25640,14 +25898,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2534, + "id": 2549, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2535, + "id": 2550, "name": "header", "kind": 1024, "kindString": "Property", @@ -25662,14 +25920,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2536, + "id": 2551, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2537, + "id": 2552, "name": "guid", "kind": 1024, "kindString": "Property", @@ -25692,7 +25950,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2537 + 2552 ] } ] @@ -25705,7 +25963,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2535 + 2550 ] } ] @@ -25718,23 +25976,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2538, - 2539, - 2532, - 2531, - 2533 + 2553, + 2554, + 2547, + 2546, + 2548 ] } ], "indexSignature": { - "id": 2540, + "id": 2555, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2541, + "id": 2556, "name": "key", "kind": 32768, "flags": {}, @@ -25753,7 +26011,7 @@ } }, { - "id": 2542, + "id": 2557, "name": "session", "kind": 1024, "kindString": "Property", @@ -25767,12 +26025,12 @@ ], "type": { "type": "reference", - "id": 1681, + "id": 1696, "name": "SessionInterface" } }, { - "id": 2543, + "id": 2558, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -25797,10 +26055,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2525, - 2529, - 2542, - 2543 + 2540, + 2544, + 2557, + 2558 ] } ], @@ -25813,7 +26071,7 @@ ] }, { - "id": 2398, + "id": 2413, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -25823,7 +26081,7 @@ }, "children": [ { - "id": 2452, + "id": 2467, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -25846,7 +26104,7 @@ } }, { - "id": 2451, + "id": 2466, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -25869,7 +26127,7 @@ } }, { - "id": 2421, + "id": 2436, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -25892,7 +26150,7 @@ } }, { - "id": 2422, + "id": 2437, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -25915,7 +26173,7 @@ } }, { - "id": 2424, + "id": 2439, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -25938,7 +26196,7 @@ } }, { - "id": 2423, + "id": 2438, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -25961,7 +26219,7 @@ } }, { - "id": 2403, + "id": 2418, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -25984,7 +26242,7 @@ } }, { - "id": 2464, + "id": 2479, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -26007,7 +26265,7 @@ } }, { - "id": 2465, + "id": 2480, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -26030,7 +26288,7 @@ } }, { - "id": 2462, + "id": 2477, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -26053,7 +26311,7 @@ } }, { - "id": 2463, + "id": 2478, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -26076,7 +26334,7 @@ } }, { - "id": 2426, + "id": 2441, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -26099,7 +26357,7 @@ } }, { - "id": 2431, + "id": 2446, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -26122,7 +26380,7 @@ } }, { - "id": 2428, + "id": 2443, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -26145,7 +26403,7 @@ } }, { - "id": 2430, + "id": 2445, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -26168,7 +26426,7 @@ } }, { - "id": 2429, + "id": 2444, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -26191,7 +26449,7 @@ } }, { - "id": 2427, + "id": 2442, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -26214,7 +26472,7 @@ } }, { - "id": 2436, + "id": 2451, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -26237,7 +26495,7 @@ } }, { - "id": 2433, + "id": 2448, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -26260,7 +26518,7 @@ } }, { - "id": 2435, + "id": 2450, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -26283,7 +26541,7 @@ } }, { - "id": 2434, + "id": 2449, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -26306,7 +26564,7 @@ } }, { - "id": 2432, + "id": 2447, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -26329,7 +26587,7 @@ } }, { - "id": 2440, + "id": 2455, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -26352,7 +26610,7 @@ } }, { - "id": 2439, + "id": 2454, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -26375,7 +26633,7 @@ } }, { - "id": 2438, + "id": 2453, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -26398,7 +26656,7 @@ } }, { - "id": 2437, + "id": 2452, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -26421,7 +26679,7 @@ } }, { - "id": 2425, + "id": 2440, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -26444,7 +26702,7 @@ } }, { - "id": 2487, + "id": 2502, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -26467,7 +26725,7 @@ } }, { - "id": 2490, + "id": 2505, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -26490,7 +26748,7 @@ } }, { - "id": 2485, + "id": 2500, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -26513,7 +26771,7 @@ } }, { - "id": 2488, + "id": 2503, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -26536,7 +26794,7 @@ } }, { - "id": 2489, + "id": 2504, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -26559,7 +26817,7 @@ } }, { - "id": 2484, + "id": 2499, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -26582,7 +26840,7 @@ } }, { - "id": 2486, + "id": 2501, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -26605,7 +26863,7 @@ } }, { - "id": 2457, + "id": 2472, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -26628,7 +26886,7 @@ } }, { - "id": 2456, + "id": 2471, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -26651,7 +26909,7 @@ } }, { - "id": 2459, + "id": 2474, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -26674,7 +26932,7 @@ } }, { - "id": 2458, + "id": 2473, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -26697,7 +26955,7 @@ } }, { - "id": 2455, + "id": 2470, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -26720,7 +26978,7 @@ } }, { - "id": 2453, + "id": 2468, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -26743,7 +27001,7 @@ } }, { - "id": 2454, + "id": 2469, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -26766,7 +27024,7 @@ } }, { - "id": 2460, + "id": 2475, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -26789,7 +27047,7 @@ } }, { - "id": 2461, + "id": 2476, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -26812,7 +27070,7 @@ } }, { - "id": 2472, + "id": 2487, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -26835,7 +27093,7 @@ } }, { - "id": 2473, + "id": 2488, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -26858,7 +27116,7 @@ } }, { - "id": 2476, + "id": 2491, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -26881,7 +27139,7 @@ } }, { - "id": 2474, + "id": 2489, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -26904,7 +27162,7 @@ } }, { - "id": 2475, + "id": 2490, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -26927,7 +27185,7 @@ } }, { - "id": 2483, + "id": 2498, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -26950,7 +27208,7 @@ } }, { - "id": 2482, + "id": 2497, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -26973,7 +27231,7 @@ } }, { - "id": 2481, + "id": 2496, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -26996,7 +27254,7 @@ } }, { - "id": 2480, + "id": 2495, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -27019,7 +27277,7 @@ } }, { - "id": 2478, + "id": 2493, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -27042,7 +27300,7 @@ } }, { - "id": 2477, + "id": 2492, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -27065,7 +27323,7 @@ } }, { - "id": 2470, + "id": 2485, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -27088,7 +27346,7 @@ } }, { - "id": 2467, + "id": 2482, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -27111,7 +27369,7 @@ } }, { - "id": 2466, + "id": 2481, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -27134,7 +27392,7 @@ } }, { - "id": 2468, + "id": 2483, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -27157,7 +27415,7 @@ } }, { - "id": 2471, + "id": 2486, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -27180,7 +27438,7 @@ } }, { - "id": 2469, + "id": 2484, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -27203,7 +27461,7 @@ } }, { - "id": 2404, + "id": 2419, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -27226,7 +27484,7 @@ } }, { - "id": 2405, + "id": 2420, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -27249,7 +27507,7 @@ } }, { - "id": 2399, + "id": 2414, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -27272,7 +27530,7 @@ } }, { - "id": 2400, + "id": 2415, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -27295,7 +27553,7 @@ } }, { - "id": 2401, + "id": 2416, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -27318,7 +27576,7 @@ } }, { - "id": 2402, + "id": 2417, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -27341,7 +27599,7 @@ } }, { - "id": 2413, + "id": 2428, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -27364,7 +27622,7 @@ } }, { - "id": 2417, + "id": 2432, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -27387,7 +27645,7 @@ } }, { - "id": 2418, + "id": 2433, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -27410,7 +27668,7 @@ } }, { - "id": 2416, + "id": 2431, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -27433,7 +27691,7 @@ } }, { - "id": 2412, + "id": 2427, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -27456,7 +27714,7 @@ } }, { - "id": 2415, + "id": 2430, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -27479,7 +27737,7 @@ } }, { - "id": 2409, + "id": 2424, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -27502,7 +27760,7 @@ } }, { - "id": 2410, + "id": 2425, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -27525,7 +27783,7 @@ } }, { - "id": 2411, + "id": 2426, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -27548,7 +27806,7 @@ } }, { - "id": 2406, + "id": 2421, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -27571,7 +27829,7 @@ } }, { - "id": 2407, + "id": 2422, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -27594,7 +27852,7 @@ } }, { - "id": 2408, + "id": 2423, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -27617,7 +27875,7 @@ } }, { - "id": 2414, + "id": 2429, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -27640,7 +27898,7 @@ } }, { - "id": 2479, + "id": 2494, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -27663,7 +27921,7 @@ } }, { - "id": 2419, + "id": 2434, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -27686,7 +27944,7 @@ } }, { - "id": 2420, + "id": 2435, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -27709,7 +27967,7 @@ } }, { - "id": 2449, + "id": 2464, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -27732,7 +27990,7 @@ } }, { - "id": 2447, + "id": 2462, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -27755,7 +28013,7 @@ } }, { - "id": 2448, + "id": 2463, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -27778,7 +28036,7 @@ } }, { - "id": 2444, + "id": 2459, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -27801,7 +28059,7 @@ } }, { - "id": 2445, + "id": 2460, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -27824,7 +28082,7 @@ } }, { - "id": 2446, + "id": 2461, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -27847,7 +28105,7 @@ } }, { - "id": 2450, + "id": 2465, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -27870,7 +28128,7 @@ } }, { - "id": 2441, + "id": 2456, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -27893,7 +28151,7 @@ } }, { - "id": 2442, + "id": 2457, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -27916,7 +28174,7 @@ } }, { - "id": 2443, + "id": 2458, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -27944,98 +28202,98 @@ "title": "Properties", "kind": 1024, "children": [ - 2452, - 2451, - 2421, - 2422, - 2424, - 2423, - 2403, - 2464, - 2465, - 2462, - 2463, - 2426, - 2431, - 2428, - 2430, - 2429, - 2427, + 2467, + 2466, 2436, - 2433, - 2435, - 2434, - 2432, - 2440, + 2437, 2439, 2438, - 2437, - 2425, - 2487, - 2490, - 2485, - 2488, - 2489, - 2484, - 2486, - 2457, - 2456, - 2459, - 2458, + 2418, + 2479, + 2480, + 2477, + 2478, + 2441, + 2446, + 2443, + 2445, + 2444, + 2442, + 2451, + 2448, + 2450, + 2449, + 2447, 2455, - 2453, 2454, - 2460, - 2461, + 2453, + 2452, + 2440, + 2502, + 2505, + 2500, + 2503, + 2504, + 2499, + 2501, 2472, - 2473, - 2476, + 2471, 2474, - 2475, - 2483, - 2482, - 2481, - 2480, - 2478, - 2477, + 2473, 2470, - 2467, - 2466, 2468, - 2471, 2469, - 2404, - 2405, - 2399, - 2400, - 2401, - 2402, - 2413, - 2417, - 2418, - 2416, - 2412, - 2415, - 2409, - 2410, - 2411, - 2406, - 2407, - 2408, - 2414, - 2479, + 2475, + 2476, + 2487, + 2488, + 2491, + 2489, + 2490, + 2498, + 2497, + 2496, + 2495, + 2493, + 2492, + 2485, + 2482, + 2481, + 2483, + 2486, + 2484, 2419, 2420, - 2449, - 2447, - 2448, - 2444, - 2445, - 2446, - 2450, - 2441, - 2442, - 2443 + 2414, + 2415, + 2416, + 2417, + 2428, + 2432, + 2433, + 2431, + 2427, + 2430, + 2424, + 2425, + 2426, + 2421, + 2422, + 2423, + 2429, + 2494, + 2434, + 2435, + 2464, + 2462, + 2463, + 2459, + 2460, + 2461, + 2465, + 2456, + 2457, + 2458 ] } ], @@ -28048,7 +28306,7 @@ ] }, { - "id": 2386, + "id": 2401, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -28058,7 +28316,7 @@ }, "children": [ { - "id": 2388, + "id": 2403, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -28074,12 +28332,12 @@ ], "type": { "type": "reference", - "id": 2389, + "id": 2404, "name": "customCssInterface" } }, { - "id": 2387, + "id": 2402, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -28104,8 +28362,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2388, - 2387 + 2403, + 2402 ] } ], @@ -28118,7 +28376,7 @@ ] }, { - "id": 2376, + "id": 2391, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -28134,7 +28392,7 @@ }, "children": [ { - "id": 2378, + "id": 2393, "name": "content", "kind": 1024, "kindString": "Property", @@ -28151,14 +28409,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2379, + "id": 2394, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2381, + "id": 2396, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -28188,7 +28446,7 @@ } }, { - "id": 2382, + "id": 2397, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -28208,7 +28466,7 @@ } }, { - "id": 2380, + "id": 2395, "name": "strings", "kind": 1024, "kindString": "Property", @@ -28251,21 +28509,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2381, - 2382, - 2380 + 2396, + 2397, + 2395 ] } ], "indexSignature": { - "id": 2383, + "id": 2398, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2384, + "id": 2399, "name": "key", "kind": 32768, "flags": {}, @@ -28284,7 +28542,7 @@ } }, { - "id": 2385, + "id": 2400, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -28304,7 +28562,7 @@ } }, { - "id": 2377, + "id": 2392, "name": "style", "kind": 1024, "kindString": "Property", @@ -28320,7 +28578,7 @@ ], "type": { "type": "reference", - "id": 2386, + "id": 2401, "name": "CustomStyles" } } @@ -28330,9 +28588,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2378, - 2385, - 2377 + 2393, + 2400, + 2392 ] } ], @@ -28345,7 +28603,7 @@ ] }, { - "id": 2012, + "id": 2027, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -28361,7 +28619,7 @@ }, "children": [ { - "id": 2054, + "id": 2069, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -28391,20 +28649,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2055, + "id": 2070, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2056, + "id": 2071, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2057, + "id": 2072, "name": "key", "kind": 32768, "flags": {}, @@ -28436,7 +28694,7 @@ } }, { - "id": 2015, + "id": 2030, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -28459,7 +28717,7 @@ } }, { - "id": 2036, + "id": 2051, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -28501,7 +28759,7 @@ } }, { - "id": 2038, + "id": 2053, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -28530,7 +28788,7 @@ } }, { - "id": 2014, + "id": 2029, "name": "authType", "kind": 1024, "kindString": "Property", @@ -28547,12 +28805,12 @@ ], "type": { "type": "reference", - "id": 1700, + "id": 1715, "name": "AuthType" } }, { - "id": 2027, + "id": 2042, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -28581,7 +28839,7 @@ } }, { - "id": 2039, + "id": 2054, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -28614,7 +28872,7 @@ } }, { - "id": 2030, + "id": 2045, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -28643,7 +28901,7 @@ } }, { - "id": 2051, + "id": 2066, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -28672,7 +28930,7 @@ } }, { - "id": 2058, + "id": 2073, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -28715,7 +28973,7 @@ } }, { - "id": 2035, + "id": 2050, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -28740,12 +28998,12 @@ ], "type": { "type": "reference", - "id": 2376, + "id": 2391, "name": "CustomisationsInterface" } }, { - "id": 2049, + "id": 2064, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -28774,7 +29032,7 @@ } }, { - "id": 2032, + "id": 2047, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -28804,7 +29062,7 @@ } }, { - "id": 2053, + "id": 2068, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -28833,7 +29091,7 @@ } }, { - "id": 2028, + "id": 2043, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -28866,7 +29124,7 @@ } }, { - "id": 2059, + "id": 2074, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -28886,7 +29144,7 @@ } }, { - "id": 2048, + "id": 2063, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -28915,7 +29173,7 @@ } }, { - "id": 2026, + "id": 2041, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -28944,7 +29202,7 @@ } }, { - "id": 2021, + "id": 2036, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -28978,7 +29236,7 @@ } }, { - "id": 2047, + "id": 2062, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -29011,12 +29269,12 @@ ], "type": { "type": "reference", - "id": 2494, + "id": 2509, "name": "LogLevel" } }, { - "id": 2029, + "id": 2044, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -29045,7 +29303,7 @@ } }, { - "id": 2020, + "id": 2035, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -29078,7 +29336,7 @@ } }, { - "id": 2050, + "id": 2065, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -29107,7 +29365,7 @@ } }, { - "id": 2019, + "id": 2034, "name": "password", "kind": 1024, "kindString": "Property", @@ -29131,7 +29389,7 @@ } }, { - "id": 2045, + "id": 2060, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -29160,7 +29418,7 @@ } }, { - "id": 2031, + "id": 2046, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -29193,7 +29451,7 @@ } }, { - "id": 2022, + "id": 2037, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -29223,7 +29481,7 @@ } }, { - "id": 2024, + "id": 2039, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -29252,7 +29510,7 @@ } }, { - "id": 2046, + "id": 2061, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -29281,7 +29539,7 @@ } }, { - "id": 2025, + "id": 2040, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -29310,7 +29568,7 @@ } }, { - "id": 2034, + "id": 2049, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -29333,7 +29591,7 @@ } }, { - "id": 2033, + "id": 2048, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -29362,7 +29620,7 @@ } }, { - "id": 2013, + "id": 2028, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -29383,7 +29641,7 @@ } }, { - "id": 2037, + "id": 2052, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -29406,7 +29664,7 @@ } }, { - "id": 2018, + "id": 2033, "name": "username", "kind": 1024, "kindString": "Property", @@ -29429,7 +29687,7 @@ } }, { - "id": 2016, + "id": 2031, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -29445,7 +29703,7 @@ ], "signatures": [ { - "id": 2017, + "id": 2032, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -29473,48 +29731,48 @@ "title": "Properties", "kind": 1024, "children": [ - 2054, - 2015, - 2036, - 2038, - 2014, - 2027, - 2039, + 2069, 2030, 2051, - 2058, - 2035, - 2049, - 2032, 2053, - 2028, - 2059, - 2048, - 2026, - 2021, - 2047, 2029, - 2020, - 2050, - 2019, + 2042, + 2054, 2045, - 2031, - 2022, - 2024, - 2046, - 2025, + 2066, + 2073, + 2050, + 2064, + 2047, + 2068, + 2043, + 2074, + 2063, + 2041, + 2036, + 2062, + 2044, + 2035, + 2065, 2034, - 2033, - 2013, + 2060, + 2046, 2037, - 2018 + 2039, + 2061, + 2040, + 2049, + 2048, + 2028, + 2052, + 2033 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2016 + 2031 ] } ], @@ -29527,7 +29785,7 @@ ] }, { - "id": 2338, + "id": 2353, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -29543,7 +29801,7 @@ }, "children": [ { - "id": 2340, + "id": 2355, "name": "height", "kind": 1024, "kindString": "Property", @@ -29575,7 +29833,7 @@ } }, { - "id": 2341, + "id": 2356, "name": "loading", "kind": 1024, "kindString": "Property", @@ -29611,7 +29869,7 @@ } }, { - "id": 2339, + "id": 2354, "name": "width", "kind": 1024, "kindString": "Property", @@ -29648,9 +29906,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2340, - 2341, - 2339 + 2355, + 2356, + 2354 ] } ], @@ -29662,7 +29920,7 @@ } ], "indexSignature": { - "id": 2342, + "id": 2357, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -29672,7 +29930,7 @@ }, "parameters": [ { - "id": 2343, + "id": 2358, "name": "key", "kind": 32768, "flags": {}, @@ -29706,7 +29964,7 @@ } }, { - "id": 2152, + "id": 2167, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -29722,7 +29980,7 @@ }, "children": [ { - "id": 2163, + "id": 2178, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -29755,7 +30013,7 @@ } }, { - "id": 2181, + "id": 2196, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -29785,20 +30043,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2182, + "id": 2197, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2183, + "id": 2198, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2184, + "id": 2199, "name": "key", "kind": 32768, "flags": {}, @@ -29834,7 +30092,7 @@ } }, { - "id": 2214, + "id": 2229, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -29875,7 +30133,7 @@ } }, { - "id": 2194, + "id": 2209, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -29904,7 +30162,7 @@ ], "type": { "type": "reference", - "id": 2008, + "id": 2023, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -29913,7 +30171,7 @@ } }, { - "id": 2179, + "id": 2194, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -29950,7 +30208,7 @@ } }, { - "id": 2180, + "id": 2195, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -29979,7 +30237,7 @@ ], "type": { "type": "reference", - "id": 2376, + "id": 2391, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -29988,7 +30246,7 @@ } }, { - "id": 2215, + "id": 2230, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -30029,7 +30287,7 @@ } }, { - "id": 2154, + "id": 2169, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -30066,7 +30324,7 @@ } }, { - "id": 2197, + "id": 2212, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -30103,7 +30361,7 @@ } }, { - "id": 2187, + "id": 2202, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -30140,7 +30398,7 @@ } }, { - "id": 2186, + "id": 2201, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -30171,7 +30429,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -30181,7 +30439,7 @@ } }, { - "id": 2210, + "id": 2225, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -30222,7 +30480,7 @@ } }, { - "id": 2170, + "id": 2185, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -30259,7 +30517,7 @@ } }, { - "id": 2169, + "id": 2184, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -30296,7 +30554,7 @@ } }, { - "id": 2216, + "id": 2231, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -30337,7 +30595,7 @@ } }, { - "id": 2213, + "id": 2228, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -30374,7 +30632,7 @@ } }, { - "id": 2155, + "id": 2170, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -30410,7 +30668,7 @@ } }, { - "id": 2209, + "id": 2224, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -30448,7 +30706,7 @@ } }, { - "id": 2212, + "id": 2227, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -30486,7 +30744,7 @@ } }, { - "id": 2199, + "id": 2214, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -30523,7 +30781,7 @@ } }, { - "id": 2202, + "id": 2217, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -30552,7 +30810,7 @@ ], "type": { "type": "reference", - "id": 2338, + "id": 2353, "name": "FrameParams" }, "inheritedFrom": { @@ -30561,7 +30819,7 @@ } }, { - "id": 2153, + "id": 2168, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -30595,7 +30853,7 @@ } }, { - "id": 2188, + "id": 2203, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -30630,7 +30888,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -30640,7 +30898,7 @@ } }, { - "id": 2185, + "id": 2200, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -30672,7 +30930,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2551, + "id": 2566, "name": "ListPageColumns" } }, @@ -30682,7 +30940,7 @@ } }, { - "id": 2190, + "id": 2205, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -30722,7 +30980,7 @@ } }, { - "id": 2175, + "id": 2190, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -30759,7 +31017,7 @@ } }, { - "id": 2165, + "id": 2180, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -30796,7 +31054,7 @@ } }, { - "id": 2164, + "id": 2179, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -30829,7 +31087,7 @@ } }, { - "id": 2207, + "id": 2222, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -30866,7 +31124,7 @@ } }, { - "id": 2172, + "id": 2187, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -30903,7 +31161,7 @@ } }, { - "id": 2168, + "id": 2183, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -30936,7 +31194,7 @@ } }, { - "id": 2195, + "id": 2210, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -30973,7 +31231,7 @@ } }, { - "id": 2156, + "id": 2171, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -31006,7 +31264,7 @@ } }, { - "id": 2162, + "id": 2177, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -31039,7 +31297,7 @@ } }, { - "id": 2193, + "id": 2208, "name": "locale", "kind": 1024, "kindString": "Property", @@ -31076,7 +31334,7 @@ } }, { - "id": 2198, + "id": 2213, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -31113,7 +31371,7 @@ } }, { - "id": 2200, + "id": 2215, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -31150,7 +31408,7 @@ } }, { - "id": 2159, + "id": 2174, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -31183,7 +31441,7 @@ } }, { - "id": 2205, + "id": 2220, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -31214,7 +31472,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1712, + "id": 1727, "name": "RuntimeFilter" } }, @@ -31224,7 +31482,7 @@ } }, { - "id": 2206, + "id": 2221, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -31255,7 +31513,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2491, + "id": 2506, "name": "RuntimeParameter" } }, @@ -31265,7 +31523,7 @@ } }, { - "id": 2192, + "id": 2207, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -31302,7 +31560,7 @@ } }, { - "id": 2167, + "id": 2182, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -31339,7 +31597,7 @@ } }, { - "id": 2174, + "id": 2189, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -31376,7 +31634,7 @@ } }, { - "id": 2166, + "id": 2181, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -31413,7 +31671,7 @@ } }, { - "id": 2173, + "id": 2188, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -31450,7 +31708,7 @@ } }, { - "id": 2171, + "id": 2186, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -31484,7 +31742,7 @@ } }, { - "id": 2189, + "id": 2204, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -31520,7 +31778,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -31530,7 +31788,7 @@ } }, { - "id": 2191, + "id": 2206, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -31571,7 +31829,7 @@ } }, { - "id": 2160, + "id": 2175, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -31607,7 +31865,7 @@ } }, { - "id": 2158, + "id": 2173, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -31645,56 +31903,56 @@ "title": "Properties", "kind": 1024, "children": [ - 2163, - 2181, - 2214, + 2178, + 2196, + 2229, + 2209, 2194, - 2179, - 2180, - 2215, - 2154, - 2197, - 2187, - 2186, - 2210, - 2170, + 2195, + 2230, 2169, - 2216, - 2213, - 2155, - 2209, 2212, - 2199, 2202, - 2153, - 2188, + 2201, + 2225, 2185, - 2190, - 2175, - 2165, - 2164, - 2207, - 2172, + 2184, + 2231, + 2228, + 2170, + 2224, + 2227, + 2214, + 2217, 2168, - 2195, - 2156, - 2162, - 2193, - 2198, + 2203, 2200, - 2159, 2205, - 2206, - 2192, - 2167, - 2174, - 2166, - 2173, + 2190, + 2180, + 2179, + 2222, + 2187, + 2183, + 2210, 2171, + 2177, + 2208, + 2213, + 2215, + 2174, + 2220, + 2221, + 2207, + 2182, 2189, - 2191, - 2160, - 2158 + 2181, + 2188, + 2186, + 2204, + 2206, + 2175, + 2173 ] } ], @@ -31736,7 +31994,7 @@ ] }, { - "id": 1712, + "id": 1727, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -31746,7 +32004,7 @@ }, "children": [ { - "id": 1713, + "id": 1728, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -31767,7 +32025,7 @@ } }, { - "id": 1714, + "id": 1729, "name": "operator", "kind": 1024, "kindString": "Property", @@ -31784,12 +32042,12 @@ ], "type": { "type": "reference", - "id": 1716, + "id": 1731, "name": "RuntimeFilterOp" } }, { - "id": 1715, + "id": 1730, "name": "values", "kind": 1024, "kindString": "Property", @@ -31835,9 +32093,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1713, - 1714, - 1715 + 1728, + 1729, + 1730 ] } ], @@ -31850,7 +32108,7 @@ ] }, { - "id": 2491, + "id": 2506, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -31860,7 +32118,7 @@ }, "children": [ { - "id": 2492, + "id": 2507, "name": "name", "kind": 1024, "kindString": "Property", @@ -31881,7 +32139,7 @@ } }, { - "id": 2493, + "id": 2508, "name": "value", "kind": 1024, "kindString": "Property", @@ -31920,8 +32178,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2492, - 2493 + 2507, + 2508 ] } ], @@ -31934,7 +32192,7 @@ ] }, { - "id": 2217, + "id": 2232, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -31954,7 +32212,7 @@ }, "children": [ { - "id": 2230, + "id": 2245, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -31984,20 +32242,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2231, + "id": 2246, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2232, + "id": 2247, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2233, + "id": 2248, "name": "key", "kind": 32768, "flags": {}, @@ -32033,7 +32291,7 @@ } }, { - "id": 2261, + "id": 2276, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -32074,7 +32332,7 @@ } }, { - "id": 2241, + "id": 2256, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -32103,7 +32361,7 @@ ], "type": { "type": "reference", - "id": 2008, + "id": 2023, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -32112,7 +32370,7 @@ } }, { - "id": 2229, + "id": 2244, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32141,7 +32399,7 @@ ], "type": { "type": "reference", - "id": 2376, + "id": 2391, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -32150,7 +32408,7 @@ } }, { - "id": 2262, + "id": 2277, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -32191,7 +32449,7 @@ } }, { - "id": 2227, + "id": 2242, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -32214,7 +32472,7 @@ } }, { - "id": 2244, + "id": 2259, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -32251,7 +32509,7 @@ } }, { - "id": 2222, + "id": 2237, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -32280,7 +32538,7 @@ } }, { - "id": 2236, + "id": 2251, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -32317,7 +32575,7 @@ } }, { - "id": 2235, + "id": 2250, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -32348,7 +32606,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -32358,7 +32616,7 @@ } }, { - "id": 2257, + "id": 2272, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -32399,7 +32657,7 @@ } }, { - "id": 2263, + "id": 2278, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -32440,7 +32698,7 @@ } }, { - "id": 2260, + "id": 2275, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -32477,7 +32735,7 @@ } }, { - "id": 2256, + "id": 2271, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -32515,7 +32773,7 @@ } }, { - "id": 2259, + "id": 2274, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -32553,7 +32811,7 @@ } }, { - "id": 2246, + "id": 2261, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -32590,7 +32848,7 @@ } }, { - "id": 2249, + "id": 2264, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -32619,7 +32877,7 @@ ], "type": { "type": "reference", - "id": 2338, + "id": 2353, "name": "FrameParams" }, "inheritedFrom": { @@ -32628,7 +32886,7 @@ } }, { - "id": 2237, + "id": 2252, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -32663,7 +32921,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -32673,7 +32931,7 @@ } }, { - "id": 2234, + "id": 2249, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -32705,7 +32963,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2551, + "id": 2566, "name": "ListPageColumns" } }, @@ -32715,7 +32973,7 @@ } }, { - "id": 2224, + "id": 2239, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -32744,7 +33002,7 @@ } }, { - "id": 2221, + "id": 2236, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -32773,7 +33031,7 @@ } }, { - "id": 2226, + "id": 2241, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -32802,7 +33060,7 @@ } }, { - "id": 2220, + "id": 2235, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -32835,7 +33093,7 @@ } }, { - "id": 2223, + "id": 2238, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -32864,7 +33122,7 @@ } }, { - "id": 2254, + "id": 2269, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -32901,7 +33159,7 @@ } }, { - "id": 2242, + "id": 2257, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -32938,7 +33196,7 @@ } }, { - "id": 2240, + "id": 2255, "name": "locale", "kind": 1024, "kindString": "Property", @@ -32975,7 +33233,7 @@ } }, { - "id": 2245, + "id": 2260, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -33012,7 +33270,7 @@ } }, { - "id": 2247, + "id": 2262, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -33049,7 +33307,7 @@ } }, { - "id": 2252, + "id": 2267, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -33080,7 +33338,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1712, + "id": 1727, "name": "RuntimeFilter" } }, @@ -33090,7 +33348,7 @@ } }, { - "id": 2253, + "id": 2268, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -33121,7 +33379,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2491, + "id": 2506, "name": "RuntimeParameter" } }, @@ -33131,7 +33389,7 @@ } }, { - "id": 2228, + "id": 2243, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -33165,7 +33423,7 @@ } }, { - "id": 2239, + "id": 2254, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -33202,7 +33460,7 @@ } }, { - "id": 2218, + "id": 2233, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -33231,7 +33489,7 @@ } }, { - "id": 2225, + "id": 2240, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -33260,7 +33518,7 @@ } }, { - "id": 2238, + "id": 2253, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -33296,7 +33554,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -33311,42 +33569,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2230, - 2261, - 2241, - 2229, - 2262, - 2227, + 2245, + 2276, + 2256, 2244, - 2222, + 2277, + 2242, + 2259, + 2237, + 2251, + 2250, + 2272, + 2278, + 2275, + 2271, + 2274, + 2261, + 2264, + 2252, + 2249, + 2239, 2236, + 2241, 2235, + 2238, + 2269, 2257, - 2263, + 2255, 2260, - 2256, - 2259, - 2246, - 2249, - 2237, - 2234, - 2224, - 2221, - 2226, - 2220, - 2223, + 2262, + 2267, + 2268, + 2243, 2254, - 2242, + 2233, 2240, - 2245, - 2247, - 2252, - 2253, - 2228, - 2239, - 2218, - 2225, - 2238 + 2253 ] } ], @@ -33396,7 +33654,7 @@ ] }, { - "id": 2114, + "id": 2129, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -33411,7 +33669,7 @@ }, "children": [ { - "id": 2121, + "id": 2136, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33441,20 +33699,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2122, + "id": 2137, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2123, + "id": 2138, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2124, + "id": 2139, "name": "key", "kind": 32768, "flags": {}, @@ -33490,7 +33748,7 @@ } }, { - "id": 2150, + "id": 2165, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33531,7 +33789,7 @@ } }, { - "id": 2131, + "id": 2146, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33560,7 +33818,7 @@ ], "type": { "type": "reference", - "id": 2008, + "id": 2023, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33569,7 +33827,7 @@ } }, { - "id": 2120, + "id": 2135, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33598,7 +33856,7 @@ ], "type": { "type": "reference", - "id": 2376, + "id": 2391, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33607,7 +33865,7 @@ } }, { - "id": 2116, + "id": 2131, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -33640,7 +33898,7 @@ } }, { - "id": 2115, + "id": 2130, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -33680,7 +33938,7 @@ } }, { - "id": 2134, + "id": 2149, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -33717,7 +33975,7 @@ } }, { - "id": 2127, + "id": 2142, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -33754,7 +34012,7 @@ } }, { - "id": 2126, + "id": 2141, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -33785,7 +34043,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -33795,7 +34053,7 @@ } }, { - "id": 2146, + "id": 2161, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -33836,7 +34094,7 @@ } }, { - "id": 2151, + "id": 2166, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -33877,7 +34135,7 @@ } }, { - "id": 2149, + "id": 2164, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -33914,7 +34172,7 @@ } }, { - "id": 2145, + "id": 2160, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -33952,7 +34210,7 @@ } }, { - "id": 2148, + "id": 2163, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -33990,7 +34248,7 @@ } }, { - "id": 2119, + "id": 2134, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -34023,7 +34281,7 @@ } }, { - "id": 2136, + "id": 2151, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34060,7 +34318,7 @@ } }, { - "id": 2139, + "id": 2154, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34089,7 +34347,7 @@ ], "type": { "type": "reference", - "id": 2338, + "id": 2353, "name": "FrameParams" }, "inheritedFrom": { @@ -34098,7 +34356,7 @@ } }, { - "id": 2128, + "id": 2143, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34133,7 +34391,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -34143,7 +34401,7 @@ } }, { - "id": 2125, + "id": 2140, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -34175,7 +34433,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2551, + "id": 2566, "name": "ListPageColumns" } }, @@ -34185,7 +34443,7 @@ } }, { - "id": 2143, + "id": 2158, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34222,7 +34480,7 @@ } }, { - "id": 2132, + "id": 2147, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -34259,7 +34517,7 @@ } }, { - "id": 2130, + "id": 2145, "name": "locale", "kind": 1024, "kindString": "Property", @@ -34296,7 +34554,7 @@ } }, { - "id": 2135, + "id": 2150, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -34333,7 +34591,7 @@ } }, { - "id": 2137, + "id": 2152, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -34370,7 +34628,7 @@ } }, { - "id": 2142, + "id": 2157, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -34401,7 +34659,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2491, + "id": 2506, "name": "RuntimeParameter" } }, @@ -34411,7 +34669,7 @@ } }, { - "id": 2118, + "id": 2133, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -34445,7 +34703,7 @@ } }, { - "id": 2117, + "id": 2132, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -34478,7 +34736,7 @@ } }, { - "id": 2129, + "id": 2144, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -34514,7 +34772,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -34529,34 +34787,34 @@ "title": "Properties", "kind": 1024, "children": [ - 2121, - 2150, + 2136, + 2165, + 2146, + 2135, 2131, - 2120, - 2116, - 2115, + 2130, + 2149, + 2142, + 2141, + 2161, + 2166, + 2164, + 2160, + 2163, 2134, - 2127, - 2126, - 2146, 2151, - 2149, - 2145, - 2148, - 2119, - 2136, - 2139, - 2128, - 2125, + 2154, 2143, + 2140, + 2158, + 2147, + 2145, + 2150, + 2152, + 2157, + 2133, 2132, - 2130, - 2135, - 2137, - 2142, - 2118, - 2117, - 2129 + 2144 ] } ], @@ -34618,7 +34876,7 @@ ] }, { - "id": 2060, + "id": 2075, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -34634,7 +34892,7 @@ }, "children": [ { - "id": 2080, + "id": 2095, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -34664,20 +34922,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2081, + "id": 2096, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2082, + "id": 2097, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2083, + "id": 2098, "name": "key", "kind": 32768, "flags": {}, @@ -34713,7 +34971,7 @@ } }, { - "id": 2072, + "id": 2087, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -34746,7 +35004,7 @@ } }, { - "id": 2062, + "id": 2077, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -34779,7 +35037,7 @@ } }, { - "id": 2061, + "id": 2076, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -34812,7 +35070,7 @@ } }, { - "id": 2111, + "id": 2126, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -34853,7 +35111,7 @@ } }, { - "id": 2075, + "id": 2090, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -34890,7 +35148,7 @@ } }, { - "id": 2091, + "id": 2106, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -34919,7 +35177,7 @@ ], "type": { "type": "reference", - "id": 2008, + "id": 2023, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -34928,7 +35186,7 @@ } }, { - "id": 2079, + "id": 2094, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -34957,7 +35215,7 @@ ], "type": { "type": "reference", - "id": 2376, + "id": 2391, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -34966,7 +35224,7 @@ } }, { - "id": 2077, + "id": 2092, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -35003,7 +35261,7 @@ } }, { - "id": 2112, + "id": 2127, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -35044,7 +35302,7 @@ } }, { - "id": 2068, + "id": 2083, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -35077,7 +35335,7 @@ } }, { - "id": 2067, + "id": 2082, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -35113,7 +35371,7 @@ } }, { - "id": 2094, + "id": 2109, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -35150,7 +35408,7 @@ } }, { - "id": 2086, + "id": 2101, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -35187,7 +35445,7 @@ } }, { - "id": 2085, + "id": 2100, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -35218,7 +35476,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -35228,7 +35486,7 @@ } }, { - "id": 2107, + "id": 2122, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -35269,7 +35527,7 @@ } }, { - "id": 2113, + "id": 2128, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -35310,7 +35568,7 @@ } }, { - "id": 2065, + "id": 2080, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -35343,7 +35601,7 @@ } }, { - "id": 2110, + "id": 2125, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -35380,7 +35638,7 @@ } }, { - "id": 2106, + "id": 2121, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -35418,7 +35676,7 @@ } }, { - "id": 2109, + "id": 2124, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -35456,7 +35714,7 @@ } }, { - "id": 2071, + "id": 2086, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -35489,7 +35747,7 @@ } }, { - "id": 2096, + "id": 2111, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -35526,7 +35784,7 @@ } }, { - "id": 2078, + "id": 2093, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -35563,7 +35821,7 @@ } }, { - "id": 2066, + "id": 2081, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -35596,7 +35854,7 @@ } }, { - "id": 2099, + "id": 2114, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -35625,7 +35883,7 @@ ], "type": { "type": "reference", - "id": 2338, + "id": 2353, "name": "FrameParams" }, "inheritedFrom": { @@ -35634,7 +35892,7 @@ } }, { - "id": 2087, + "id": 2102, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -35669,7 +35927,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -35679,7 +35937,7 @@ } }, { - "id": 2084, + "id": 2099, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -35711,7 +35969,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2551, + "id": 2566, "name": "ListPageColumns" } }, @@ -35721,7 +35979,7 @@ } }, { - "id": 2063, + "id": 2078, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -35754,7 +36012,7 @@ } }, { - "id": 2064, + "id": 2079, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -35787,7 +36045,7 @@ } }, { - "id": 2073, + "id": 2088, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -35820,7 +36078,7 @@ } }, { - "id": 2104, + "id": 2119, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -35857,7 +36115,7 @@ } }, { - "id": 2076, + "id": 2091, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -35886,7 +36144,7 @@ } }, { - "id": 2092, + "id": 2107, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35923,7 +36181,7 @@ } }, { - "id": 2090, + "id": 2105, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35960,7 +36218,7 @@ } }, { - "id": 2095, + "id": 2110, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35997,7 +36255,7 @@ } }, { - "id": 2097, + "id": 2112, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -36034,7 +36292,7 @@ } }, { - "id": 2102, + "id": 2117, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -36065,7 +36323,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1712, + "id": 1727, "name": "RuntimeFilter" } }, @@ -36075,7 +36333,7 @@ } }, { - "id": 2103, + "id": 2118, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -36106,7 +36364,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2491, + "id": 2506, "name": "RuntimeParameter" } }, @@ -36116,7 +36374,7 @@ } }, { - "id": 2070, + "id": 2085, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -36146,7 +36404,7 @@ } }, { - "id": 2069, + "id": 2084, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -36175,7 +36433,7 @@ } }, { - "id": 2089, + "id": 2104, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -36212,7 +36470,7 @@ } }, { - "id": 2074, + "id": 2089, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -36241,7 +36499,7 @@ } }, { - "id": 2088, + "id": 2103, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -36277,7 +36535,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -36292,50 +36550,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2080, - 2072, - 2062, - 2061, - 2111, - 2075, - 2091, - 2079, + 2095, + 2087, 2077, - 2112, - 2068, - 2067, + 2076, + 2126, + 2090, + 2106, 2094, + 2092, + 2127, + 2083, + 2082, + 2109, + 2101, + 2100, + 2122, + 2128, + 2080, + 2125, + 2121, + 2124, 2086, - 2085, + 2111, + 2093, + 2081, + 2114, + 2102, + 2099, + 2078, + 2079, + 2088, + 2119, + 2091, 2107, - 2113, - 2065, + 2105, 2110, - 2106, - 2109, - 2071, - 2096, - 2078, - 2066, - 2099, - 2087, + 2112, + 2117, + 2118, + 2085, 2084, - 2063, - 2064, - 2073, 2104, - 2076, - 2092, - 2090, - 2095, - 2097, - 2102, - 2103, - 2070, - 2069, 2089, - 2074, - 2088 + 2103 ] } ], @@ -36385,14 +36643,14 @@ ] }, { - "id": 1681, + "id": 1696, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1684, + "id": 1699, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -36407,14 +36665,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1685, + "id": 1700, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1687, + "id": 1702, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -36432,7 +36690,7 @@ } }, { - "id": 1686, + "id": 1701, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -36455,8 +36713,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1687, - 1686 + 1702, + 1701 ] } ] @@ -36464,7 +36722,7 @@ } }, { - "id": 1683, + "id": 1698, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -36482,7 +36740,7 @@ } }, { - "id": 1682, + "id": 1697, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -36505,9 +36763,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1684, - 1683, - 1682 + 1699, + 1698, + 1697 ] } ], @@ -36685,7 +36943,7 @@ ], "type": { "type": "reference", - "id": 2008, + "id": 2023, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -36723,7 +36981,7 @@ ], "type": { "type": "reference", - "id": 2376, + "id": 2391, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36878,7 +37136,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -37149,7 +37407,7 @@ ], "type": { "type": "reference", - "id": 2338, + "id": 2353, "name": "FrameParams" }, "inheritedFrom": { @@ -37193,7 +37451,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -37234,7 +37492,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2344, + "id": 2359, "name": "HomeLeftNavItem" } }, @@ -37276,7 +37534,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2352, + "id": 2367, "name": "HomepageModule" } }, @@ -37318,7 +37576,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2551, + "id": 2566, "name": "ListPageColumns" } }, @@ -37585,7 +37843,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2352, + "id": 2367, "name": "HomepageModule" } }, @@ -37626,7 +37884,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1712, + "id": 1727, "name": "RuntimeFilter" } }, @@ -37667,7 +37925,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2491, + "id": 2506, "name": "RuntimeParameter" } }, @@ -37750,7 +38008,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -37877,7 +38135,7 @@ ] }, { - "id": 1299, + "id": 1314, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -37893,7 +38151,7 @@ }, "children": [ { - "id": 1319, + "id": 1334, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -37923,20 +38181,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1320, + "id": 1335, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1321, + "id": 1336, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1322, + "id": 1337, "name": "key", "kind": 32768, "flags": {}, @@ -37972,7 +38230,7 @@ } }, { - "id": 1340, + "id": 1355, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -38013,7 +38271,7 @@ } }, { - "id": 1325, + "id": 1340, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -38042,7 +38300,7 @@ ], "type": { "type": "reference", - "id": 2008, + "id": 2023, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -38051,7 +38309,7 @@ } }, { - "id": 1323, + "id": 1338, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -38080,7 +38338,7 @@ ], "type": { "type": "reference", - "id": 2376, + "id": 2391, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38089,7 +38347,7 @@ } }, { - "id": 1304, + "id": 1319, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -38130,7 +38388,7 @@ } }, { - "id": 1342, + "id": 1357, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -38167,7 +38425,7 @@ } }, { - "id": 1302, + "id": 1317, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -38200,7 +38458,7 @@ } }, { - "id": 1312, + "id": 1327, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -38237,7 +38495,7 @@ } }, { - "id": 1311, + "id": 1326, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38268,7 +38526,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -38278,7 +38536,7 @@ } }, { - "id": 1336, + "id": 1351, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38319,7 +38577,7 @@ } }, { - "id": 1343, + "id": 1358, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38360,7 +38618,7 @@ } }, { - "id": 1339, + "id": 1354, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38397,7 +38655,7 @@ } }, { - "id": 1329, + "id": 1344, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38435,7 +38693,7 @@ } }, { - "id": 1338, + "id": 1353, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -38473,7 +38731,7 @@ } }, { - "id": 1341, + "id": 1356, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -38510,7 +38768,7 @@ } }, { - "id": 1308, + "id": 1323, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -38539,7 +38797,7 @@ ], "type": { "type": "reference", - "id": 2338, + "id": 2353, "name": "FrameParams" }, "inheritedFrom": { @@ -38548,7 +38806,7 @@ } }, { - "id": 1313, + "id": 1328, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -38583,7 +38841,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -38593,7 +38851,7 @@ } }, { - "id": 1334, + "id": 1349, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -38624,7 +38882,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2344, + "id": 2359, "name": "HomeLeftNavItem" } }, @@ -38634,7 +38892,7 @@ } }, { - "id": 1331, + "id": 1346, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -38666,7 +38924,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2352, + "id": 2367, "name": "HomepageModule" } }, @@ -38676,7 +38934,7 @@ } }, { - "id": 1345, + "id": 1360, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -38708,7 +38966,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2551, + "id": 2566, "name": "ListPageColumns" } }, @@ -38718,7 +38976,7 @@ } }, { - "id": 1330, + "id": 1345, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -38758,7 +39016,7 @@ } }, { - "id": 1306, + "id": 1321, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -38791,7 +39049,7 @@ } }, { - "id": 1303, + "id": 1318, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -38824,7 +39082,7 @@ } }, { - "id": 1324, + "id": 1339, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -38861,7 +39119,7 @@ } }, { - "id": 1326, + "id": 1341, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -38898,7 +39156,7 @@ } }, { - "id": 1318, + "id": 1333, "name": "locale", "kind": 1024, "kindString": "Property", @@ -38935,7 +39193,7 @@ } }, { - "id": 1344, + "id": 1359, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -38972,7 +39230,7 @@ } }, { - "id": 1335, + "id": 1350, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -39009,7 +39267,7 @@ } }, { - "id": 1332, + "id": 1347, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -39041,7 +39299,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2352, + "id": 2367, "name": "HomepageModule" } }, @@ -39051,7 +39309,7 @@ } }, { - "id": 1316, + "id": 1331, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -39082,7 +39340,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1712, + "id": 1727, "name": "RuntimeFilter" } }, @@ -39092,7 +39350,7 @@ } }, { - "id": 1317, + "id": 1332, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -39123,7 +39381,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2491, + "id": 2506, "name": "RuntimeParameter" } }, @@ -39133,7 +39391,7 @@ } }, { - "id": 1301, + "id": 1316, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -39156,7 +39414,7 @@ } }, { - "id": 1315, + "id": 1330, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -39193,7 +39451,7 @@ } }, { - "id": 1305, + "id": 1320, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -39226,7 +39484,7 @@ } }, { - "id": 1314, + "id": 1329, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -39262,7 +39520,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1878, + "id": 1893, "name": "Action" } }, @@ -39272,7 +39530,7 @@ } }, { - "id": 1333, + "id": 1348, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -39313,7 +39571,7 @@ } }, { - "id": 1300, + "id": 1315, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -39339,43 +39597,43 @@ "title": "Properties", "kind": 1024, "children": [ - 1319, + 1334, + 1355, 1340, - 1325, + 1338, + 1319, + 1357, + 1317, + 1327, + 1326, + 1351, + 1358, + 1354, + 1344, + 1353, + 1356, 1323, - 1304, - 1342, - 1302, - 1312, - 1311, - 1336, - 1343, + 1328, + 1349, + 1346, + 1360, + 1345, + 1321, + 1318, 1339, - 1329, - 1338, 1341, - 1308, - 1313, - 1334, + 1333, + 1359, + 1350, + 1347, 1331, - 1345, - 1330, - 1306, - 1303, - 1324, - 1326, - 1318, - 1344, - 1335, 1332, 1316, - 1317, - 1301, - 1315, - 1305, - 1314, - 1333, - 1300 + 1330, + 1320, + 1329, + 1348, + 1315 ] } ], @@ -39394,14 +39652,14 @@ ] }, { - "id": 1688, + "id": 1703, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1689, + "id": 1704, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -39419,7 +39677,7 @@ } }, { - "id": 1690, + "id": 1705, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -39442,8 +39700,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1689, - 1690 + 1704, + 1705 ] } ], @@ -39456,14 +39714,14 @@ ] }, { - "id": 2521, + "id": 2536, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2522, + "id": 2537, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -39484,7 +39742,7 @@ } }, { - "id": 2523, + "id": 2538, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -39510,8 +39768,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2522, - 2523 + 2537, + 2538 ] } ], @@ -39524,7 +39782,7 @@ ] }, { - "id": 2389, + "id": 2404, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -39534,7 +39792,7 @@ }, "children": [ { - "id": 2391, + "id": 2406, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -39564,20 +39822,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2392, + "id": 2407, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2393, + "id": 2408, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2394, + "id": 2409, "name": "selector", "kind": 32768, "flags": {}, @@ -39590,7 +39848,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2395, + "id": 2410, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -39603,14 +39861,14 @@ } ], "indexSignature": { - "id": 2396, + "id": 2411, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2397, + "id": 2412, "name": "declaration", "kind": 32768, "flags": {}, @@ -39632,7 +39890,7 @@ } }, { - "id": 2390, + "id": 2405, "name": "variables", "kind": 1024, "kindString": "Property", @@ -39651,7 +39909,7 @@ ], "type": { "type": "reference", - "id": 2398, + "id": 2413, "name": "CustomCssVariables" } } @@ -39661,8 +39919,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2391, - 2390 + 2406, + 2405 ] } ], @@ -39967,7 +40225,7 @@ ] }, { - "id": 2359, + "id": 2374, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -39994,7 +40252,7 @@ } }, { - "id": 2363, + "id": 2378, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -40009,7 +40267,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2364, + "id": 2379, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -40032,7 +40290,7 @@ ], "signatures": [ { - "id": 2365, + "id": 2380, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -40042,19 +40300,19 @@ }, "parameters": [ { - "id": 2366, + "id": 2381, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2371, + "id": 2386, "name": "MessagePayload" } }, { - "id": 2367, + "id": 2382, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -40064,7 +40322,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2368, + "id": 2383, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -40078,7 +40336,7 @@ ], "signatures": [ { - "id": 2369, + "id": 2384, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -40088,7 +40346,7 @@ }, "parameters": [ { - "id": 2370, + "id": 2385, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -40119,7 +40377,7 @@ } }, { - "id": 2360, + "id": 2375, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -40143,14 +40401,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2361, + "id": 2376, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2362, + "id": 2377, "name": "start", "kind": 1024, "kindString": "Property", @@ -40178,7 +40436,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2362 + 2377 ] } ], @@ -40193,7 +40451,7 @@ } }, { - "id": 2371, + "id": 2386, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -40217,14 +40475,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2372, + "id": 2387, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2374, + "id": 2389, "name": "data", "kind": 1024, "kindString": "Property", @@ -40242,7 +40500,7 @@ } }, { - "id": 2375, + "id": 2390, "name": "status", "kind": 1024, "kindString": "Property", @@ -40262,7 +40520,7 @@ } }, { - "id": 2373, + "id": 2388, "name": "type", "kind": 1024, "kindString": "Property", @@ -40285,9 +40543,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2374, - 2375, - 2373 + 2389, + 2390, + 2388 ] } ], @@ -40301,39 +40559,6 @@ } } }, - { - "id": 1151, - "name": "BodylessConversation", - "kind": 32, - "kindString": "Variable", - "flags": { - "isConst": true - }, - "comment": { - "tags": [ - { - "tag": "deprecated", - "text": "Use {@link SpotterAgentEmbed} instead.\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 132, - "character": 13 - } - ], - "type": { - "type": "query", - "queryType": { - "type": "reference", - "id": 1051, - "name": "SpotterAgentEmbed" - } - }, - "defaultValue": "..." - }, { "id": 51, "name": "createLiveboardWithAnswers", @@ -40384,7 +40609,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1608, + "id": 1623, "name": "AnswerService" } } @@ -40646,7 +40871,7 @@ ], "type": { "type": "reference", - "id": 1608, + "id": 1623, "name": "AnswerService" } }, @@ -40725,7 +40950,7 @@ }, "type": { "type": "reference", - "id": 2012, + "id": 2027, "name": "EmbedConfig" } } @@ -40825,14 +41050,14 @@ }, "type": { "type": "reference", - "id": 2012, + "id": 2027, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1555, + "id": 1570, "name": "AuthEventEmitter" } } @@ -40972,7 +41197,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2333, + "id": 2348, "name": "PrefetchFeatures" } } @@ -41044,7 +41269,7 @@ ] }, { - "id": 2557, + "id": 2572, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -41060,7 +41285,7 @@ ], "signatures": [ { - "id": 2558, + "id": 2573, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -41254,7 +41479,7 @@ ] }, { - "id": 2501, + "id": 2516, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -41268,7 +41493,7 @@ ], "signatures": [ { - "id": 2502, + "id": 2517, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -41278,7 +41503,7 @@ }, "parameters": [ { - "id": 2503, + "id": 2518, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -41290,7 +41515,7 @@ } }, { - "id": 2504, + "id": 2519, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -41301,7 +41526,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2505, + "id": 2520, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -41324,67 +41549,68 @@ "title": "Enumerations", "kind": 4, "children": [ - 1878, - 1553, - 1540, - 1546, - 1700, - 2008, - 1874, - 1732, - 2344, - 2517, - 2352, - 1813, - 2551, - 2494, - 1691, - 2333, - 1716, - 2544 + 1893, + 1568, + 1555, + 1561, + 1715, + 2023, + 1889, + 1747, + 2359, + 2532, + 2367, + 1828, + 2566, + 2509, + 1706, + 2348, + 1731, + 2559 ] }, { "title": "Classes", "kind": 128, "children": [ - 1608, + 1623, 872, - 1393, + 1151, + 1408, 528, 715, 212, 55, 1051, - 1152 + 1167 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2264, - 1555, + 2279, + 1570, 1109, - 1346, - 2524, - 2398, - 2386, - 2376, - 2012, - 2338, - 2152, - 1712, - 2491, - 2217, - 2114, - 2060, - 1681, + 1361, + 2539, + 2413, + 2401, + 2391, + 2027, + 2353, + 2167, + 1727, + 2506, + 2232, + 2129, + 2075, + 1696, 1067, - 1299, - 1688, - 2521, - 2389, + 1314, + 1703, + 2536, + 2404, 21, 25 ] @@ -41393,17 +41619,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2359, - 2363, - 2360, - 2371 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 1151 + 2374, + 2378, + 2375, + 2386 ] }, { @@ -41419,9 +41638,9 @@ 1, 4, 7, - 2557, + 2572, 37, - 2501 + 2516 ] } ], From 8d3d156c4bbf2deee73f8ec38d5946adcb592f23 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 24 Apr 2025 15:41:20 +0530 Subject: [PATCH 05/29] refactoring --- src/embed/bodyless-conversation.ts | 64 - src/embed/conversation.ts | 159 - src/index.ts | 4 +- src/react/index.tsx | 4 +- static/typedoc/typedoc.json | 13410 +++++++++------------------ 5 files changed, 4562 insertions(+), 9079 deletions(-) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index d8afbf10..d90873b3 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -15,18 +15,6 @@ export interface SpotterAgentEmbedViewConfig extends ViewConfig { worksheetId: string; } -/** - * Configuration for bodyless conversation options. - * @deprecated Use {@link SpotterAgentEmbedViewConfig} instead. - * @group Embed components - */ -export interface BodylessConversationViewConfig extends ViewConfig { - /** - * The ID of the worksheet to use for the conversation. - */ - worksheetId: string; -} - interface ConversationMessageViewConfig extends SpotterAgentEmbedViewConfig { sessionId: string; genNo: number; @@ -125,55 +113,3 @@ export class SpotterAgentEmbed { } } - -/** - * Create a conversation embed, which can be integrated inside - * chatbots or other conversational interfaces. - * @deprecated This class is deprecated. Use {@link SpotterAgentEmbed} instead. - * @example - * ```js - * import { BodylessConversation } from '@thoughtspot/visual-embed-sdk'; - * - * const conversation = new BodylessConversation({ - * worksheetId: 'worksheetId', - * }); - * - * const { container, error } = await conversation.sendMessage('show me sales by region'); - * - * // append the container to the DOM - * document.body.appendChild(container); // or to any other element - * ``` - * @group Embed components - * @version SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl - */ -export class BodylessConversation { - private conversationService: ConversationService; - - constructor(private viewConfig: BodylessConversationViewConfig) { - const embedConfig = getEmbedConfig(); - - this.conversationService = new ConversationService( - embedConfig.thoughtSpotHost, - viewConfig.worksheetId, - ); - } - - public async sendMessage(userMessage: string) { - const { data, error } = await this.conversationService.sendMessage(userMessage); - if (error) { - return { error }; - } - - const container = document.createElement('div'); - const embed = new ConversationMessage(container, { - ...this.viewConfig, - sessionId: data.sessionId, - genNo: data.genNo, - acSessionId: data.stateKey.transactionId, - acGenNo: data.stateKey.generationNumber, - }); - await embed.render(); - return { container, viz: embed }; - } -} - diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index 251a27b3..46d7c5d0 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -94,87 +94,6 @@ export interface SpotterEmbedViewConfig extends ViewConfig { hideSampleQuestions?: boolean; } -/** - * The configuration for the embedded conversation options. - * @deprecated Use {@link SpotterEmbedViewConfig} instead. - * @group Embed components - */ -export interface ConversationViewConfig extends ViewConfig { - /** - * The ID of the worksheet to use for the conversation. - */ - worksheetId: string; - /** - * Ability to pass a starting search query to the conversation. - */ - searchOptions?: SearchOptions; - /** - * disableSourceSelection : Disables data source selection - * but still display the selected data source. - * @example - * ```js - * const embed = new ConversationEmbed('#tsEmbed', { - * ... // other options - * disableSourceSelection : true, - * }) - * ``` - * @version SDK: 1.36.0 | Thoughtspot: 10.6.0.cl - */ - disableSourceSelection?: boolean; - /** - * hideSourceSelection : Hide data source selection - * @example - * ```js - * const embed = new ConversationEmbed('#tsEmbed', { - * ... // other options - * hideSourceSelection : true, - * }) - * ``` - * @version SDK: 1.36.0 | Thoughtspot: 10.6.0.cl - */ - hideSourceSelection?: boolean; - /** - * Flag to control Data panel experience - * @default false - * @version SDK: 1.36.0 | ThoughtSpot Cloud: 10.4.0.cl - * @example - * ```js - * const embed = new AppEmbed('#tsEmbed', { - * ... // other options - * dataPanelV2: true, - * }) - * ``` - */ - dataPanelV2?: boolean; - /** - * showSpotterLimitations : show limitation text - * of the spotter underneath the chat input. - * default is false. - * @example - * ```js - * const embed = new ConversationEmbed('#tsEmbed', { - * ... // other options - * showSpotterLimitations : true, - * }) - * ``` - * @version SDK: 1.36.0 | Thoughtspot: 10.5.0.cl - */ - showSpotterLimitations?: boolean; - /** - * hideSampleQuestions : Hide sample questions on - * the initial screen of the conversation. - * @example - * ```js - * const embed = new ConversationEmbed('#tsEmbed', { - * ... // other options - * hideSampleQuestions : true, - * }) - * ``` - * @version SDK: 1.36.0 | Thoughtspot: 10.6.0.cl - */ - hideSampleQuestions?: boolean; -} - /** * Embed ThoughtSpot AI Conversation. * @group Embed components @@ -253,82 +172,4 @@ export class SpotterEmbed extends TsEmbed { } } -/** - * Embed ThoughtSpot AI Conversation. - * @deprecated Use {@link SpotterEmbed} instead. - * @group Embed components - * @example - * ```js - * const conversation = new ConversationEmbed('#tsEmbed', { - * worksheetId: 'worksheetId', - * searchOptions: { - * searchQuery: 'searchQuery', - * }, - * }); - * conversation.render(); - * ``` - * @version SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl - */ -export class ConversationEmbed extends TsEmbed { - constructor(container: HTMLElement, protected viewConfig: ConversationViewConfig) { - viewConfig.embedComponentType = 'conversation'; - super(container, viewConfig); - } - public getIframeSrc(): string { - const { - worksheetId, - searchOptions, - disableSourceSelection, - hideSourceSelection, - dataPanelV2, - showSpotterLimitations, - hideSampleQuestions, - } = this.viewConfig; - const path = 'insights/conv-assist'; - if (!worksheetId) { - this.handleError(ERROR_MESSAGE.SPOTTER_EMBED_WORKSHEED_ID_NOT_FOUND); - } - const queryParams = this.getBaseQueryParams(); - queryParams[Param.SpotterEnabled] = true; - if (!isUndefined(disableSourceSelection)) { - queryParams[Param.DisableSourceSelection] = !!disableSourceSelection; - } - if (!isUndefined(hideSourceSelection)) { - queryParams[Param.HideSourceSelection] = !!hideSourceSelection; - } - - if (!isUndefined(dataPanelV2)) { - queryParams[Param.DataPanelV2Enabled] = !!dataPanelV2; - } - - if (!isUndefined(showSpotterLimitations)) { - queryParams[Param.ShowSpotterLimitations] = !!showSpotterLimitations; - } - - if (!isUndefined(hideSampleQuestions)) { - queryParams[Param.HideSampleQuestions] = !!hideSampleQuestions; - } - - let query = ''; - const queryParamsString = getQueryParamString(queryParams, true); - if (queryParamsString) { - query = `?${queryParamsString}`; - } - const tsPostHashParams = this.getThoughtSpotPostUrlParams({ - worksheet: worksheetId, - query: searchOptions?.searchQuery || '', - }); - - return `${this.getEmbedBasePath(query)}/embed/${path}${tsPostHashParams}`; - } - - public async render(): Promise { - await super.render(); - - const src = this.getIframeSrc(); - await this.renderIFrame(src); - return this; - } -} - diff --git a/src/index.ts b/src/index.ts index 50bffaeb..b2768f4e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -23,8 +23,8 @@ import { import { PinboardEmbed, LiveboardViewConfig, LiveboardEmbed } from './embed/liveboard'; import { SearchEmbed, SearchViewConfig } from './embed/search'; import { SearchBarEmbed, SearchBarViewConfig } from './embed/search-bar'; -import { SpotterAgentEmbed, SpotterAgentEmbedViewConfig, BodylessConversationViewConfig, BodylessConversation } from './embed/bodyless-conversation'; -import { SpotterEmbed, SpotterEmbedViewConfig, ConversationViewConfig, ConversationEmbed } from './embed/conversation'; +import { SpotterAgentEmbed, SpotterAgentEmbedViewConfig, SpotterAgentEmbed as BodylessConversation, SpotterAgentEmbedViewConfig as BodylessConversationViewConfig} from './embed/bodyless-conversation'; +import { SpotterEmbed, SpotterEmbedViewConfig, SpotterEmbed as ConversationEmbed, SpotterEmbedViewConfig as ConversationViewConfig } from './embed/conversation'; import { AuthFailureType, AuthStatus, AuthEvent, AuthEventEmitter, } from './auth'; diff --git a/src/react/index.tsx b/src/react/index.tsx index 76a6852a..5fb1e6ee 100644 --- a/src/react/index.tsx +++ b/src/react/index.tsx @@ -13,7 +13,7 @@ import { TsEmbed } from '../embed/ts-embed'; import { EmbedConfig, EmbedEvent, ViewConfig } from '../types'; import { EmbedProps, getViewPropsAndListeners } from './util'; -import { SpotterEmbed as _SpotterEmbed, SpotterEmbedViewConfig, ConversationEmbed as _ConversationEmbed, ConversationViewConfig } from '../embed/conversation'; +import { SpotterEmbed as _SpotterEmbed, SpotterEmbedViewConfig, SpotterEmbed as _ConversationEmbed, SpotterEmbedViewConfig as ConversationViewConfig } from '../embed/conversation'; import { init } from '../embed/base'; const componentFactory = ( @@ -360,7 +360,7 @@ export const SpotterEmbed = componentFactory< /** * React component for LLM based conversation BI. - * @deprecated Use {@link SpotterEmbed} instead. + * @deprecated This component is deprecated. Use {@link SpotterEmbed} instead. * @example * ```tsx * function Sage() { diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index cc2be4e1..a00ee31e 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,67 @@ "originalName": "", "children": [ { - "id": 1893, + "id": 1110, + "name": "BodylessConversation", + "kind": 16777216, + "kindString": "Reference", + "flags": {}, + "sources": [ + { + "fileName": "index.ts", + "line": 91, + "character": 4 + } + ], + "target": 1051 + }, + { + "id": 1109, + "name": "BodylessConversationViewConfig", + "kind": 16777216, + "kindString": "Reference", + "flags": {}, + "sources": [ + { + "fileName": "index.ts", + "line": 90, + "character": 4 + } + ], + "target": 1067 + }, + { + "id": 1306, + "name": "ConversationEmbed", + "kind": 16777216, + "kindString": "Reference", + "flags": {}, + "sources": [ + { + "fileName": "index.ts", + "line": 95, + "character": 4 + } + ], + "target": 1111 + }, + { + "id": 1305, + "name": "ConversationViewConfig", + "kind": 16777216, + "kindString": "Reference", + "flags": {}, + "sources": [ + { + "fileName": "index.ts", + "line": 94, + "character": 4 + } + ], + "target": 1258 + }, + { + "id": 1645, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +87,7 @@ }, "children": [ { - "id": 2005, + "id": 1757, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -55,7 +115,7 @@ "defaultValue": "\"AIHighlights\"" }, { - "id": 1913, + "id": 1665, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -83,7 +143,7 @@ "defaultValue": "\"addSimpleCohort\"" }, { - "id": 1906, + "id": 1658, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -111,7 +171,7 @@ "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 1905, + "id": 1657, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -135,7 +195,7 @@ "defaultValue": "\"addFilter\"" }, { - "id": 1911, + "id": 1663, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -159,7 +219,7 @@ "defaultValue": "\"addFormula\"" }, { - "id": 1912, + "id": 1664, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -183,7 +243,7 @@ "defaultValue": "\"addParameter\"" }, { - "id": 1914, + "id": 1666, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -211,7 +271,7 @@ "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 1988, + "id": 1740, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -239,7 +299,7 @@ "defaultValue": "\"addTab\"" }, { - "id": 1961, + "id": 1713, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -267,7 +327,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 2002, + "id": 1754, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -295,7 +355,7 @@ "defaultValue": "\"addToWatchlist\"" }, { - "id": 1960, + "id": 1712, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -323,7 +383,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1959, + "id": 1711, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -351,7 +411,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2001, + "id": 1753, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -380,7 +440,7 @@ "defaultValue": "\"AskAi\"" }, { - "id": 1972, + "id": 1724, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -408,7 +468,7 @@ "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 1975, + "id": 1727, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -436,7 +496,7 @@ "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 1980, + "id": 1732, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -464,7 +524,7 @@ "defaultValue": "\"axisMenuEdit\"" }, { - "id": 1974, + "id": 1726, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -492,7 +552,7 @@ "defaultValue": "\"axisMenuFilter\"" }, { - "id": 1977, + "id": 1729, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -520,7 +580,7 @@ "defaultValue": "\"axisMenuGroup\"" }, { - "id": 1981, + "id": 1733, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -548,7 +608,7 @@ "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 1978, + "id": 1730, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -576,7 +636,7 @@ "defaultValue": "\"axisMenuPosition\"" }, { - "id": 1983, + "id": 1735, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -604,7 +664,7 @@ "defaultValue": "\"axisMenuRemove\"" }, { - "id": 1979, + "id": 1731, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -632,7 +692,7 @@ "defaultValue": "\"axisMenuRename\"" }, { - "id": 1976, + "id": 1728, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -660,7 +720,7 @@ "defaultValue": "\"axisMenuSort\"" }, { - "id": 1982, + "id": 1734, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -688,7 +748,7 @@ "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 1973, + "id": 1725, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -716,7 +776,7 @@ "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2014, + "id": 1766, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -744,7 +804,7 @@ "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 1910, + "id": 1662, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -768,7 +828,7 @@ "defaultValue": "\"chooseDataSources\"" }, { - "id": 1909, + "id": 1661, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -796,7 +856,7 @@ "defaultValue": "\"collapseDataPanel\"" }, { - "id": 1908, + "id": 1660, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -824,7 +884,7 @@ "defaultValue": "\"collapseDataSources\"" }, { - "id": 2021, + "id": 1773, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -852,7 +912,7 @@ "defaultValue": "\"columnRename\"" }, { - "id": 1907, + "id": 1659, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -876,7 +936,7 @@ "defaultValue": "\"configureFilter\"" }, { - "id": 1952, + "id": 1704, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -891,7 +951,7 @@ "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 1900, + "id": 1652, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -915,7 +975,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1951, + "id": 1703, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -939,7 +999,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2022, + "id": 1774, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -967,7 +1027,7 @@ "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 1999, + "id": 1751, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -995,7 +1055,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 1963, + "id": 1715, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1023,7 +1083,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 1968, + "id": 1720, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1051,7 +1111,7 @@ "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2019, + "id": 1771, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1079,7 +1139,7 @@ "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2011, + "id": 1763, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1107,7 +1167,7 @@ "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2013, + "id": 1765, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1135,7 +1195,7 @@ "defaultValue": "\"disableChipReorder\"" }, { - "id": 1922, + "id": 1674, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1159,7 +1219,7 @@ "defaultValue": "\"download\"" }, { - "id": 1925, + "id": 1677, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1183,7 +1243,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1924, + "id": 1676, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1208,7 +1268,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1923, + "id": 1675, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1232,7 +1292,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1926, + "id": 1678, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1256,7 +1316,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1956, + "id": 1708, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1280,7 +1340,7 @@ "defaultValue": "\"DRILL\"" }, { - "id": 1950, + "id": 1702, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1304,7 +1364,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1949, + "id": 1701, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1328,7 +1388,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1934, + "id": 1686, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1352,7 +1412,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1899, + "id": 1651, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1376,7 +1436,7 @@ "defaultValue": "\"editACopy\"" }, { - "id": 1962, + "id": 1714, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1404,7 +1464,7 @@ "defaultValue": "\"editDetails\"" }, { - "id": 1954, + "id": 1706, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1419,7 +1479,7 @@ "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2018, + "id": 1770, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1447,7 +1507,7 @@ "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 1991, + "id": 1743, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1475,7 +1535,7 @@ "defaultValue": "\"editSageAnswer\"" }, { - "id": 2006, + "id": 1758, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1503,7 +1563,7 @@ "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 1931, + "id": 1683, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1527,7 +1587,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1935, + "id": 1687, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1551,7 +1611,7 @@ "defaultValue": "\"editTitle\"" }, { - "id": 2020, + "id": 1772, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1579,7 +1639,7 @@ "defaultValue": "\"editTokens\"" }, { - "id": 1989, + "id": 1741, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1607,7 +1667,7 @@ "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 1948, + "id": 1700, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1631,7 +1691,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1928, + "id": 1680, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1656,7 +1716,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1929, + "id": 1681, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1680,7 +1740,7 @@ "defaultValue": "\"importTSL\"" }, { - "id": 2012, + "id": 1764, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1708,7 +1768,7 @@ "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 1942, + "id": 1694, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1732,7 +1792,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1997, + "id": 1749, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1760,7 +1820,7 @@ "defaultValue": "\"liveboardUsers\"" }, { - "id": 1898, + "id": 1650, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1784,7 +1844,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1995, + "id": 1747, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1808,7 +1868,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 1967, + "id": 1719, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1836,7 +1896,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 2010, + "id": 1762, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1864,7 +1924,7 @@ "defaultValue": "\"manageTags\"" }, { - "id": 1987, + "id": 1739, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1892,7 +1952,7 @@ "defaultValue": "\"markAsVerified\"" }, { - "id": 1993, + "id": 1745, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1919,7 +1979,7 @@ "defaultValue": "\"modifySageAnswer\"" }, { - "id": 1994, + "id": 1746, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1943,7 +2003,7 @@ "defaultValue": "\"onContainerMove\"" }, { - "id": 2004, + "id": 1756, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -1971,7 +2031,7 @@ "defaultValue": "\"organiseFavourites\"" }, { - "id": 2007, + "id": 1759, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1999,7 +2059,7 @@ "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 1996, + "id": 1748, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2027,7 +2087,7 @@ "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 1945, + "id": 1697, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2051,7 +2111,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1932, + "id": 1684, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2075,7 +2135,7 @@ "defaultValue": "\"present\"" }, { - "id": 2015, + "id": 1767, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2103,7 +2163,7 @@ "defaultValue": "\"previewDataSpotter\"" }, { - "id": 1958, + "id": 1710, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2128,7 +2188,7 @@ "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 1936, + "id": 1688, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2152,7 +2212,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1971, + "id": 1723, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2180,7 +2240,7 @@ "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2003, + "id": 1755, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2208,7 +2268,7 @@ "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 1985, + "id": 1737, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2236,7 +2296,7 @@ "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 1964, + "id": 1716, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2267,7 +2327,7 @@ "defaultValue": "\"reportError\"" }, { - "id": 1957, + "id": 1709, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2291,7 +2351,7 @@ "defaultValue": "\"requestAccess\"" }, { - "id": 1986, + "id": 1738, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2319,7 +2379,7 @@ "defaultValue": "\"requestVerification\"" }, { - "id": 2016, + "id": 1768, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2347,7 +2407,7 @@ "defaultValue": "\"resetSpotterChat\"" }, { - "id": 1992, + "id": 1744, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2375,7 +2435,7 @@ "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 1894, + "id": 1646, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2399,7 +2459,7 @@ "defaultValue": "\"save\"" }, { - "id": 1897, + "id": 1649, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2423,7 +2483,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 1902, + "id": 1654, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2447,7 +2507,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1903, + "id": 1655, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2471,7 +2531,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1955, + "id": 1707, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2486,7 +2546,7 @@ "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 1904, + "id": 1656, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2510,7 +2570,7 @@ "defaultValue": "\"share\"" }, { - "id": 1919, + "id": 1671, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2528,7 +2588,7 @@ "defaultValue": "\"shareViz\"" }, { - "id": 1990, + "id": 1742, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2556,7 +2616,7 @@ "defaultValue": "\"showSageQuery\"" }, { - "id": 1921, + "id": 1673, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2580,7 +2640,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1916, + "id": 1668, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2604,7 +2664,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2017, + "id": 1769, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2632,7 +2692,7 @@ "defaultValue": "\"spotterFeedback\"" }, { - "id": 1947, + "id": 1699, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2656,7 +2716,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1966, + "id": 1718, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2684,7 +2744,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1965, + "id": 1717, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2712,7 +2772,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1969, + "id": 1721, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2740,7 +2800,7 @@ "defaultValue": "\"syncToSlack\"" }, { - "id": 1970, + "id": 1722, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2768,7 +2828,7 @@ "defaultValue": "\"syncToTeams\"" }, { - "id": 1998, + "id": 1750, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2800,7 +2860,7 @@ "defaultValue": "\"tml\"" }, { - "id": 1933, + "id": 1685, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -2824,7 +2884,7 @@ "defaultValue": "\"toggleSize\"" }, { - "id": 2009, + "id": 1761, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2852,7 +2912,7 @@ "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 1930, + "id": 1682, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -2876,7 +2936,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 2000, + "id": 1752, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -2904,7 +2964,7 @@ "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2008, + "id": 1760, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2937,117 +2997,117 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2005, - 1913, - 1906, - 1905, - 1911, - 1912, - 1914, - 1988, - 1961, - 2002, - 1960, - 1959, - 2001, - 1972, - 1975, - 1980, - 1974, - 1977, - 1981, - 1978, - 1983, - 1979, - 1976, - 1982, - 1973, - 2014, - 1910, - 1909, - 1908, - 2021, - 1907, - 1952, - 1900, - 1951, - 2022, - 1999, - 1963, - 1968, - 2019, - 2011, - 2013, - 1922, - 1925, - 1924, - 1923, - 1926, - 1956, - 1950, - 1949, - 1934, - 1899, - 1962, - 1954, - 2018, - 1991, - 2006, - 1931, - 1935, - 2020, - 1989, - 1948, - 1928, - 1929, - 2012, - 1942, - 1997, - 1898, - 1995, - 1967, - 2010, - 1987, - 1993, - 1994, - 2004, - 2007, - 1996, - 1945, - 1932, - 2015, - 1958, - 1936, - 1971, - 2003, - 1985, - 1964, - 1957, - 1986, - 2016, - 1992, - 1894, - 1897, - 1902, - 1903, - 1955, - 1904, - 1919, - 1990, - 1921, - 1916, - 2017, - 1947, - 1966, - 1965, - 1969, - 1970, - 1998, - 1933, - 2009, - 1930, - 2000, - 2008 + 1757, + 1665, + 1658, + 1657, + 1663, + 1664, + 1666, + 1740, + 1713, + 1754, + 1712, + 1711, + 1753, + 1724, + 1727, + 1732, + 1726, + 1729, + 1733, + 1730, + 1735, + 1731, + 1728, + 1734, + 1725, + 1766, + 1662, + 1661, + 1660, + 1773, + 1659, + 1704, + 1652, + 1703, + 1774, + 1751, + 1715, + 1720, + 1771, + 1763, + 1765, + 1674, + 1677, + 1676, + 1675, + 1678, + 1708, + 1702, + 1701, + 1686, + 1651, + 1714, + 1706, + 1770, + 1743, + 1758, + 1683, + 1687, + 1772, + 1741, + 1700, + 1680, + 1681, + 1764, + 1694, + 1749, + 1650, + 1747, + 1719, + 1762, + 1739, + 1745, + 1746, + 1756, + 1759, + 1748, + 1697, + 1684, + 1767, + 1710, + 1688, + 1723, + 1755, + 1737, + 1716, + 1709, + 1738, + 1768, + 1744, + 1646, + 1649, + 1654, + 1655, + 1707, + 1656, + 1671, + 1742, + 1673, + 1668, + 1769, + 1699, + 1718, + 1717, + 1721, + 1722, + 1750, + 1685, + 1761, + 1682, + 1752, + 1760 ] } ], @@ -3060,7 +3120,7 @@ ] }, { - "id": 1568, + "id": 1320, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3076,7 +3136,7 @@ }, "children": [ { - "id": 1569, + "id": 1321, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3099,7 +3159,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1569 + 1321 ] } ], @@ -3112,7 +3172,7 @@ ] }, { - "id": 1555, + "id": 1307, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3128,7 +3188,7 @@ }, "children": [ { - "id": 1558, + "id": 1310, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3143,7 +3203,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1560, + "id": 1312, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3158,7 +3218,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1557, + "id": 1309, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3173,7 +3233,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1559, + "id": 1311, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3188,7 +3248,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1556, + "id": 1308, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3208,11 +3268,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1558, - 1560, - 1557, - 1559, - 1556 + 1310, + 1312, + 1309, + 1311, + 1308 ] } ], @@ -3225,7 +3285,7 @@ ] }, { - "id": 1561, + "id": 1313, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3241,7 +3301,7 @@ }, "children": [ { - "id": 1562, + "id": 1314, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3259,7 +3319,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1566, + "id": 1318, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3277,7 +3337,7 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1563, + "id": 1315, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3295,7 +3355,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1565, + "id": 1317, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3313,7 +3373,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1567, + "id": 1319, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3342,11 +3402,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1562, - 1566, - 1563, - 1565, - 1567 + 1314, + 1318, + 1315, + 1317, + 1319 ] } ], @@ -3359,7 +3419,7 @@ ] }, { - "id": 1715, + "id": 1467, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3375,7 +3435,7 @@ }, "children": [ { - "id": 1726, + "id": 1478, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3394,7 +3454,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1717, + "id": 1469, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3423,7 +3483,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1716, + "id": 1468, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3447,7 +3507,7 @@ "defaultValue": "\"None\"" }, { - "id": 1722, + "id": 1474, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3465,7 +3525,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1720, + "id": 1472, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3498,7 +3558,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1724, + "id": 1476, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3522,7 +3582,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1725, + "id": 1477, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3555,13 +3615,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1726, - 1717, - 1716, - 1722, - 1720, - 1724, - 1725 + 1478, + 1469, + 1468, + 1474, + 1472, + 1476, + 1477 ] } ], @@ -3574,7 +3634,7 @@ ] }, { - "id": 2023, + "id": 1775, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3584,7 +3644,7 @@ }, "children": [ { - "id": 2026, + "id": 1778, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3599,7 +3659,7 @@ "defaultValue": "\"both-clicks\"" }, { - "id": 2024, + "id": 1776, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3614,7 +3674,7 @@ "defaultValue": "\"left-click\"" }, { - "id": 2025, + "id": 1777, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3634,9 +3694,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2026, - 2024, - 2025 + 1778, + 1776, + 1777 ] } ], @@ -3649,7 +3709,7 @@ ] }, { - "id": 1889, + "id": 1641, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -3659,7 +3719,7 @@ }, "children": [ { - "id": 1891, + "id": 1643, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -3677,7 +3737,7 @@ "defaultValue": "\"collapse\"" }, { - "id": 1892, + "id": 1644, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -3695,7 +3755,7 @@ "defaultValue": "\"expand\"" }, { - "id": 1890, + "id": 1642, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -3718,9 +3778,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1891, - 1892, - 1890 + 1643, + 1644, + 1642 ] } ], @@ -3733,7 +3793,7 @@ ] }, { - "id": 1747, + "id": 1499, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -3758,7 +3818,7 @@ }, "children": [ { - "id": 1775, + "id": 1527, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -3786,7 +3846,7 @@ "defaultValue": "\"*\"" }, { - "id": 1755, + "id": 1507, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -3818,7 +3878,7 @@ "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1798, + "id": 1550, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -3846,7 +3906,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 1760, + "id": 1512, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -3878,7 +3938,7 @@ "defaultValue": "\"alert\"" }, { - "id": 1795, + "id": 1547, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -3906,7 +3966,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1782, + "id": 1534, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -3934,7 +3994,7 @@ "defaultValue": "\"answerDelete\"" }, { - "id": 1821, + "id": 1573, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -3974,7 +4034,7 @@ "defaultValue": "\"AskSageInit\"" }, { - "id": 1761, + "id": 1513, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4002,7 +4062,7 @@ "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1749, + "id": 1501, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4034,7 +4094,7 @@ "defaultValue": "\"authInit\"" }, { - "id": 1805, + "id": 1557, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4062,7 +4122,7 @@ "defaultValue": "\"cancel\"" }, { - "id": 1793, + "id": 1545, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4090,7 +4150,7 @@ "defaultValue": "\"copyAEdit\"" }, { - "id": 1807, + "id": 1559, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4118,7 +4178,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1788, + "id": 1540, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4146,7 +4206,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1815, + "id": 1567, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4170,7 +4230,7 @@ "defaultValue": "\"createConnection\"" }, { - "id": 1826, + "id": 1578, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4195,7 +4255,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 1827, + "id": 1579, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4219,7 +4279,7 @@ "defaultValue": "\"createModel\"" }, { - "id": 1820, + "id": 1572, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4243,7 +4303,7 @@ "defaultValue": "\"createWorksheet\"" }, { - "id": 1808, + "id": 1560, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4271,7 +4331,7 @@ "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1756, + "id": 1508, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4307,7 +4367,7 @@ "defaultValue": "\"customAction\"" }, { - "id": 1751, + "id": 1503, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4343,7 +4403,7 @@ "defaultValue": "\"data\"" }, { - "id": 1754, + "id": 1506, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4375,7 +4435,7 @@ "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1803, + "id": 1555, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4403,7 +4463,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1819, + "id": 1571, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4435,7 +4495,7 @@ "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1773, + "id": 1525, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4463,7 +4523,7 @@ "defaultValue": "\"dialog-close\"" }, { - "id": 1772, + "id": 1524, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -4491,7 +4551,7 @@ "defaultValue": "\"dialog-open\"" }, { - "id": 1777, + "id": 1529, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -4520,7 +4580,7 @@ "defaultValue": "\"download\"" }, { - "id": 1780, + "id": 1532, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -4548,7 +4608,7 @@ "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1779, + "id": 1531, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -4576,7 +4636,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1778, + "id": 1530, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -4604,7 +4664,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1781, + "id": 1533, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -4632,7 +4692,7 @@ "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1787, + "id": 1539, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -4660,7 +4720,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1786, + "id": 1538, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -4688,7 +4748,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1753, + "id": 1505, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -4732,7 +4792,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 1800, + "id": 1552, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -4760,7 +4820,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1790, + "id": 1542, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -4788,7 +4848,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1759, + "id": 1511, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -4825,7 +4885,7 @@ "defaultValue": "\"Error\"" }, { - "id": 1806, + "id": 1558, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -4853,7 +4913,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1791, + "id": 1543, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -4881,7 +4941,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1811, + "id": 1563, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4905,7 +4965,7 @@ "defaultValue": "\"filterChanged\"" }, { - "id": 1767, + "id": 1519, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -4933,7 +4993,7 @@ "defaultValue": "\"getDataClick\"" }, { - "id": 1748, + "id": 1500, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -4961,7 +5021,7 @@ "defaultValue": "\"init\"" }, { - "id": 1797, + "id": 1549, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -4989,7 +5049,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1774, + "id": 1526, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5021,7 +5081,7 @@ "defaultValue": "\"PinboardRendered\"" }, { - "id": 1750, + "id": 1502, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5053,7 +5113,7 @@ "defaultValue": "\"load\"" }, { - "id": 1801, + "id": 1553, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5081,7 +5141,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1770, + "id": 1522, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5109,7 +5169,7 @@ "defaultValue": "\"noCookieAccess\"" }, { - "id": 1823, + "id": 1575, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5146,7 +5206,7 @@ "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 1824, + "id": 1576, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5170,7 +5230,7 @@ "defaultValue": "\"parameterChanged\"" }, { - "id": 1783, + "id": 1535, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5198,7 +5258,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1802, + "id": 1554, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5230,7 +5290,7 @@ "defaultValue": "\"present\"" }, { - "id": 1752, + "id": 1504, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5258,7 +5318,7 @@ "defaultValue": "\"queryChanged\"" }, { - "id": 1822, + "id": 1574, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5282,7 +5342,7 @@ "defaultValue": "\"rename\"" }, { - "id": 1818, + "id": 1570, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5322,7 +5382,7 @@ "defaultValue": "\"resetLiveboard\"" }, { - "id": 1768, + "id": 1520, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -5350,7 +5410,7 @@ "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1812, + "id": 1564, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -5374,7 +5434,7 @@ "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1813, + "id": 1565, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -5398,7 +5458,7 @@ "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1776, + "id": 1528, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -5426,7 +5486,7 @@ "defaultValue": "\"save\"" }, { - "id": 1792, + "id": 1544, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -5454,7 +5514,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 1817, + "id": 1569, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5494,7 +5554,7 @@ "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1799, + "id": 1551, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -5522,7 +5582,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1804, + "id": 1556, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -5550,7 +5610,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1785, + "id": 1537, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -5578,7 +5638,7 @@ "defaultValue": "\"share\"" }, { - "id": 1794, + "id": 1546, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -5606,7 +5666,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1784, + "id": 1536, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -5634,7 +5694,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1825, + "id": 1577, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -5663,7 +5723,7 @@ "defaultValue": "\"TableVizRendered\"" }, { - "id": 1814, + "id": 1566, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -5687,7 +5747,7 @@ "defaultValue": "\"updateConnection\"" }, { - "id": 1816, + "id": 1568, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5727,7 +5787,7 @@ "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1789, + "id": 1541, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -5755,7 +5815,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1758, + "id": 1510, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -5791,7 +5851,7 @@ "defaultValue": "\"vizPointClick\"" }, { - "id": 1757, + "id": 1509, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -5823,7 +5883,7 @@ "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1809, + "id": 1561, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -5856,77 +5916,77 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1775, - 1755, - 1798, - 1760, - 1795, - 1782, - 1821, - 1761, - 1749, - 1805, - 1793, - 1807, - 1788, - 1815, - 1826, - 1827, - 1820, - 1808, - 1756, - 1751, - 1754, - 1803, - 1819, - 1773, - 1772, - 1777, - 1780, - 1779, - 1778, - 1781, - 1787, - 1786, - 1753, - 1800, - 1790, - 1759, - 1806, - 1791, - 1811, - 1767, - 1748, - 1797, - 1774, - 1750, - 1801, - 1770, - 1823, - 1824, - 1783, - 1802, - 1752, - 1822, - 1818, - 1768, - 1812, - 1813, - 1776, - 1792, - 1817, - 1799, - 1804, - 1785, - 1794, - 1784, - 1825, - 1814, - 1816, - 1789, - 1758, - 1757, - 1809 + 1527, + 1507, + 1550, + 1512, + 1547, + 1534, + 1573, + 1513, + 1501, + 1557, + 1545, + 1559, + 1540, + 1567, + 1578, + 1579, + 1572, + 1560, + 1508, + 1503, + 1506, + 1555, + 1571, + 1525, + 1524, + 1529, + 1532, + 1531, + 1530, + 1533, + 1539, + 1538, + 1505, + 1552, + 1542, + 1511, + 1558, + 1543, + 1563, + 1519, + 1500, + 1549, + 1526, + 1502, + 1553, + 1522, + 1575, + 1576, + 1535, + 1554, + 1504, + 1574, + 1570, + 1520, + 1564, + 1565, + 1528, + 1544, + 1569, + 1551, + 1556, + 1537, + 1546, + 1536, + 1577, + 1566, + 1568, + 1541, + 1510, + 1509, + 1561 ] } ], @@ -5939,7 +5999,7 @@ ] }, { - "id": 2359, + "id": 2111, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -5949,7 +6009,7 @@ }, "children": [ { - "id": 2363, + "id": 2115, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -5972,7 +6032,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2361, + "id": 2113, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -5995,7 +6055,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2366, + "id": 2118, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6018,7 +6078,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2362, + "id": 2114, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6041,7 +6101,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2364, + "id": 2116, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6064,7 +6124,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2360, + "id": 2112, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6087,7 +6147,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2365, + "id": 2117, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6115,13 +6175,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2363, - 2361, - 2366, - 2362, - 2364, - 2360, - 2365 + 2115, + 2113, + 2118, + 2114, + 2116, + 2112, + 2117 ] } ], @@ -6134,14 +6194,14 @@ ] }, { - "id": 2532, + "id": 2284, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2534, + "id": 2286, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -6156,7 +6216,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2535, + "id": 2287, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -6171,7 +6231,7 @@ "defaultValue": "\"none\"" }, { - "id": 2533, + "id": 2285, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -6191,9 +6251,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2534, - 2535, - 2533 + 2286, + 2287, + 2285 ] } ], @@ -6206,7 +6266,7 @@ ] }, { - "id": 2367, + "id": 2119, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -6222,7 +6282,7 @@ }, "children": [ { - "id": 2370, + "id": 2122, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -6240,7 +6300,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2373, + "id": 2125, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -6258,7 +6318,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2371, + "id": 2123, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -6276,7 +6336,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2368, + "id": 2120, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -6294,7 +6354,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2372, + "id": 2124, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -6312,7 +6372,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2369, + "id": 2121, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -6335,12 +6395,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2370, - 2373, - 2371, - 2368, - 2372, - 2369 + 2122, + 2125, + 2123, + 2120, + 2124, + 2121 ] } ], @@ -6353,7 +6413,7 @@ ] }, { - "id": 1828, + "id": 1580, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -6382,7 +6442,7 @@ }, "children": [ { - "id": 1839, + "id": 1591, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -6415,7 +6475,7 @@ "defaultValue": "\"addColumns\"" }, { - "id": 1879, + "id": 1631, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -6443,7 +6503,7 @@ "defaultValue": "\"AskSage\"" }, { - "id": 1856, + "id": 1608, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -6476,7 +6536,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1853, + "id": 1605, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -6513,7 +6573,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 1860, + "id": 1612, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -6546,7 +6606,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1862, + "id": 1614, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -6578,7 +6638,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1864, + "id": 1616, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -6606,7 +6666,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1849, + "id": 1601, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -6635,7 +6695,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1863, + "id": 1615, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -6663,7 +6723,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1865, + "id": 1617, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -6691,7 +6751,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1830, + "id": 1582, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -6743,7 +6803,7 @@ "defaultValue": "\"triggerDrillDown\"" }, { - "id": 1855, + "id": 1607, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -6777,7 +6837,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1847, + "id": 1599, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -6805,7 +6865,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1852, + "id": 1604, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -6838,7 +6898,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1846, + "id": 1598, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -6866,7 +6926,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1878, + "id": 1630, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -6898,7 +6958,7 @@ "defaultValue": "\"getAnswerSession\"" }, { - "id": 1872, + "id": 1624, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -6926,7 +6986,7 @@ "defaultValue": "\"getFilters\"" }, { - "id": 1833, + "id": 1585, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -6954,7 +7014,7 @@ "defaultValue": "\"GetIframeUrl\"" }, { - "id": 1883, + "id": 1635, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -6978,7 +7038,7 @@ "defaultValue": "\"GetParameters\"" }, { - "id": 1858, + "id": 1610, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -7010,7 +7070,7 @@ "defaultValue": "\"getTML\"" }, { - "id": 1874, + "id": 1626, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -7038,7 +7098,7 @@ "defaultValue": "\"getTabs\"" }, { - "id": 1843, + "id": 1595, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -7066,7 +7126,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1850, + "id": 1602, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -7106,7 +7166,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1854, + "id": 1606, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7147,7 +7207,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 1870, + "id": 1622, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -7180,7 +7240,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 1837, + "id": 1589, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -7213,7 +7273,7 @@ "defaultValue": "\"Navigate\"" }, { - "id": 1838, + "id": 1590, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -7246,7 +7306,7 @@ "defaultValue": "\"openFilter\"" }, { - "id": 1842, + "id": 1594, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -7310,7 +7370,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1857, + "id": 1609, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -7343,7 +7403,7 @@ "defaultValue": "\"present\"" }, { - "id": 1851, + "id": 1603, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -7375,7 +7435,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1840, + "id": 1592, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -7408,7 +7468,7 @@ "defaultValue": "\"removeColumn\"" }, { - "id": 1881, + "id": 1633, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -7436,7 +7496,7 @@ "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 1871, + "id": 1623, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -7464,7 +7524,7 @@ "defaultValue": "\"resetSearch\"" }, { - "id": 1867, + "id": 1619, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -7492,7 +7552,7 @@ "defaultValue": "\"save\"" }, { - "id": 1886, + "id": 1638, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -7525,7 +7585,7 @@ "defaultValue": "\"saveAnswer\"" }, { - "id": 1844, + "id": 1596, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -7553,7 +7613,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1845, + "id": 1597, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -7581,7 +7641,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1829, + "id": 1581, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7620,7 +7680,7 @@ "defaultValue": "\"search\"" }, { - "id": 1835, + "id": 1587, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -7653,7 +7713,7 @@ "defaultValue": "\"SetActiveTab\"" }, { - "id": 1876, + "id": 1628, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -7686,7 +7746,7 @@ "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 1875, + "id": 1627, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -7719,7 +7779,7 @@ "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 1834, + "id": 1586, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -7752,7 +7812,7 @@ "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 1866, + "id": 1618, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -7780,7 +7840,7 @@ "defaultValue": "\"share\"" }, { - "id": 1859, + "id": 1611, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -7813,7 +7873,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1861, + "id": 1613, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -7846,7 +7906,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1869, + "id": 1621, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -7879,7 +7939,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1868, + "id": 1620, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -7912,7 +7972,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1888, + "id": 1640, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -7945,7 +8005,7 @@ "defaultValue": "\"TransformTableVizData\"" }, { - "id": 1880, + "id": 1632, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -7973,7 +8033,7 @@ "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 1873, + "id": 1625, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -8019,7 +8079,7 @@ "defaultValue": "\"updateFilters\"" }, { - "id": 1882, + "id": 1634, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -8043,7 +8103,7 @@ "defaultValue": "\"UpdateParameters\"" }, { - "id": 1884, + "id": 1636, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8067,7 +8127,7 @@ "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 1836, + "id": 1588, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -8105,7 +8165,7 @@ "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 1877, + "id": 1629, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -8143,7 +8203,7 @@ "defaultValue": "\"updateSageQuery\"" }, { - "id": 1848, + "id": 1600, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -8171,7 +8231,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1841, + "id": 1593, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -8204,62 +8264,62 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1839, - 1879, - 1856, - 1853, - 1860, - 1862, - 1864, - 1849, - 1863, - 1865, - 1830, - 1855, - 1847, - 1852, - 1846, - 1878, - 1872, - 1833, - 1883, - 1858, - 1874, - 1843, - 1850, - 1854, - 1870, - 1837, - 1838, - 1842, - 1857, - 1851, - 1840, - 1881, - 1871, - 1867, - 1886, - 1844, - 1845, - 1829, - 1835, - 1876, - 1875, - 1834, - 1866, - 1859, - 1861, - 1869, - 1868, - 1888, - 1880, - 1873, - 1882, - 1884, - 1836, - 1877, - 1848, - 1841 + 1591, + 1631, + 1608, + 1605, + 1612, + 1614, + 1616, + 1601, + 1615, + 1617, + 1582, + 1607, + 1599, + 1604, + 1598, + 1630, + 1624, + 1585, + 1635, + 1610, + 1626, + 1595, + 1602, + 1606, + 1622, + 1589, + 1590, + 1594, + 1609, + 1603, + 1592, + 1633, + 1623, + 1619, + 1638, + 1596, + 1597, + 1581, + 1587, + 1628, + 1627, + 1586, + 1618, + 1611, + 1613, + 1621, + 1620, + 1640, + 1632, + 1625, + 1634, + 1636, + 1588, + 1629, + 1600, + 1593 ] } ], @@ -8272,7 +8332,7 @@ ] }, { - "id": 2566, + "id": 2318, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -8288,7 +8348,7 @@ }, "children": [ { - "id": 2569, + "id": 2321, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -8306,7 +8366,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2570, + "id": 2322, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -8324,7 +8384,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2567, + "id": 2319, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -8342,7 +8402,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2571, + "id": 2323, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8360,7 +8420,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2568, + "id": 2320, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -8383,11 +8443,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2569, - 2570, - 2567, - 2571, - 2568 + 2321, + 2322, + 2319, + 2323, + 2320 ] } ], @@ -8400,7 +8460,7 @@ ] }, { - "id": 2509, + "id": 2261, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -8410,7 +8470,7 @@ }, "children": [ { - "id": 2514, + "id": 2266, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -8438,7 +8498,7 @@ "defaultValue": "\"DEBUG\"" }, { - "id": 2511, + "id": 2263, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -8466,7 +8526,7 @@ "defaultValue": "\"ERROR\"" }, { - "id": 2513, + "id": 2265, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -8494,7 +8554,7 @@ "defaultValue": "\"INFO\"" }, { - "id": 2510, + "id": 2262, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -8522,7 +8582,7 @@ "defaultValue": "\"SILENT\"" }, { - "id": 2515, + "id": 2267, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -8550,7 +8610,7 @@ "defaultValue": "\"TRACE\"" }, { - "id": 2512, + "id": 2264, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -8583,12 +8643,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2514, - 2511, - 2513, - 2510, - 2515, - 2512 + 2266, + 2263, + 2265, + 2262, + 2267, + 2264 ] } ], @@ -8601,7 +8661,7 @@ ] }, { - "id": 1706, + "id": 1458, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -8611,7 +8671,7 @@ }, "children": [ { - "id": 1709, + "id": 1461, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -8629,7 +8689,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1712, + "id": 1464, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -8647,7 +8707,7 @@ "defaultValue": "\"data\"" }, { - "id": 1707, + "id": 1459, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -8665,7 +8725,7 @@ "defaultValue": "\"home\"" }, { - "id": 1710, + "id": 1462, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -8683,7 +8743,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1714, + "id": 1466, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -8701,7 +8761,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1708, + "id": 1460, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8719,7 +8779,7 @@ "defaultValue": "\"search\"" }, { - "id": 1713, + "id": 1465, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -8742,13 +8802,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1709, - 1712, - 1707, - 1710, - 1714, - 1708, - 1713 + 1461, + 1464, + 1459, + 1462, + 1466, + 1460, + 1465 ] } ], @@ -8761,14 +8821,14 @@ ] }, { - "id": 2348, + "id": 2100, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2349, + "id": 2101, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -8783,7 +8843,7 @@ "defaultValue": "\"FullApp\"" }, { - "id": 2351, + "id": 2103, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8798,7 +8858,7 @@ "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2350, + "id": 2102, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8813,7 +8873,7 @@ "defaultValue": "\"SearchEmbed\"" }, { - "id": 2352, + "id": 2104, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8833,10 +8893,10 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2349, - 2351, - 2350, - 2352 + 2101, + 2103, + 2102, + 2104 ] } ], @@ -8849,7 +8909,7 @@ ] }, { - "id": 1731, + "id": 1483, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -8859,7 +8919,7 @@ }, "children": [ { - "id": 1739, + "id": 1491, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -8877,7 +8937,7 @@ "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1744, + "id": 1496, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -8895,7 +8955,7 @@ "defaultValue": "\"BW\"" }, { - "id": 1743, + "id": 1495, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -8913,7 +8973,7 @@ "defaultValue": "\"BW_INC\"" }, { - "id": 1741, + "id": 1493, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -8931,7 +8991,7 @@ "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1742, + "id": 1494, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -8949,7 +9009,7 @@ "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1738, + "id": 1490, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -8967,7 +9027,7 @@ "defaultValue": "\"CONTAINS\"" }, { - "id": 1740, + "id": 1492, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -8985,7 +9045,7 @@ "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1732, + "id": 1484, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -9003,7 +9063,7 @@ "defaultValue": "\"EQ\"" }, { - "id": 1737, + "id": 1489, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -9021,7 +9081,7 @@ "defaultValue": "\"GE\"" }, { - "id": 1736, + "id": 1488, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -9039,7 +9099,7 @@ "defaultValue": "\"GT\"" }, { - "id": 1745, + "id": 1497, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -9057,7 +9117,7 @@ "defaultValue": "\"IN\"" }, { - "id": 1735, + "id": 1487, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -9075,7 +9135,7 @@ "defaultValue": "\"LE\"" }, { - "id": 1734, + "id": 1486, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -9093,7 +9153,7 @@ "defaultValue": "\"LT\"" }, { - "id": 1733, + "id": 1485, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -9111,7 +9171,7 @@ "defaultValue": "\"NE\"" }, { - "id": 1746, + "id": 1498, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -9134,21 +9194,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1739, - 1744, - 1743, - 1741, - 1742, - 1738, - 1740, - 1732, - 1737, - 1736, - 1745, - 1735, - 1734, - 1733, - 1746 + 1491, + 1496, + 1495, + 1493, + 1494, + 1490, + 1492, + 1484, + 1489, + 1488, + 1497, + 1487, + 1486, + 1485, + 1498 ] } ], @@ -9161,14 +9221,14 @@ ] }, { - "id": 2559, + "id": 2311, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2564, + "id": 2316, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -9183,7 +9243,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2563, + "id": 2315, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -9198,7 +9258,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2562, + "id": 2314, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -9213,7 +9273,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2565, + "id": 2317, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -9228,7 +9288,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2560, + "id": 2312, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -9243,7 +9303,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2561, + "id": 2313, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -9263,12 +9323,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2564, - 2563, - 2562, - 2565, - 2560, - 2561 + 2316, + 2315, + 2314, + 2317, + 2312, + 2313 ] } ], @@ -9281,7 +9341,7 @@ ] }, { - "id": 1623, + "id": 1375, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -9309,7 +9369,7 @@ }, "children": [ { - "id": 1624, + "id": 1376, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -9326,7 +9386,7 @@ ], "signatures": [ { - "id": 1625, + "id": 1377, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -9336,7 +9396,7 @@ }, "parameters": [ { - "id": 1626, + "id": 1378, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -9344,12 +9404,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1696, + "id": 1448, "name": "SessionInterface" } }, { - "id": 1627, + "id": 1379, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -9361,7 +9421,7 @@ } }, { - "id": 1628, + "id": 1380, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -9373,7 +9433,7 @@ } }, { - "id": 1629, + "id": 1381, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -9387,7 +9447,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2536, + "id": 2288, "name": "VizPoint" } } @@ -9395,14 +9455,14 @@ ], "type": { "type": "reference", - "id": 1623, + "id": 1375, "name": "AnswerService" } } ] }, { - "id": 1638, + "id": 1390, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -9418,7 +9478,7 @@ ], "signatures": [ { - "id": 1639, + "id": 1391, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -9429,7 +9489,7 @@ }, "parameters": [ { - "id": 1640, + "id": 1392, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -9458,7 +9518,7 @@ ] }, { - "id": 1641, + "id": 1393, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -9474,7 +9534,7 @@ ], "signatures": [ { - "id": 1642, + "id": 1394, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -9490,7 +9550,7 @@ }, "parameters": [ { - "id": 1643, + "id": 1395, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -9519,7 +9579,7 @@ ] }, { - "id": 1690, + "id": 1442, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -9535,14 +9595,14 @@ ], "signatures": [ { - "id": 1691, + "id": 1443, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1692, + "id": 1444, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -9567,7 +9627,7 @@ ] }, { - "id": 1644, + "id": 1396, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -9583,7 +9643,7 @@ ], "signatures": [ { - "id": 1645, + "id": 1397, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -9594,7 +9654,7 @@ }, "parameters": [ { - "id": 1646, + "id": 1398, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -9606,7 +9666,7 @@ } }, { - "id": 1647, + "id": 1399, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -9614,12 +9674,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1731, + "id": 1483, "name": "RuntimeFilterOp" } }, { - "id": 1648, + "id": 1400, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -9665,7 +9725,7 @@ ] }, { - "id": 1680, + "id": 1432, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -9681,7 +9741,7 @@ ], "signatures": [ { - "id": 1681, + "id": 1433, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -9692,7 +9752,7 @@ }, "parameters": [ { - "id": 1682, + "id": 1434, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -9706,7 +9766,7 @@ } }, { - "id": 1683, + "id": 1435, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -9734,7 +9794,7 @@ ] }, { - "id": 1658, + "id": 1410, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -9750,7 +9810,7 @@ ], "signatures": [ { - "id": 1659, + "id": 1411, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -9761,7 +9821,7 @@ }, "parameters": [ { - "id": 1660, + "id": 1412, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -9774,7 +9834,7 @@ "defaultValue": "'en-us'" }, { - "id": 1661, + "id": 1413, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -9803,7 +9863,7 @@ ] }, { - "id": 1651, + "id": 1403, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -9819,7 +9879,7 @@ ], "signatures": [ { - "id": 1652, + "id": 1404, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -9830,7 +9890,7 @@ }, "parameters": [ { - "id": 1653, + "id": 1405, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -9843,7 +9903,7 @@ "defaultValue": "0" }, { - "id": 1654, + "id": 1406, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -9862,14 +9922,14 @@ { "type": "reflection", "declaration": { - "id": 1655, + "id": 1407, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1656, + "id": 1408, "name": "columns", "kind": 1024, "kindString": "Property", @@ -9880,7 +9940,7 @@ } }, { - "id": 1657, + "id": 1409, "name": "data", "kind": 1024, "kindString": "Property", @@ -9896,8 +9956,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1656, - 1657 + 1408, + 1409 ] } ] @@ -9910,7 +9970,7 @@ ] }, { - "id": 1662, + "id": 1414, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -9926,7 +9986,7 @@ ], "signatures": [ { - "id": 1663, + "id": 1415, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -9937,7 +9997,7 @@ }, "parameters": [ { - "id": 1664, + "id": 1416, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -9950,7 +10010,7 @@ "defaultValue": "'en-us'" }, { - "id": 1665, + "id": 1417, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -9965,7 +10025,7 @@ "defaultValue": "false" }, { - "id": 1666, + "id": 1418, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -9994,7 +10054,7 @@ ] }, { - "id": 1686, + "id": 1438, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -10010,7 +10070,7 @@ ], "signatures": [ { - "id": 1687, + "id": 1439, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -10029,7 +10089,7 @@ ] }, { - "id": 1667, + "id": 1419, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -10045,7 +10105,7 @@ ], "signatures": [ { - "id": 1668, + "id": 1420, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -10056,7 +10116,7 @@ }, "parameters": [ { - "id": 1669, + "id": 1421, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -10069,7 +10129,7 @@ "defaultValue": "'en-us'" }, { - "id": 1670, + "id": 1422, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -10090,7 +10150,7 @@ ] }, { - "id": 1671, + "id": 1423, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -10106,7 +10166,7 @@ ], "signatures": [ { - "id": 1672, + "id": 1424, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -10116,7 +10176,7 @@ }, "parameters": [ { - "id": 1673, + "id": 1425, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -10129,7 +10189,7 @@ "defaultValue": "'en-us'" }, { - "id": 1674, + "id": 1426, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -10142,7 +10202,7 @@ "defaultValue": "false" }, { - "id": 1675, + "id": 1427, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -10165,7 +10225,7 @@ ] }, { - "id": 1649, + "id": 1401, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -10181,7 +10241,7 @@ ], "signatures": [ { - "id": 1650, + "id": 1402, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -10200,7 +10260,7 @@ ] }, { - "id": 1684, + "id": 1436, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -10216,7 +10276,7 @@ ], "signatures": [ { - "id": 1685, + "id": 1437, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -10227,14 +10287,14 @@ }, "type": { "type": "reference", - "id": 1696, + "id": 1448, "name": "SessionInterface" } } ] }, { - "id": 1633, + "id": 1385, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -10250,7 +10310,7 @@ ], "signatures": [ { - "id": 1634, + "id": 1386, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -10272,7 +10332,7 @@ ] }, { - "id": 1688, + "id": 1440, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -10288,7 +10348,7 @@ ], "signatures": [ { - "id": 1689, + "id": 1441, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -10307,7 +10367,7 @@ ] }, { - "id": 1676, + "id": 1428, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -10323,7 +10383,7 @@ ], "signatures": [ { - "id": 1677, + "id": 1429, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -10343,7 +10403,7 @@ }, "parameters": [ { - "id": 1678, + "id": 1430, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -10358,7 +10418,7 @@ } }, { - "id": 1679, + "id": 1431, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -10370,7 +10430,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1703, + "id": 1455, "name": "UnderlyingDataPoint" } } @@ -10381,7 +10441,7 @@ "typeArguments": [ { "type": "reference", - "id": 1623, + "id": 1375, "name": "AnswerService" } ], @@ -10391,7 +10451,7 @@ ] }, { - "id": 1635, + "id": 1387, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -10407,7 +10467,7 @@ ], "signatures": [ { - "id": 1636, + "id": 1388, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -10418,7 +10478,7 @@ }, "parameters": [ { - "id": 1637, + "id": 1389, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -10447,7 +10507,7 @@ ] }, { - "id": 1693, + "id": 1445, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -10463,14 +10523,14 @@ ], "signatures": [ { - "id": 1694, + "id": 1446, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1695, + "id": 1447, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -10494,31 +10554,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1624 + 1376 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1638, - 1641, - 1690, - 1644, - 1680, - 1658, - 1651, - 1662, - 1686, - 1667, - 1671, - 1649, - 1684, - 1633, - 1688, - 1676, - 1635, - 1693 + 1390, + 1393, + 1442, + 1396, + 1432, + 1410, + 1403, + 1414, + 1438, + 1419, + 1423, + 1401, + 1436, + 1385, + 1440, + 1428, + 1387, + 1445 ] } ], @@ -10575,7 +10635,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2374, + "id": 2126, "name": "DOMSelector" } }, @@ -10587,7 +10647,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2279, + "id": 2031, "name": "AppViewConfig" } } @@ -10708,7 +10768,7 @@ "typeArguments": [ { "type": "reference", - "id": 1623, + "id": 1375, "name": "AnswerService" } ], @@ -11183,7 +11243,7 @@ }, "type": { "type": "reference", - "id": 1747, + "id": 1499, "name": "EmbedEvent" } }, @@ -11198,7 +11258,7 @@ }, "type": { "type": "reference", - "id": 2378, + "id": 2130, "name": "MessageCallback" } } @@ -11265,7 +11325,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1747, + "id": 1499, "name": "EmbedEvent" } }, @@ -11277,7 +11337,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2378, + "id": 2130, "name": "MessageCallback" } }, @@ -11289,7 +11349,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2375, + "id": 2127, "name": "MessageOptions" }, "defaultValue": "..." @@ -11600,7 +11660,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1828, + "id": 1580, "name": "HostEvent" } }, @@ -11719,7 +11779,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2559, + "id": 2311, "name": "UIPassthroughEvent" } } @@ -11836,354 +11896,89 @@ ] }, { - "id": 1151, - "name": "BodylessConversation", + "id": 528, + "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", + "shortText": "Embed a ThoughtSpot Liveboard or visualization. When rendered it already\nwaits for the authentication to complete, so you need not wait for\n`AuthStatus.SUCCESS`.", "tags": [ - { - "tag": "deprecated", - "text": "This class is deprecated. Use {@link SpotterAgentEmbed} instead." - }, { "tag": "example", - "text": "\n```js\nimport { BodylessConversation } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new BodylessConversation({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" - }, - { - "tag": "group", - "text": "Embed components" - }, - { - "tag": "version", - "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" - } - ] - }, - "children": [ - { - "id": 1152, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": {}, - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 152, - "character": 4 - } - ], - "signatures": [ - { - "id": 1153, - "name": "new BodylessConversation", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 1154, - "name": "viewConfig", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1109, - "name": "BodylessConversationViewConfig" - } - } - ], - "type": { - "type": "reference", - "id": 1151, - "name": "BodylessConversation" - } - } - ] - }, - { - "id": 1156, - "name": "sendMessage", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 161, - "character": 17 - } - ], - "signatures": [ - { - "id": 1157, - "name": "sendMessage", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1158, - "name": "userMessage", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "reflection", - "declaration": { - "id": 1159, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1161, - "name": "container", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - } - }, - { - "id": 1160, - "name": "error", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - }, - { - "id": 1162, - "name": "viz", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1161, - 1160, - 1162 - ] - } - ] - } - }, - { - "type": "reflection", - "declaration": { - "id": 1163, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1164, - "name": "container", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLDivElement" - } - }, - { - "id": 1166, - "name": "error", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - } - }, - { - "id": 1165, - "name": "viz", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "name": "ConversationMessage" - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1164, - 1166, - 1165 - ] - } - ] - } - } - ] - } - ], - "name": "Promise" - } - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 1152 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 1156 - ] - } - ], - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 149, - "character": 13 - } - ] - }, - { - "id": 1408, - "name": "ConversationEmbed", - "kind": 128, - "kindString": "Class", - "flags": {}, - "comment": { - "shortText": "Embed ThoughtSpot AI Conversation.", - "tags": [ - { - "tag": "deprecated", - "text": "Use {@link SpotterEmbed} instead." + "text": "\n```js\nimport { .. } from '@thoughtspot/visual-embed-sdk';\ninit({ ... });\nconst embed = new LiveboardEmbed(\"#container\", {\n liveboardId: ,\n// .. other params here.\n})\n```" }, { "tag": "group", - "text": "Embed components" - }, - { - "tag": "example", - "text": "\n```js\nconst conversation = new ConversationEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" - }, - { - "tag": "version", - "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" + "text": "Embed components\n" } ] }, "children": [ { - "id": 1409, + "id": 529, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 273, + "fileName": "embed/liveboard.ts", + "line": 433, "character": 4 } ], "signatures": [ { - "id": 1410, - "name": "new ConversationEmbed", + "id": 530, + "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1411, - "name": "container", + "id": 531, + "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "HTMLElement" + "id": 2126, + "name": "DOMSelector" } }, { - "id": 1412, + "id": 532, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1361, - "name": "ConversationViewConfig" + "id": 1919, + "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 1408, - "name": "ConversationEmbed" + "id": 528, + "name": "LiveboardEmbed" }, "overwrites": { "type": "reference", - "name": "TsEmbed.constructor" + "name": "V1Embed.constructor" } } ], "overwrites": { "type": "reference", - "name": "TsEmbed.constructor" + "name": "V1Embed.constructor" } }, { - "id": 1533, + "id": 695, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -12199,7 +11994,7 @@ ], "signatures": [ { - "id": 1534, + "id": 696, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -12219,17 +12014,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.destroy" + "name": "V1Embed.destroy" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.destroy" + "name": "V1Embed.destroy" } }, { - "id": 1552, + "id": 712, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -12245,7 +12040,7 @@ ], "signatures": [ { - "id": 1553, + "id": 713, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -12261,7 +12056,7 @@ }, "parameters": [ { - "id": 1554, + "id": 714, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12282,7 +12077,7 @@ "typeArguments": [ { "type": "reference", - "id": 1623, + "id": 1375, "name": "AnswerService" } ], @@ -12290,17 +12085,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getAnswerService" + "name": "V1Embed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getAnswerService" + "name": "V1Embed.getAnswerService" } }, { - "id": 1414, + "id": 684, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12309,14 +12104,14 @@ }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 277, + "fileName": "embed/ts-embed.ts", + "line": 1149, "character": 11 } ], "signatures": [ { - "id": 1415, + "id": 685, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12325,19 +12120,52 @@ "type": "intrinsic", "name": "string" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getIframeSrc" + "name": "V1Embed.getIframeSrc" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getIframeSrc" + "name": "V1Embed.getIframeSrc" } }, { - "id": 1547, + "id": 578, + "name": "getLiveboardUrl", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 720, + "character": 11 + } + ], + "signatures": [ + { + "id": 579, + "name": "getLiveboardUrl", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Returns the full url of the Liveboard/visualization which can be used to open\nthis Liveboard inside the full Thoughtspot application in a new tab.", + "returns": "url string\n" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 707, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12353,7 +12181,7 @@ ], "signatures": [ { - "id": 1548, + "id": 708, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12375,14 +12203,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1549, + "id": 709, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1551, + "id": 711, "name": "child", "kind": 1024, "kindString": "Property", @@ -12394,7 +12222,7 @@ "defaultValue": "..." }, { - "id": 1550, + "id": 710, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12411,8 +12239,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1551, - 1550 + 711, + 710 ] } ] @@ -12420,17 +12248,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getPreRenderIds" + "name": "V1Embed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getPreRenderIds" + "name": "V1Embed.getPreRenderIds" } }, { - "id": 1527, + "id": 689, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12446,7 +12274,7 @@ ], "signatures": [ { - "id": 1528, + "id": 690, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12462,7 +12290,7 @@ }, "parameters": [ { - "id": 1529, + "id": 691, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12470,20 +12298,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1530, + "id": 692, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1531, + "id": 693, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1532, + "id": 694, "name": "key", "kind": 32768, "flags": {}, @@ -12518,17 +12346,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" + "name": "V1Embed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" + "name": "V1Embed.getThoughtSpotPostUrlParams" } }, { - "id": 1535, + "id": 697, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12544,7 +12372,7 @@ ], "signatures": [ { - "id": 1536, + "id": 698, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12555,17 +12383,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getUnderlyingFrameElement" + "name": "V1Embed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getUnderlyingFrameElement" + "name": "V1Embed.getUnderlyingFrameElement" } }, { - "id": 1545, + "id": 705, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12581,7 +12409,7 @@ ], "signatures": [ { - "id": 1546, + "id": 706, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12595,17 +12423,85 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.hidePreRender" + "name": "V1Embed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.hidePreRender" + "name": "V1Embed.hidePreRender" } }, { - "id": 1507, + "id": 573, + "name": "navigateToLiveboard", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 701, + "character": 11 + } + ], + "signatures": [ + { + "id": 574, + "name": "navigateToLiveboard", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 575, + "name": "liveboardId", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 576, + "name": "vizId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 577, + "name": "activeTabId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + }, + { + "id": 675, "name": "off", "kind": 2048, "kindString": "Method", @@ -12621,7 +12517,7 @@ ], "signatures": [ { - "id": 1508, + "id": 676, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12637,7 +12533,7 @@ }, "parameters": [ { - "id": 1509, + "id": 677, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12647,12 +12543,12 @@ }, "type": { "type": "reference", - "id": 1747, + "id": 1499, "name": "EmbedEvent" } }, { - "id": 1510, + "id": 678, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12662,7 +12558,7 @@ }, "type": { "type": "reference", - "id": 2378, + "id": 2130, "name": "MessageCallback" } } @@ -12673,17 +12569,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.off" + "name": "V1Embed.off" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.off" + "name": "V1Embed.off" } }, { - "id": 1501, + "id": 585, "name": "on", "kind": 2048, "kindString": "Method", @@ -12693,20 +12589,23 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1032, + "line": 1450, "character": 11 } ], "signatures": [ { - "id": 1502, + "id": 586, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", "tags": [ + { + "tag": "inheritdoc", + "text": "" + }, { "tag": "example", "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" @@ -12719,63 +12618,41 @@ }, "parameters": [ { - "id": 1503, + "id": 587, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "The message type" - }, "type": { "type": "reference", - "id": 1747, + "id": 1499, "name": "EmbedEvent" } }, { - "id": 1504, + "id": 588, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "A callback as a function" - }, "type": { "type": "reference", - "id": 2378, + "id": 2130, "name": "MessageCallback" } }, { - "id": 1505, + "id": 589, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "The message options" - }, "type": { "type": "reference", - "id": 2375, + "id": 2127, "name": "MessageOptions" }, "defaultValue": "..." - }, - { - "id": 1506, - "name": "isRegisteredBySDK", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "defaultValue": "false" } ], "type": { @@ -12784,17 +12661,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.on" + "name": "V1Embed.on" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.on" + "name": "V1Embed.on" } }, { - "id": 1524, + "id": 686, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -12810,7 +12687,7 @@ ], "signatures": [ { - "id": 1525, + "id": 687, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -12820,7 +12697,7 @@ }, "parameters": [ { - "id": 1526, + "id": 688, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -12847,17 +12724,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.preRender" + "name": "V1Embed.preRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.preRender" + "name": "V1Embed.preRender" } }, { - "id": 1537, + "id": 699, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -12873,7 +12750,7 @@ ], "signatures": [ { - "id": 1538, + "id": 700, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -12900,17 +12777,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.prerenderGeneric" + "name": "V1Embed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.prerenderGeneric" + "name": "V1Embed.prerenderGeneric" } }, { - "id": 1416, + "id": 571, "name": "render", "kind": 2048, "kindString": "Method", @@ -12919,42 +12796,45 @@ }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 325, + "fileName": "embed/liveboard.ts", + "line": 691, "character": 17 } ], "signatures": [ { - "id": 1417, + "id": 572, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Render an embedded ThoughtSpot Liveboard or visualization" + }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 1408, - "name": "ConversationEmbed" + "id": 528, + "name": "LiveboardEmbed" } ], "name": "Promise" }, "overwrites": { "type": "reference", - "name": "TsEmbed.render" + "name": "V1Embed.render" } } ], "overwrites": { "type": "reference", - "name": "TsEmbed.render" + "name": "V1Embed.render" } }, { - "id": 1541, + "id": 701, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -12970,7 +12850,7 @@ ], "signatures": [ { - "id": 1542, + "id": 702, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -12990,17 +12870,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.showPreRender" + "name": "V1Embed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.showPreRender" + "name": "V1Embed.showPreRender" } }, { - "id": 1543, + "id": 703, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -13016,7 +12896,7 @@ ], "signatures": [ { - "id": 1544, + "id": 704, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -13036,17 +12916,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.syncPreRenderStyle" + "name": "V1Embed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.syncPreRenderStyle" + "name": "V1Embed.syncPreRenderStyle" } }, { - "id": 1511, + "id": 565, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -13055,14 +12935,14 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1100, - "character": 17 + "fileName": "embed/liveboard.ts", + "line": 671, + "character": 11 } ], "signatures": [ { - "id": 1512, + "id": 566, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -13073,19 +12953,19 @@ }, "typeParameter": [ { - "id": 1513, + "id": 567, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1828, + "id": 1580, "name": "HostEvent" } }, { - "id": 1514, + "id": 568, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -13094,7 +12974,7 @@ ], "parameters": [ { - "id": 1515, + "id": 569, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -13108,7 +12988,7 @@ } }, { - "id": 1516, + "id": 570, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -13153,19 +13033,19 @@ ], "name": "Promise" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "TsEmbed.trigger" + "name": "V1Embed.trigger" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "TsEmbed.trigger" + "name": "V1Embed.trigger" } }, { - "id": 1517, + "id": 679, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -13181,7 +13061,7 @@ ], "signatures": [ { - "id": 1518, + "id": 680, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -13192,21 +13072,21 @@ }, "typeParameter": [ { - "id": 1519, + "id": 681, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2559, + "id": 2311, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1520, + "id": 682, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -13220,7 +13100,7 @@ } }, { - "id": 1521, + "id": 683, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13258,13 +13138,13 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.triggerUIPassThrough" + "name": "V1Embed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.triggerUIPassThrough" + "name": "V1Embed.triggerUIPassThrough" } } ], @@ -13273,58 +13153,60 @@ "title": "Constructors", "kind": 512, "children": [ - 1409 + 529 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1533, - 1552, - 1414, - 1547, - 1527, - 1535, - 1545, - 1507, - 1501, - 1524, - 1537, - 1416, - 1541, - 1543, - 1511, - 1517 + 695, + 712, + 684, + 578, + 707, + 689, + 697, + 705, + 573, + 675, + 585, + 686, + 699, + 571, + 701, + 703, + 565, + 679 ] } ], "sources": [ { - "fileName": "embed/conversation.ts", - "line": 272, + "fileName": "embed/liveboard.ts", + "line": 427, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "name": "TsEmbed" + "name": "V1Embed" } ] }, { - "id": 528, - "name": "LiveboardEmbed", + "id": 715, + "name": "SageEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed a ThoughtSpot Liveboard or visualization. When rendered it already\nwaits for the authentication to complete, so you need not wait for\n`AuthStatus.SUCCESS`.", + "shortText": "Embed ThoughtSpot LLM and GPT-based Natural Language Search component.", "tags": [ { - "tag": "example", - "text": "\n```js\nimport { .. } from '@thoughtspot/visual-embed-sdk';\ninit({ ... });\nconst embed = new LiveboardEmbed(\"#container\", {\n liveboardId: ,\n// .. other params here.\n})\n```" + "tag": "version:", + "text": "SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl, 9.5.1-sw" }, { "tag": "group", @@ -13334,55 +13216,55 @@ }, "children": [ { - "id": 529, + "id": 716, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 433, + "fileName": "embed/sage.ts", + "line": 139, "character": 4 } ], "signatures": [ { - "id": 530, - "name": "new LiveboardEmbed", + "id": 717, + "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 531, + "id": 718, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2374, + "id": 2126, "name": "DOMSelector" } }, { - "id": 532, + "id": 719, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2167, - "name": "LiveboardViewConfig" + "id": 1984, + "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 528, - "name": "LiveboardEmbed" + "id": 715, + "name": "SageEmbed" }, "overwrites": { "type": "reference", @@ -13396,7 +13278,7 @@ } }, { - "id": 695, + "id": 850, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13412,7 +13294,7 @@ ], "signatures": [ { - "id": 696, + "id": 851, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13442,7 +13324,7 @@ } }, { - "id": 712, + "id": 869, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13458,7 +13340,7 @@ ], "signatures": [ { - "id": 713, + "id": 870, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13474,7 +13356,7 @@ }, "parameters": [ { - "id": 714, + "id": 871, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13495,7 +13377,7 @@ "typeArguments": [ { "type": "reference", - "id": 1623, + "id": 1375, "name": "AnswerService" } ], @@ -13513,8 +13395,8 @@ } }, { - "id": 684, - "name": "getIframeSrc", + "id": 723, + "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", "flags": { @@ -13522,36 +13404,32 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1149, + "fileName": "embed/sage.ts", + "line": 183, "character": 11 } ], "signatures": [ { - "id": 685, - "name": "getIframeSrc", + "id": 724, + "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Construct the URL of the embedded ThoughtSpot sage to be\nloaded in the iframe", + "returns": "iframe url\n" + }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.getIframeSrc" } } - ], - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.getIframeSrc" - } + ] }, { - "id": 578, - "name": "getLiveboardUrl", + "id": 837, + "name": "getIframeSrc", "kind": 2048, "kindString": "Method", "flags": { @@ -13559,31 +13437,35 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 720, + "fileName": "embed/ts-embed.ts", + "line": 1149, "character": 11 } ], "signatures": [ { - "id": 579, - "name": "getLiveboardUrl", + "id": 838, + "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Returns the full url of the Liveboard/visualization which can be used to open\nthis Liveboard inside the full Thoughtspot application in a new tab.", - "returns": "url string\n" - }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "V1Embed.getIframeSrc" } } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "V1Embed.getIframeSrc" + } }, { - "id": 707, + "id": 864, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13599,7 +13481,7 @@ ], "signatures": [ { - "id": 708, + "id": 865, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -13621,14 +13503,14 @@ "type": { "type": "reflection", "declaration": { - "id": 709, + "id": 866, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 711, + "id": 868, "name": "child", "kind": 1024, "kindString": "Property", @@ -13640,7 +13522,7 @@ "defaultValue": "..." }, { - "id": 710, + "id": 867, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -13657,8 +13539,8 @@ "title": "Properties", "kind": 1024, "children": [ - 711, - 710 + 868, + 867 ] } ] @@ -13676,7 +13558,7 @@ } }, { - "id": 689, + "id": 844, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -13692,7 +13574,7 @@ ], "signatures": [ { - "id": 690, + "id": 845, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -13708,7 +13590,7 @@ }, "parameters": [ { - "id": 691, + "id": 846, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -13716,20 +13598,20 @@ "type": { "type": "reflection", "declaration": { - "id": 692, + "id": 847, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 693, + "id": 848, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 694, + "id": 849, "name": "key", "kind": 32768, "flags": {}, @@ -13774,7 +13656,7 @@ } }, { - "id": 697, + "id": 852, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -13790,7 +13672,7 @@ ], "signatures": [ { - "id": 698, + "id": 853, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -13811,7 +13693,7 @@ } }, { - "id": 705, + "id": 862, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -13827,7 +13709,7 @@ ], "signatures": [ { - "id": 706, + "id": 863, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -13851,75 +13733,7 @@ } }, { - "id": 573, - "name": "navigateToLiveboard", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 701, - "character": 11 - } - ], - "signatures": [ - { - "id": 574, - "name": "navigateToLiveboard", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 575, - "name": "liveboardId", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 576, - "name": "vizId", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 577, - "name": "activeTabId", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - }, - { - "id": 675, + "id": 822, "name": "off", "kind": 2048, "kindString": "Method", @@ -13935,7 +13749,7 @@ ], "signatures": [ { - "id": 676, + "id": 823, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -13951,7 +13765,7 @@ }, "parameters": [ { - "id": 677, + "id": 824, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -13961,12 +13775,12 @@ }, "type": { "type": "reference", - "id": 1747, + "id": 1499, "name": "EmbedEvent" } }, { - "id": 678, + "id": 825, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -13976,7 +13790,7 @@ }, "type": { "type": "reference", - "id": 2378, + "id": 2130, "name": "MessageCallback" } } @@ -13997,7 +13811,7 @@ } }, { - "id": 585, + "id": 732, "name": "on", "kind": 2048, "kindString": "Method", @@ -14013,7 +13827,7 @@ ], "signatures": [ { - "id": 586, + "id": 733, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -14036,38 +13850,38 @@ }, "parameters": [ { - "id": 587, + "id": 734, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1747, + "id": 1499, "name": "EmbedEvent" } }, { - "id": 588, + "id": 735, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2378, + "id": 2130, "name": "MessageCallback" } }, { - "id": 589, + "id": 736, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2375, + "id": 2127, "name": "MessageOptions" }, "defaultValue": "..." @@ -14089,7 +13903,7 @@ } }, { - "id": 686, + "id": 841, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -14105,7 +13919,7 @@ ], "signatures": [ { - "id": 687, + "id": 842, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -14115,7 +13929,7 @@ }, "parameters": [ { - "id": 688, + "id": 843, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -14152,7 +13966,7 @@ } }, { - "id": 699, + "id": 854, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14168,7 +13982,7 @@ ], "signatures": [ { - "id": 700, + "id": 855, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14205,7 +14019,7 @@ } }, { - "id": 571, + "id": 725, "name": "render", "kind": 2048, "kindString": "Method", @@ -14214,28 +14028,29 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 691, + "fileName": "embed/sage.ts", + "line": 208, "character": 17 } ], "signatures": [ { - "id": 572, + "id": 726, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Render an embedded ThoughtSpot Liveboard or visualization" + "shortText": "Render the embedded ThoughtSpot Sage", + "returns": "Eureka/Sage embed\n" }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 528, - "name": "LiveboardEmbed" + "id": 715, + "name": "SageEmbed" } ], "name": "Promise" @@ -14252,7 +14067,7 @@ } }, { - "id": 701, + "id": 858, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14268,7 +14083,7 @@ ], "signatures": [ { - "id": 702, + "id": 859, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14298,7 +14113,7 @@ } }, { - "id": 703, + "id": 860, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14314,7 +14129,7 @@ ], "signatures": [ { - "id": 704, + "id": 861, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14344,7 +14159,7 @@ } }, { - "id": 565, + "id": 826, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14353,14 +14168,14 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 671, - "character": 11 + "fileName": "embed/ts-embed.ts", + "line": 1100, + "character": 17 } ], "signatures": [ { - "id": 566, + "id": 827, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14371,19 +14186,19 @@ }, "typeParameter": [ { - "id": 567, + "id": 828, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1828, + "id": 1580, "name": "HostEvent" } }, { - "id": 568, + "id": 829, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -14392,7 +14207,7 @@ ], "parameters": [ { - "id": 569, + "id": 830, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14406,7 +14221,7 @@ } }, { - "id": 570, + "id": 831, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14451,19 +14266,19 @@ ], "name": "Promise" }, - "overwrites": { + "inheritedFrom": { "type": "reference", "name": "V1Embed.trigger" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", "name": "V1Embed.trigger" } }, { - "id": 679, + "id": 832, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14479,7 +14294,7 @@ ], "signatures": [ { - "id": 680, + "id": 833, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14490,21 +14305,21 @@ }, "typeParameter": [ { - "id": 681, + "id": 834, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2559, + "id": 2311, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 682, + "id": 835, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14518,7 +14333,7 @@ } }, { - "id": 683, + "id": 836, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -14571,38 +14386,37 @@ "title": "Constructors", "kind": 512, "children": [ - 529 + 716 ] }, { "title": "Methods", "kind": 2048, "children": [ - 695, - 712, - 684, - 578, - 707, - 689, - 697, - 705, - 573, - 675, - 585, - 686, - 699, - 571, - 701, - 703, - 565, - 679 + 850, + 869, + 723, + 837, + 864, + 844, + 852, + 862, + 822, + 732, + 841, + 854, + 725, + 858, + 860, + 826, + 832 ] } ], "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 427, + "fileName": "embed/sage.ts", + "line": 131, "character": 13 } ], @@ -14614,17 +14428,17 @@ ] }, { - "id": 715, - "name": "SageEmbed", + "id": 212, + "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot LLM and GPT-based Natural Language Search component.", + "shortText": "Embed ThoughtSpot search bar", "tags": [ { "tag": "version:", - "text": "SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl, 9.5.1-sw" + "text": "SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1-sw" }, { "tag": "group", @@ -14634,69 +14448,68 @@ }, "children": [ { - "id": 716, + "id": 213, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/sage.ts", - "line": 139, + "fileName": "embed/search-bar.tsx", + "line": 117, "character": 4 } ], "signatures": [ { - "id": 717, - "name": "new SageEmbed", + "id": 214, + "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 718, + "id": 215, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "reference", - "id": 2374, - "name": "DOMSelector" + "type": "intrinsic", + "name": "string" } }, { - "id": 719, + "id": 216, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2232, - "name": "SageViewConfig" + "id": 1881, + "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 715, - "name": "SageEmbed" + "id": 212, + "name": "SearchBarEmbed" }, "overwrites": { "type": "reference", - "name": "V1Embed.constructor" + "name": "TsEmbed.constructor" } } ], "overwrites": { "type": "reference", - "name": "V1Embed.constructor" + "name": "TsEmbed.constructor" } }, { - "id": 850, + "id": 344, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -14712,7 +14525,7 @@ ], "signatures": [ { - "id": 851, + "id": 345, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -14732,17 +14545,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.destroy" + "name": "TsEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.destroy" + "name": "TsEmbed.destroy" } }, { - "id": 869, + "id": 363, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -14758,7 +14571,7 @@ ], "signatures": [ { - "id": 870, + "id": 364, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -14774,7 +14587,7 @@ }, "parameters": [ { - "id": 871, + "id": 365, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -14795,7 +14608,7 @@ "typeArguments": [ { "type": "reference", - "id": 1623, + "id": 1375, "name": "AnswerService" } ], @@ -14803,50 +14616,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getAnswerService" + "name": "TsEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getAnswerService" + "name": "TsEmbed.getAnswerService" } }, { - "id": 723, - "name": "getIFrameSrc", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/sage.ts", - "line": 183, - "character": 11 - } - ], - "signatures": [ - { - "id": 724, - "name": "getIFrameSrc", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Construct the URL of the embedded ThoughtSpot sage to be\nloaded in the iframe", - "returns": "iframe url\n" - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - { - "id": 837, + "id": 331, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -14862,7 +14642,7 @@ ], "signatures": [ { - "id": 838, + "id": 332, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -14873,17 +14653,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getIframeSrc" + "name": "TsEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getIframeSrc" + "name": "TsEmbed.getIframeSrc" } }, { - "id": 864, + "id": 358, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -14899,7 +14679,7 @@ ], "signatures": [ { - "id": 865, + "id": 359, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -14921,14 +14701,14 @@ "type": { "type": "reflection", "declaration": { - "id": 866, + "id": 360, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 868, + "id": 362, "name": "child", "kind": 1024, "kindString": "Property", @@ -14940,7 +14720,7 @@ "defaultValue": "..." }, { - "id": 867, + "id": 361, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -14957,8 +14737,8 @@ "title": "Properties", "kind": 1024, "children": [ - 868, - 867 + 362, + 361 ] } ] @@ -14966,17 +14746,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getPreRenderIds" + "name": "TsEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getPreRenderIds" + "name": "TsEmbed.getPreRenderIds" } }, { - "id": 844, + "id": 338, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -14992,7 +14772,7 @@ ], "signatures": [ { - "id": 845, + "id": 339, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15008,7 +14788,7 @@ }, "parameters": [ { - "id": 846, + "id": 340, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15016,20 +14796,20 @@ "type": { "type": "reflection", "declaration": { - "id": 847, + "id": 341, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 848, + "id": 342, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 849, + "id": 343, "name": "key", "kind": 32768, "flags": {}, @@ -15064,17 +14844,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getThoughtSpotPostUrlParams" + "name": "TsEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getThoughtSpotPostUrlParams" + "name": "TsEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 852, + "id": 346, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -15090,7 +14870,7 @@ ], "signatures": [ { - "id": 853, + "id": 347, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -15101,17 +14881,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getUnderlyingFrameElement" + "name": "TsEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getUnderlyingFrameElement" + "name": "TsEmbed.getUnderlyingFrameElement" } }, { - "id": 862, + "id": 356, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -15127,7 +14907,7 @@ ], "signatures": [ { - "id": 863, + "id": 357, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -15141,17 +14921,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.hidePreRender" + "name": "TsEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.hidePreRender" + "name": "TsEmbed.hidePreRender" } }, { - "id": 822, + "id": 316, "name": "off", "kind": 2048, "kindString": "Method", @@ -15167,7 +14947,7 @@ ], "signatures": [ { - "id": 823, + "id": 317, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -15183,7 +14963,7 @@ }, "parameters": [ { - "id": 824, + "id": 318, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15193,12 +14973,12 @@ }, "type": { "type": "reference", - "id": 1747, + "id": 1499, "name": "EmbedEvent" } }, { - "id": 825, + "id": 319, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15208,7 +14988,7 @@ }, "type": { "type": "reference", - "id": 2378, + "id": 2130, "name": "MessageCallback" } } @@ -15219,17 +14999,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.off" + "name": "TsEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.off" + "name": "TsEmbed.off" } }, { - "id": 732, + "id": 310, "name": "on", "kind": 2048, "kindString": "Method", @@ -15239,23 +15019,20 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1450, + "line": 1032, "character": 11 } ], "signatures": [ { - "id": 733, + "id": 311, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { + "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", "tags": [ - { - "tag": "inheritdoc", - "text": "" - }, { "tag": "example", "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" @@ -15268,41 +15045,63 @@ }, "parameters": [ { - "id": 734, + "id": 312, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "The message type" + }, "type": { "type": "reference", - "id": 1747, + "id": 1499, "name": "EmbedEvent" } }, { - "id": 735, + "id": 313, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "A callback as a function" + }, "type": { "type": "reference", - "id": 2378, + "id": 2130, "name": "MessageCallback" } }, { - "id": 736, + "id": 314, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "The message options" + }, "type": { "type": "reference", - "id": 2375, + "id": 2127, "name": "MessageOptions" }, "defaultValue": "..." + }, + { + "id": 315, + "name": "isRegisteredBySDK", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" } ], "type": { @@ -15311,17 +15110,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.on" + "name": "TsEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.on" + "name": "TsEmbed.on" } }, { - "id": 841, + "id": 335, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15337,7 +15136,7 @@ ], "signatures": [ { - "id": 842, + "id": 336, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -15347,7 +15146,7 @@ }, "parameters": [ { - "id": 843, + "id": 337, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -15374,17 +15173,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.preRender" + "name": "TsEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.preRender" + "name": "TsEmbed.preRender" } }, { - "id": 854, + "id": 348, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -15400,7 +15199,7 @@ ], "signatures": [ { - "id": 855, + "id": 349, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -15427,17 +15226,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.prerenderGeneric" + "name": "TsEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.prerenderGeneric" + "name": "TsEmbed.prerenderGeneric" } }, { - "id": 725, + "id": 221, "name": "render", "kind": 2048, "kindString": "Method", @@ -15446,46 +15245,45 @@ }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 208, + "fileName": "embed/search-bar.tsx", + "line": 176, "character": 17 } ], "signatures": [ { - "id": 726, + "id": 222, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Render the embedded ThoughtSpot Sage", - "returns": "Eureka/Sage embed\n" + "shortText": "Render the embedded ThoughtSpot search" }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 715, - "name": "SageEmbed" + "id": 212, + "name": "SearchBarEmbed" } ], "name": "Promise" }, "overwrites": { "type": "reference", - "name": "V1Embed.render" + "name": "TsEmbed.render" } } ], "overwrites": { "type": "reference", - "name": "V1Embed.render" + "name": "TsEmbed.render" } }, { - "id": 858, + "id": 352, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -15501,7 +15299,7 @@ ], "signatures": [ { - "id": 859, + "id": 353, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -15521,17 +15319,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.showPreRender" + "name": "TsEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.showPreRender" + "name": "TsEmbed.showPreRender" } }, { - "id": 860, + "id": 354, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -15547,7 +15345,7 @@ ], "signatures": [ { - "id": 861, + "id": 355, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -15567,17 +15365,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.syncPreRenderStyle" + "name": "TsEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.syncPreRenderStyle" + "name": "TsEmbed.syncPreRenderStyle" } }, { - "id": 826, + "id": 320, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -15593,7 +15391,7 @@ ], "signatures": [ { - "id": 827, + "id": 321, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -15604,19 +15402,19 @@ }, "typeParameter": [ { - "id": 828, + "id": 322, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1828, + "id": 1580, "name": "HostEvent" } }, { - "id": 829, + "id": 323, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -15625,7 +15423,7 @@ ], "parameters": [ { - "id": 830, + "id": 324, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15639,7 +15437,7 @@ } }, { - "id": 831, + "id": 325, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -15686,17 +15484,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.trigger" + "name": "TsEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.trigger" + "name": "TsEmbed.trigger" } }, { - "id": 832, + "id": 326, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -15712,7 +15510,7 @@ ], "signatures": [ { - "id": 833, + "id": 327, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -15723,21 +15521,21 @@ }, "typeParameter": [ { - "id": 834, + "id": 328, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2559, + "id": 2311, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 835, + "id": 329, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -15751,7 +15549,7 @@ } }, { - "id": 836, + "id": 330, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -15789,13 +15587,13 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.triggerUIPassThrough" + "name": "TsEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.triggerUIPassThrough" + "name": "TsEmbed.triggerUIPassThrough" } } ], @@ -15804,60 +15602,55 @@ "title": "Constructors", "kind": 512, "children": [ - 716 + 213 ] }, { "title": "Methods", "kind": 2048, "children": [ - 850, - 869, - 723, - 837, - 864, - 844, - 852, - 862, - 822, - 732, - 841, - 854, - 725, - 858, - 860, - 826, - 832 + 344, + 363, + 331, + 358, + 338, + 346, + 356, + 316, + 310, + 335, + 348, + 221, + 352, + 354, + 320, + 326 ] } ], "sources": [ { - "fileName": "embed/sage.ts", - "line": 131, + "fileName": "embed/search-bar.tsx", + "line": 109, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "name": "V1Embed" + "name": "TsEmbed" } ] }, { - "id": 212, - "name": "SearchBarEmbed", + "id": 55, + "name": "SearchEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot search bar", + "shortText": "Embed ThoughtSpot search", "tags": [ - { - "tag": "version:", - "text": "SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1-sw" - }, { "tag": "group", "text": "Embed components\n" @@ -15866,54 +15659,55 @@ }, "children": [ { - "id": 213, + "id": 56, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 117, + "fileName": "embed/search.ts", + "line": 321, "character": 4 } ], "signatures": [ { - "id": 214, - "name": "new SearchBarEmbed", + "id": 57, + "name": "new SearchEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 215, + "id": 58, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2126, + "name": "DOMSelector" } }, { - "id": 216, + "id": 59, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2129, - "name": "SearchBarViewConfig" + "id": 1827, + "name": "SearchViewConfig" } } ], "type": { "type": "reference", - "id": 212, - "name": "SearchBarEmbed" + "id": 55, + "name": "SearchEmbed" }, "overwrites": { "type": "reference", @@ -15927,7 +15721,7 @@ } }, { - "id": 344, + "id": 190, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -15943,7 +15737,7 @@ ], "signatures": [ { - "id": 345, + "id": 191, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -15973,7 +15767,7 @@ } }, { - "id": 363, + "id": 209, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -15989,7 +15783,7 @@ ], "signatures": [ { - "id": 364, + "id": 210, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16005,7 +15799,7 @@ }, "parameters": [ { - "id": 365, + "id": 211, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16026,7 +15820,7 @@ "typeArguments": [ { "type": "reference", - "id": 1623, + "id": 1375, "name": "AnswerService" } ], @@ -16044,7 +15838,39 @@ } }, { - "id": 331, + "id": 73, + "name": "getIFrameSrc", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 473, + "character": 11 + } + ], + "signatures": [ + { + "id": 74, + "name": "getIFrameSrc", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Construct the URL of the embedded ThoughtSpot search to be\nloaded in the iframe" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 177, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16060,7 +15886,7 @@ ], "signatures": [ { - "id": 332, + "id": 178, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16081,7 +15907,7 @@ } }, { - "id": 358, + "id": 204, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16097,7 +15923,7 @@ ], "signatures": [ { - "id": 359, + "id": 205, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16119,14 +15945,14 @@ "type": { "type": "reflection", "declaration": { - "id": 360, + "id": 206, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 362, + "id": 208, "name": "child", "kind": 1024, "kindString": "Property", @@ -16138,7 +15964,7 @@ "defaultValue": "..." }, { - "id": 361, + "id": 207, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -16155,8 +15981,8 @@ "title": "Properties", "kind": 1024, "children": [ - 362, - 361 + 208, + 207 ] } ] @@ -16174,7 +16000,7 @@ } }, { - "id": 338, + "id": 184, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16190,7 +16016,7 @@ ], "signatures": [ { - "id": 339, + "id": 185, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16206,7 +16032,7 @@ }, "parameters": [ { - "id": 340, + "id": 186, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16214,20 +16040,20 @@ "type": { "type": "reflection", "declaration": { - "id": 341, + "id": 187, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 342, + "id": 188, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 343, + "id": 189, "name": "key", "kind": 32768, "flags": {}, @@ -16272,7 +16098,7 @@ } }, { - "id": 346, + "id": 192, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16288,7 +16114,7 @@ ], "signatures": [ { - "id": 347, + "id": 193, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16309,7 +16135,7 @@ } }, { - "id": 356, + "id": 202, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16325,7 +16151,7 @@ ], "signatures": [ { - "id": 357, + "id": 203, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16349,7 +16175,7 @@ } }, { - "id": 316, + "id": 162, "name": "off", "kind": 2048, "kindString": "Method", @@ -16365,7 +16191,7 @@ ], "signatures": [ { - "id": 317, + "id": 163, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16381,7 +16207,7 @@ }, "parameters": [ { - "id": 318, + "id": 164, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16391,12 +16217,12 @@ }, "type": { "type": "reference", - "id": 1747, + "id": 1499, "name": "EmbedEvent" } }, { - "id": 319, + "id": 165, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16406,7 +16232,7 @@ }, "type": { "type": "reference", - "id": 2378, + "id": 2130, "name": "MessageCallback" } } @@ -16427,7 +16253,7 @@ } }, { - "id": 310, + "id": 156, "name": "on", "kind": 2048, "kindString": "Method", @@ -16443,7 +16269,7 @@ ], "signatures": [ { - "id": 311, + "id": 157, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16463,7 +16289,7 @@ }, "parameters": [ { - "id": 312, + "id": 158, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16473,12 +16299,12 @@ }, "type": { "type": "reference", - "id": 1747, + "id": 1499, "name": "EmbedEvent" } }, { - "id": 313, + "id": 159, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16488,12 +16314,12 @@ }, "type": { "type": "reference", - "id": 2378, + "id": 2130, "name": "MessageCallback" } }, { - "id": 314, + "id": 160, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -16503,13 +16329,13 @@ }, "type": { "type": "reference", - "id": 2375, + "id": 2127, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 315, + "id": 161, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -16538,7 +16364,7 @@ } }, { - "id": 335, + "id": 181, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -16554,7 +16380,7 @@ ], "signatures": [ { - "id": 336, + "id": 182, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -16564,7 +16390,7 @@ }, "parameters": [ { - "id": 337, + "id": 183, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -16601,7 +16427,7 @@ } }, { - "id": 348, + "id": 194, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -16617,7 +16443,7 @@ ], "signatures": [ { - "id": 349, + "id": 195, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -16654,7 +16480,7 @@ } }, { - "id": 221, + "id": 75, "name": "render", "kind": 2048, "kindString": "Method", @@ -16663,14 +16489,14 @@ }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 176, + "fileName": "embed/search.ts", + "line": 484, "character": 17 } ], "signatures": [ { - "id": 222, + "id": 76, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -16683,8 +16509,8 @@ "typeArguments": [ { "type": "reference", - "id": 212, - "name": "SearchBarEmbed" + "id": 55, + "name": "SearchEmbed" } ], "name": "Promise" @@ -16701,7 +16527,7 @@ } }, { - "id": 352, + "id": 198, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -16717,7 +16543,7 @@ ], "signatures": [ { - "id": 353, + "id": 199, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -16747,7 +16573,7 @@ } }, { - "id": 354, + "id": 200, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -16763,7 +16589,7 @@ ], "signatures": [ { - "id": 355, + "id": 201, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -16793,7 +16619,7 @@ } }, { - "id": 320, + "id": 166, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -16809,7 +16635,7 @@ ], "signatures": [ { - "id": 321, + "id": 167, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -16820,19 +16646,19 @@ }, "typeParameter": [ { - "id": 322, + "id": 168, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1828, + "id": 1580, "name": "HostEvent" } }, { - "id": 323, + "id": 169, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -16841,7 +16667,7 @@ ], "parameters": [ { - "id": 324, + "id": 170, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16855,7 +16681,7 @@ } }, { - "id": 325, + "id": 171, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -16912,7 +16738,7 @@ } }, { - "id": 326, + "id": 172, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -16928,7 +16754,7 @@ ], "signatures": [ { - "id": 327, + "id": 173, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -16939,21 +16765,21 @@ }, "typeParameter": [ { - "id": 328, + "id": 174, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2559, + "id": 2311, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 329, + "id": 175, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -16967,7 +16793,7 @@ } }, { - "id": 330, + "id": 176, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17020,36 +16846,37 @@ "title": "Constructors", "kind": 512, "children": [ - 213 + 56 ] }, { "title": "Methods", "kind": 2048, "children": [ - 344, - 363, - 331, - 358, - 338, - 346, - 356, - 316, - 310, - 335, - 348, - 221, - 352, - 354, - 320, - 326 + 190, + 209, + 73, + 177, + 204, + 184, + 192, + 202, + 162, + 156, + 181, + 194, + 75, + 198, + 200, + 166, + 172 ] } ], "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 109, + "fileName": "embed/search.ts", + "line": 315, "character": 13 } ], @@ -17061,71 +16888,332 @@ ] }, { - "id": 55, - "name": "SearchEmbed", + "id": 1051, + "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot search", + "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", "tags": [ + { + "tag": "example", + "text": "\n```js\nimport { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new SpotterAgentEmbed({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" + }, { "tag": "group", - "text": "Embed components\n" + "text": "Embed components" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "children": [ { - "id": 56, + "id": 1052, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/search.ts", - "line": 321, + "fileName": "embed/bodyless-conversation.ts", + "line": 88, "character": 4 } ], "signatures": [ { - "id": 57, - "name": "new SearchEmbed", + "id": 1053, + "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 58, - "name": "domSelector", + "id": 1054, + "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2374, - "name": "DOMSelector" + "id": 1067, + "name": "SpotterAgentEmbedViewConfig" + } + } + ], + "type": { + "type": "reference", + "id": 1051, + "name": "SpotterAgentEmbed" + } + } + ] + }, + { + "id": 1056, + "name": "sendMessage", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 97, + "character": 17 + } + ], + "signatures": [ + { + "id": 1057, + "name": "sendMessage", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1058, + "name": "userMessage", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reflection", + "declaration": { + "id": 1059, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1061, + "name": "container", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + } + }, + { + "id": 1060, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 1062, + "name": "viz", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1061, + 1060, + 1062 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 1063, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1064, + "name": "container", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLDivElement" + } + }, + { + "id": 1066, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + } + }, + { + "id": 1065, + "name": "viz", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "name": "ConversationMessage" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1064, + 1066, + 1065 + ] + } + ] + } + } + ] + } + ], + "name": "Promise" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1052 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 1056 + ] + } + ], + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 85, + "character": 13 + } + ] + }, + { + "id": 1111, + "name": "SpotterEmbed", + "kind": 128, + "kindString": "Class", + "flags": {}, + "comment": { + "shortText": "Embed ThoughtSpot AI Conversation.", + "tags": [ + { + "tag": "group", + "text": "Embed components" + }, + { + "tag": "example", + "text": "\n```js\nconst conversation = new SpotterEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + } + ] + }, + "children": [ + { + "id": 1112, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 113, + "character": 4 + } + ], + "signatures": [ + { + "id": 1113, + "name": "new SpotterEmbed", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1114, + "name": "container", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLElement" } }, { - "id": 59, + "id": 1115, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2075, - "name": "SearchViewConfig" + "id": 1258, + "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 55, - "name": "SearchEmbed" + "id": 1111, + "name": "SpotterEmbed" }, "overwrites": { "type": "reference", @@ -17139,7 +17227,7 @@ } }, { - "id": 190, + "id": 1236, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -17155,7 +17243,7 @@ ], "signatures": [ { - "id": 191, + "id": 1237, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17185,7 +17273,7 @@ } }, { - "id": 209, + "id": 1255, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17201,7 +17289,7 @@ ], "signatures": [ { - "id": 210, + "id": 1256, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -17217,7 +17305,7 @@ }, "parameters": [ { - "id": 211, + "id": 1257, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17238,7 +17326,7 @@ "typeArguments": [ { "type": "reference", - "id": 1623, + "id": 1375, "name": "AnswerService" } ], @@ -17256,39 +17344,7 @@ } }, { - "id": 73, - "name": "getIFrameSrc", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 473, - "character": 11 - } - ], - "signatures": [ - { - "id": 74, - "name": "getIFrameSrc", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Construct the URL of the embedded ThoughtSpot search to be\nloaded in the iframe" - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - { - "id": 177, + "id": 1117, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -17297,14 +17353,14 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1149, + "fileName": "embed/conversation.ts", + "line": 118, "character": 11 } ], "signatures": [ { - "id": 178, + "id": 1118, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -17313,19 +17369,19 @@ "type": "intrinsic", "name": "string" }, - "inheritedFrom": { + "overwrites": { "type": "reference", "name": "TsEmbed.getIframeSrc" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", "name": "TsEmbed.getIframeSrc" } }, { - "id": 204, + "id": 1250, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -17341,7 +17397,7 @@ ], "signatures": [ { - "id": 205, + "id": 1251, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -17363,14 +17419,14 @@ "type": { "type": "reflection", "declaration": { - "id": 206, + "id": 1252, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 208, + "id": 1254, "name": "child", "kind": 1024, "kindString": "Property", @@ -17382,7 +17438,7 @@ "defaultValue": "..." }, { - "id": 207, + "id": 1253, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17399,8 +17455,8 @@ "title": "Properties", "kind": 1024, "children": [ - 208, - 207 + 1254, + 1253 ] } ] @@ -17418,7 +17474,7 @@ } }, { - "id": 184, + "id": 1230, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17434,7 +17490,7 @@ ], "signatures": [ { - "id": 185, + "id": 1231, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17450,7 +17506,7 @@ }, "parameters": [ { - "id": 186, + "id": 1232, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17458,20 +17514,20 @@ "type": { "type": "reflection", "declaration": { - "id": 187, + "id": 1233, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 188, + "id": 1234, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 189, + "id": 1235, "name": "key", "kind": 32768, "flags": {}, @@ -17516,7 +17572,7 @@ } }, { - "id": 192, + "id": 1238, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17532,7 +17588,7 @@ ], "signatures": [ { - "id": 193, + "id": 1239, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17553,7 +17609,7 @@ } }, { - "id": 202, + "id": 1248, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -17569,7 +17625,7 @@ ], "signatures": [ { - "id": 203, + "id": 1249, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -17593,7 +17649,7 @@ } }, { - "id": 162, + "id": 1210, "name": "off", "kind": 2048, "kindString": "Method", @@ -17609,7 +17665,7 @@ ], "signatures": [ { - "id": 163, + "id": 1211, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -17625,7 +17681,7 @@ }, "parameters": [ { - "id": 164, + "id": 1212, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17635,12 +17691,12 @@ }, "type": { "type": "reference", - "id": 1747, + "id": 1499, "name": "EmbedEvent" } }, { - "id": 165, + "id": 1213, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -17650,7 +17706,7 @@ }, "type": { "type": "reference", - "id": 2378, + "id": 2130, "name": "MessageCallback" } } @@ -17671,7 +17727,7 @@ } }, { - "id": 156, + "id": 1204, "name": "on", "kind": 2048, "kindString": "Method", @@ -17687,7 +17743,7 @@ ], "signatures": [ { - "id": 157, + "id": 1205, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -17707,7 +17763,7 @@ }, "parameters": [ { - "id": 158, + "id": 1206, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17717,12 +17773,12 @@ }, "type": { "type": "reference", - "id": 1747, + "id": 1499, "name": "EmbedEvent" } }, { - "id": 159, + "id": 1207, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -17732,12 +17788,12 @@ }, "type": { "type": "reference", - "id": 2378, + "id": 2130, "name": "MessageCallback" } }, { - "id": 160, + "id": 1208, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -17747,13 +17803,13 @@ }, "type": { "type": "reference", - "id": 2375, + "id": 2127, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 161, + "id": 1209, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -17782,7 +17838,7 @@ } }, { - "id": 181, + "id": 1227, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -17798,7 +17854,7 @@ ], "signatures": [ { - "id": 182, + "id": 1228, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -17808,7 +17864,7 @@ }, "parameters": [ { - "id": 183, + "id": 1229, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -17845,7 +17901,7 @@ } }, { - "id": 194, + "id": 1240, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -17861,7 +17917,7 @@ ], "signatures": [ { - "id": 195, + "id": 1241, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -17898,7 +17954,7 @@ } }, { - "id": 75, + "id": 1119, "name": "render", "kind": 2048, "kindString": "Method", @@ -17907,28 +17963,25 @@ }, "sources": [ { - "fileName": "embed/search.ts", - "line": 484, + "fileName": "embed/conversation.ts", + "line": 166, "character": 17 } ], "signatures": [ { - "id": 76, + "id": 1120, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Render the embedded ThoughtSpot search" - }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 55, - "name": "SearchEmbed" + "id": 1111, + "name": "SpotterEmbed" } ], "name": "Promise" @@ -17945,7 +17998,7 @@ } }, { - "id": 198, + "id": 1244, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -17961,7 +18014,7 @@ ], "signatures": [ { - "id": 199, + "id": 1245, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -17991,7 +18044,7 @@ } }, { - "id": 200, + "id": 1246, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18007,7 +18060,7 @@ ], "signatures": [ { - "id": 201, + "id": 1247, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18037,7 +18090,7 @@ } }, { - "id": 166, + "id": 1214, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18053,7 +18106,7 @@ ], "signatures": [ { - "id": 167, + "id": 1215, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18064,19 +18117,19 @@ }, "typeParameter": [ { - "id": 168, + "id": 1216, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1828, + "id": 1580, "name": "HostEvent" } }, { - "id": 169, + "id": 1217, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -18085,7 +18138,7 @@ ], "parameters": [ { - "id": 170, + "id": 1218, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18099,7 +18152,7 @@ } }, { - "id": 171, + "id": 1219, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18156,7 +18209,7 @@ } }, { - "id": 172, + "id": 1220, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18172,7 +18225,7 @@ ], "signatures": [ { - "id": 173, + "id": 1221, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18183,21 +18236,21 @@ }, "typeParameter": [ { - "id": 174, + "id": 1222, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2559, + "id": 2311, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 175, + "id": 1223, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18211,7 +18264,7 @@ } }, { - "id": 176, + "id": 1224, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -18264,37 +18317,36 @@ "title": "Constructors", "kind": 512, "children": [ - 56 + 1112 ] }, { "title": "Methods", "kind": 2048, "children": [ - 190, - 209, - 73, - 177, - 204, - 184, - 192, - 202, - 162, - 156, - 181, - 194, - 75, - 198, - 200, - 166, - 172 + 1236, + 1255, + 1117, + 1250, + 1230, + 1238, + 1248, + 1210, + 1204, + 1227, + 1240, + 1119, + 1244, + 1246, + 1214, + 1220 ] } ], "sources": [ { - "fileName": "embed/search.ts", - "line": 315, + "fileName": "embed/conversation.ts", + "line": 112, "character": 13 } ], @@ -18306,1640 +18358,923 @@ ] }, { - "id": 1051, - "name": "SpotterAgentEmbed", - "kind": 128, - "kindString": "Class", + "id": 2031, + "name": "AppViewConfig", + "kind": 256, + "kindString": "Interface", "flags": {}, "comment": { - "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", + "shortText": "The view configuration for full app embedding.", "tags": [ - { - "tag": "example", - "text": "\n```js\nimport { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new SpotterAgentEmbed({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" - }, { "tag": "group", - "text": "Embed components" - }, - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + "text": "Embed components\n" } ] }, "children": [ { - "id": 1052, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": {}, + "id": 2062, + "name": "additionalFlags", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + } + ] + }, "sources": [ { - "fileName": "embed/bodyless-conversation.ts", - "line": 100, + "fileName": "types.ts", + "line": 843, "character": 4 } ], - "signatures": [ - { - "id": 1053, - "name": "new SpotterAgentEmbed", - "kind": 16384, - "kindString": "Constructor signature", + "type": { + "type": "reflection", + "declaration": { + "id": 2063, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", "flags": {}, - "parameters": [ - { - "id": 1054, - "name": "viewConfig", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1067, - "name": "SpotterAgentEmbedViewConfig" + "indexSignature": { + "id": 2064, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 2065, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] } - ], - "type": { - "type": "reference", - "id": 1051, - "name": "SpotterAgentEmbed" } } - ] + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.additionalFlags" + } }, { - "id": 1056, - "name": "sendMessage", - "kind": 2048, - "kindString": "Method", + "id": 2097, + "name": "collapseSearchBar", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true + }, + "comment": { + "shortText": "To set the initial state of the search bar in case of saved Answers.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + } + ] }, "sources": [ { - "fileName": "embed/bodyless-conversation.ts", - "line": 109, - "character": 17 + "fileName": "types.ts", + "line": 1076, + "character": 4 } ], - "signatures": [ - { - "id": 1057, - "name": "sendMessage", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1058, - "name": "userMessage", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "reflection", - "declaration": { - "id": 1059, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1061, - "name": "container", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - } - }, - { - "id": 1060, - "name": "error", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - }, - { - "id": 1062, - "name": "viz", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1061, - 1060, - 1062 - ] - } - ] - } - }, - { - "type": "reflection", - "declaration": { - "id": 1063, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1064, - "name": "container", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLDivElement" - } - }, - { - "id": 1066, - "name": "error", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - } - }, - { - "id": 1065, - "name": "viz", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "name": "ConversationMessage" - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1064, - 1066, - 1065 - ] - } - ] - } - } - ] - } - ], - "name": "Promise" - } - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 1052 - ] + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.collapseSearchBar" + } }, { - "title": "Methods", - "kind": 2048, - "children": [ - 1056 - ] - } - ], - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 97, - "character": 13 - } - ] - }, - { - "id": 1167, - "name": "SpotterEmbed", - "kind": 128, - "kindString": "Class", - "flags": {}, - "comment": { - "shortText": "Embed ThoughtSpot AI Conversation.", - "tags": [ - { - "tag": "group", - "text": "Embed components" + "id": 2051, + "name": "collapseSearchBarInitially", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true }, - { - "tag": "example", - "text": "\n```js\nconst conversation = new SpotterEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" + "comment": { + "shortText": "To set the initial state of the search bar in case of saved-answers.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "deprecated", + "text": "Use {@link collapseSearchBar} instead\n" + } + ] }, - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" - } - ] - }, - "children": [ - { - "id": 1168, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": {}, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 194, + "fileName": "embed/app.ts", + "line": 371, "character": 4 } ], - "signatures": [ - { - "id": 1169, - "name": "new SpotterEmbed", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 1170, - "name": "container", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLElement" - } - }, - { - "id": 1171, - "name": "viewConfig", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1314, - "name": "SpotterEmbedViewConfig" - } - } - ], - "type": { - "type": "reference", - "id": 1167, - "name": "SpotterEmbed" - }, - "overwrites": { - "type": "reference", - "name": "TsEmbed.constructor" - } - } - ], - "overwrites": { - "type": "reference", - "name": "TsEmbed.constructor" + "type": { + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1292, - "name": "destroy", - "kind": 2048, - "kindString": "Method", + "id": 2077, + "name": "contextMenuTrigger", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true + }, + "comment": { + "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + } + ] }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1207, - "character": 11 - } - ], - "signatures": [ - { - "id": 1293, - "name": "destroy", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Destroys the ThoughtSpot embed, and remove any nodes from the DOM.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.19.1 | ThoughtSpot: *\n" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.destroy" - } + "fileName": "types.ts", + "line": 875, + "character": 4 } ], + "type": { + "type": "reference", + "id": 1775, + "name": "ContextMenuTriggerOptions" + }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.destroy" + "name": "Omit.contextMenuTrigger" } }, { - "id": 1311, - "name": "getAnswerService", - "kind": 2048, - "kindString": "Method", + "id": 2061, + "name": "customizations", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true }, - "sources": [ - { - "fileName": "embed/ts-embed.ts", - "line": 1384, - "character": 17 - } - ], - "signatures": [ - { - "id": 1312, - "name": "getAnswerService", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Returns the answerService which can be used to make arbitrary graphql calls on top\nsession.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.25.0 / ThoughtSpot 9.10.0\n" - } - ] - }, - "parameters": [ - { - "id": 1313, - "name": "vizId", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "comment": { - "text": "to get for a specific viz in case of a Liveboard." - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "id": 1623, - "name": "AnswerService" - } - ], - "name": "Promise" + "comment": { + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.getAnswerService" + { + "tag": "default", + "text": "''\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 850, + "character": 4 } ], + "type": { + "type": "reference", + "id": 2143, + "name": "CustomisationsInterface" + }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getAnswerService" + "name": "Omit.customizations" } }, { - "id": 1173, - "name": "getIframeSrc", - "kind": 2048, - "kindString": "Method", + "id": 2052, + "name": "dataPanelCustomGroupsAccordionInitialState", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 199, - "character": 11 - } - ], - "signatures": [ - { - "id": 1174, - "name": "getIframeSrc", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" + "comment": { + "shortText": "This controls the initial behaviour of custom column groups accordion.\nIt takes DataPanelCustomColumnGroupsAccordionState enum values as input.\nList of different enum values:-\n- EXPAND_ALL: Expand all the accordion initially in data panel v2.\n- COLLAPSE_ALL: Collapse all the accordions initially in data panel v2.\n- EXPAND_FIRST: Expand the first accordion and collapse the rest.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" }, - "overwrites": { - "type": "reference", - "name": "TsEmbed.getIframeSrc" + { + "tag": "default", + "text": "DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n dataPanelCustomGroupsAccordionInitialState:\n DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL,\n});\n```\n" } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 390, + "character": 4 } ], - "overwrites": { + "type": { "type": "reference", - "name": "TsEmbed.getIframeSrc" + "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 1306, - "name": "getPreRenderIds", - "kind": 2048, - "kindString": "Method", + "id": 2098, + "name": "dataPanelV2", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true }, - "sources": [ - { - "fileName": "embed/ts-embed.ts", - "line": 1371, - "character": 11 - } - ], - "signatures": [ - { - "id": 1307, - "name": "getPreRenderIds", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Retrieves unique HTML element IDs for PreRender-related elements.\nThese IDs are constructed based on the provided 'preRenderId' from 'viewConfig'.", - "returns": "An object containing the IDs for the PreRender elements.", - "tags": [ - { - "tag": "property", - "text": "{string} wrapper - The HTML element ID for the PreRender wrapper." - }, - { - "tag": "property", - "text": "{string} child - The HTML element ID for the PreRender child.\n" - } - ] + "comment": { + "shortText": "Flag to control Data panel experience", + "tags": [ + { + "tag": "default", + "text": "false" }, - "type": { - "type": "reflection", - "declaration": { - "id": 1308, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1310, - "name": "child", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "defaultValue": "..." - }, - { - "id": 1309, - "name": "wrapper", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1310, - 1309 - ] - } - ] - } + { + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.getPreRenderIds" + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1107, + "character": 4 } ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getPreRenderIds" + "name": "Omit.dataPanelV2" } }, { - "id": 1286, - "name": "getThoughtSpotPostUrlParams", - "kind": 2048, - "kindString": "Method", + "id": 2034, + "name": "disableProfileAndHelp", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true }, - "sources": [ - { - "fileName": "embed/ts-embed.ts", - "line": 1177, - "character": 11 - } - ], - "signatures": [ - { - "id": 1287, - "name": "getThoughtSpotPostUrlParams", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Get the Post Url Params for THOUGHTSPOT from the current\nhost app URL.\nTHOUGHTSPOT URL params starts with a prefix \"ts-\"", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.14.0 | ThoughtSpot: 8.4.0.cl, 8.4.1-sw\n" - } - ] + "comment": { + "shortText": "Control the visibility of the help (?) and profile buttons on the\nGlobal nav-bar. By default, these buttons are visible on the nav-bar.", + "tags": [ + { + "tag": "default", + "text": "false" }, - "parameters": [ - { - "id": 1288, - "name": "additionalParams", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1289, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 1290, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1291, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - } - } - }, - "defaultValue": "{}" - } - ], - "type": { - "type": "intrinsic", - "name": "string" + { + "tag": "version", + "text": "SDK: 1.2.0 | Thoughtspot: 8.4.0.cl" }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n disableProfileAndHelp: true,\n})\n```\n" } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 139, + "character": 4 } ], - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" + "type": { + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1294, - "name": "getUnderlyingFrameElement", - "kind": 2048, - "kindString": "Method", + "id": 2080, + "name": "disableRedirectionLinksInNewTab", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true }, - "sources": [ - { - "fileName": "embed/ts-embed.ts", - "line": 1216, - "character": 11 - } - ], - "signatures": [ - { - "id": 1295, - "name": "getUnderlyingFrameElement", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLIFrameElement" + "comment": { + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.getUnderlyingFrameElement" + { + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1094, + "character": 4 } ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getUnderlyingFrameElement" + "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1304, - "name": "hidePreRender", - "kind": 2048, - "kindString": "Method", + "id": 2071, + "name": "disabledActionReason", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true }, - "sources": [ - { - "fileName": "embed/ts-embed.ts", - "line": 1343, - "character": 11 - } - ], - "signatures": [ - { - "id": 1305, - "name": "hidePreRender", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Hides the PreRender component if it is available.\nIf the component is not preRendered, it issues a warning." - }, - "type": { - "type": "intrinsic", - "name": "void" + "comment": { + "shortText": "The tooltip to display for disabled actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.hidePreRender" + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 727, + "character": 4 } ], + "type": { + "type": "intrinsic", + "name": "string" + }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.hidePreRender" + "name": "Omit.disabledActionReason" } }, { - "id": 1266, - "name": "off", - "kind": 2048, - "kindString": "Method", + "id": 2070, + "name": "disabledActions", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" + } + ] }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1061, - "character": 11 - } - ], - "signatures": [ - { - "id": 1267, - "name": "off", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Removes an event listener for a particular event type.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst errorHandler = (data) => { console.error(data); };\ntsEmbed.on(EmbedEvent.Error, errorHandler);\ntsEmbed.off(EmbedEvent.Error, errorHandler);\n```\n" - } - ] - }, - "parameters": [ - { - "id": 1268, - "name": "messageType", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "The message type" - }, - "type": { - "type": "reference", - "id": 1747, - "name": "EmbedEvent" - } - }, - { - "id": 1269, - "name": "callback", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "The callback to remove" - }, - "type": { - "type": "reference", - "id": 2378, - "name": "MessageCallback" - } - } - ], - "type": { - "type": "reference", - "name": "TsEmbed" - }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.off" - } + "fileName": "types.ts", + "line": 714, + "character": 4 } ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1645, + "name": "Action" + } + }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.off" + "name": "Omit.disabledActions" } }, { - "id": 1260, - "name": "on", - "kind": 2048, - "kindString": "Method", + "id": 2093, + "name": "doNotTrackPreRenderSize", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true }, - "sources": [ - { - "fileName": "embed/ts-embed.ts", - "line": 1032, - "character": 11 - } - ], - "signatures": [ - { - "id": 1261, - "name": "on", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", - "tags": [ - { - "tag": "example", - "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" - }, - { - "tag": "example", - "text": "\n```js\ntsEmbed.on(EmbedEvent.Save, (data) => {\n console.log(\"Answer save clicked\", data);\n}, {\n start: true // This will trigger the callback on start of save\n});\n```\n" - } - ] + "comment": { + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "tags": [ + { + "tag": "default", + "text": "false" }, - "parameters": [ - { - "id": 1262, - "name": "messageType", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "The message type" - }, - "type": { - "type": "reference", - "id": 1747, - "name": "EmbedEvent" - } - }, - { - "id": 1263, - "name": "callback", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "A callback as a function" - }, - "type": { - "type": "reference", - "id": 2378, - "name": "MessageCallback" - } - }, - { - "id": 1264, - "name": "options", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "The message options" - }, - "type": { - "type": "reference", - "id": 2375, - "name": "MessageOptions" - }, - "defaultValue": "..." - }, - { - "id": 1265, - "name": "isRegisteredBySDK", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "defaultValue": "false" - } - ], - "type": { - "type": "reference", - "name": "TsEmbed" + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.on" + { + "tag": "example", + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1035, + "character": 4 } ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.on" + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1283, - "name": "preRender", - "kind": 2048, - "kindString": "Method", + "id": 2053, + "name": "enable2ColumnLayout", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true }, - "sources": [ - { - "fileName": "embed/ts-embed.ts", - "line": 1161, - "character": 17 - } - ], - "signatures": [ - { - "id": 1284, - "name": "preRender", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Creates the preRender shell" + "comment": { + "shortText": "This attribute can be used to enable the two-column layout on an embedded Liveboard", + "tags": [ + { + "tag": "default", + "text": "false" }, - "parameters": [ - { - "id": 1285, - "name": "showPreRenderByDefault", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "Show the preRender after render, hidden by default\n" - }, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "defaultValue": "false" - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "TsEmbed" - } - ], - "name": "Promise" + { + "tag": "version", + "text": "SDK: 1.32.0 | ThoughtSpot:10.1.0.cl" }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.preRender" + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n enable2ColumnLayout: true,\n})\n```\n" } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 404, + "character": 4 } ], - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.preRender" + "type": { + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1296, - "name": "prerenderGeneric", - "kind": 2048, - "kindString": "Method", + "id": 2050, + "name": "enableAskSage", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true + }, + "comment": { + "shortText": "enable or disable ask sage", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.29.0 | Thoughtspot: 9.12.0.cl" + }, + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1227, - "character": 17 + "fileName": "embed/app.ts", + "line": 364, + "character": 4 } ], - "signatures": [ - { - "id": 1297, - "name": "prerenderGeneric", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Prerenders a generic instance of the TS component.\nThis means without the path but with the flags already applied.\nThis is useful for prerendering the component in the background.", - "returns": "\n", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.22.0" - } - ] + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2099, + "name": "enableCustomColumnGroups", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To enable custom column groups in data panel v2", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Promise" + { + "tag": "default", + "text": "false" }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.prerenderGeneric" + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1120, + "character": 4 } ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.prerenderGeneric" + "name": "Omit.enableCustomColumnGroups" } }, { - "id": 1175, - "name": "render", - "kind": 2048, - "kindString": "Method", + "id": 2035, + "name": "enablePendoHelp", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 247, - "character": 17 - } - ], - "signatures": [ - { - "id": 1176, - "name": "render", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "id": 1167, - "name": "SpotterEmbed" - } - ], - "name": "Promise" + "comment": { + "tags": [ + { + "tag": "version", + "text": "SDK: 1.36.3 | ThoughtSpot: 10.1.0.cl" }, - "overwrites": { - "type": "reference", - "name": "TsEmbed.render" + { + "tag": "default", + "text": "true\nWhether the help menu in the top nav bar should be served\nfrom Pendo or ThoughtSpot's internal help items." + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n enablePendoHelp: false,\n});\n```\n" } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 153, + "character": 4 } ], - "overwrites": { - "type": "reference", - "name": "TsEmbed.render" + "type": { + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1300, - "name": "showPreRender", - "kind": 2048, - "kindString": "Method", + "id": 2043, + "name": "enableSearchAssist", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true + }, + "comment": { + "shortText": "If set to true, the Search Assist feature is enabled.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.13.0 | ThoughtSpot: 8.5.0.cl, 8.8.1-sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n enableSearchAssist: true,\n})\n```\n" + } + ] }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1275, - "character": 17 + "fileName": "embed/app.ts", + "line": 272, + "character": 4 } ], - "signatures": [ - { - "id": 1301, - "name": "showPreRender", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Displays the PreRender component.\nIf the component is not preRendered, it attempts to create and render it.\nAlso, synchronizes the style of the PreRender component with the embedding\nelement." - }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "TsEmbed" - } - ], - "name": "Promise" + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2096, + "name": "enableV2Shell_experimental", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.showPreRender" + { + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1064, + "character": 4 } ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.showPreRender" + "name": "Omit.enableV2Shell_experimental" } }, { - "id": 1302, - "name": "syncPreRenderStyle", - "kind": 2048, - "kindString": "Method", + "id": 2092, + "name": "excludeRuntimeFiltersfromURL", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true }, - "sources": [ - { - "fileName": "embed/ts-embed.ts", - "line": 1324, - "character": 11 - } - ], - "signatures": [ - { - "id": 1303, - "name": "syncPreRenderStyle", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Synchronizes the style properties of the PreRender component with the embedding\nelement. This function adjusts the position, width, and height of the PreRender\ncomponent\nto match the dimensions and position of the embedding element.", - "tags": [ - { - "tag": "throws", - "text": "{Error} Throws an error if the embedding element (passed as domSelector)\nis not defined or not found.\n" - } - ] - }, - "type": { - "type": "intrinsic", - "name": "void" + "comment": { + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.syncPreRenderStyle" + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.syncPreRenderStyle" - } - }, - { - "id": 1270, - "name": "trigger", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true + ] }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1100, - "character": 17 - } - ], - "signatures": [ - { - "id": 1271, - "name": "trigger", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Triggers an event to the embedded app", - "returns": "A promise that resolves with the response from the embedded app\n" - }, - "typeParameter": [ - { - "id": 1272, - "name": "HostEventT", - "kind": 131072, - "kindString": "Type parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1828, - "name": "HostEvent" - } - }, - { - "id": 1273, - "name": "PayloadT", - "kind": 131072, - "kindString": "Type parameter", - "flags": {} - } - ], - "parameters": [ - { - "id": 1274, - "name": "messageType", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "The event type" - }, - "type": { - "type": "reference", - "name": "HostEventT" - } - }, - { - "id": 1275, - "name": "data", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "The payload to send with the message" - }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "PayloadT" - }, - { - "type": "reference", - "name": "HostEventT" - } - ], - "name": "TriggerPayload" - }, - "defaultValue": "..." - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "PayloadT" - }, - { - "type": "reference", - "name": "HostEventT" - } - ], - "name": "TriggerResponse" - } - ], - "name": "Promise" - }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.trigger" - } + "fileName": "types.ts", + "line": 913, + "character": 4 } ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.trigger" + "name": "Omit.excludeRuntimeFiltersfromURL" } }, { - "id": 1276, - "name": "triggerUIPassThrough", - "kind": 2048, - "kindString": "Method", + "id": 2095, + "name": "excludeRuntimeParametersfromURL", + "kind": 1024, + "kindString": "Property", "flags": { - "isPublic": true + "isOptional": true }, - "sources": [ - { - "fileName": "embed/ts-embed.ts", - "line": 1126, - "character": 17 - } - ], - "signatures": [ - { - "id": 1277, - "name": "triggerUIPassThrough", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Triggers an event to the embedded app, skipping the UI flow.", - "returns": "- A promise that resolves with the response\nfrom the embedded app.\n" - }, - "typeParameter": [ - { - "id": 1278, - "name": "UIPassthroughEventT", - "kind": 131072, - "kindString": "Type parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 2559, - "name": "UIPassthroughEvent" - } - } - ], - "parameters": [ - { - "id": 1279, - "name": "apiName", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "The name of the API to be triggered." - }, - "type": { - "type": "reference", - "name": "UIPassthroughEventT" - } - }, - { - "id": 1280, - "name": "parameters", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "The parameters to be passed to the API." - }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "UIPassthroughEventT" - } - ], - "name": "UIPassthroughRequest" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "UIPassthroughEventT" - } - ], - "name": "UIPassthroughArrayResponse" - } - ], - "name": "Promise" + "comment": { + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" }, - "inheritedFrom": { - "type": "reference", - "name": "TsEmbed.triggerUIPassThrough" + { + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1050, + "character": 4 } ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.triggerUIPassThrough" + "name": "Omit.excludeRuntimeParametersfromURL" } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 1168 - ] }, { - "title": "Methods", - "kind": 2048, - "children": [ - 1292, - 1311, - 1173, - 1306, - 1286, - 1294, - 1304, - 1266, - 1260, - 1283, - 1296, - 1175, - 1300, - 1302, - 1270, - 1276 - ] - } - ], - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 193, - "character": 13 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "TsEmbed" - } - ] - }, - { - "id": 2279, - "name": "AppViewConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The view configuration for full app embedding.", - "tags": [ - { - "tag": "group", - "text": "Embed components\n" - } - ] - }, - "children": [ - { - "id": 2310, - "name": "additionalFlags", + "id": 2082, + "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "shortText": "This flag can be used to expose translation IDs on the embedded app.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + "tag": "default", + "text": "false" }, { "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 843, + "line": 1082, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 2311, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 2312, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 2313, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - } - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.additionalFlags" + "name": "Omit.exposeTranslationIDs" } }, { - "id": 2345, - "name": "collapseSearchBar", + "id": 2085, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ - { - "tag": "default", - "text": "true" - }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1076, + "line": 690, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 2105, + "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "name": "Omit.collapseSearchBar" + "name": "Omit.frameParams" } }, { - "id": 2299, - "name": "collapseSearchBarInitially", + "id": 2044, + "name": "fullHeight", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved-answers.", + "shortText": "If set to true, the Liveboard container dynamically resizes\naccording to the height of the Liveboard.", + "text": "**Note**: Using fullHeight loads all visualizations\non the Liveboard simultaneously, which results in\nmultiple warehouse queries and potentially a\nlonger wait for the topmost visualizations to\ndisplay on the screen. Setting fullHeight to\n`false` fetches visualizations incrementally as\nusers scroll the page to view the charts and tables.\n", "tags": [ { "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" - }, - { - "tag": "default", - "text": "false" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.4.0.cl, 9.4.0-sw" }, { - "tag": "deprecated", - "text": "Use {@link collapseSearchBar} instead\n" + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n fullHeight: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 371, + "line": 294, "character": 4 } ], @@ -19949,188 +19284,245 @@ } }, { - "id": 2325, - "name": "contextMenuTrigger", + "id": 2072, + "name": "hiddenActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" }, { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + "tag": "important", + "text": "\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 875, + "line": 742, "character": 4 } ], "type": { - "type": "reference", - "id": 2023, - "name": "ContextMenuTriggerOptions" + "type": "array", + "elementType": { + "type": "reference", + "id": 1645, + "name": "Action" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.contextMenuTrigger" + "name": "Omit.hiddenActions" } }, { - "id": 2309, - "name": "customizations", + "id": 2068, + "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", "tags": [ { - "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." }, { - "tag": "default", - "text": "''\n" + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 850, + "line": 999, "character": 4 } ], "type": { - "type": "reference", - "id": 2391, - "name": "CustomisationsInterface" + "type": "array", + "elementType": { + "type": "reference", + "id": 2111, + "name": "HomeLeftNavItem" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.customizations" + "name": "Omit.hiddenHomeLeftNavItems" } }, { - "id": 2300, - "name": "dataPanelCustomGroupsAccordionInitialState", + "id": 2066, + "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This controls the initial behaviour of custom column groups accordion.\nIt takes DataPanelCustomColumnGroupsAccordionState enum values as input.\nList of different enum values:-\n- EXPAND_ALL: Expand all the accordion initially in data panel v2.\n- COLLAPSE_ALL: Collapse all the accordions initially in data panel v2.\n- EXPAND_FIRST: Expand the first accordion and collapse the rest.", + "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" - }, - { - "tag": "default", - "text": "DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL" + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n dataPanelCustomGroupsAccordionInitialState:\n DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL,\n});\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 390, + "fileName": "types.ts", + "line": 946, "character": 4 } ], "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2119, + "name": "HomepageModule" + } + }, + "inheritedFrom": { "type": "reference", - "name": "DataPanelCustomColumnGroupsAccordionState" + "name": "Omit.hiddenHomepageModules" } }, { - "id": 2346, - "name": "dataPanelV2", + "id": 2069, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to control Data panel experience", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is appplicable only in full app embedding.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1107, + "line": 1151, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2318, + "name": "ListPageColumns" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.dataPanelV2" + "name": "Omit.hiddenListColumns" } }, { - "id": 2282, - "name": "disableProfileAndHelp", + "id": 2074, + "name": "hiddenTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Control the visibility of the help (?) and profile buttons on the\nGlobal nav-bar. By default, these buttons are visible on the nav-bar.", + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" }, { "tag": "version", - "text": "SDK: 1.2.0 | Thoughtspot: 8.4.0.cl" + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 929, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenTabs" + } + }, + { + "id": 2036, + "name": "hideApplicationSwitcher", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Control the visibility of the application switcher button on the nav-bar.\nBy default, the application switcher is shown.", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + }, + { + "tag": "default", + "text": "false" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n disableProfileAndHelp: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideApplicationSwitcher : true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 139, + "line": 171, "character": 4 } ], @@ -20140,190 +19532,183 @@ } }, { - "id": 2328, - "name": "disableRedirectionLinksInNewTab", + "id": 2033, + "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "shortText": "Control the visibility of the left navigation bar on the Homepage.\nIf showPrimaryNavbar is true, that is, if the Global and Homepage\nnav-bars are visible, this flag will only hide the homepage left nav-bar.\nThe showPrimaryNavbar flag takes precedence over the hideHomepageLeftNav.", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + "tag": "default", + "text": "false" }, { "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideHomepageLeftNav : true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1094, + "fileName": "embed/app.ts", + "line": 125, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 2319, - "name": "disabledActionReason", + "id": 2058, + "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The tooltip to display for disabled actions.", + "shortText": "This flag is used to enable/disable hide irrelevant filters in Liveboard tab", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "text": "SDK: 1.36.0 | ThoughtSpot:10.6.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n hideIrrelevantChipsInLiveboardTabs: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 727, + "fileName": "embed/app.ts", + "line": 456, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disabledActionReason" + "name": "boolean" } }, { - "id": 2318, - "name": "disabledActions", + "id": 2045, + "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", + "shortText": "Show or hide Liveboard header", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" + }, + { + "tag": "default", + "text": "false" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideLiveboardHeader : true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 714, + "fileName": "embed/app.ts", + "line": 307, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1893, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disabledActions" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 2341, - "name": "doNotTrackPreRenderSize", + "id": 2041, + "name": "hideObjects", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "shortText": "The array of GUIDs to be hidden", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1-sw" }, { "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideObjects: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1035, + "fileName": "embed/app.ts", + "line": 252, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 2301, - "name": "enable2ColumnLayout", + "id": 2037, + "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This attribute can be used to enable the two-column layout on an embedded Liveboard", + "shortText": "Control the visibility of the Org switcher button on the nav-bar.\nBy default, the Org switcher button is shown.", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" }, { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot:10.1.0.cl" + "tag": "default", + "text": "true" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n enable2ColumnLayout: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideOrgSwitcher : true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 404, + "line": 189, "character": 4 } ], @@ -20333,67 +19718,60 @@ } }, { - "id": 2298, - "name": "enableAskSage", + "id": 2055, + "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "enable or disable ask sage", + "shortText": "Flag to use home page search bar mode", "tags": [ { "tag": "version", - "text": "SDK: 1.29.0 | Thoughtspot: 9.12.0.cl" - }, - { - "tag": "default", - "text": "false\n" + "text": "SDK : 1.33.0 | Thoughtspot : 10.3.0.cl\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 364, + "line": 414, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 2284, + "name": "HomePageSearchBarMode" } }, { - "id": 2347, - "name": "enableCustomColumnGroups", + "id": 2090, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To enable custom column groups in data panel v2", + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", "tags": [ { "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, - { - "tag": "default", - "text": "false" + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1120, + "line": 863, "character": 4 } ], @@ -20403,37 +19781,38 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableCustomColumnGroups" + "name": "Omit.insertAsSibling" } }, { - "id": 2283, - "name": "enablePendoHelp", + "id": 2056, + "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { + "shortText": "This flag can be used to enable the compact header in Liveboard", "tags": [ { - "tag": "version", - "text": "SDK: 1.36.3 | ThoughtSpot: 10.1.0.cl" + "tag": "default", + "text": "false" }, { - "tag": "default", - "text": "true\nWhether the help menu in the top nav bar should be served\nfrom Pendo or ThoughtSpot's internal help items." + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot:10.3.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n enablePendoHelp: false,\n});\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n isLiveboardCompactHeaderEnabled: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 153, + "line": 428, "character": 4 } ], @@ -20443,34 +19822,59 @@ } }, { - "id": 2291, - "name": "enableSearchAssist", + "id": 2049, + "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, the Search Assist feature is enabled.", + "shortText": "Boolean to control if Liveboard header is sticky or not.", "tags": [ { - "tag": "default", - "text": "true" + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n isLiveboardHeaderSticky: true,\n});\n```" }, { "tag": "version", - "text": "SDK: 1.13.0 | ThoughtSpot: 8.5.0.cl, 8.8.1-sw" - }, + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/app.ts", + "line": 358, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2054, + "name": "isOnBeforeGetVizDataInterceptEnabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", + "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n enableSearchAssist: true,\n})\n```\n" + "tag": "version", + "text": "SDK : 1.29.0 | Thoughtspot : 10.1.0.cl\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 272, + "line": 409, "character": 4 } ], @@ -20480,68 +19884,67 @@ } }, { - "id": 2344, - "name": "enableV2Shell_experimental", + "id": 2060, + "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "shortText": "This flag is used to enable unified search experience for full app embed.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + "tag": "default", + "text": "true" }, { "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + "text": "SDK: 1.34.0 | ThoughtSpot:10.5.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n isUnifiedSearchExperienceEnabled: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1064, + "fileName": "embed/app.ts", + "line": 484, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.enableV2Shell_experimental" } }, { - "id": 2340, - "name": "excludeRuntimeFiltersfromURL", + "id": 2078, + "name": "linkOverride", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" }, { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 913, + "line": 887, "character": 4 } ], @@ -20551,57 +19954,56 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeFiltersfromURL" + "name": "Omit.linkOverride" } }, { - "id": 2343, - "name": "excludeRuntimeParametersfromURL", + "id": 2076, + "name": "locale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "shortText": "The locale settings to apply to the embedded view.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1050, + "line": 822, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeParametersfromURL" + "name": "Omit.locale" } }, { - "id": 2330, - "name": "exposeTranslationIDs", + "id": 2048, + "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to expose translation IDs on the embedded app.", + "shortText": "Flag to control new Modular Home experience.", "tags": [ { "tag": "default", @@ -20609,210 +20011,195 @@ }, { "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n modularHomeExperience : true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1082, + "fileName": "embed/app.ts", + "line": 346, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.exposeTranslationIDs" } }, { - "id": 2333, - "name": "frameParams", + "id": 2081, + "name": "overrideOrgId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", "tags": [ { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 690, + "line": 1136, "character": 4 } ], "type": { - "type": "reference", - "id": 2353, - "name": "FrameParams" + "type": "intrinsic", + "name": "number" }, "inheritedFrom": { "type": "reference", - "name": "Omit.frameParams" + "name": "Omit.overrideOrgId" } }, { - "id": 2292, - "name": "fullHeight", + "id": 2039, + "name": "pageId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, the Liveboard container dynamically resizes\naccording to the height of the Liveboard.", - "text": "**Note**: Using fullHeight loads all visualizations\non the Liveboard simultaneously, which results in\nmultiple warehouse queries and potentially a\nlonger wait for the topmost visualizations to\ndisplay on the screen. Setting fullHeight to\n`false` fetches visualizations incrementally as\nusers scroll the page to view the charts and tables.\n", + "shortText": "The application page to set as the start page\nin the embedded view.", + "text": "Use this to open to particular page in the app. To open to a specific\npath within the app, use the `path` attribute which is more flexible.", "tags": [ { "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.4.0.cl, 9.4.0-sw" + "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n fullHeight: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n pageId : Page.Answers | Page.Data\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 294, + "line": 223, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 1458, + "name": "Page" } }, { - "id": 2320, - "name": "hiddenActions", + "id": 2038, + "name": "path", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", + "shortText": "A URL path to the embedded application page\nIf both path and pageId attributes are defined, the path definition\ntakes precedence. This is the path post the `#/` in the URL of the standalone\nThoughtSpot app. Use this to open the embedded view to a specific path.", + "text": "For eg, if you want the component to open to a specific Liveboard\nyou could set the path to `pinboard//tab/`.", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" - }, - { - "tag": "important", - "text": "\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n path:\"pinboard/1234/tab/7464\"\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 742, + "fileName": "embed/app.ts", + "line": 207, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1893, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.hiddenActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 2316, - "name": "hiddenHomeLeftNavItems", + "id": 2083, + "name": "preRenderId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" }, { "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 999, + "line": 1014, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2359, - "name": "HomeLeftNavItem" - } + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenHomeLeftNavItems" + "name": "Omit.preRenderId" } }, { - "id": 2314, - "name": "hiddenHomepageModules", + "id": 2067, + "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", + "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 946, + "line": 963, "character": 4 } ], @@ -20820,41 +20207,40 @@ "type": "array", "elementType": { "type": "reference", - "id": 2367, + "id": 2119, "name": "HomepageModule" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenHomepageModules" + "name": "Omit.reorderedHomepageModules" } }, { - "id": 2317, - "name": "hiddenListColumns", + "id": 2088, + "name": "runtimeFilters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is appplicable only in full app embedding.", + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1151, + "line": 792, "character": 4 } ], @@ -20862,123 +20248,122 @@ "type": "array", "elementType": { "type": "reference", - "id": 2566, - "name": "ListPageColumns" + "id": 1479, + "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenListColumns" + "name": "Omit.runtimeFilters" } }, { - "id": 2322, - "name": "hiddenTabs", + "id": 2089, + "name": "runtimeParameters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + "tag": "version", + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 929, + "line": 810, "character": 4 } ], "type": { "type": "array", "elementType": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2258, + "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenTabs" + "name": "Omit.runtimeParameters" } }, { - "id": 2284, - "name": "hideApplicationSwitcher", + "id": 2075, + "name": "showAlerts", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Control the visibility of the application switcher button on the nav-bar.\nBy default, the application switcher is shown.", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", "tags": [ { "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" - }, - { - "tag": "default", - "text": "false" + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideApplicationSwitcher : true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/app.ts", - "line": 171, + "fileName": "types.ts", + "line": 773, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.showAlerts" } }, { - "id": 2281, - "name": "hideHomepageLeftNav", + "id": 2047, + "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Control the visibility of the left navigation bar on the Homepage.\nIf showPrimaryNavbar is true, that is, if the Global and Homepage\nnav-bars are visible, this flag will only hide the homepage left nav-bar.\nThe showPrimaryNavbar flag takes precedence over the hideHomepageLeftNav.", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "shortText": "Show or hide Liveboard description", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" }, { - "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" + "tag": "default", + "text": "false" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideHomepageLeftNav : true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showLiveboardDescription:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 125, + "line": 333, "character": 4 } ], @@ -20988,34 +20373,34 @@ } }, { - "id": 2306, - "name": "hideIrrelevantChipsInLiveboardTabs", + "id": 2059, + "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to enable/disable hide irrelevant filters in Liveboard tab", + "shortText": "This flag can be used to show or hide the re-verify banner on the Liveboard compact header", "tags": [ { "tag": "default", - "text": "false" + "text": "true" }, { "tag": "version", - "text": "SDK: 1.36.0 | ThoughtSpot:10.6.0.cl" + "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n hideIrrelevantChipsInLiveboardTabs: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showLiveboardReverifyBanner: true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 456, + "line": 470, "character": 4 } ], @@ -21025,15 +20410,15 @@ } }, { - "id": 2293, - "name": "hideLiveboardHeader", + "id": 2046, + "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide Liveboard header", + "shortText": "Show or hide Liveboard title", "tags": [ { "tag": "version", @@ -21045,14 +20430,14 @@ }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideLiveboardHeader : true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showLiveboardTitle:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 307, + "line": 320, "character": 4 } ], @@ -21062,237 +20447,71 @@ } }, { - "id": 2289, - "name": "hideObjects", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The array of GUIDs to be hidden", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1-sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideObjects: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 252, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - } - }, - { - "id": 2285, - "name": "hideOrgSwitcher", + "id": 2057, + "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Control the visibility of the Org switcher button on the nav-bar.\nBy default, the Org switcher button is shown.", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "shortText": "This flag can be used to show or hide the Liveboard verified icon in the compact header.", "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" - }, { "tag": "default", "text": "true" }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hideOrgSwitcher : true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 189, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2303, - "name": "homePageSearchBarMode", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to use home page search bar mode", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.33.0 | Thoughtspot : 10.3.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 414, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 2532, - "name": "HomePageSearchBarMode" - } - }, - { - "id": 2338, - "name": "insertAsSibling", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", - "tags": [ { "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showLiveboardVerifiedBadge: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 863, + "fileName": "embed/app.ts", + "line": 442, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.insertAsSibling" } }, { - "id": 2304, - "name": "isLiveboardCompactHeaderEnabled", + "id": 2032, + "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to enable the compact header in Liveboard", + "shortText": "If true, the top navigation bar within the ThoughtSpot app\nis displayed. By default, the navigation bar is hidden.\nThis flag also controls the homepage left navigation bar.", "tags": [ { "tag": "default", - "text": "false" + "text": "true" }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.3.0.cl" + "text": "SDK: 1.2.0 | Thoughtspot: 8.4.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n isLiveboardCompactHeaderEnabled: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 428, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2297, - "name": "isLiveboardHeaderSticky", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Boolean to control if Liveboard header is sticky or not.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed', {\n ... // other app view config\n isLiveboardHeaderSticky: true,\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 358, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2302, - "name": "isOnBeforeGetVizDataInterceptEnabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag that allows using `EmbedEvent.OnBeforeGetVizDataIntercept`.", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.29.0 | Thoughtspot : 10.1.0.cl\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showPrimaryNavbar:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 409, + "line": 105, "character": 4 } ], @@ -21302,4394 +20521,875 @@ } }, { - "id": 2308, - "name": "isUnifiedSearchExperienceEnabled", + "id": 2040, + "name": "tag", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to enable unified search experience for full app embed.", + "shortText": "This puts a filter tag on the application. All metadata lists in the\napplication, such as Liveboards and answers, would be filtered by this\ntag.", "tags": [ - { - "tag": "default", - "text": "true" - }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot:10.5.0.cl" + "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n isUnifiedSearchExperienceEnabled: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n tag:'value',\n})\n```\n" } ] }, "sources": [ { "fileName": "embed/app.ts", - "line": 484, + "line": 237, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 2326, - "name": "linkOverride", + "id": 2073, + "name": "visibleActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", "tags": [ { "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 887, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.linkOverride" - } - }, - { - "id": 2324, - "name": "locale", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The locale settings to apply to the embedded view.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "tag": "important", + "text": "" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 822, + "line": 760, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "id": 1645, + "name": "Action" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.locale" + "name": "Omit.visibleActions" } - }, + } + ], + "groups": [ { - "id": 2296, - "name": "modularHomeExperience", + "title": "Properties", "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to control new Modular Home experience.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.28.0 | Thoughtspot: 9.12.5.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n modularHomeExperience : true,\n})\n```\n" - } - ] - }, - "sources": [ + "children": [ + 2062, + 2097, + 2051, + 2077, + 2061, + 2052, + 2098, + 2034, + 2080, + 2071, + 2070, + 2093, + 2053, + 2050, + 2099, + 2035, + 2043, + 2096, + 2092, + 2095, + 2082, + 2085, + 2044, + 2072, + 2068, + 2066, + 2069, + 2074, + 2036, + 2033, + 2058, + 2045, + 2041, + 2037, + 2055, + 2090, + 2056, + 2049, + 2054, + 2060, + 2078, + 2076, + 2048, + 2081, + 2039, + 2038, + 2083, + 2067, + 2088, + 2089, + 2075, + 2047, + 2059, + 2046, + 2057, + 2032, + 2040, + 2073 + ] + } + ], + "sources": [ + { + "fileName": "embed/app.ts", + "line": 90, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ { - "fileName": "embed/app.ts", - "line": 346, - "character": 4 + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "literal", + "value": "visibleTabs" } ], - "type": { - "type": "intrinsic", - "name": "boolean" + "name": "Omit" + } + ] + }, + { + "id": 1322, + "name": "AuthEventEmitter", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Event emitter returned from {@link init}.", + "tags": [ + { + "tag": "group", + "text": "Authentication / Init\n" } - }, + ] + }, + "children": [ { - "id": 2329, - "name": "overrideOrgId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + "id": 1359, + "name": "emit", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ + { + "id": 1360, + "name": "emit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Trigger an event on the emitter returned from init." }, - { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + "parameters": [ + { + "id": 1361, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1321, + "name": "TRIGGER_SSO_POPUP" + } + }, + { + "id": 1362, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1136, - "character": 4 } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.overrideOrgId" - } + ] }, { - "id": 2287, - "name": "pageId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The application page to set as the start page\nin the embedded view.", - "text": "Use this to open to particular page in the app. To open to a specific\npath within the app, use the `path` attribute which is more flexible.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n pageId : Page.Answers | Page.Data\n})\n```\n" - } - ] - }, - "sources": [ + "id": 1363, + "name": "off", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ { - "fileName": "embed/app.ts", - "line": 223, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 1706, - "name": "Page" - } - }, - { - "id": 2286, - "name": "path", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "A URL path to the embedded application page\nIf both path and pageId attributes are defined, the path definition\ntakes precedence. This is the path post the `#/` in the URL of the standalone\nThoughtSpot app. Use this to open the embedded view to a specific path.", - "text": "For eg, if you want the component to open to a specific Liveboard\nyou could set the path to `pinboard//tab/`.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" + "id": 1364, + "name": "off", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Remove listener from the emitter returned from init." }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n path:\"pinboard/1234/tab/7464\"\n})\n```\n" + "parameters": [ + { + "id": 1365, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "reference", + "id": 1313, + "name": "AuthStatus" + } + }, + { + "id": 1366, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1367, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1368, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1369, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + }, + { + "id": 1370, + "name": "context", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 1371, + "name": "once", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "type": { + "type": "reference", + "id": 1322, + "name": "AuthEventEmitter" } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 207, - "character": 4 } - ], - "type": { - "type": "intrinsic", - "name": "string" - } + ] }, { - "id": 2331, - "name": "preRenderId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" - }, - { - "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" - } - ] - }, - "sources": [ + "id": 1323, + "name": "on", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "signatures": [ { - "fileName": "types.ts", - "line": 1014, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.preRenderId" - } - }, - { - "id": 2315, - "name": "reorderedHomepageModules", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + "id": 1324, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Register a listener on Auth failure." }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" + "parameters": [ + { + "id": 1325, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "reference", + "id": 1314, + "name": "FAILURE" + } + }, + { + "id": 1326, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1327, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1328, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1329, + "name": "failureType", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1307, + "name": "AuthFailureType" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1322, + "name": "AuthEventEmitter" } - ] - }, - "sources": [ + }, { - "fileName": "types.ts", - "line": 963, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2367, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.reorderedHomepageModules" - } - }, - { - "id": 2336, - "name": "runtimeFilters", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "id": 1330, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Register a listener on Auth SDK success." }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + "parameters": [ + { + "id": 1331, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "id": 1315, + "name": "SDK_SUCCESS" + }, + { + "type": "reference", + "id": 1318, + "name": "LOGOUT" + }, + { + "type": "reference", + "id": 1319, + "name": "WAITING_FOR_POPUP" + } + ] + } + }, + { + "id": 1332, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "reflection", + "declaration": { + "id": 1333, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1334, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1322, + "name": "AuthEventEmitter" } - ] - }, - "sources": [ + }, { - "fileName": "types.ts", - "line": 792, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1727, - "name": "RuntimeFilter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.runtimeFilters" - } - }, - { - "id": 2337, - "name": "runtimeParameters", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + "id": 1335, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1336, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1317, + "name": "SUCCESS" + } + }, + { + "id": 1337, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1338, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1339, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1340, + "name": "sessionInfo", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1322, + "name": "AuthEventEmitter" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 810, - "character": 4 } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2506, - "name": "RuntimeParameter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.runtimeParameters" - } + ] }, { - "id": 2323, - "name": "showAlerts", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 773, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.showAlerts" - } - }, - { - "id": 2295, - "name": "showLiveboardDescription", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show or hide Liveboard description", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showLiveboardDescription:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 333, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2307, - "name": "showLiveboardReverifyBanner", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to show or hide the re-verify banner on the Liveboard compact header", - "tags": [ - { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showLiveboardReverifyBanner: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 470, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2294, - "name": "showLiveboardTitle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show or hide Liveboard title", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showLiveboardTitle:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 320, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2305, - "name": "showLiveboardVerifiedBadge", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to show or hide the Liveboard verified icon in the compact header.", - "tags": [ - { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showLiveboardVerifiedBadge: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 442, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2280, - "name": "showPrimaryNavbar", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If true, the top navigation bar within the ThoughtSpot app\nis displayed. By default, the navigation bar is hidden.\nThis flag also controls the homepage left navigation bar.", - "tags": [ - { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.2.0 | Thoughtspot: 8.4.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n showPrimaryNavbar:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 105, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2288, - "name": "tag", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This puts a filter tag on the application. All metadata lists in the\napplication, such as Liveboards and answers, would be filtered by this\ntag.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | Thoughtspot: 9.4.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n tag:'value',\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/app.ts", - "line": 237, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2321, - "name": "visibleActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 760, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1893, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.visibleActions" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2310, - 2345, - 2299, - 2325, - 2309, - 2300, - 2346, - 2282, - 2328, - 2319, - 2318, - 2341, - 2301, - 2298, - 2347, - 2283, - 2291, - 2344, - 2340, - 2343, - 2330, - 2333, - 2292, - 2320, - 2316, - 2314, - 2317, - 2322, - 2284, - 2281, - 2306, - 2293, - 2289, - 2285, - 2303, - 2338, - 2304, - 2297, - 2302, - 2308, - 2326, - 2324, - 2296, - 2329, - 2287, - 2286, - 2331, - 2315, - 2336, - 2337, - 2323, - 2295, - 2307, - 2294, - 2305, - 2280, - 2288, - 2321 - ] - } - ], - "sources": [ - { - "fileName": "embed/app.ts", - "line": 90, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, - { - "type": "literal", - "value": "visibleTabs" - } - ], - "name": "Omit" - } - ] - }, - { - "id": 1570, - "name": "AuthEventEmitter", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "Event emitter returned from {@link init}.", - "tags": [ - { - "tag": "group", - "text": "Authentication / Init\n" - } - ] - }, - "children": [ - { - "id": 1607, - "name": "emit", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ - { - "id": 1608, - "name": "emit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Trigger an event on the emitter returned from init." - }, - "parameters": [ - { - "id": 1609, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1569, - "name": "TRIGGER_SSO_POPUP" - } - }, - { - "id": 1610, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - } - ] - }, - { - "id": 1611, - "name": "off", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ - { - "id": 1612, - "name": "off", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Remove listener from the emitter returned from init." - }, - "parameters": [ - { - "id": 1613, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "reference", - "id": 1561, - "name": "AuthStatus" - } - }, - { - "id": 1614, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1615, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 1616, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1617, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - }, - { - "id": 1618, - "name": "context", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - }, - { - "id": 1619, - "name": "once", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "\n" - }, - "type": { - "type": "intrinsic", - "name": "boolean" - } - } - ], - "type": { - "type": "reference", - "id": 1570, - "name": "AuthEventEmitter" - } - } - ] - }, - { - "id": 1571, - "name": "on", + "id": 1341, + "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1572, - "name": "on", + "id": 1342, + "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Register a listener on Auth failure." - }, "parameters": [ { - "id": 1573, + "id": 1343, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "reference", - "id": 1562, + "id": 1314, "name": "FAILURE" } }, { - "id": 1574, + "id": 1344, "name": "listener", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "\n" - }, "type": { "type": "reflection", "declaration": { - "id": 1575, + "id": 1345, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1576, + "id": 1346, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1577, + "id": 1347, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1555, + "id": 1307, "name": "AuthFailureType" } } ], "type": { "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1570, - "name": "AuthEventEmitter" - } - }, - { - "id": 1578, - "name": "on", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Register a listener on Auth SDK success." - }, - "parameters": [ - { - "id": 1579, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "id": 1563, - "name": "SDK_SUCCESS" - }, - { - "type": "reference", - "id": 1566, - "name": "LOGOUT" - }, - { - "type": "reference", - "id": 1567, - "name": "WAITING_FOR_POPUP" - } - ] - } - }, - { - "id": 1580, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "\n" - }, - "type": { - "type": "reflection", - "declaration": { - "id": 1581, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 1582, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1570, - "name": "AuthEventEmitter" - } - }, - { - "id": 1583, - "name": "on", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1584, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1565, - "name": "SUCCESS" - } - }, - { - "id": 1585, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1586, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 1587, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1588, - "name": "sessionInfo", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1570, - "name": "AuthEventEmitter" - } - } - ] - }, - { - "id": 1589, - "name": "once", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ - { - "id": 1590, - "name": "once", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1591, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1562, - "name": "FAILURE" - } - }, - { - "id": 1592, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1593, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 1594, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1595, - "name": "failureType", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1555, - "name": "AuthFailureType" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1570, - "name": "AuthEventEmitter" - } - }, - { - "id": 1596, - "name": "once", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1597, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "id": 1563, - "name": "SDK_SUCCESS" - }, - { - "type": "reference", - "id": 1566, - "name": "LOGOUT" - }, - { - "type": "reference", - "id": 1567, - "name": "WAITING_FOR_POPUP" - } - ] - } - }, - { - "id": 1598, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1599, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 1600, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1570, - "name": "AuthEventEmitter" - } - }, - { - "id": 1601, - "name": "once", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1602, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1565, - "name": "SUCCESS" - } - }, - { - "id": 1603, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 1604, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 1605, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1606, - "name": "sessionInfo", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1570, - "name": "AuthEventEmitter" - } - } - ] - }, - { - "id": 1620, - "name": "removeAllListeners", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "signatures": [ - { - "id": 1621, - "name": "removeAllListeners", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Remove all the event listeners" - }, - "parameters": [ - { - "id": 1622, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "\n" - }, - "type": { - "type": "reference", - "id": 1561, - "name": "AuthStatus" - } - } - ], - "type": { - "type": "reference", - "id": 1570, - "name": "AuthEventEmitter" - } - } - ] - } - ], - "groups": [ - { - "title": "Methods", - "kind": 2048, - "children": [ - 1607, - 1611, - 1571, - 1589, - 1620 - ] - } - ], - "sources": [ - { - "fileName": "auth.ts", - "line": 85, - "character": 17 - } - ] - }, - { - "id": 1109, - "name": "BodylessConversationViewConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "Configuration for bodyless conversation options.", - "tags": [ - { - "tag": "deprecated", - "text": "Use {@link SpotterAgentEmbedViewConfig} instead." - }, - { - "tag": "group", - "text": "Embed components\n" - } - ] - }, - "children": [ - { - "id": 1123, - "name": "additionalFlags", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 843, - "character": 4 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1124, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 1125, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1126, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - } - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.additionalFlags" - } - }, - { - "id": 1144, - "name": "collapseSearchBar", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", - "tags": [ - { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1076, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.collapseSearchBar" - } - }, - { - "id": 1129, - "name": "contextMenuTrigger", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 875, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 2023, - "name": "ContextMenuTriggerOptions" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.contextMenuTrigger" - } - }, - { - "id": 1127, - "name": "customizations", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" - }, - { - "tag": "default", - "text": "''\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 850, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 2391, - "name": "CustomisationsInterface" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.customizations" - } - }, - { - "id": 1147, - "name": "dataPanelV2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to control Data panel experience", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1107, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.dataPanelV2" - } - }, - { - "id": 1146, - "name": "disableRedirectionLinksInNewTab", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1094, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disableRedirectionLinksInNewTab" - } - }, - { - "id": 1116, - "name": "disabledActionReason", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The tooltip to display for disabled actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 727, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disabledActionReason" - } - }, - { - "id": 1115, - "name": "disabledActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 714, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1893, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disabledActions" - } - }, - { - "id": 1140, - "name": "doNotTrackPreRenderSize", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1035, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.doNotTrackPreRenderSize" - } - }, - { - "id": 1148, - "name": "enableCustomColumnGroups", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To enable custom column groups in data panel v2", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1120, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.enableCustomColumnGroups" - } - }, - { - "id": 1143, - "name": "enableV2Shell_experimental", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1064, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.enableV2Shell_experimental" - } - }, - { - "id": 1133, - "name": "excludeRuntimeFiltersfromURL", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 913, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.excludeRuntimeFiltersfromURL" - } - }, - { - "id": 1142, - "name": "excludeRuntimeParametersfromURL", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1050, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.excludeRuntimeParametersfromURL" - } - }, - { - "id": 1145, - "name": "exposeTranslationIDs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to expose translation IDs on the embedded app.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1082, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.exposeTranslationIDs" - } - }, - { - "id": 1112, - "name": "frameParams", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 690, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 2353, - "name": "FrameParams" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.frameParams" - } - }, - { - "id": 1117, - "name": "hiddenActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" - }, - { - "tag": "important", - "text": "\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 742, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1893, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenActions" - } - }, - { - "id": 1138, - "name": "hiddenHomeLeftNavItems", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." - }, - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 999, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2359, - "name": "HomeLeftNavItem" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenHomeLeftNavItems" - } - }, - { - "id": 1135, - "name": "hiddenHomepageModules", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 946, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2367, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenHomepageModules" - } - }, - { - "id": 1150, - "name": "hiddenListColumns", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is appplicable only in full app embedding.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1151, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2566, - "name": "ListPageColumns" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenListColumns" - } - }, - { - "id": 1134, - "name": "hiddenTabs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 929, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenTabs" - } - }, - { - "id": 1128, - "name": "insertAsSibling", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 863, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.insertAsSibling" - } - }, - { - "id": 1130, - "name": "linkOverride", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 887, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.linkOverride" - } - }, - { - "id": 1122, - "name": "locale", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The locale settings to apply to the embedded view.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 822, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.locale" - } - }, - { - "id": 1149, - "name": "overrideOrgId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1136, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.overrideOrgId" - } - }, - { - "id": 1139, - "name": "preRenderId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" - }, - { - "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1014, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.preRenderId" - } - }, - { - "id": 1136, - "name": "reorderedHomepageModules", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 963, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2367, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.reorderedHomepageModules" - } - }, - { - "id": 1120, - "name": "runtimeFilters", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 792, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1727, - "name": "RuntimeFilter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.runtimeFilters" - } - }, - { - "id": 1121, - "name": "runtimeParameters", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 810, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2506, - "name": "RuntimeParameter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.runtimeParameters" - } - }, - { - "id": 1119, - "name": "showAlerts", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 773, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.showAlerts" - } - }, - { - "id": 1118, - "name": "visibleActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 760, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1893, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.visibleActions" - } - }, - { - "id": 1137, - "name": "visibleTabs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", - "text": "Use either `visibleTabs` or `hiddenTabs`.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 981, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.visibleTabs" - } - }, - { - "id": 1110, - "name": "worksheetId", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "comment": { - "shortText": "The ID of the worksheet to use for the conversation." - }, - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 27, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1123, - 1144, - 1129, - 1127, - 1147, - 1146, - 1116, - 1115, - 1140, - 1148, - 1143, - 1133, - 1142, - 1145, - 1112, - 1117, - 1138, - 1135, - 1150, - 1134, - 1128, - 1130, - 1122, - 1149, - 1139, - 1136, - 1120, - 1121, - 1119, - 1118, - 1137, - 1110 - ] - } - ], - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 23, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "ViewConfig" - } - ] - }, - { - "id": 1361, - "name": "ConversationViewConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The configuration for the embedded conversation options.", - "tags": [ - { - "tag": "deprecated", - "text": "Use {@link SpotterEmbedViewConfig} instead." - }, - { - "tag": "group", - "text": "Embed components\n" - } - ] - }, - "children": [ - { - "id": 1381, - "name": "additionalFlags", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 843, - "character": 4 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1382, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 1383, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1384, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - } - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.additionalFlags" - } - }, - { - "id": 1402, - "name": "collapseSearchBar", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", - "tags": [ - { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1076, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.collapseSearchBar" - } - }, - { - "id": 1387, - "name": "contextMenuTrigger", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 875, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 2023, - "name": "ContextMenuTriggerOptions" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.contextMenuTrigger" - } - }, - { - "id": 1385, - "name": "customizations", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" - }, - { - "tag": "default", - "text": "''\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 850, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 2391, - "name": "CustomisationsInterface" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.customizations" - } - }, - { - "id": 1366, - "name": "dataPanelV2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to control Data panel experience", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | ThoughtSpot Cloud: 10.4.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 148, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "overwrites": { - "type": "reference", - "name": "ViewConfig.dataPanelV2" - } - }, - { - "id": 1404, - "name": "disableRedirectionLinksInNewTab", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1094, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disableRedirectionLinksInNewTab" - } - }, - { - "id": 1364, - "name": "disableSourceSelection", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "disableSourceSelection : Disables data source selection\nbut still display the selected data source.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n disableSourceSelection : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 123, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1374, - "name": "disabledActionReason", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The tooltip to display for disabled actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 727, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disabledActionReason" - } - }, - { - "id": 1373, - "name": "disabledActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 714, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1893, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disabledActions" - } - }, - { - "id": 1398, - "name": "doNotTrackPreRenderSize", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1035, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.doNotTrackPreRenderSize" - } - }, - { - "id": 1405, - "name": "enableCustomColumnGroups", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To enable custom column groups in data panel v2", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1120, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.enableCustomColumnGroups" - } - }, - { - "id": 1401, - "name": "enableV2Shell_experimental", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1064, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.enableV2Shell_experimental" - } - }, - { - "id": 1391, - "name": "excludeRuntimeFiltersfromURL", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 913, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.excludeRuntimeFiltersfromURL" - } - }, - { - "id": 1400, - "name": "excludeRuntimeParametersfromURL", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1050, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.excludeRuntimeParametersfromURL" - } - }, - { - "id": 1403, - "name": "exposeTranslationIDs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This flag can be used to expose translation IDs on the embedded app.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1082, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.exposeTranslationIDs" - } - }, - { - "id": 1370, - "name": "frameParams", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 690, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 2353, - "name": "FrameParams" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.frameParams" - } - }, - { - "id": 1375, - "name": "hiddenActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" - }, - { - "tag": "important", - "text": "\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 742, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1893, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenActions" - } - }, - { - "id": 1396, - "name": "hiddenHomeLeftNavItems", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." - }, - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 999, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2359, - "name": "HomeLeftNavItem" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenHomeLeftNavItems" - } - }, - { - "id": 1393, - "name": "hiddenHomepageModules", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 946, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2367, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenHomepageModules" - } - }, - { - "id": 1407, - "name": "hiddenListColumns", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is appplicable only in full app embedding.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1151, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2566, - "name": "ListPageColumns" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenListColumns" - } - }, - { - "id": 1392, - "name": "hiddenTabs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 929, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenTabs" - } - }, - { - "id": 1368, - "name": "hideSampleQuestions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "hideSampleQuestions : Hide sample questions on\nthe initial screen of the conversation.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n hideSampleQuestions : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 175, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1365, - "name": "hideSourceSelection", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "hideSourceSelection : Hide data source selection", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n hideSourceSelection : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 135, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1386, - "name": "insertAsSibling", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 863, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.insertAsSibling" - } - }, - { - "id": 1388, - "name": "linkOverride", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 887, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.linkOverride" - } - }, - { - "id": 1380, - "name": "locale", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The locale settings to apply to the embedded view.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 822, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.locale" - } - }, - { - "id": 1406, - "name": "overrideOrgId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1136, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.overrideOrgId" - } - }, - { - "id": 1397, - "name": "preRenderId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" - }, - { - "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 1014, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.preRenderId" - } - }, - { - "id": 1394, - "name": "reorderedHomepageModules", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 963, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2367, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.reorderedHomepageModules" - } - }, - { - "id": 1378, - "name": "runtimeFilters", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 792, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1727, - "name": "RuntimeFilter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.runtimeFilters" - } - }, - { - "id": 1379, - "name": "runtimeParameters", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 810, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2506, - "name": "RuntimeParameter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.runtimeParameters" - } - }, - { - "id": 1363, - "name": "searchOptions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Ability to pass a starting search query to the conversation." - }, - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 110, - "character": 4 - } - ], - "type": { - "type": "reference", - "name": "SearchOptions" - } - }, - { - "id": 1377, - "name": "showAlerts", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 773, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.showAlerts" - } - }, - { - "id": 1367, - "name": "showSpotterLimitations", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "showSpotterLimitations : show limitation text\nof the spotter underneath the chat input.\ndefault is false.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n showSpotterLimitations : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | Thoughtspot: 10.5.0.cl\n" + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1322, + "name": "AuthEventEmitter" } - ] - }, - "sources": [ + }, { - "fileName": "embed/conversation.ts", - "line": 162, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1376, - "name": "visibleActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + "id": 1348, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1349, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "id": 1315, + "name": "SDK_SUCCESS" + }, + { + "type": "reference", + "id": 1318, + "name": "LOGOUT" + }, + { + "type": "reference", + "id": 1319, + "name": "WAITING_FOR_POPUP" + } + ] + } + }, + { + "id": 1350, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1351, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1352, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1322, + "name": "AuthEventEmitter" } - ] - }, - "sources": [ + }, { - "fileName": "types.ts", - "line": 760, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1893, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.visibleActions" - } - }, - { - "id": 1395, - "name": "visibleTabs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", - "text": "Use either `visibleTabs` or `hiddenTabs`.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + "id": 1353, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1354, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1317, + "name": "SUCCESS" + } + }, + { + "id": 1355, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 1356, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 1357, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1358, + "name": "sessionInfo", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1322, + "name": "AuthEventEmitter" } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 981, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.visibleTabs" - } + ] }, { - "id": 1362, - "name": "worksheetId", - "kind": 1024, - "kindString": "Property", + "id": 1372, + "name": "removeAllListeners", + "kind": 2048, + "kindString": "Method", "flags": {}, - "comment": { - "shortText": "The ID of the worksheet to use for the conversation." - }, - "sources": [ + "signatures": [ { - "fileName": "embed/conversation.ts", - "line": 106, - "character": 4 + "id": 1373, + "name": "removeAllListeners", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Remove all the event listeners" + }, + "parameters": [ + { + "id": 1374, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "reference", + "id": 1313, + "name": "AuthStatus" + } + } + ], + "type": { + "type": "reference", + "id": 1322, + "name": "AuthEventEmitter" + } } - ], - "type": { - "type": "intrinsic", - "name": "string" - } + ] } ], "groups": [ { - "title": "Properties", - "kind": 1024, + "title": "Methods", + "kind": 2048, "children": [ - 1381, - 1402, - 1387, - 1385, - 1366, - 1404, - 1364, - 1374, - 1373, - 1398, - 1405, - 1401, - 1391, - 1400, - 1403, - 1370, - 1375, - 1396, - 1393, - 1407, - 1392, - 1368, - 1365, - 1386, - 1388, - 1380, - 1406, - 1397, - 1394, - 1378, - 1379, + 1359, 1363, - 1377, - 1367, - 1376, - 1395, - 1362 + 1323, + 1341, + 1372 ] } ], "sources": [ { - "fileName": "embed/conversation.ts", - "line": 102, + "fileName": "auth.ts", + "line": 85, "character": 17 } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "ViewConfig" - } ] }, { - "id": 2539, + "id": 2291, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -25704,7 +21404,7 @@ }, "children": [ { - "id": 2540, + "id": 2292, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -25721,14 +21421,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2541, + "id": 2293, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2542, + "id": 2294, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -25742,12 +21442,12 @@ ], "type": { "type": "reference", - "id": 2536, + "id": 2288, "name": "VizPoint" } }, { - "id": 2543, + "id": 2295, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -25763,7 +21463,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2536, + "id": 2288, "name": "VizPoint" } } @@ -25774,8 +21474,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2542, - 2543 + 2294, + 2295 ] } ] @@ -25783,7 +21483,7 @@ } }, { - "id": 2544, + "id": 2296, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -25798,14 +21498,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2545, + "id": 2297, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2553, + "id": 2305, "name": "columns", "kind": 1024, "kindString": "Property", @@ -25826,7 +21526,7 @@ } }, { - "id": 2554, + "id": 2306, "name": "data", "kind": 1024, "kindString": "Property", @@ -25847,7 +21547,7 @@ } }, { - "id": 2547, + "id": 2299, "name": "id", "kind": 1024, "kindString": "Property", @@ -25865,7 +21565,7 @@ } }, { - "id": 2546, + "id": 2298, "name": "name", "kind": 1024, "kindString": "Property", @@ -25883,7 +21583,7 @@ } }, { - "id": 2548, + "id": 2300, "name": "sources", "kind": 1024, "kindString": "Property", @@ -25898,14 +21598,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2549, + "id": 2301, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2550, + "id": 2302, "name": "header", "kind": 1024, "kindString": "Property", @@ -25920,14 +21620,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2551, + "id": 2303, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2552, + "id": 2304, "name": "guid", "kind": 1024, "kindString": "Property", @@ -25950,7 +21650,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2552 + 2304 ] } ] @@ -25963,7 +21663,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2550 + 2302 ] } ] @@ -25976,23 +21676,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2553, - 2554, - 2547, - 2546, - 2548 + 2305, + 2306, + 2299, + 2298, + 2300 ] } ], "indexSignature": { - "id": 2555, + "id": 2307, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2556, + "id": 2308, "name": "key", "kind": 32768, "flags": {}, @@ -26011,7 +21711,7 @@ } }, { - "id": 2557, + "id": 2309, "name": "session", "kind": 1024, "kindString": "Property", @@ -26025,12 +21725,12 @@ ], "type": { "type": "reference", - "id": 1696, + "id": 1448, "name": "SessionInterface" } }, { - "id": 2558, + "id": 2310, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -26055,10 +21755,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2540, - 2544, - 2557, - 2558 + 2292, + 2296, + 2309, + 2310 ] } ], @@ -26071,7 +21771,7 @@ ] }, { - "id": 2413, + "id": 2165, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -26081,7 +21781,7 @@ }, "children": [ { - "id": 2467, + "id": 2219, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -26104,7 +21804,7 @@ } }, { - "id": 2466, + "id": 2218, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -26127,7 +21827,7 @@ } }, { - "id": 2436, + "id": 2188, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -26150,7 +21850,7 @@ } }, { - "id": 2437, + "id": 2189, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -26173,7 +21873,7 @@ } }, { - "id": 2439, + "id": 2191, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -26196,7 +21896,7 @@ } }, { - "id": 2438, + "id": 2190, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -26219,7 +21919,7 @@ } }, { - "id": 2418, + "id": 2170, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -26242,7 +21942,7 @@ } }, { - "id": 2479, + "id": 2231, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -26265,7 +21965,7 @@ } }, { - "id": 2480, + "id": 2232, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -26288,7 +21988,7 @@ } }, { - "id": 2477, + "id": 2229, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -26311,7 +22011,7 @@ } }, { - "id": 2478, + "id": 2230, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -26334,7 +22034,7 @@ } }, { - "id": 2441, + "id": 2193, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -26357,7 +22057,7 @@ } }, { - "id": 2446, + "id": 2198, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -26380,7 +22080,7 @@ } }, { - "id": 2443, + "id": 2195, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -26403,7 +22103,7 @@ } }, { - "id": 2445, + "id": 2197, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -26426,7 +22126,7 @@ } }, { - "id": 2444, + "id": 2196, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -26449,7 +22149,7 @@ } }, { - "id": 2442, + "id": 2194, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -26472,7 +22172,7 @@ } }, { - "id": 2451, + "id": 2203, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -26495,7 +22195,7 @@ } }, { - "id": 2448, + "id": 2200, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -26518,7 +22218,7 @@ } }, { - "id": 2450, + "id": 2202, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -26541,7 +22241,7 @@ } }, { - "id": 2449, + "id": 2201, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -26564,7 +22264,7 @@ } }, { - "id": 2447, + "id": 2199, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -26587,7 +22287,7 @@ } }, { - "id": 2455, + "id": 2207, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -26610,7 +22310,7 @@ } }, { - "id": 2454, + "id": 2206, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -26633,7 +22333,7 @@ } }, { - "id": 2453, + "id": 2205, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -26656,7 +22356,7 @@ } }, { - "id": 2452, + "id": 2204, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -26679,7 +22379,7 @@ } }, { - "id": 2440, + "id": 2192, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -26702,7 +22402,7 @@ } }, { - "id": 2502, + "id": 2254, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -26725,7 +22425,7 @@ } }, { - "id": 2505, + "id": 2257, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -26748,7 +22448,7 @@ } }, { - "id": 2500, + "id": 2252, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -26771,7 +22471,7 @@ } }, { - "id": 2503, + "id": 2255, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -26794,7 +22494,7 @@ } }, { - "id": 2504, + "id": 2256, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -26817,7 +22517,7 @@ } }, { - "id": 2499, + "id": 2251, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -26840,7 +22540,7 @@ } }, { - "id": 2501, + "id": 2253, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -26863,7 +22563,7 @@ } }, { - "id": 2472, + "id": 2224, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -26886,7 +22586,7 @@ } }, { - "id": 2471, + "id": 2223, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -26909,7 +22609,7 @@ } }, { - "id": 2474, + "id": 2226, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -26932,7 +22632,7 @@ } }, { - "id": 2473, + "id": 2225, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -26955,7 +22655,7 @@ } }, { - "id": 2470, + "id": 2222, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -26978,7 +22678,7 @@ } }, { - "id": 2468, + "id": 2220, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -27001,7 +22701,7 @@ } }, { - "id": 2469, + "id": 2221, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -27024,7 +22724,7 @@ } }, { - "id": 2475, + "id": 2227, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -27047,7 +22747,7 @@ } }, { - "id": 2476, + "id": 2228, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -27070,7 +22770,7 @@ } }, { - "id": 2487, + "id": 2239, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -27093,7 +22793,7 @@ } }, { - "id": 2488, + "id": 2240, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -27116,7 +22816,7 @@ } }, { - "id": 2491, + "id": 2243, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -27139,7 +22839,7 @@ } }, { - "id": 2489, + "id": 2241, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -27162,7 +22862,7 @@ } }, { - "id": 2490, + "id": 2242, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -27185,7 +22885,7 @@ } }, { - "id": 2498, + "id": 2250, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -27208,7 +22908,7 @@ } }, { - "id": 2497, + "id": 2249, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -27231,7 +22931,7 @@ } }, { - "id": 2496, + "id": 2248, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -27254,7 +22954,7 @@ } }, { - "id": 2495, + "id": 2247, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -27277,7 +22977,7 @@ } }, { - "id": 2493, + "id": 2245, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -27300,7 +23000,7 @@ } }, { - "id": 2492, + "id": 2244, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -27323,7 +23023,7 @@ } }, { - "id": 2485, + "id": 2237, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -27346,7 +23046,7 @@ } }, { - "id": 2482, + "id": 2234, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -27369,7 +23069,7 @@ } }, { - "id": 2481, + "id": 2233, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -27392,7 +23092,7 @@ } }, { - "id": 2483, + "id": 2235, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -27415,7 +23115,7 @@ } }, { - "id": 2486, + "id": 2238, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -27438,7 +23138,7 @@ } }, { - "id": 2484, + "id": 2236, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -27461,7 +23161,7 @@ } }, { - "id": 2419, + "id": 2171, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -27484,7 +23184,7 @@ } }, { - "id": 2420, + "id": 2172, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -27507,7 +23207,7 @@ } }, { - "id": 2414, + "id": 2166, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -27530,7 +23230,7 @@ } }, { - "id": 2415, + "id": 2167, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -27553,7 +23253,7 @@ } }, { - "id": 2416, + "id": 2168, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -27576,7 +23276,7 @@ } }, { - "id": 2417, + "id": 2169, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -27599,7 +23299,7 @@ } }, { - "id": 2428, + "id": 2180, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -27622,7 +23322,7 @@ } }, { - "id": 2432, + "id": 2184, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -27645,7 +23345,7 @@ } }, { - "id": 2433, + "id": 2185, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -27668,7 +23368,7 @@ } }, { - "id": 2431, + "id": 2183, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -27691,7 +23391,7 @@ } }, { - "id": 2427, + "id": 2179, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -27714,7 +23414,7 @@ } }, { - "id": 2430, + "id": 2182, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -27737,7 +23437,7 @@ } }, { - "id": 2424, + "id": 2176, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -27760,7 +23460,7 @@ } }, { - "id": 2425, + "id": 2177, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -27783,7 +23483,7 @@ } }, { - "id": 2426, + "id": 2178, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -27806,7 +23506,7 @@ } }, { - "id": 2421, + "id": 2173, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -27829,7 +23529,7 @@ } }, { - "id": 2422, + "id": 2174, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -27852,7 +23552,7 @@ } }, { - "id": 2423, + "id": 2175, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -27875,7 +23575,7 @@ } }, { - "id": 2429, + "id": 2181, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -27898,7 +23598,7 @@ } }, { - "id": 2494, + "id": 2246, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -27921,7 +23621,7 @@ } }, { - "id": 2434, + "id": 2186, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -27944,7 +23644,7 @@ } }, { - "id": 2435, + "id": 2187, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -27967,7 +23667,7 @@ } }, { - "id": 2464, + "id": 2216, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -27990,7 +23690,7 @@ } }, { - "id": 2462, + "id": 2214, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -28013,7 +23713,7 @@ } }, { - "id": 2463, + "id": 2215, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -28036,7 +23736,7 @@ } }, { - "id": 2459, + "id": 2211, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -28059,7 +23759,7 @@ } }, { - "id": 2460, + "id": 2212, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -28082,7 +23782,7 @@ } }, { - "id": 2461, + "id": 2213, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -28105,7 +23805,7 @@ } }, { - "id": 2465, + "id": 2217, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -28128,7 +23828,7 @@ } }, { - "id": 2456, + "id": 2208, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -28151,7 +23851,7 @@ } }, { - "id": 2457, + "id": 2209, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -28174,7 +23874,7 @@ } }, { - "id": 2458, + "id": 2210, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -28202,98 +23902,98 @@ "title": "Properties", "kind": 1024, "children": [ - 2467, - 2466, - 2436, - 2437, - 2439, - 2438, - 2418, - 2479, - 2480, - 2477, - 2478, - 2441, - 2446, - 2443, - 2445, - 2444, - 2442, - 2451, - 2448, - 2450, - 2449, - 2447, - 2455, - 2454, - 2453, - 2452, - 2440, - 2502, - 2505, - 2500, - 2503, - 2504, - 2499, - 2501, - 2472, - 2471, - 2474, - 2473, - 2470, - 2468, - 2469, - 2475, - 2476, - 2487, - 2488, - 2491, - 2489, - 2490, - 2498, - 2497, - 2496, - 2495, - 2493, - 2492, - 2485, - 2482, - 2481, - 2483, - 2486, - 2484, - 2419, - 2420, - 2414, - 2415, - 2416, - 2417, - 2428, - 2432, - 2433, - 2431, - 2427, - 2430, - 2424, - 2425, - 2426, - 2421, - 2422, - 2423, - 2429, - 2494, - 2434, - 2435, - 2464, - 2462, - 2463, - 2459, - 2460, - 2461, - 2465, - 2456, - 2457, - 2458 + 2219, + 2218, + 2188, + 2189, + 2191, + 2190, + 2170, + 2231, + 2232, + 2229, + 2230, + 2193, + 2198, + 2195, + 2197, + 2196, + 2194, + 2203, + 2200, + 2202, + 2201, + 2199, + 2207, + 2206, + 2205, + 2204, + 2192, + 2254, + 2257, + 2252, + 2255, + 2256, + 2251, + 2253, + 2224, + 2223, + 2226, + 2225, + 2222, + 2220, + 2221, + 2227, + 2228, + 2239, + 2240, + 2243, + 2241, + 2242, + 2250, + 2249, + 2248, + 2247, + 2245, + 2244, + 2237, + 2234, + 2233, + 2235, + 2238, + 2236, + 2171, + 2172, + 2166, + 2167, + 2168, + 2169, + 2180, + 2184, + 2185, + 2183, + 2179, + 2182, + 2176, + 2177, + 2178, + 2173, + 2174, + 2175, + 2181, + 2246, + 2186, + 2187, + 2216, + 2214, + 2215, + 2211, + 2212, + 2213, + 2217, + 2208, + 2209, + 2210 ] } ], @@ -28306,7 +24006,7 @@ ] }, { - "id": 2401, + "id": 2153, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -28316,7 +24016,7 @@ }, "children": [ { - "id": 2403, + "id": 2155, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -28332,12 +24032,12 @@ ], "type": { "type": "reference", - "id": 2404, + "id": 2156, "name": "customCssInterface" } }, { - "id": 2402, + "id": 2154, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -28362,8 +24062,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2403, - 2402 + 2155, + 2154 ] } ], @@ -28376,7 +24076,7 @@ ] }, { - "id": 2391, + "id": 2143, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -28392,7 +24092,7 @@ }, "children": [ { - "id": 2393, + "id": 2145, "name": "content", "kind": 1024, "kindString": "Property", @@ -28409,14 +24109,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2394, + "id": 2146, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2396, + "id": 2148, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -28446,7 +24146,7 @@ } }, { - "id": 2397, + "id": 2149, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -28466,7 +24166,7 @@ } }, { - "id": 2395, + "id": 2147, "name": "strings", "kind": 1024, "kindString": "Property", @@ -28509,21 +24209,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2396, - 2397, - 2395 + 2148, + 2149, + 2147 ] } ], "indexSignature": { - "id": 2398, + "id": 2150, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2399, + "id": 2151, "name": "key", "kind": 32768, "flags": {}, @@ -28542,7 +24242,7 @@ } }, { - "id": 2400, + "id": 2152, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -28562,7 +24262,7 @@ } }, { - "id": 2392, + "id": 2144, "name": "style", "kind": 1024, "kindString": "Property", @@ -28578,7 +24278,7 @@ ], "type": { "type": "reference", - "id": 2401, + "id": 2153, "name": "CustomStyles" } } @@ -28588,9 +24288,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2393, - 2400, - 2392 + 2145, + 2152, + 2144 ] } ], @@ -28603,7 +24303,7 @@ ] }, { - "id": 2027, + "id": 1779, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -28619,7 +24319,7 @@ }, "children": [ { - "id": 2069, + "id": 1821, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -28649,20 +24349,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2070, + "id": 1822, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2071, + "id": 1823, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2072, + "id": 1824, "name": "key", "kind": 32768, "flags": {}, @@ -28694,7 +24394,7 @@ } }, { - "id": 2030, + "id": 1782, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -28717,7 +24417,7 @@ } }, { - "id": 2051, + "id": 1803, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -28759,7 +24459,7 @@ } }, { - "id": 2053, + "id": 1805, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -28788,7 +24488,7 @@ } }, { - "id": 2029, + "id": 1781, "name": "authType", "kind": 1024, "kindString": "Property", @@ -28805,12 +24505,12 @@ ], "type": { "type": "reference", - "id": 1715, + "id": 1467, "name": "AuthType" } }, { - "id": 2042, + "id": 1794, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -28839,7 +24539,7 @@ } }, { - "id": 2054, + "id": 1806, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -28872,7 +24572,7 @@ } }, { - "id": 2045, + "id": 1797, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -28901,7 +24601,7 @@ } }, { - "id": 2066, + "id": 1818, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -28930,7 +24630,7 @@ } }, { - "id": 2073, + "id": 1825, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -28973,7 +24673,7 @@ } }, { - "id": 2050, + "id": 1802, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -28998,12 +24698,12 @@ ], "type": { "type": "reference", - "id": 2391, + "id": 2143, "name": "CustomisationsInterface" } }, { - "id": 2064, + "id": 1816, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -29032,7 +24732,7 @@ } }, { - "id": 2047, + "id": 1799, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -29062,7 +24762,7 @@ } }, { - "id": 2068, + "id": 1820, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -29091,7 +24791,7 @@ } }, { - "id": 2043, + "id": 1795, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -29124,7 +24824,7 @@ } }, { - "id": 2074, + "id": 1826, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -29144,7 +24844,7 @@ } }, { - "id": 2063, + "id": 1815, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -29173,7 +24873,7 @@ } }, { - "id": 2041, + "id": 1793, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -29202,7 +24902,7 @@ } }, { - "id": 2036, + "id": 1788, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -29236,7 +24936,7 @@ } }, { - "id": 2062, + "id": 1814, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -29269,12 +24969,12 @@ ], "type": { "type": "reference", - "id": 2509, + "id": 2261, "name": "LogLevel" } }, { - "id": 2044, + "id": 1796, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -29303,7 +25003,7 @@ } }, { - "id": 2035, + "id": 1787, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -29336,7 +25036,7 @@ } }, { - "id": 2065, + "id": 1817, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -29365,7 +25065,7 @@ } }, { - "id": 2034, + "id": 1786, "name": "password", "kind": 1024, "kindString": "Property", @@ -29389,7 +25089,7 @@ } }, { - "id": 2060, + "id": 1812, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -29418,7 +25118,7 @@ } }, { - "id": 2046, + "id": 1798, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -29451,7 +25151,7 @@ } }, { - "id": 2037, + "id": 1789, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -29481,7 +25181,7 @@ } }, { - "id": 2039, + "id": 1791, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -29510,7 +25210,7 @@ } }, { - "id": 2061, + "id": 1813, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -29539,7 +25239,7 @@ } }, { - "id": 2040, + "id": 1792, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -29568,7 +25268,7 @@ } }, { - "id": 2049, + "id": 1801, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -29591,7 +25291,7 @@ } }, { - "id": 2048, + "id": 1800, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -29620,7 +25320,7 @@ } }, { - "id": 2028, + "id": 1780, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -29641,7 +25341,7 @@ } }, { - "id": 2052, + "id": 1804, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -29664,7 +25364,7 @@ } }, { - "id": 2033, + "id": 1785, "name": "username", "kind": 1024, "kindString": "Property", @@ -29687,7 +25387,7 @@ } }, { - "id": 2031, + "id": 1783, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -29703,7 +25403,7 @@ ], "signatures": [ { - "id": 2032, + "id": 1784, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -29731,48 +25431,48 @@ "title": "Properties", "kind": 1024, "children": [ - 2069, - 2030, - 2051, - 2053, - 2029, - 2042, - 2054, - 2045, - 2066, - 2073, - 2050, - 2064, - 2047, - 2068, - 2043, - 2074, - 2063, - 2041, - 2036, - 2062, - 2044, - 2035, - 2065, - 2034, - 2060, - 2046, - 2037, - 2039, - 2061, - 2040, - 2049, - 2048, - 2028, - 2052, - 2033 + 1821, + 1782, + 1803, + 1805, + 1781, + 1794, + 1806, + 1797, + 1818, + 1825, + 1802, + 1816, + 1799, + 1820, + 1795, + 1826, + 1815, + 1793, + 1788, + 1814, + 1796, + 1787, + 1817, + 1786, + 1812, + 1798, + 1789, + 1791, + 1813, + 1792, + 1801, + 1800, + 1780, + 1804, + 1785 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2031 + 1783 ] } ], @@ -29785,7 +25485,7 @@ ] }, { - "id": 2353, + "id": 2105, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -29801,7 +25501,7 @@ }, "children": [ { - "id": 2355, + "id": 2107, "name": "height", "kind": 1024, "kindString": "Property", @@ -29833,7 +25533,7 @@ } }, { - "id": 2356, + "id": 2108, "name": "loading", "kind": 1024, "kindString": "Property", @@ -29869,7 +25569,7 @@ } }, { - "id": 2354, + "id": 2106, "name": "width", "kind": 1024, "kindString": "Property", @@ -29906,9 +25606,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2355, - 2356, - 2354 + 2107, + 2108, + 2106 ] } ], @@ -29920,7 +25620,7 @@ } ], "indexSignature": { - "id": 2357, + "id": 2109, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -29930,7 +25630,7 @@ }, "parameters": [ { - "id": 2358, + "id": 2110, "name": "key", "kind": 32768, "flags": {}, @@ -29964,7 +25664,7 @@ } }, { - "id": 2167, + "id": 1919, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -29980,7 +25680,7 @@ }, "children": [ { - "id": 2178, + "id": 1930, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -30013,7 +25713,7 @@ } }, { - "id": 2196, + "id": 1948, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -30043,20 +25743,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2197, + "id": 1949, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2198, + "id": 1950, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2199, + "id": 1951, "name": "key", "kind": 32768, "flags": {}, @@ -30092,7 +25792,7 @@ } }, { - "id": 2229, + "id": 1981, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -30133,7 +25833,7 @@ } }, { - "id": 2209, + "id": 1961, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -30162,7 +25862,7 @@ ], "type": { "type": "reference", - "id": 2023, + "id": 1775, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -30171,7 +25871,7 @@ } }, { - "id": 2194, + "id": 1946, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -30208,7 +25908,7 @@ } }, { - "id": 2195, + "id": 1947, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -30237,7 +25937,7 @@ ], "type": { "type": "reference", - "id": 2391, + "id": 2143, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -30246,7 +25946,7 @@ } }, { - "id": 2230, + "id": 1982, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -30287,7 +25987,7 @@ } }, { - "id": 2169, + "id": 1921, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -30324,7 +26024,7 @@ } }, { - "id": 2212, + "id": 1964, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -30361,7 +26061,7 @@ } }, { - "id": 2202, + "id": 1954, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -30398,7 +26098,7 @@ } }, { - "id": 2201, + "id": 1953, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -30429,7 +26129,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -30439,7 +26139,7 @@ } }, { - "id": 2225, + "id": 1977, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -30480,7 +26180,7 @@ } }, { - "id": 2185, + "id": 1937, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -30517,7 +26217,7 @@ } }, { - "id": 2184, + "id": 1936, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -30554,7 +26254,7 @@ } }, { - "id": 2231, + "id": 1983, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -30595,7 +26295,7 @@ } }, { - "id": 2228, + "id": 1980, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -30632,7 +26332,7 @@ } }, { - "id": 2170, + "id": 1922, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -30668,7 +26368,7 @@ } }, { - "id": 2224, + "id": 1976, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -30706,7 +26406,7 @@ } }, { - "id": 2227, + "id": 1979, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -30744,7 +26444,7 @@ } }, { - "id": 2214, + "id": 1966, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -30781,7 +26481,7 @@ } }, { - "id": 2217, + "id": 1969, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -30810,7 +26510,7 @@ ], "type": { "type": "reference", - "id": 2353, + "id": 2105, "name": "FrameParams" }, "inheritedFrom": { @@ -30819,7 +26519,7 @@ } }, { - "id": 2168, + "id": 1920, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -30853,7 +26553,7 @@ } }, { - "id": 2203, + "id": 1955, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -30888,7 +26588,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -30898,7 +26598,7 @@ } }, { - "id": 2200, + "id": 1952, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -30930,7 +26630,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2566, + "id": 2318, "name": "ListPageColumns" } }, @@ -30940,7 +26640,7 @@ } }, { - "id": 2205, + "id": 1957, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -30980,7 +26680,7 @@ } }, { - "id": 2190, + "id": 1942, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -31017,7 +26717,7 @@ } }, { - "id": 2180, + "id": 1932, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -31054,7 +26754,7 @@ } }, { - "id": 2179, + "id": 1931, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -31087,7 +26787,7 @@ } }, { - "id": 2222, + "id": 1974, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -31124,7 +26824,7 @@ } }, { - "id": 2187, + "id": 1939, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -31161,7 +26861,7 @@ } }, { - "id": 2183, + "id": 1935, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -31194,7 +26894,7 @@ } }, { - "id": 2210, + "id": 1962, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -31231,7 +26931,7 @@ } }, { - "id": 2171, + "id": 1923, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -31264,7 +26964,7 @@ } }, { - "id": 2177, + "id": 1929, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -31297,7 +26997,7 @@ } }, { - "id": 2208, + "id": 1960, "name": "locale", "kind": 1024, "kindString": "Property", @@ -31334,7 +27034,7 @@ } }, { - "id": 2213, + "id": 1965, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -31371,7 +27071,7 @@ } }, { - "id": 2215, + "id": 1967, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -31408,7 +27108,7 @@ } }, { - "id": 2174, + "id": 1926, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -31441,7 +27141,7 @@ } }, { - "id": 2220, + "id": 1972, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -31472,7 +27172,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1727, + "id": 1479, "name": "RuntimeFilter" } }, @@ -31482,7 +27182,7 @@ } }, { - "id": 2221, + "id": 1973, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -31513,7 +27213,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2506, + "id": 2258, "name": "RuntimeParameter" } }, @@ -31523,7 +27223,7 @@ } }, { - "id": 2207, + "id": 1959, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -31560,7 +27260,7 @@ } }, { - "id": 2182, + "id": 1934, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -31597,7 +27297,7 @@ } }, { - "id": 2189, + "id": 1941, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -31634,7 +27334,7 @@ } }, { - "id": 2181, + "id": 1933, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -31671,7 +27371,7 @@ } }, { - "id": 2188, + "id": 1940, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -31708,7 +27408,7 @@ } }, { - "id": 2186, + "id": 1938, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -31742,7 +27442,7 @@ } }, { - "id": 2204, + "id": 1956, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -31778,7 +27478,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -31788,7 +27488,7 @@ } }, { - "id": 2206, + "id": 1958, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -31829,7 +27529,7 @@ } }, { - "id": 2175, + "id": 1927, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -31865,7 +27565,7 @@ } }, { - "id": 2173, + "id": 1925, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -31903,56 +27603,56 @@ "title": "Properties", "kind": 1024, "children": [ - 2178, - 2196, - 2229, - 2209, - 2194, - 2195, - 2230, - 2169, - 2212, - 2202, - 2201, - 2225, - 2185, - 2184, - 2231, - 2228, - 2170, - 2224, - 2227, - 2214, - 2217, - 2168, - 2203, - 2200, - 2205, - 2190, - 2180, - 2179, - 2222, - 2187, - 2183, - 2210, - 2171, - 2177, - 2208, - 2213, - 2215, - 2174, - 2220, - 2221, - 2207, - 2182, - 2189, - 2181, - 2188, - 2186, - 2204, - 2206, - 2175, - 2173 + 1930, + 1948, + 1981, + 1961, + 1946, + 1947, + 1982, + 1921, + 1964, + 1954, + 1953, + 1977, + 1937, + 1936, + 1983, + 1980, + 1922, + 1976, + 1979, + 1966, + 1969, + 1920, + 1955, + 1952, + 1957, + 1942, + 1932, + 1931, + 1974, + 1939, + 1935, + 1962, + 1923, + 1929, + 1960, + 1965, + 1967, + 1926, + 1972, + 1973, + 1959, + 1934, + 1941, + 1933, + 1940, + 1938, + 1956, + 1958, + 1927, + 1925 ] } ], @@ -31994,7 +27694,7 @@ ] }, { - "id": 1727, + "id": 1479, "name": "RuntimeFilter", "kind": 256, "kindString": "Interface", @@ -32004,7 +27704,7 @@ }, "children": [ { - "id": 1728, + "id": 1480, "name": "columnName", "kind": 1024, "kindString": "Property", @@ -32025,7 +27725,7 @@ } }, { - "id": 1729, + "id": 1481, "name": "operator", "kind": 1024, "kindString": "Property", @@ -32042,12 +27742,12 @@ ], "type": { "type": "reference", - "id": 1731, + "id": 1483, "name": "RuntimeFilterOp" } }, { - "id": 1730, + "id": 1482, "name": "values", "kind": 1024, "kindString": "Property", @@ -32093,9 +27793,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1728, - 1729, - 1730 + 1480, + 1481, + 1482 ] } ], @@ -32108,7 +27808,7 @@ ] }, { - "id": 2506, + "id": 2258, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -32118,7 +27818,7 @@ }, "children": [ { - "id": 2507, + "id": 2259, "name": "name", "kind": 1024, "kindString": "Property", @@ -32139,7 +27839,7 @@ } }, { - "id": 2508, + "id": 2260, "name": "value", "kind": 1024, "kindString": "Property", @@ -32178,8 +27878,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2507, - 2508 + 2259, + 2260 ] } ], @@ -32192,7 +27892,7 @@ ] }, { - "id": 2232, + "id": 1984, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -32212,7 +27912,7 @@ }, "children": [ { - "id": 2245, + "id": 1997, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32242,20 +27942,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2246, + "id": 1998, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2247, + "id": 1999, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2248, + "id": 2000, "name": "key", "kind": 32768, "flags": {}, @@ -32291,7 +27991,7 @@ } }, { - "id": 2276, + "id": 2028, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -32332,7 +28032,7 @@ } }, { - "id": 2256, + "id": 2008, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -32361,7 +28061,7 @@ ], "type": { "type": "reference", - "id": 2023, + "id": 1775, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -32370,7 +28070,7 @@ } }, { - "id": 2244, + "id": 1996, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32399,7 +28099,7 @@ ], "type": { "type": "reference", - "id": 2391, + "id": 2143, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -32408,7 +28108,7 @@ } }, { - "id": 2277, + "id": 2029, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -32449,7 +28149,7 @@ } }, { - "id": 2242, + "id": 1994, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -32472,7 +28172,7 @@ } }, { - "id": 2259, + "id": 2011, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -32509,7 +28209,7 @@ } }, { - "id": 2237, + "id": 1989, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -32538,7 +28238,7 @@ } }, { - "id": 2251, + "id": 2003, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -32575,7 +28275,7 @@ } }, { - "id": 2250, + "id": 2002, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -32606,7 +28306,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -32616,7 +28316,7 @@ } }, { - "id": 2272, + "id": 2024, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -32657,7 +28357,7 @@ } }, { - "id": 2278, + "id": 2030, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -32698,7 +28398,7 @@ } }, { - "id": 2275, + "id": 2027, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -32735,7 +28435,7 @@ } }, { - "id": 2271, + "id": 2023, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -32773,7 +28473,7 @@ } }, { - "id": 2274, + "id": 2026, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -32811,7 +28511,7 @@ } }, { - "id": 2261, + "id": 2013, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -32848,7 +28548,7 @@ } }, { - "id": 2264, + "id": 2016, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -32877,7 +28577,7 @@ ], "type": { "type": "reference", - "id": 2353, + "id": 2105, "name": "FrameParams" }, "inheritedFrom": { @@ -32886,7 +28586,7 @@ } }, { - "id": 2252, + "id": 2004, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -32921,7 +28621,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -32931,7 +28631,7 @@ } }, { - "id": 2249, + "id": 2001, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -32963,7 +28663,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2566, + "id": 2318, "name": "ListPageColumns" } }, @@ -32973,7 +28673,7 @@ } }, { - "id": 2239, + "id": 1991, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -33002,7 +28702,7 @@ } }, { - "id": 2236, + "id": 1988, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -33031,7 +28731,7 @@ } }, { - "id": 2241, + "id": 1993, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -33060,7 +28760,7 @@ } }, { - "id": 2235, + "id": 1987, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -33093,7 +28793,7 @@ } }, { - "id": 2238, + "id": 1990, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -33122,7 +28822,7 @@ } }, { - "id": 2269, + "id": 2021, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -33159,7 +28859,7 @@ } }, { - "id": 2257, + "id": 2009, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -33196,7 +28896,7 @@ } }, { - "id": 2255, + "id": 2007, "name": "locale", "kind": 1024, "kindString": "Property", @@ -33233,7 +28933,7 @@ } }, { - "id": 2260, + "id": 2012, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -33270,7 +28970,7 @@ } }, { - "id": 2262, + "id": 2014, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -33307,7 +29007,7 @@ } }, { - "id": 2267, + "id": 2019, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -33338,7 +29038,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1727, + "id": 1479, "name": "RuntimeFilter" } }, @@ -33348,7 +29048,7 @@ } }, { - "id": 2268, + "id": 2020, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -33379,7 +29079,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2506, + "id": 2258, "name": "RuntimeParameter" } }, @@ -33389,7 +29089,7 @@ } }, { - "id": 2243, + "id": 1995, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -33423,7 +29123,7 @@ } }, { - "id": 2254, + "id": 2006, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -33460,7 +29160,7 @@ } }, { - "id": 2233, + "id": 1985, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -33489,7 +29189,7 @@ } }, { - "id": 2240, + "id": 1992, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -33518,7 +29218,7 @@ } }, { - "id": 2253, + "id": 2005, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -33554,7 +29254,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -33569,42 +29269,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2245, - 2276, - 2256, - 2244, - 2277, - 2242, - 2259, - 2237, - 2251, - 2250, - 2272, - 2278, - 2275, - 2271, - 2274, - 2261, - 2264, - 2252, - 2249, - 2239, - 2236, - 2241, - 2235, - 2238, - 2269, - 2257, - 2255, - 2260, - 2262, - 2267, - 2268, - 2243, - 2254, - 2233, - 2240, - 2253 + 1997, + 2028, + 2008, + 1996, + 2029, + 1994, + 2011, + 1989, + 2003, + 2002, + 2024, + 2030, + 2027, + 2023, + 2026, + 2013, + 2016, + 2004, + 2001, + 1991, + 1988, + 1993, + 1987, + 1990, + 2021, + 2009, + 2007, + 2012, + 2014, + 2019, + 2020, + 1995, + 2006, + 1985, + 1992, + 2005 ] } ], @@ -33654,7 +29354,7 @@ ] }, { - "id": 2129, + "id": 1881, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -33669,7 +29369,7 @@ }, "children": [ { - "id": 2136, + "id": 1888, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33699,20 +29399,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2137, + "id": 1889, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2138, + "id": 1890, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2139, + "id": 1891, "name": "key", "kind": 32768, "flags": {}, @@ -33748,7 +29448,7 @@ } }, { - "id": 2165, + "id": 1917, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33789,7 +29489,7 @@ } }, { - "id": 2146, + "id": 1898, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33818,7 +29518,7 @@ ], "type": { "type": "reference", - "id": 2023, + "id": 1775, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33827,7 +29527,7 @@ } }, { - "id": 2135, + "id": 1887, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33856,7 +29556,7 @@ ], "type": { "type": "reference", - "id": 2391, + "id": 2143, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33865,7 +29565,7 @@ } }, { - "id": 2131, + "id": 1883, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -33898,7 +29598,7 @@ } }, { - "id": 2130, + "id": 1882, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -33938,7 +29638,7 @@ } }, { - "id": 2149, + "id": 1901, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -33975,7 +29675,7 @@ } }, { - "id": 2142, + "id": 1894, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34012,7 +29712,7 @@ } }, { - "id": 2141, + "id": 1893, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34043,7 +29743,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -34053,7 +29753,7 @@ } }, { - "id": 2161, + "id": 1913, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34094,7 +29794,7 @@ } }, { - "id": 2166, + "id": 1918, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34135,7 +29835,7 @@ } }, { - "id": 2164, + "id": 1916, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34172,7 +29872,7 @@ } }, { - "id": 2160, + "id": 1912, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34210,7 +29910,7 @@ } }, { - "id": 2163, + "id": 1915, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34248,7 +29948,7 @@ } }, { - "id": 2134, + "id": 1886, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -34281,7 +29981,7 @@ } }, { - "id": 2151, + "id": 1903, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34318,7 +30018,7 @@ } }, { - "id": 2154, + "id": 1906, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34347,7 +30047,7 @@ ], "type": { "type": "reference", - "id": 2353, + "id": 2105, "name": "FrameParams" }, "inheritedFrom": { @@ -34356,7 +30056,7 @@ } }, { - "id": 2143, + "id": 1895, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34391,7 +30091,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -34401,7 +30101,7 @@ } }, { - "id": 2140, + "id": 1892, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -34433,7 +30133,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2566, + "id": 2318, "name": "ListPageColumns" } }, @@ -34443,7 +30143,7 @@ } }, { - "id": 2158, + "id": 1910, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34480,7 +30180,7 @@ } }, { - "id": 2147, + "id": 1899, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -34517,7 +30217,7 @@ } }, { - "id": 2145, + "id": 1897, "name": "locale", "kind": 1024, "kindString": "Property", @@ -34554,7 +30254,7 @@ } }, { - "id": 2150, + "id": 1902, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -34591,7 +30291,7 @@ } }, { - "id": 2152, + "id": 1904, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -34628,7 +30328,7 @@ } }, { - "id": 2157, + "id": 1909, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -34659,7 +30359,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2506, + "id": 2258, "name": "RuntimeParameter" } }, @@ -34669,7 +30369,7 @@ } }, { - "id": 2133, + "id": 1885, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -34703,7 +30403,7 @@ } }, { - "id": 2132, + "id": 1884, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -34736,7 +30436,7 @@ } }, { - "id": 2144, + "id": 1896, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -34772,7 +30472,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -34787,34 +30487,34 @@ "title": "Properties", "kind": 1024, "children": [ - 2136, - 2165, - 2146, - 2135, - 2131, - 2130, - 2149, - 2142, - 2141, - 2161, - 2166, - 2164, - 2160, - 2163, - 2134, - 2151, - 2154, - 2143, - 2140, - 2158, - 2147, - 2145, - 2150, - 2152, - 2157, - 2133, - 2132, - 2144 + 1888, + 1917, + 1898, + 1887, + 1883, + 1882, + 1901, + 1894, + 1893, + 1913, + 1918, + 1916, + 1912, + 1915, + 1886, + 1903, + 1906, + 1895, + 1892, + 1910, + 1899, + 1897, + 1902, + 1904, + 1909, + 1885, + 1884, + 1896 ] } ], @@ -34876,7 +30576,7 @@ ] }, { - "id": 2075, + "id": 1827, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -34892,7 +30592,7 @@ }, "children": [ { - "id": 2095, + "id": 1847, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -34922,20 +30622,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2096, + "id": 1848, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2097, + "id": 1849, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2098, + "id": 1850, "name": "key", "kind": 32768, "flags": {}, @@ -34971,7 +30671,7 @@ } }, { - "id": 2087, + "id": 1839, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -35004,7 +30704,7 @@ } }, { - "id": 2077, + "id": 1829, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -35037,7 +30737,7 @@ } }, { - "id": 2076, + "id": 1828, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -35070,7 +30770,7 @@ } }, { - "id": 2126, + "id": 1878, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -35111,7 +30811,7 @@ } }, { - "id": 2090, + "id": 1842, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -35148,7 +30848,7 @@ } }, { - "id": 2106, + "id": 1858, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -35177,7 +30877,7 @@ ], "type": { "type": "reference", - "id": 2023, + "id": 1775, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -35186,7 +30886,7 @@ } }, { - "id": 2094, + "id": 1846, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -35215,7 +30915,7 @@ ], "type": { "type": "reference", - "id": 2391, + "id": 2143, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -35224,7 +30924,7 @@ } }, { - "id": 2092, + "id": 1844, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -35261,7 +30961,7 @@ } }, { - "id": 2127, + "id": 1879, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -35302,7 +31002,7 @@ } }, { - "id": 2083, + "id": 1835, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -35335,7 +31035,7 @@ } }, { - "id": 2082, + "id": 1834, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -35371,7 +31071,7 @@ } }, { - "id": 2109, + "id": 1861, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -35408,7 +31108,7 @@ } }, { - "id": 2101, + "id": 1853, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -35445,7 +31145,7 @@ } }, { - "id": 2100, + "id": 1852, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -35476,7 +31176,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -35486,7 +31186,7 @@ } }, { - "id": 2122, + "id": 1874, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -35527,7 +31227,7 @@ } }, { - "id": 2128, + "id": 1880, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -35568,7 +31268,7 @@ } }, { - "id": 2080, + "id": 1832, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -35601,7 +31301,7 @@ } }, { - "id": 2125, + "id": 1877, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -35638,7 +31338,7 @@ } }, { - "id": 2121, + "id": 1873, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -35676,7 +31376,7 @@ } }, { - "id": 2124, + "id": 1876, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -35714,7 +31414,7 @@ } }, { - "id": 2086, + "id": 1838, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -35747,7 +31447,7 @@ } }, { - "id": 2111, + "id": 1863, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -35784,7 +31484,7 @@ } }, { - "id": 2093, + "id": 1845, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -35821,7 +31521,7 @@ } }, { - "id": 2081, + "id": 1833, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -35854,7 +31554,7 @@ } }, { - "id": 2114, + "id": 1866, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -35883,7 +31583,7 @@ ], "type": { "type": "reference", - "id": 2353, + "id": 2105, "name": "FrameParams" }, "inheritedFrom": { @@ -35892,7 +31592,7 @@ } }, { - "id": 2102, + "id": 1854, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -35927,7 +31627,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -35937,7 +31637,7 @@ } }, { - "id": 2099, + "id": 1851, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -35969,7 +31669,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2566, + "id": 2318, "name": "ListPageColumns" } }, @@ -35979,7 +31679,7 @@ } }, { - "id": 2078, + "id": 1830, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -36012,7 +31712,7 @@ } }, { - "id": 2079, + "id": 1831, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -36045,7 +31745,7 @@ } }, { - "id": 2088, + "id": 1840, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -36078,7 +31778,7 @@ } }, { - "id": 2119, + "id": 1871, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -36115,7 +31815,7 @@ } }, { - "id": 2091, + "id": 1843, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -36144,7 +31844,7 @@ } }, { - "id": 2107, + "id": 1859, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -36181,7 +31881,7 @@ } }, { - "id": 2105, + "id": 1857, "name": "locale", "kind": 1024, "kindString": "Property", @@ -36218,7 +31918,7 @@ } }, { - "id": 2110, + "id": 1862, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -36255,7 +31955,7 @@ } }, { - "id": 2112, + "id": 1864, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -36292,7 +31992,7 @@ } }, { - "id": 2117, + "id": 1869, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -36323,7 +32023,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1727, + "id": 1479, "name": "RuntimeFilter" } }, @@ -36333,7 +32033,7 @@ } }, { - "id": 2118, + "id": 1870, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -36364,7 +32064,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2506, + "id": 2258, "name": "RuntimeParameter" } }, @@ -36374,7 +32074,7 @@ } }, { - "id": 2085, + "id": 1837, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -36404,7 +32104,7 @@ } }, { - "id": 2084, + "id": 1836, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -36433,7 +32133,7 @@ } }, { - "id": 2104, + "id": 1856, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -36470,7 +32170,7 @@ } }, { - "id": 2089, + "id": 1841, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -36499,7 +32199,7 @@ } }, { - "id": 2103, + "id": 1855, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -36535,7 +32235,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -36550,50 +32250,50 @@ "title": "Properties", "kind": 1024, "children": [ - 2095, - 2087, - 2077, - 2076, - 2126, - 2090, - 2106, - 2094, - 2092, - 2127, - 2083, - 2082, - 2109, - 2101, - 2100, - 2122, - 2128, - 2080, - 2125, - 2121, - 2124, - 2086, - 2111, - 2093, - 2081, - 2114, - 2102, - 2099, - 2078, - 2079, - 2088, - 2119, - 2091, - 2107, - 2105, - 2110, - 2112, - 2117, - 2118, - 2085, - 2084, - 2104, - 2089, - 2103 + 1847, + 1839, + 1829, + 1828, + 1878, + 1842, + 1858, + 1846, + 1844, + 1879, + 1835, + 1834, + 1861, + 1853, + 1852, + 1874, + 1880, + 1832, + 1877, + 1873, + 1876, + 1838, + 1863, + 1845, + 1833, + 1866, + 1854, + 1851, + 1830, + 1831, + 1840, + 1871, + 1843, + 1859, + 1857, + 1862, + 1864, + 1869, + 1870, + 1837, + 1836, + 1856, + 1841, + 1855 ] } ], @@ -36643,14 +32343,14 @@ ] }, { - "id": 1696, + "id": 1448, "name": "SessionInterface", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1699, + "id": 1451, "name": "acSession", "kind": 1024, "kindString": "Property", @@ -36665,14 +32365,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1700, + "id": 1452, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1702, + "id": 1454, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -36690,7 +32390,7 @@ } }, { - "id": 1701, + "id": 1453, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -36713,8 +32413,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1702, - 1701 + 1454, + 1453 ] } ] @@ -36722,7 +32422,7 @@ } }, { - "id": 1698, + "id": 1450, "name": "genNo", "kind": 1024, "kindString": "Property", @@ -36740,7 +32440,7 @@ } }, { - "id": 1697, + "id": 1449, "name": "sessionId", "kind": 1024, "kindString": "Property", @@ -36763,9 +32463,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1699, - 1698, - 1697 + 1451, + 1450, + 1449 ] } ], @@ -36943,7 +32643,7 @@ ], "type": { "type": "reference", - "id": 2023, + "id": 1775, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -36981,7 +32681,7 @@ ], "type": { "type": "reference", - "id": 2391, + "id": 2143, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -37136,7 +32836,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -37407,7 +33107,7 @@ ], "type": { "type": "reference", - "id": 2353, + "id": 2105, "name": "FrameParams" }, "inheritedFrom": { @@ -37451,7 +33151,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -37492,7 +33192,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2359, + "id": 2111, "name": "HomeLeftNavItem" } }, @@ -37534,7 +33234,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2367, + "id": 2119, "name": "HomepageModule" } }, @@ -37576,7 +33276,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2566, + "id": 2318, "name": "ListPageColumns" } }, @@ -37843,7 +33543,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2367, + "id": 2119, "name": "HomepageModule" } }, @@ -37884,7 +33584,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1727, + "id": 1479, "name": "RuntimeFilter" } }, @@ -37925,7 +33625,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2506, + "id": 2258, "name": "RuntimeParameter" } }, @@ -38008,7 +33708,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -38135,7 +33835,7 @@ ] }, { - "id": 1314, + "id": 1258, "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", @@ -38151,7 +33851,7 @@ }, "children": [ { - "id": 1334, + "id": 1278, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -38181,20 +33881,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1335, + "id": 1279, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1336, + "id": 1280, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1337, + "id": 1281, "name": "key", "kind": 32768, "flags": {}, @@ -38230,7 +33930,7 @@ } }, { - "id": 1355, + "id": 1299, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -38271,7 +33971,7 @@ } }, { - "id": 1340, + "id": 1284, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -38300,7 +34000,7 @@ ], "type": { "type": "reference", - "id": 2023, + "id": 1775, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -38309,7 +34009,7 @@ } }, { - "id": 1338, + "id": 1282, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -38338,7 +34038,7 @@ ], "type": { "type": "reference", - "id": 2391, + "id": 2143, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38347,7 +34047,7 @@ } }, { - "id": 1319, + "id": 1263, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -38388,7 +34088,7 @@ } }, { - "id": 1357, + "id": 1301, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -38425,7 +34125,7 @@ } }, { - "id": 1317, + "id": 1261, "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", @@ -38458,7 +34158,7 @@ } }, { - "id": 1327, + "id": 1271, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -38495,7 +34195,7 @@ } }, { - "id": 1326, + "id": 1270, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -38526,7 +34226,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -38536,7 +34236,7 @@ } }, { - "id": 1351, + "id": 1295, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -38577,7 +34277,7 @@ } }, { - "id": 1358, + "id": 1302, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -38618,7 +34318,7 @@ } }, { - "id": 1354, + "id": 1298, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -38655,7 +34355,7 @@ } }, { - "id": 1344, + "id": 1288, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -38693,7 +34393,7 @@ } }, { - "id": 1353, + "id": 1297, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -38731,7 +34431,7 @@ } }, { - "id": 1356, + "id": 1300, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -38768,7 +34468,7 @@ } }, { - "id": 1323, + "id": 1267, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -38797,7 +34497,7 @@ ], "type": { "type": "reference", - "id": 2353, + "id": 2105, "name": "FrameParams" }, "inheritedFrom": { @@ -38806,7 +34506,7 @@ } }, { - "id": 1328, + "id": 1272, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -38841,7 +34541,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -38851,7 +34551,7 @@ } }, { - "id": 1349, + "id": 1293, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -38882,7 +34582,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2359, + "id": 2111, "name": "HomeLeftNavItem" } }, @@ -38892,7 +34592,7 @@ } }, { - "id": 1346, + "id": 1290, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -38924,7 +34624,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2367, + "id": 2119, "name": "HomepageModule" } }, @@ -38934,7 +34634,7 @@ } }, { - "id": 1360, + "id": 1304, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -38966,7 +34666,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2566, + "id": 2318, "name": "ListPageColumns" } }, @@ -38976,7 +34676,7 @@ } }, { - "id": 1345, + "id": 1289, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -39016,7 +34716,7 @@ } }, { - "id": 1321, + "id": 1265, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -39049,7 +34749,7 @@ } }, { - "id": 1318, + "id": 1262, "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", @@ -39082,7 +34782,7 @@ } }, { - "id": 1339, + "id": 1283, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -39119,7 +34819,7 @@ } }, { - "id": 1341, + "id": 1285, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -39156,7 +34856,7 @@ } }, { - "id": 1333, + "id": 1277, "name": "locale", "kind": 1024, "kindString": "Property", @@ -39193,7 +34893,7 @@ } }, { - "id": 1359, + "id": 1303, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -39230,7 +34930,7 @@ } }, { - "id": 1350, + "id": 1294, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -39267,7 +34967,7 @@ } }, { - "id": 1347, + "id": 1291, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -39299,7 +34999,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2367, + "id": 2119, "name": "HomepageModule" } }, @@ -39309,7 +35009,7 @@ } }, { - "id": 1331, + "id": 1275, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -39340,7 +35040,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1727, + "id": 1479, "name": "RuntimeFilter" } }, @@ -39350,7 +35050,7 @@ } }, { - "id": 1332, + "id": 1276, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -39381,7 +35081,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2506, + "id": 2258, "name": "RuntimeParameter" } }, @@ -39391,7 +35091,7 @@ } }, { - "id": 1316, + "id": 1260, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -39414,7 +35114,7 @@ } }, { - "id": 1330, + "id": 1274, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -39451,7 +35151,7 @@ } }, { - "id": 1320, + "id": 1264, "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", @@ -39484,7 +35184,7 @@ } }, { - "id": 1329, + "id": 1273, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -39520,7 +35220,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1893, + "id": 1645, "name": "Action" } }, @@ -39530,7 +35230,7 @@ } }, { - "id": 1348, + "id": 1292, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -39571,7 +35271,7 @@ } }, { - "id": 1315, + "id": 1259, "name": "worksheetId", "kind": 1024, "kindString": "Property", @@ -39597,43 +35297,43 @@ "title": "Properties", "kind": 1024, "children": [ - 1334, - 1355, - 1340, - 1338, - 1319, - 1357, - 1317, - 1327, - 1326, - 1351, - 1358, - 1354, - 1344, - 1353, - 1356, - 1323, - 1328, - 1349, - 1346, - 1360, - 1345, - 1321, - 1318, - 1339, - 1341, - 1333, - 1359, - 1350, - 1347, - 1331, - 1332, - 1316, - 1330, - 1320, - 1329, - 1348, - 1315 + 1278, + 1299, + 1284, + 1282, + 1263, + 1301, + 1261, + 1271, + 1270, + 1295, + 1302, + 1298, + 1288, + 1297, + 1300, + 1267, + 1272, + 1293, + 1290, + 1304, + 1289, + 1265, + 1262, + 1283, + 1285, + 1277, + 1303, + 1294, + 1291, + 1275, + 1276, + 1260, + 1274, + 1264, + 1273, + 1292, + 1259 ] } ], @@ -39652,14 +35352,14 @@ ] }, { - "id": 1703, + "id": 1455, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1704, + "id": 1456, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -39677,7 +35377,7 @@ } }, { - "id": 1705, + "id": 1457, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -39700,8 +35400,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1704, - 1705 + 1456, + 1457 ] } ], @@ -39714,14 +35414,14 @@ ] }, { - "id": 2536, + "id": 2288, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2537, + "id": 2289, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -39742,7 +35442,7 @@ } }, { - "id": 2538, + "id": 2290, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -39768,8 +35468,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2537, - 2538 + 2289, + 2290 ] } ], @@ -39782,7 +35482,7 @@ ] }, { - "id": 2404, + "id": 2156, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -39792,7 +35492,7 @@ }, "children": [ { - "id": 2406, + "id": 2158, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -39822,20 +35522,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2407, + "id": 2159, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2408, + "id": 2160, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2409, + "id": 2161, "name": "selector", "kind": 32768, "flags": {}, @@ -39848,7 +35548,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2410, + "id": 2162, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -39861,14 +35561,14 @@ } ], "indexSignature": { - "id": 2411, + "id": 2163, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2412, + "id": 2164, "name": "declaration", "kind": 32768, "flags": {}, @@ -39890,7 +35590,7 @@ } }, { - "id": 2405, + "id": 2157, "name": "variables", "kind": 1024, "kindString": "Property", @@ -39909,7 +35609,7 @@ ], "type": { "type": "reference", - "id": 2413, + "id": 2165, "name": "CustomCssVariables" } } @@ -39919,8 +35619,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2406, - 2405 + 2158, + 2157 ] } ], @@ -40225,7 +35925,7 @@ ] }, { - "id": 2374, + "id": 2126, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -40252,7 +35952,7 @@ } }, { - "id": 2378, + "id": 2130, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -40267,7 +35967,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2379, + "id": 2131, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -40290,7 +35990,7 @@ ], "signatures": [ { - "id": 2380, + "id": 2132, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -40300,19 +36000,19 @@ }, "parameters": [ { - "id": 2381, + "id": 2133, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2386, + "id": 2138, "name": "MessagePayload" } }, { - "id": 2382, + "id": 2134, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -40322,7 +36022,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2383, + "id": 2135, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -40336,7 +36036,7 @@ ], "signatures": [ { - "id": 2384, + "id": 2136, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -40346,7 +36046,7 @@ }, "parameters": [ { - "id": 2385, + "id": 2137, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -40377,7 +36077,7 @@ } }, { - "id": 2375, + "id": 2127, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -40401,14 +36101,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2376, + "id": 2128, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2377, + "id": 2129, "name": "start", "kind": 1024, "kindString": "Property", @@ -40436,7 +36136,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2377 + 2129 ] } ], @@ -40451,7 +36151,7 @@ } }, { - "id": 2386, + "id": 2138, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -40475,14 +36175,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2387, + "id": 2139, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2389, + "id": 2141, "name": "data", "kind": 1024, "kindString": "Property", @@ -40500,7 +36200,7 @@ } }, { - "id": 2390, + "id": 2142, "name": "status", "kind": 1024, "kindString": "Property", @@ -40520,7 +36220,7 @@ } }, { - "id": 2388, + "id": 2140, "name": "type", "kind": 1024, "kindString": "Property", @@ -40543,9 +36243,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2389, - 2390, - 2388 + 2141, + 2142, + 2140 ] } ], @@ -40609,7 +36309,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1623, + "id": 1375, "name": "AnswerService" } } @@ -40871,7 +36571,7 @@ ], "type": { "type": "reference", - "id": 1623, + "id": 1375, "name": "AnswerService" } }, @@ -40950,7 +36650,7 @@ }, "type": { "type": "reference", - "id": 2027, + "id": 1779, "name": "EmbedConfig" } } @@ -41050,14 +36750,14 @@ }, "type": { "type": "reference", - "id": 2027, + "id": 1779, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1570, + "id": 1322, "name": "AuthEventEmitter" } } @@ -41197,7 +36897,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2348, + "id": 2100, "name": "PrefetchFeatures" } } @@ -41269,7 +36969,7 @@ ] }, { - "id": 2572, + "id": 2324, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -41285,7 +36985,7 @@ ], "signatures": [ { - "id": 2573, + "id": 2325, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -41479,7 +37179,7 @@ ] }, { - "id": 2516, + "id": 2268, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -41493,7 +37193,7 @@ ], "signatures": [ { - "id": 2517, + "id": 2269, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -41503,7 +37203,7 @@ }, "parameters": [ { - "id": 2518, + "id": 2270, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -41515,7 +37215,7 @@ } }, { - "id": 2519, + "id": 2271, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -41526,7 +37226,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2520, + "id": 2272, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -41545,72 +37245,78 @@ } ], "groups": [ + { + "title": "References", + "kind": 16777216, + "children": [ + 1110, + 1109, + 1306, + 1305 + ] + }, { "title": "Enumerations", "kind": 4, "children": [ - 1893, - 1568, - 1555, - 1561, - 1715, - 2023, - 1889, - 1747, - 2359, - 2532, - 2367, - 1828, - 2566, - 2509, - 1706, - 2348, - 1731, - 2559 + 1645, + 1320, + 1307, + 1313, + 1467, + 1775, + 1641, + 1499, + 2111, + 2284, + 2119, + 1580, + 2318, + 2261, + 1458, + 2100, + 1483, + 2311 ] }, { "title": "Classes", "kind": 128, "children": [ - 1623, + 1375, 872, - 1151, - 1408, 528, 715, 212, 55, 1051, - 1167 + 1111 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2279, - 1570, - 1109, - 1361, - 2539, - 2413, - 2401, - 2391, - 2027, - 2353, - 2167, - 1727, - 2506, - 2232, - 2129, - 2075, - 1696, + 2031, + 1322, + 2291, + 2165, + 2153, + 2143, + 1779, + 2105, + 1919, + 1479, + 2258, + 1984, + 1881, + 1827, + 1448, 1067, - 1314, - 1703, - 2536, - 2404, + 1258, + 1455, + 2288, + 2156, 21, 25 ] @@ -41619,10 +37325,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2374, - 2378, - 2375, - 2386 + 2126, + 2130, + 2127, + 2138 ] }, { @@ -41638,9 +37344,9 @@ 1, 4, 7, - 2572, + 2324, 37, - 2516 + 2268 ] } ], From 16a3d69add3903e7acd07cea030f33dc2c8c48ae Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 24 Apr 2025 15:55:20 +0530 Subject: [PATCH 06/29] added a note --- src/embed/bodyless-conversation.ts | 2 ++ src/embed/conversation.ts | 2 ++ src/react/index.tsx | 1 + 3 files changed, 5 insertions(+) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index d90873b3..4541f496 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -6,6 +6,7 @@ import { getQueryParamString } from '../utils'; /** * Configuration for bodyless conversation options. + * **Note**: This config formerly known as BodylessConversationViewConfig is now SpotterAgentEmbedViewConfig. The previous name will continue to work as an alias for backward compatibility. * @group Embed components */ export interface SpotterAgentEmbedViewConfig extends ViewConfig { @@ -80,6 +81,7 @@ class ConversationMessage extends TsEmbed { * document.body.appendChild(container); // or to any other element * ``` * @group Embed components + * **Note**: This component formerly known as BodylessConversation is now SpotterAgentEmbed. The previous name will continue to work as an alias for backward compatibility. * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl */ export class SpotterAgentEmbed { diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index 46d7c5d0..e81309ec 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -16,6 +16,7 @@ export interface SearchOptions { /** * The configuration for the embedded spotterEmbed options. + * **Note**: This config formerly known as ConversationViewConfig is now SpotterEmbedViewConfig. The previous name will continue to work as an alias for backward compatibility. * @group Embed components */ export interface SpotterEmbedViewConfig extends ViewConfig { @@ -107,6 +108,7 @@ export interface SpotterEmbedViewConfig extends ViewConfig { * }); * conversation.render(); * ``` + * **Note**: The component formerly known as ConversationEmbed is now SpotterEmbed. The previous name will continue to work as an alias for backward compatibility. * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl */ export class SpotterEmbed extends TsEmbed { diff --git a/src/react/index.tsx b/src/react/index.tsx index 5fb1e6ee..005e7f93 100644 --- a/src/react/index.tsx +++ b/src/react/index.tsx @@ -350,6 +350,7 @@ interface SpotterEmbedProps extends EmbedProps, SpotterEmbedViewConfig { } * /> * } * ``` + * **Note**: This component formerly known as ConversationEmbed is now SpotterEmbed. The previous name will continue to work as an alias for backward compatibility. */ export const SpotterEmbed = componentFactory< typeof _SpotterEmbed, From 686fcb7dbdec5e1c6af54199d1cd422fba9587c7 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 24 Apr 2025 16:08:11 +0530 Subject: [PATCH 07/29] refactoring --- src/embed/bodyless-conversation.ts | 4 +-- src/embed/conversation.ts | 2 +- src/react/index.tsx | 2 +- static/typedoc/typedoc.json | 48 +++++++++++++++++++----------- 4 files changed, 34 insertions(+), 22 deletions(-) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index 4541f496..da57228f 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -6,7 +6,7 @@ import { getQueryParamString } from '../utils'; /** * Configuration for bodyless conversation options. - * **Note**: This config formerly known as BodylessConversationViewConfig is now SpotterAgentEmbedViewConfig. The previous name will continue to work as an alias for backward compatibility. + * @deprecated This config formerly known as BodylessConversationViewConfig is now SpotterAgentEmbedViewConfig. The previous name will continue to work as an alias for backward compatibility. * @group Embed components */ export interface SpotterAgentEmbedViewConfig extends ViewConfig { @@ -81,7 +81,7 @@ class ConversationMessage extends TsEmbed { * document.body.appendChild(container); // or to any other element * ``` * @group Embed components - * **Note**: This component formerly known as BodylessConversation is now SpotterAgentEmbed. The previous name will continue to work as an alias for backward compatibility. + * @deprecated This component formerly known as BodylessConversation is now SpotterAgentEmbed. The previous name will continue to work as an alias for backward compatibility. * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl */ export class SpotterAgentEmbed { diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index e81309ec..853faefb 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -16,7 +16,7 @@ export interface SearchOptions { /** * The configuration for the embedded spotterEmbed options. - * **Note**: This config formerly known as ConversationViewConfig is now SpotterEmbedViewConfig. The previous name will continue to work as an alias for backward compatibility. + * @deprecated This config formerly known as ConversationViewConfig is now SpotterEmbedViewConfig. The previous name will continue to work as an alias for backward compatibility. * @group Embed components */ export interface SpotterEmbedViewConfig extends ViewConfig { diff --git a/src/react/index.tsx b/src/react/index.tsx index 005e7f93..a3ab4275 100644 --- a/src/react/index.tsx +++ b/src/react/index.tsx @@ -350,7 +350,7 @@ interface SpotterEmbedProps extends EmbedProps, SpotterEmbedViewConfig { } * /> * } * ``` - * **Note**: This component formerly known as ConversationEmbed is now SpotterEmbed. The previous name will continue to work as an alias for backward compatibility. + * @deprecated This component formerly known as ConversationEmbed is now SpotterEmbed. The previous name will continue to work as an alias for backward compatibility. */ export const SpotterEmbed = componentFactory< typeof _SpotterEmbed, diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index a00ee31e..f33966e8 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -16904,6 +16904,10 @@ "tag": "group", "text": "Embed components" }, + { + "tag": "deprecated", + "text": "This component formerly known as BodylessConversation is now SpotterAgentEmbed. The previous name will continue to work as an alias for backward compatibility." + }, { "tag": "version", "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" @@ -16920,7 +16924,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 88, + "line": 90, "character": 4 } ], @@ -16964,7 +16968,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 97, + "line": 99, "character": 17 } ], @@ -17136,7 +17140,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 85, + "line": 87, "character": 13 } ] @@ -17156,7 +17160,7 @@ }, { "tag": "example", - "text": "\n```js\nconst conversation = new SpotterEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" + "text": "\n```js\nconst conversation = new SpotterEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```\n**Note**: The component formerly known as ConversationEmbed is now SpotterEmbed. The previous name will continue to work as an alias for backward compatibility." }, { "tag": "version", @@ -17174,7 +17178,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 113, + "line": 115, "character": 4 } ], @@ -17354,7 +17358,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 118, + "line": 120, "character": 11 } ], @@ -17964,7 +17968,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 166, + "line": 168, "character": 17 } ], @@ -18346,7 +18350,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 112, + "line": 114, "character": 13 } ], @@ -32486,6 +32490,10 @@ "comment": { "shortText": "Configuration for bodyless conversation options.", "tags": [ + { + "tag": "deprecated", + "text": "This config formerly known as BodylessConversationViewConfig is now SpotterAgentEmbedViewConfig. The previous name will continue to work as an alias for backward compatibility." + }, { "tag": "group", "text": "Embed components\n" @@ -33770,7 +33778,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 15, + "line": 16, "character": 4 } ], @@ -33823,7 +33831,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 11, + "line": 12, "character": 17 } ], @@ -33843,6 +33851,10 @@ "comment": { "shortText": "The configuration for the embedded spotterEmbed options.", "tags": [ + { + "tag": "deprecated", + "text": "This config formerly known as ConversationViewConfig is now SpotterEmbedViewConfig. The previous name will continue to work as an alias for backward compatibility." + }, { "tag": "group", "text": "Embed components\n" @@ -34074,7 +34086,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 67, + "line": 68, "character": 4 } ], @@ -34148,7 +34160,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 42, + "line": 43, "character": 4 } ], @@ -34739,7 +34751,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 94, + "line": 95, "character": 4 } ], @@ -34772,7 +34784,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 54, + "line": 55, "character": 4 } ], @@ -35104,7 +35116,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 29, + "line": 30, "character": 4 } ], @@ -35174,7 +35186,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 81, + "line": 82, "character": 4 } ], @@ -35282,7 +35294,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 25, + "line": 26, "character": 4 } ], @@ -35340,7 +35352,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 21, + "line": 22, "character": 17 } ], From e7ebbfa0ffdffb2b922ddd5394445a2cddd67abc Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 24 Apr 2025 16:29:07 +0530 Subject: [PATCH 08/29] added alias --- src/embed/bodyless-conversation.ts | 4 ++-- src/embed/conversation.ts | 4 ++-- src/react/index.tsx | 2 +- static/typedoc/typedoc.json | 18 +++++++++++------- 4 files changed, 16 insertions(+), 12 deletions(-) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index da57228f..c7605953 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -6,7 +6,7 @@ import { getQueryParamString } from '../utils'; /** * Configuration for bodyless conversation options. - * @deprecated This config formerly known as BodylessConversationViewConfig is now SpotterAgentEmbedViewConfig. The previous name will continue to work as an alias for backward compatibility. + * @alias BodylessConversationViewConfig * @group Embed components */ export interface SpotterAgentEmbedViewConfig extends ViewConfig { @@ -81,7 +81,7 @@ class ConversationMessage extends TsEmbed { * document.body.appendChild(container); // or to any other element * ``` * @group Embed components - * @deprecated This component formerly known as BodylessConversation is now SpotterAgentEmbed. The previous name will continue to work as an alias for backward compatibility. + * @alias BodylessConversation * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl */ export class SpotterAgentEmbed { diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index 853faefb..7270e785 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -16,7 +16,7 @@ export interface SearchOptions { /** * The configuration for the embedded spotterEmbed options. - * @deprecated This config formerly known as ConversationViewConfig is now SpotterEmbedViewConfig. The previous name will continue to work as an alias for backward compatibility. + * @alias ConversationViewConfig * @group Embed components */ export interface SpotterEmbedViewConfig extends ViewConfig { @@ -97,6 +97,7 @@ export interface SpotterEmbedViewConfig extends ViewConfig { /** * Embed ThoughtSpot AI Conversation. + * @alias ConversationEmbed * @group Embed components * @example * ```js @@ -108,7 +109,6 @@ export interface SpotterEmbedViewConfig extends ViewConfig { * }); * conversation.render(); * ``` - * **Note**: The component formerly known as ConversationEmbed is now SpotterEmbed. The previous name will continue to work as an alias for backward compatibility. * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl */ export class SpotterEmbed extends TsEmbed { diff --git a/src/react/index.tsx b/src/react/index.tsx index a3ab4275..cabbbacb 100644 --- a/src/react/index.tsx +++ b/src/react/index.tsx @@ -338,6 +338,7 @@ interface SpotterEmbedProps extends EmbedProps, SpotterEmbedViewConfig { } /** * React component for LLM based conversation BI. + * @alias ConversationEmbed * @example * ```tsx * function Sage() { @@ -350,7 +351,6 @@ interface SpotterEmbedProps extends EmbedProps, SpotterEmbedViewConfig { } * /> * } * ``` - * @deprecated This component formerly known as ConversationEmbed is now SpotterEmbed. The previous name will continue to work as an alias for backward compatibility. */ export const SpotterEmbed = componentFactory< typeof _SpotterEmbed, diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index f33966e8..a40a8f0a 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -16905,8 +16905,8 @@ "text": "Embed components" }, { - "tag": "deprecated", - "text": "This component formerly known as BodylessConversation is now SpotterAgentEmbed. The previous name will continue to work as an alias for backward compatibility." + "tag": "alias", + "text": "BodylessConversation" }, { "tag": "version", @@ -17154,13 +17154,17 @@ "comment": { "shortText": "Embed ThoughtSpot AI Conversation.", "tags": [ + { + "tag": "alias", + "text": "ConversationEmbed" + }, { "tag": "group", "text": "Embed components" }, { "tag": "example", - "text": "\n```js\nconst conversation = new SpotterEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```\n**Note**: The component formerly known as ConversationEmbed is now SpotterEmbed. The previous name will continue to work as an alias for backward compatibility." + "text": "\n```js\nconst conversation = new SpotterEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" }, { "tag": "version", @@ -32491,8 +32495,8 @@ "shortText": "Configuration for bodyless conversation options.", "tags": [ { - "tag": "deprecated", - "text": "This config formerly known as BodylessConversationViewConfig is now SpotterAgentEmbedViewConfig. The previous name will continue to work as an alias for backward compatibility." + "tag": "alias", + "text": "BodylessConversationViewConfig" }, { "tag": "group", @@ -33852,8 +33856,8 @@ "shortText": "The configuration for the embedded spotterEmbed options.", "tags": [ { - "tag": "deprecated", - "text": "This config formerly known as ConversationViewConfig is now SpotterEmbedViewConfig. The previous name will continue to work as an alias for backward compatibility." + "tag": "alias", + "text": "ConversationViewConfig" }, { "tag": "group", From a46752afdae8f651bbc6147b8029decc95b35eda Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 24 Apr 2025 16:39:28 +0530 Subject: [PATCH 09/29] Added deprecation note --- src/embed/bodyless-conversation.ts | 4 ++-- src/embed/conversation.ts | 4 ++-- src/react/index.tsx | 2 +- static/typedoc/typedoc.json | 20 ++++++++++---------- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index c7605953..6112edf0 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -6,7 +6,7 @@ import { getQueryParamString } from '../utils'; /** * Configuration for bodyless conversation options. - * @alias BodylessConversationViewConfig + * @deprecated Formally known as BodylessConversationViewConfig * @group Embed components */ export interface SpotterAgentEmbedViewConfig extends ViewConfig { @@ -67,6 +67,7 @@ class ConversationMessage extends TsEmbed { /** * Create a conversation embed, which can be integrated inside * chatbots or other conversational interfaces. + * @deprecated Formally known as BodylessConversation * @example * ```js * import { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk'; @@ -81,7 +82,6 @@ class ConversationMessage extends TsEmbed { * document.body.appendChild(container); // or to any other element * ``` * @group Embed components - * @alias BodylessConversation * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl */ export class SpotterAgentEmbed { diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index 7270e785..4fc5f611 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -16,7 +16,7 @@ export interface SearchOptions { /** * The configuration for the embedded spotterEmbed options. - * @alias ConversationViewConfig + * @deprecated Formally known as ConversationViewConfig * @group Embed components */ export interface SpotterEmbedViewConfig extends ViewConfig { @@ -97,7 +97,7 @@ export interface SpotterEmbedViewConfig extends ViewConfig { /** * Embed ThoughtSpot AI Conversation. - * @alias ConversationEmbed + * @deprecated Formally known as ConversationEmbed * @group Embed components * @example * ```js diff --git a/src/react/index.tsx b/src/react/index.tsx index cabbbacb..8c1b3bf3 100644 --- a/src/react/index.tsx +++ b/src/react/index.tsx @@ -338,7 +338,7 @@ interface SpotterEmbedProps extends EmbedProps, SpotterEmbedViewConfig { } /** * React component for LLM based conversation BI. - * @alias ConversationEmbed + * @deprecated Formally known as ConversationEmbed * @example * ```tsx * function Sage() { diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index a40a8f0a..afe2b196 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -16896,6 +16896,10 @@ "comment": { "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", "tags": [ + { + "tag": "deprecated", + "text": "Formally known as BodylessConversation" + }, { "tag": "example", "text": "\n```js\nimport { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new SpotterAgentEmbed({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" @@ -16904,10 +16908,6 @@ "tag": "group", "text": "Embed components" }, - { - "tag": "alias", - "text": "BodylessConversation" - }, { "tag": "version", "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" @@ -17155,8 +17155,8 @@ "shortText": "Embed ThoughtSpot AI Conversation.", "tags": [ { - "tag": "alias", - "text": "ConversationEmbed" + "tag": "deprecated", + "text": "Formally known as ConversationEmbed" }, { "tag": "group", @@ -32495,8 +32495,8 @@ "shortText": "Configuration for bodyless conversation options.", "tags": [ { - "tag": "alias", - "text": "BodylessConversationViewConfig" + "tag": "deprecated", + "text": "Formally known as BodylessConversationViewConfig" }, { "tag": "group", @@ -33856,8 +33856,8 @@ "shortText": "The configuration for the embedded spotterEmbed options.", "tags": [ { - "tag": "alias", - "text": "ConversationViewConfig" + "tag": "deprecated", + "text": "Formally known as ConversationViewConfig" }, { "tag": "group", From 7ec8064069d43a815b22bb264c0e89322e34f0e6 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Tue, 29 Apr 2025 12:44:39 +0530 Subject: [PATCH 10/29] Added new flag for bodyless embed --- src/embed/bodyless-conversation.ts | 1 + src/types.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index af87a602..ce61aeb8 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -39,6 +39,7 @@ class ConversationMessage extends TsEmbed { const queryParams = this.getBaseQueryParams(); queryParams[Param.HideActions] = [...(queryParams[Param.HideActions] ?? [])]; + queryParams[Param.isSpotterAgentEmbed] = true; let query = ''; const queryParamsString = getQueryParamString(queryParams, true); if (queryParamsString) { diff --git a/src/types.ts b/src/types.ts index fd3f62c3..0f40c9b3 100644 --- a/src/types.ts +++ b/src/types.ts @@ -3611,6 +3611,7 @@ export enum Param { ShowSpotterLimitations = 'showSpotterLimitations', CoverAndFilterOptionInPDF = 'coverAndFilterOptionInPDF', PrimaryAction = 'primaryAction', + isSpotterAgentEmbed = 'isSpotterAgentEmbed', } /** From ab2bba4be3b9a94610be560f446763d6cad0900a Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Tue, 6 May 2025 10:00:25 +0530 Subject: [PATCH 11/29] host events for spotter --- src/types.ts | 150 ++ static/typedoc/typedoc.json | 3256 ++++++++++++++++++++--------------- 2 files changed, 1983 insertions(+), 1423 deletions(-) diff --git a/src/types.ts b/src/types.ts index e506e8ef..1635b946 100644 --- a/src/types.ts +++ b/src/types.ts @@ -3499,6 +3499,156 @@ export enum HostEvent { * @version SDK: 1.37.0 | ThoughtSpot: 10.8.0.cl */ TransformTableVizData = 'TransformTableVizData', + + /** + * Triggers the search query event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.SearchQuery, { + * query: 'sales by region' + * }) + * ``` + * @version SDK: 1.37.0 | ThoughtSpot: 10.8.0.cl + */ + SearchQuery = 'SearchQuery', + /** + * Triggers the edit spotter query event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.EditSpotterQuery, { + * query: 'sales by region' + * }) + * */ + UpdateSpotterQuery = 'UpdateSpotterQuery', + + /** + * Triggers the preview spotter data event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.PreviewSpotterData, { + * query: 'sales by region' + * }) + * ``` + * @version SDK: 1.37.0 | ThoughtSpot: 10.8.0.cl + */ + PreviewSpotterData = 'PreviewSpotterData', + + /** + * Triggers the reset spotter conversation event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.ResetSpotterConversation) + * ``` + */ + ResetSpotterConversation = 'ResetSpotterConversation', + + /** + * Triggers the delete last spotter prompt event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.DeleteLastSpotterPrompt) + * ``` + */ + DeleteLastSpotterPrompt = 'DeleteLastSpotterPrompt', + + /** + * Triggers the edit last spotter prompt event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.EditLastSpotterPrompt) + * ``` + */ + EditLastSpotterPrompt = 'EditLastSpotterPrompt', + + /** + * Triggers the delete spotter prompt event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.DeleteSpotterPrompt) + * ``` + */ + DeleteSpotterPrompt = 'DeleteSpotterPrompt', + + /** + * Triggers the edit spotter answer event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.EditSpotterAnswer) + * ``` + */ + EditSpotterAnswer = 'EditSpotterAnswer', + + /** + * Triggers the save spotter answer event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.SaveSpotterAnswer) + * ``` + */ + SaveSpotterAnswer = 'SaveSpotterAnswer', + + /** + * Triggers the pin spotter answer event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.PinSpotterAnswer) + * ``` + */ + PinSpotterAnswer = 'PinSpotterAnswer', + + /** + * Triggers the make a copy spotter answer event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.MakeACopySpotterAnswer) + * ``` + */ + MakeACopySpotterAnswer = 'MakeACopySpotterAnswer', + + /** + * Triggers the download spotter answer event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.DownloadSpotterAnswer) + * ``` + */ + DownloadSpotterAnswer = 'DownloadSpotterAnswer', + + /** + * Triggers the download xlsx spotter answer event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.DownloadXlsxSpotterAnswer) + * ``` + */ + DownloadXlsxSpotterAnswer = 'DownloadXlsxSpotterAnswer', + + /** + * Triggers the download pdf spotter answer event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.DownloadPdfSpotterAnswer) + * ``` + */ + DownloadPdfSpotterAnswer = 'DownloadPdfSpotterAnswer', + + /** + * Triggers the download png spotter answer event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.DownloadPngSpotterAnswer) + * ``` + */ + DownloadPngSpotterAnswer = 'DownloadPngSpotterAnswer', + + /** + * Triggers the spotter answer chart switcher event for the Spotter experience. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.SpotterAnswerChartSwitcher) + * ``` + */ + SpotterAnswerChartSwitcher = 'SpotterAnswerChartSwitcher', } /** diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 6ecc37cc..66f6ba3e 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 1644, + "id": 1660, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 1756, + "id": 1772, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4683, + "line": 4846, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 1664, + "id": 1680, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3840, + "line": 4003, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 1657, + "id": 1673, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3769, + "line": 3932, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 1656, + "id": 1672, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3758, + "line": 3921, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 1662, + "id": 1678, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3821, + "line": 3984, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 1663, + "id": 1679, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3830, + "line": 3993, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 1665, + "id": 1681, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3850, + "line": 4013, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 1739, + "id": 1755, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4488, + "line": 4651, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 1712, + "id": 1728, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4210, + "line": 4373, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1753, + "id": 1769, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4650, + "line": 4813, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 1711, + "id": 1727, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4198, + "line": 4361, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1710, + "id": 1726, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4186, + "line": 4349, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1752, + "id": 1768, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4639, + "line": 4802, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 1723, + "id": 1739, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4323, + "line": 4486, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 1726, + "id": 1742, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4357, + "line": 4520, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 1731, + "id": 1747, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4412, + "line": 4575, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 1725, + "id": 1741, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4346, + "line": 4509, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 1728, + "id": 1744, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4380, + "line": 4543, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 1732, + "id": 1748, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4422, + "line": 4585, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 1729, + "id": 1745, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4391, + "line": 4554, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 1734, + "id": 1750, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4444, + "line": 4607, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 1730, + "id": 1746, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4401, + "line": 4564, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 1727, + "id": 1743, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4368, + "line": 4531, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 1733, + "id": 1749, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4432, + "line": 4595, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 1724, + "id": 1740, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4334, + "line": 4497, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 1765, + "id": 1781, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4781, + "line": 4944, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 1661, + "id": 1677, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3812, + "line": 3975, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 1660, + "id": 1676, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3803, + "line": 3966, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 1659, + "id": 1675, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3791, + "line": 3954, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 1772, + "id": 1788, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4857, + "line": 5020, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 1658, + "id": 1674, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3780, + "line": 3943, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 1703, + "id": 1719, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4137, + "line": 4300, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 1651, + "id": 1667, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3717, + "line": 3880, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1702, + "id": 1718, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4136, + "line": 4299, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1773, + "id": 1789, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4867, + "line": 5030, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 1750, + "id": 1766, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4614, + "line": 4777, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 1714, + "id": 1730, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4230, + "line": 4393, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1719, + "id": 1735, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4281, + "line": 4444, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 1770, + "id": 1786, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4838, + "line": 5001, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 1762, + "id": 1778, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4750, + "line": 4913, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 1764, + "id": 1780, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4769, + "line": 4932, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 1673, + "id": 1689, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3900, + "line": 4063, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1676, + "id": 1692, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3933, + "line": 4096, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1675, + "id": 1691, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3923, + "line": 4086, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1674, + "id": 1690, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3910, + "line": 4073, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1677, + "id": 1693, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3943, + "line": 4106, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1707, + "id": 1723, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4153, + "line": 4316, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 1701, + "id": 1717, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4126, + "line": 4289, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1700, + "id": 1716, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4117, + "line": 4280, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1685, + "id": 1701, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4019, + "line": 4182, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1650, + "id": 1666, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3708, + "line": 3871, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 1713, + "id": 1729, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4219, + "line": 4382, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 1705, + "id": 1721, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4142, + "line": 4305, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 1769, + "id": 1785, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4827, + "line": 4990, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 1742, + "id": 1758, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4521, + "line": 4684, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 1757, + "id": 1773, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4696, + "line": 4859, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 1682, + "id": 1698, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3987, + "line": 4150, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1686, + "id": 1702, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4027, + "line": 4190, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 1771, + "id": 1787, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4848, + "line": 5011, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 1740, + "id": 1756, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4498, + "line": 4661, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 1699, + "id": 1715, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1624,14 +1624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4106, + "line": 4269, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1679, + "id": 1695, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1649,14 +1649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3959, + "line": 4122, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1680, + "id": 1696, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1673,14 +1673,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3969, + "line": 4132, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 1763, + "id": 1779, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4760, + "line": 4923, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 1693, + "id": 1709, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1725,14 +1725,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4068, + "line": 4231, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1748, + "id": 1764, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1753,14 +1753,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4582, + "line": 4745, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 1649, + "id": 1665, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1777,14 +1777,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3699, + "line": 3862, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1746, + "id": 1762, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1801,14 +1801,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4562, + "line": 4725, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1718, + "id": 1734, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1829,14 +1829,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4271, + "line": 4434, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1761, + "id": 1777, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1857,14 +1857,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4739, + "line": 4902, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 1738, + "id": 1754, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4478, + "line": 4641, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 1744, + "id": 1760, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1912,14 +1912,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4542, + "line": 4705, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 1745, + "id": 1761, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1936,14 +1936,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4551, + "line": 4714, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 1755, + "id": 1771, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -1964,14 +1964,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4672, + "line": 4835, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 1758, + "id": 1774, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1992,14 +1992,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4707, + "line": 4870, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 1747, + "id": 1763, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4572, + "line": 4735, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 1696, + "id": 1712, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2044,14 +2044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4085, + "line": 4248, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1683, + "id": 1699, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2068,14 +2068,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3997, + "line": 4160, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1766, + "id": 1782, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2096,14 +2096,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4793, + "line": 4956, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 1709, + "id": 1725, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2121,14 +2121,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4176, + "line": 4339, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 1687, + "id": 1703, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2145,14 +2145,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4037, + "line": 4200, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1722, + "id": 1738, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2173,14 +2173,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4312, + "line": 4475, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 1754, + "id": 1770, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2201,14 +2201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4661, + "line": 4824, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 1736, + "id": 1752, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4458, + "line": 4621, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 1715, + "id": 1731, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2260,14 +2260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4240, + "line": 4403, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 1708, + "id": 1724, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2284,14 +2284,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4162, + "line": 4325, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 1737, + "id": 1753, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2312,14 +2312,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4468, + "line": 4631, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 1767, + "id": 1783, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2340,14 +2340,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4805, + "line": 4968, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 1743, + "id": 1759, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2368,14 +2368,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4533, + "line": 4696, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 1645, + "id": 1661, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2392,14 +2392,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3668, + "line": 3831, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1648, + "id": 1664, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2416,14 +2416,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3686, + "line": 3849, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1653, + "id": 1669, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2440,14 +2440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3731, + "line": 3894, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1654, + "id": 1670, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2464,14 +2464,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3740, + "line": 3903, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1706, + "id": 1722, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2479,14 +2479,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4143, + "line": 4306, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 1655, + "id": 1671, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2503,14 +2503,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3749, + "line": 3912, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1670, + "id": 1686, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2521,14 +2521,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3875, + "line": 4038, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 1741, + "id": 1757, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2549,14 +2549,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4508, + "line": 4671, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 1672, + "id": 1688, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2573,14 +2573,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3890, + "line": 4053, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1667, + "id": 1683, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2597,14 +2597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3863, + "line": 4026, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1768, + "id": 1784, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2625,14 +2625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4816, + "line": 4979, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 1698, + "id": 1714, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2649,14 +2649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4098, + "line": 4261, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1717, + "id": 1733, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2677,14 +2677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4261, + "line": 4424, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1716, + "id": 1732, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2705,14 +2705,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4250, + "line": 4413, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1720, + "id": 1736, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4291, + "line": 4454, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 1721, + "id": 1737, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4301, + "line": 4464, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 1749, + "id": 1765, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2793,14 +2793,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4601, + "line": 4764, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 1684, + "id": 1700, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4009, + "line": 4172, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 1760, + "id": 1776, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4729, + "line": 4892, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 1681, + "id": 1697, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -2869,14 +2869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3978, + "line": 4141, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1751, + "id": 1767, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4625, + "line": 4788, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 1759, + "id": 1775, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2925,7 +2925,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4718, + "line": 4881, "character": 4 } ], @@ -2937,124 +2937,124 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1756, - 1664, - 1657, - 1656, - 1662, - 1663, - 1665, - 1739, - 1712, - 1753, - 1711, - 1710, - 1752, - 1723, - 1726, - 1731, - 1725, - 1728, - 1732, - 1729, - 1734, - 1730, - 1727, - 1733, - 1724, - 1765, - 1661, - 1660, - 1659, 1772, - 1658, - 1703, - 1651, - 1702, - 1773, - 1750, - 1714, - 1719, - 1770, - 1762, - 1764, + 1680, 1673, - 1676, - 1675, - 1674, - 1677, - 1707, - 1701, - 1700, - 1685, - 1650, - 1713, - 1705, + 1672, + 1678, + 1679, + 1681, + 1755, + 1728, 1769, + 1727, + 1726, + 1768, + 1739, 1742, - 1757, - 1682, - 1686, - 1771, - 1740, - 1699, - 1679, - 1680, - 1763, - 1693, + 1747, + 1741, + 1744, 1748, - 1649, + 1745, + 1750, 1746, + 1743, + 1749, + 1740, + 1781, + 1677, + 1676, + 1675, + 1788, + 1674, + 1719, + 1667, 1718, - 1761, - 1738, - 1744, - 1745, - 1755, + 1789, + 1766, + 1730, + 1735, + 1786, + 1778, + 1780, + 1689, + 1692, + 1691, + 1690, + 1693, + 1723, + 1717, + 1716, + 1701, + 1666, + 1729, + 1721, + 1785, 1758, - 1747, + 1773, + 1698, + 1702, + 1787, + 1756, + 1715, + 1695, 1696, - 1683, - 1766, + 1779, 1709, - 1687, - 1722, + 1764, + 1665, + 1762, + 1734, + 1777, 1754, + 1760, + 1761, + 1771, + 1774, + 1763, + 1712, + 1699, + 1782, + 1725, + 1703, + 1738, + 1770, + 1752, + 1731, + 1724, + 1753, + 1783, + 1759, + 1661, + 1664, + 1669, + 1670, + 1722, + 1671, + 1686, + 1757, + 1688, + 1683, + 1784, + 1714, + 1733, + 1732, 1736, - 1715, - 1708, 1737, + 1765, + 1700, + 1776, + 1697, 1767, - 1743, - 1645, - 1648, - 1653, - 1654, - 1706, - 1655, - 1670, - 1741, - 1672, - 1667, - 1768, - 1698, - 1717, - 1716, - 1720, - 1721, - 1749, - 1684, - 1760, - 1681, - 1751, - 1759 + 1775 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3659, + "line": 3822, "character": 12 } ] @@ -3590,7 +3590,7 @@ ] }, { - "id": 1774, + "id": 1790, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3600,7 +3600,7 @@ }, "children": [ { - "id": 1777, + "id": 1793, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3608,14 +3608,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4888, + "line": 5051, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 1775, + "id": 1791, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3623,14 +3623,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4886, + "line": 5049, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 1776, + "id": 1792, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3638,7 +3638,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4887, + "line": 5050, "character": 4 } ], @@ -3650,22 +3650,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1777, - 1775, - 1776 + 1793, + 1791, + 1792 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4885, + "line": 5048, "character": 12 } ] }, { - "id": 1640, + "id": 1656, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -3675,7 +3675,7 @@ }, "children": [ { - "id": 1642, + "id": 1658, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -3686,14 +3686,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3504, + "line": 3667, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 1643, + "id": 1659, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -3704,14 +3704,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3508, + "line": 3671, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 1641, + "id": 1657, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -3722,7 +3722,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3500, + "line": 3663, "character": 4 } ], @@ -3734,16 +3734,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1642, - 1643, - 1641 + 1658, + 1659, + 1657 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3496, + "line": 3659, "character": 12 } ] @@ -5955,7 +5955,7 @@ ] }, { - "id": 2119, + "id": 2135, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -5965,7 +5965,7 @@ }, "children": [ { - "id": 2123, + "id": 2139, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -5988,7 +5988,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2127, + "id": 2143, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6012,7 +6012,7 @@ "defaultValue": "\"create\"" }, { - "id": 2121, + "id": 2137, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6035,7 +6035,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2126, + "id": 2142, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6058,7 +6058,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2122, + "id": 2138, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6081,7 +6081,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2124, + "id": 2140, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6104,7 +6104,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2120, + "id": 2136, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6127,7 +6127,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2125, + "id": 2141, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6150,7 +6150,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2128, + "id": 2144, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6179,15 +6179,15 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2123, - 2127, - 2121, - 2126, - 2122, - 2124, - 2120, - 2125, - 2128 + 2139, + 2143, + 2137, + 2142, + 2138, + 2140, + 2136, + 2141, + 2144 ] } ], @@ -6200,14 +6200,14 @@ ] }, { - "id": 2294, + "id": 2310, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2296, + "id": 2312, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -6222,7 +6222,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2297, + "id": 2313, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -6237,7 +6237,7 @@ "defaultValue": "\"none\"" }, { - "id": 2295, + "id": 2311, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -6257,9 +6257,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2296, - 2297, - 2295 + 2312, + 2313, + 2311 ] } ], @@ -6272,7 +6272,7 @@ ] }, { - "id": 2129, + "id": 2145, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -6288,7 +6288,7 @@ }, "children": [ { - "id": 2132, + "id": 2148, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -6306,7 +6306,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2135, + "id": 2151, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -6324,7 +6324,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2133, + "id": 2149, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -6342,7 +6342,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2130, + "id": 2146, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -6360,7 +6360,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2134, + "id": 2150, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -6378,7 +6378,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2131, + "id": 2147, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -6401,12 +6401,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2132, - 2135, - 2133, - 2130, - 2134, - 2131 + 2148, + 2151, + 2149, + 2146, + 2150, + 2147 ] } ], @@ -6502,7 +6502,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3375, + "line": 3388, "character": 4 } ], @@ -6611,6 +6611,54 @@ ], "defaultValue": "\"onDeleteAnswer\"" }, + { + "id": 1644, + "name": "DeleteLastSpotterPrompt", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the delete last spotter prompt event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.DeleteLastSpotterPrompt)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3552, + "character": 4 + } + ], + "defaultValue": "\"DeleteLastSpotterPrompt\"" + }, + { + "id": 1646, + "name": "DeleteSpotterPrompt", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the delete spotter prompt event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.DeleteSpotterPrompt)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3570, + "character": 4 + } + ], + "defaultValue": "\"DeleteSpotterPrompt\"" + }, { "id": 1613, "name": "Download", @@ -6756,6 +6804,102 @@ ], "defaultValue": "\"downloadAsXLSX\"" }, + { + "id": 1653, + "name": "DownloadPdfSpotterAnswer", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the download pdf spotter answer event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.DownloadPdfSpotterAnswer)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3633, + "character": 4 + } + ], + "defaultValue": "\"DownloadPdfSpotterAnswer\"" + }, + { + "id": 1654, + "name": "DownloadPngSpotterAnswer", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the download png spotter answer event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.DownloadPngSpotterAnswer)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3642, + "character": 4 + } + ], + "defaultValue": "\"DownloadPngSpotterAnswer\"" + }, + { + "id": 1651, + "name": "DownloadSpotterAnswer", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the download spotter answer event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.DownloadSpotterAnswer)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3615, + "character": 4 + } + ], + "defaultValue": "\"DownloadSpotterAnswer\"" + }, + { + "id": 1652, + "name": "DownloadXlsxSpotterAnswer", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the download xlsx spotter answer event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.DownloadXlsxSpotterAnswer)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3624, + "character": 4 + } + ], + "defaultValue": "\"DownloadXlsxSpotterAnswer\"" + }, { "id": 1581, "name": "DrillDown", @@ -6842,6 +6986,54 @@ ], "defaultValue": "\"edit\"" }, + { + "id": 1645, + "name": "EditLastSpotterPrompt", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the edit last spotter prompt event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.EditLastSpotterPrompt)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3561, + "character": 4 + } + ], + "defaultValue": "\"EditLastSpotterPrompt\"" + }, + { + "id": 1647, + "name": "EditSpotterAnswer", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the edit spotter answer event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.EditSpotterAnswer)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3579, + "character": 4 + } + ], + "defaultValue": "\"EditSpotterAnswer\"" + }, { "id": 1598, "name": "EditTML", @@ -6939,14 +7131,15 @@ "flags": {}, "comment": { "shortText": "Get the Answer session for a Search or\nLiveboard visualization.", + "text": "Note: This event is not typically used directly. Instead, use the\n`getAnswerService()` method on the embed instance to get an AnswerService\nobject that provides a more convenient interface for working with answers.\n", "tags": [ { "tag": "example", - "text": "\n```js\nconst {session} = await embed.trigger(\n HostEvent.GetAnswerSession, {\n vizId: '123', // For Liveboard Visualization.\n })\n```" + "text": "\n```js\n// Preferred way to get an AnswerService\nconst service = await embed.getAnswerService();\n\n// Alternative direct usage (not recommended)\nconst {session} = await embed.trigger(\n HostEvent.GetAnswerSession, {\n vizId: '123', // For Liveboard Visualization.\n })\n```" }, { "tag": "example", - "text": "\n```js\nconst {session} = await embed.trigger( HostEvent.GetAnswerSession )\n```" + "text": "\n```js\n// Preferred way to get an AnswerService\nconst service = await embed.getAnswerService();\n\n// Alternative direct usage (not recommended)\nconst {session} = await embed.trigger( HostEvent.GetAnswerSession )\n```" }, { "tag": "version", @@ -6957,7 +7150,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3365, + "line": 3378, "character": 4 } ], @@ -7037,7 +7230,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3424, + "line": 3437, "character": 4 } ], @@ -7171,6 +7364,30 @@ ], "defaultValue": "\"makeACopy\"" }, + { + "id": 1650, + "name": "MakeACopySpotterAnswer", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the make a copy spotter answer event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.MakeACopySpotterAnswer)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3606, + "character": 4 + } + ], + "defaultValue": "\"MakeACopySpotterAnswer\"" + }, { "id": 1605, "name": "ManageMonitor", @@ -7375,6 +7592,30 @@ ], "defaultValue": "\"pin\"" }, + { + "id": 1649, + "name": "PinSpotterAnswer", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the pin spotter answer event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.PinSpotterAnswer)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3597, + "character": 4 + } + ], + "defaultValue": "\"PinSpotterAnswer\"" + }, { "id": 1608, "name": "Present", @@ -7408,6 +7649,34 @@ ], "defaultValue": "\"present\"" }, + { + "id": 1642, + "name": "PreviewSpotterData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the preview spotter data event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.PreviewSpotterData, {\n query: 'sales by region'\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.8.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3534, + "character": 4 + } + ], + "defaultValue": "\"PreviewSpotterData\"" + }, { "id": 1602, "name": "Remove", @@ -7495,7 +7764,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3400, + "line": 3413, "character": 4 } ], @@ -7529,6 +7798,30 @@ ], "defaultValue": "\"resetSearch\"" }, + { + "id": 1643, + "name": "ResetSpotterConversation", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the reset spotter conversation event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.ResetSpotterConversation)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3543, + "character": 4 + } + ], + "defaultValue": "\"ResetSpotterConversation\"" + }, { "id": 1618, "name": "Save", @@ -7584,12 +7877,36 @@ "sources": [ { "fileName": "types.ts", - "line": 3463, + "line": 3476, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, + { + "id": 1648, + "name": "SaveSpotterAnswer", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the save spotter answer event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.SaveSpotterAnswer)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3588, + "character": 4 + } + ], + "defaultValue": "\"SaveSpotterAnswer\"" + }, { "id": 1595, "name": "Schedule", @@ -7685,6 +8002,34 @@ ], "defaultValue": "\"search\"" }, + { + "id": 1640, + "name": "SearchQuery", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the search query event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.SearchQuery, {\n query: 'sales by region'\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.8.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3513, + "character": 4 + } + ], + "defaultValue": "\"SearchQuery\"" + }, { "id": 1586, "name": "SetActiveTab", @@ -7911,6 +8256,30 @@ ], "defaultValue": "\"spotIQAnalyze\"" }, + { + "id": 1655, + "name": "SpotterAnswerChartSwitcher", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the spotter answer chart switcher event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.SpotterAnswerChartSwitcher)\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3651, + "character": 4 + } + ], + "defaultValue": "\"SpotterAnswerChartSwitcher\"" + }, { "id": 1620, "name": "SyncToOtherApps", @@ -8004,7 +8373,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3488, + "line": 3501, "character": 4 } ], @@ -8032,7 +8401,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3391, + "line": 3404, "character": 4 } ], @@ -8102,7 +8471,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3414, + "line": 3427, "character": 4 } ], @@ -8126,7 +8495,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3432, + "line": 3445, "character": 4 } ], @@ -8208,6 +8577,30 @@ ], "defaultValue": "\"updateSageQuery\"" }, + { + "id": 1641, + "name": "UpdateSpotterQuery", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the edit spotter query event for the Spotter experience.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.EditSpotterQuery, {\n query: 'sales by region'\n})\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3522, + "character": 4 + } + ], + "defaultValue": "\"UpdateSpotterQuery\"" + }, { "id": 1599, "name": "UpdateTML", @@ -8275,13 +8668,21 @@ 1607, 1604, 1611, + 1644, + 1646, 1613, 1615, 1600, 1614, 1616, + 1653, + 1654, + 1651, + 1652, 1581, 1606, + 1645, + 1647, 1598, 1603, 1597, @@ -8293,21 +8694,27 @@ 1625, 1594, 1601, + 1650, 1605, 1621, 1588, 1589, 1593, + 1649, 1608, + 1642, 1602, 1591, 1632, 1622, + 1643, 1618, 1637, + 1648, 1595, 1596, 1580, + 1640, 1586, 1627, 1626, @@ -8315,6 +8722,7 @@ 1617, 1610, 1612, + 1655, 1620, 1619, 1639, @@ -8324,6 +8732,7 @@ 1635, 1587, 1628, + 1641, 1599, 1592 ] @@ -8338,7 +8747,7 @@ ] }, { - "id": 2328, + "id": 2344, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -8354,7 +8763,7 @@ }, "children": [ { - "id": 2331, + "id": 2347, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -8372,7 +8781,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2332, + "id": 2348, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -8390,7 +8799,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2329, + "id": 2345, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -8408,7 +8817,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2333, + "id": 2349, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8426,7 +8835,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2330, + "id": 2346, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -8449,11 +8858,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2331, - 2332, - 2329, - 2333, - 2330 + 2347, + 2348, + 2345, + 2349, + 2346 ] } ], @@ -8466,7 +8875,7 @@ ] }, { - "id": 2271, + "id": 2287, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -8476,7 +8885,7 @@ }, "children": [ { - "id": 2276, + "id": 2292, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -8497,14 +8906,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5010, + "line": 5173, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2273, + "id": 2289, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -8525,14 +8934,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4971, + "line": 5134, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2275, + "id": 2291, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -8553,14 +8962,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4996, + "line": 5159, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2272, + "id": 2288, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -8581,14 +8990,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4959, + "line": 5122, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2277, + "id": 2293, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -8609,14 +9018,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5022, + "line": 5185, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2274, + "id": 2290, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -8637,7 +9046,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4983, + "line": 5146, "character": 4 } ], @@ -8649,19 +9058,19 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2276, - 2273, - 2275, - 2272, - 2277, - 2274 + 2292, + 2289, + 2291, + 2288, + 2293, + 2290 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4946, + "line": 5109, "character": 12 } ] @@ -8827,14 +9236,14 @@ ] }, { - "id": 2108, + "id": 2124, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2109, + "id": 2125, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -8842,14 +9251,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4875, + "line": 5038, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2111, + "id": 2127, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8857,14 +9266,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4877, + "line": 5040, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2110, + "id": 2126, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8872,14 +9281,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4876, + "line": 5039, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2112, + "id": 2128, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8887,7 +9296,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4878, + "line": 5041, "character": 4 } ], @@ -8899,17 +9308,17 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2109, - 2111, - 2110, - 2112 + 2125, + 2127, + 2126, + 2128 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4874, + "line": 5037, "character": 12 } ] @@ -9227,14 +9636,14 @@ ] }, { - "id": 2321, + "id": 2337, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2326, + "id": 2342, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -9249,7 +9658,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2325, + "id": 2341, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -9264,7 +9673,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2324, + "id": 2340, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -9279,7 +9688,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2327, + "id": 2343, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -9294,7 +9703,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2322, + "id": 2338, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -9309,7 +9718,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2323, + "id": 2339, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -9329,12 +9738,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2326, - 2325, - 2324, - 2327, - 2322, - 2323 + 2342, + 2341, + 2340, + 2343, + 2338, + 2339 ] } ], @@ -9353,15 +9762,16 @@ "kindString": "Class", "flags": {}, "comment": { - "shortText": "Class representing the answer service provided with the\ncustom action payload. This service could be used to run\ngraphql queries in the context of the answer on which the\ncustom action was triggered.", + "shortText": "AnswerService provides a simple way to work with ThoughtSpot Answers.", + "text": "This service allows you to interact with ThoughtSpot Answers programmatically,\nmaking it easy to customize visualizations, filter data, and extract insights\ndirectly from your application.\n\nYou can use this service to:\n- Add or remove columns from Answers (`addColumns`, `removeColumns`, `addColumnsByName`)\n- Apply filters to Answers (`addFilter`)\n- Get data from Answers in different formats (JSON, CSV, PNG) (`fetchData`, `fetchCSVBlob`, `fetchPNGBlob`)\n- Get data for specific points in visualizations (`getUnderlyingDataForPoint`)\n- Run custom queries (`executeQuery`)\n- Add visualizations to liveboards (`addDisplayedVizToLiveboard`)\n", "tags": [ { "tag": "example", - "text": "\n```js\n embed.on(EmbedEvent.CustomAction, e => {\n const underlying = await e.answerService.getUnderlyingDataForPoint([\n 'col name 1'\n ]);\n const data = await underlying.fetchData(0, 100);\n })\n```" + "text": "\n```js\n// Get the answer service\nembed.on(EmbedEvent.Data, async (e) => {\n const service = await embed.getAnswerService();\n \n // Add columns to the answer\n await service.addColumnsByName([\"Sales\", \"Region\"]);\n \n // Get the data\n const data = await service.fetchData();\n console.log(data);\n});\n```\n" }, { "tag": "example", - "text": "\n```js\nembed.on(EmbedEvent.Data, async (e) => {\n const service = await embed.getAnswerService();\n await service.addColumns([\n \"\"\n ]);\n console.log(await service.fetchData());\n});\n```" + "text": "\n```js\n// Get data for a point in a visualization\nembed.on(EmbedEvent.CustomAction, async (e) => {\n const underlying = await e.answerService.getUnderlyingDataForPoint([\n 'Product Name',\n 'Sales Amount'\n ]);\n \n const data = await underlying.fetchData(0, 100);\n console.log(data);\n});\n```\n" }, { "tag": "version", @@ -9386,7 +9796,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 67, + "line": 87, "character": 4 } ], @@ -9453,7 +9863,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2298, + "id": 2314, "name": "VizPoint" } } @@ -9478,7 +9888,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 108, + "line": 128, "character": 17 } ], @@ -9534,7 +9944,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 132, + "line": 152, "character": 17 } ], @@ -9595,7 +10005,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 385, + "line": 405, "character": 17 } ], @@ -9643,7 +10053,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 145, + "line": 165, "character": 17 } ], @@ -9741,7 +10151,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 335, + "line": 355, "character": 17 } ], @@ -9810,7 +10220,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 214, + "line": 234, "character": 17 } ], @@ -9879,7 +10289,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 186, + "line": 206, "character": 17 } ], @@ -9986,7 +10396,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 230, + "line": 250, "character": 17 } ], @@ -10070,7 +10480,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 358, + "line": 378, "character": 17 } ], @@ -10105,7 +10515,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 248, + "line": 268, "character": 11 } ], @@ -10166,7 +10576,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 259, + "line": 279, "character": 11 } ], @@ -10241,7 +10651,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 172, + "line": 192, "character": 17 } ], @@ -10276,7 +10686,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 354, + "line": 374, "character": 11 } ], @@ -10310,7 +10720,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 81, + "line": 101, "character": 17 } ], @@ -10348,7 +10758,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 369, + "line": 389, "character": 17 } ], @@ -10383,7 +10793,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 280, + "line": 300, "character": 17 } ], @@ -10467,7 +10877,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 94, + "line": 114, "character": 17 } ], @@ -10523,7 +10933,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 397, + "line": 417, "character": 11 } ], @@ -10591,7 +11001,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 55, + "line": 75, "character": 13 } ] @@ -10641,7 +11051,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2136, + "id": 2152, "name": "DOMSelector" } }, @@ -10653,7 +11063,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2034, + "id": 2050, "name": "AppViewConfig" } } @@ -11264,7 +11674,7 @@ }, "type": { "type": "reference", - "id": 2140, + "id": 2156, "name": "MessageCallback" } } @@ -11343,7 +11753,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2140, + "id": 2156, "name": "MessageCallback" } }, @@ -11355,7 +11765,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2137, + "id": 2153, "name": "MessageOptions" }, "defaultValue": "..." @@ -11785,7 +12195,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2321, + "id": 2337, "name": "UIPassthroughEvent" } } @@ -12720,7 +13130,7 @@ }, "type": { "type": "reference", - "id": 2140, + "id": 2156, "name": "MessageCallback" } } @@ -12802,7 +13212,7 @@ }, "type": { "type": "reference", - "id": 2140, + "id": 2156, "name": "MessageCallback" } }, @@ -12817,7 +13227,7 @@ }, "type": { "type": "reference", - "id": 2137, + "id": 2153, "name": "MessageOptions" }, "defaultValue": "..." @@ -13257,7 +13667,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2321, + "id": 2337, "name": "UIPassthroughEvent" } } @@ -13420,7 +13830,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2136, + "id": 2152, "name": "DOMSelector" } }, @@ -13432,7 +13842,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1920, + "id": 1936, "name": "LiveboardViewConfig" } } @@ -14034,7 +14444,7 @@ }, "type": { "type": "reference", - "id": 2140, + "id": 2156, "name": "MessageCallback" } } @@ -14113,7 +14523,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2140, + "id": 2156, "name": "MessageCallback" } }, @@ -14125,7 +14535,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2137, + "id": 2153, "name": "MessageOptions" }, "defaultValue": "..." @@ -14555,7 +14965,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2321, + "id": 2337, "name": "UIPassthroughEvent" } } @@ -14720,7 +15130,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2136, + "id": 2152, "name": "DOMSelector" } }, @@ -14732,7 +15142,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1986, + "id": 2002, "name": "SageViewConfig" } } @@ -15266,7 +15676,7 @@ }, "type": { "type": "reference", - "id": 2140, + "id": 2156, "name": "MessageCallback" } } @@ -15345,7 +15755,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2140, + "id": 2156, "name": "MessageCallback" } }, @@ -15357,7 +15767,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2137, + "id": 2153, "name": "MessageOptions" }, "defaultValue": "..." @@ -15788,7 +16198,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2321, + "id": 2337, "name": "UIPassthroughEvent" } } @@ -15963,7 +16373,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1881, + "id": 1897, "name": "SearchBarViewConfig" } } @@ -16464,7 +16874,7 @@ }, "type": { "type": "reference", - "id": 2140, + "id": 2156, "name": "MessageCallback" } } @@ -16546,7 +16956,7 @@ }, "type": { "type": "reference", - "id": 2140, + "id": 2156, "name": "MessageCallback" } }, @@ -16561,7 +16971,7 @@ }, "type": { "type": "reference", - "id": 2137, + "id": 2153, "name": "MessageOptions" }, "defaultValue": "..." @@ -17004,7 +17414,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2321, + "id": 2337, "name": "UIPassthroughEvent" } } @@ -17163,7 +17573,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2136, + "id": 2152, "name": "DOMSelector" } }, @@ -17175,7 +17585,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1826, + "id": 1842, "name": "SearchViewConfig" } } @@ -17708,7 +18118,7 @@ }, "type": { "type": "reference", - "id": 2140, + "id": 2156, "name": "MessageCallback" } } @@ -17790,7 +18200,7 @@ }, "type": { "type": "reference", - "id": 2140, + "id": 2156, "name": "MessageCallback" } }, @@ -17805,7 +18215,7 @@ }, "type": { "type": "reference", - "id": 2137, + "id": 2153, "name": "MessageOptions" }, "defaultValue": "..." @@ -18248,7 +18658,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2321, + "id": 2337, "name": "UIPassthroughEvent" } } @@ -18364,7 +18774,7 @@ ] }, { - "id": 2034, + "id": 2050, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -18380,7 +18790,7 @@ }, "children": [ { - "id": 2069, + "id": 2085, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -18410,20 +18820,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2070, + "id": 2086, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2071, + "id": 2087, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2072, + "id": 2088, "name": "key", "kind": 32768, "flags": {}, @@ -18459,7 +18869,7 @@ } }, { - "id": 2105, + "id": 2121, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -18500,7 +18910,7 @@ } }, { - "id": 2058, + "id": 2074, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -18537,7 +18947,7 @@ } }, { - "id": 2084, + "id": 2100, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -18566,7 +18976,7 @@ ], "type": { "type": "reference", - "id": 1774, + "id": 1790, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -18575,7 +18985,7 @@ } }, { - "id": 2068, + "id": 2084, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -18604,7 +19014,7 @@ ], "type": { "type": "reference", - "id": 2153, + "id": 2169, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -18613,7 +19023,7 @@ } }, { - "id": 2059, + "id": 2075, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -18650,7 +19060,7 @@ } }, { - "id": 2106, + "id": 2122, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -18691,7 +19101,7 @@ } }, { - "id": 2037, + "id": 2053, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -18728,7 +19138,7 @@ } }, { - "id": 2087, + "id": 2103, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -18765,7 +19175,7 @@ } }, { - "id": 2078, + "id": 2094, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -18802,7 +19212,7 @@ } }, { - "id": 2077, + "id": 2093, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -18833,7 +19243,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -18843,7 +19253,7 @@ } }, { - "id": 2101, + "id": 2117, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -18884,7 +19294,7 @@ } }, { - "id": 2060, + "id": 2076, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -18921,7 +19331,7 @@ } }, { - "id": 2057, + "id": 2073, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -18954,7 +19364,7 @@ } }, { - "id": 2107, + "id": 2123, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -18995,7 +19405,7 @@ } }, { - "id": 2038, + "id": 2054, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -19031,7 +19441,7 @@ } }, { - "id": 2049, + "id": 2065, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -19068,7 +19478,7 @@ } }, { - "id": 2104, + "id": 2120, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -19105,7 +19515,7 @@ } }, { - "id": 2100, + "id": 2116, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -19143,7 +19553,7 @@ } }, { - "id": 2103, + "id": 2119, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -19181,7 +19591,7 @@ } }, { - "id": 2089, + "id": 2105, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -19218,7 +19628,7 @@ } }, { - "id": 2093, + "id": 2109, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -19247,7 +19657,7 @@ ], "type": { "type": "reference", - "id": 2113, + "id": 2129, "name": "FrameParams" }, "inheritedFrom": { @@ -19256,7 +19666,7 @@ } }, { - "id": 2050, + "id": 2066, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -19290,7 +19700,7 @@ } }, { - "id": 2079, + "id": 2095, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -19325,7 +19735,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -19335,7 +19745,7 @@ } }, { - "id": 2075, + "id": 2091, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -19366,7 +19776,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2119, + "id": 2135, "name": "HomeLeftNavItem" } }, @@ -19376,7 +19786,7 @@ } }, { - "id": 2073, + "id": 2089, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -19408,7 +19818,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2129, + "id": 2145, "name": "HomepageModule" } }, @@ -19418,7 +19828,7 @@ } }, { - "id": 2076, + "id": 2092, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -19450,7 +19860,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2328, + "id": 2344, "name": "ListPageColumns" } }, @@ -19460,7 +19870,7 @@ } }, { - "id": 2081, + "id": 2097, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -19500,7 +19910,7 @@ } }, { - "id": 2042, + "id": 2058, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -19538,7 +19948,7 @@ } }, { - "id": 2039, + "id": 2055, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -19575,7 +19985,7 @@ } }, { - "id": 2036, + "id": 2052, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -19613,7 +20023,7 @@ } }, { - "id": 2065, + "id": 2081, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -19650,7 +20060,7 @@ } }, { - "id": 2051, + "id": 2067, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -19687,7 +20097,7 @@ } }, { - "id": 2041, + "id": 2057, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -19724,7 +20134,7 @@ } }, { - "id": 2040, + "id": 2056, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -19761,7 +20171,7 @@ } }, { - "id": 2047, + "id": 2063, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -19797,7 +20207,7 @@ } }, { - "id": 2043, + "id": 2059, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -19835,7 +20245,7 @@ } }, { - "id": 2062, + "id": 2078, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -19860,12 +20270,12 @@ ], "type": { "type": "reference", - "id": 2294, + "id": 2310, "name": "HomePageSearchBarMode" } }, { - "id": 2098, + "id": 2114, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -19902,7 +20312,7 @@ } }, { - "id": 2063, + "id": 2079, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -19939,7 +20349,7 @@ } }, { - "id": 2056, + "id": 2072, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -19972,7 +20382,7 @@ } }, { - "id": 2061, + "id": 2077, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -20001,7 +20411,7 @@ } }, { - "id": 2067, + "id": 2083, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -20038,7 +20448,7 @@ } }, { - "id": 2085, + "id": 2101, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -20075,7 +20485,7 @@ } }, { - "id": 2083, + "id": 2099, "name": "locale", "kind": 1024, "kindString": "Property", @@ -20112,7 +20522,7 @@ } }, { - "id": 2054, + "id": 2070, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -20149,7 +20559,7 @@ } }, { - "id": 2055, + "id": 2071, "name": "modularHomeExperienceV3", "kind": 1024, "kindString": "Property", @@ -20186,7 +20596,7 @@ } }, { - "id": 2088, + "id": 2104, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -20223,7 +20633,7 @@ } }, { - "id": 2045, + "id": 2061, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -20258,7 +20668,7 @@ } }, { - "id": 2044, + "id": 2060, "name": "path", "kind": 1024, "kindString": "Property", @@ -20292,7 +20702,7 @@ } }, { - "id": 2091, + "id": 2107, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -20329,7 +20739,7 @@ } }, { - "id": 2090, + "id": 2106, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -20366,7 +20776,7 @@ } }, { - "id": 2074, + "id": 2090, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -20398,7 +20808,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2129, + "id": 2145, "name": "HomepageModule" } }, @@ -20408,7 +20818,7 @@ } }, { - "id": 2096, + "id": 2112, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -20449,7 +20859,7 @@ } }, { - "id": 2097, + "id": 2113, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -20480,7 +20890,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2268, + "id": 2284, "name": "RuntimeParameter" } }, @@ -20490,7 +20900,7 @@ } }, { - "id": 2082, + "id": 2098, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -20527,7 +20937,7 @@ } }, { - "id": 2053, + "id": 2069, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -20564,7 +20974,7 @@ } }, { - "id": 2066, + "id": 2082, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -20601,7 +21011,7 @@ } }, { - "id": 2052, + "id": 2068, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -20638,7 +21048,7 @@ } }, { - "id": 2064, + "id": 2080, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -20675,7 +21085,7 @@ } }, { - "id": 2035, + "id": 2051, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -20712,7 +21122,7 @@ } }, { - "id": 2046, + "id": 2062, "name": "tag", "kind": 1024, "kindString": "Property", @@ -20745,7 +21155,7 @@ } }, { - "id": 2080, + "id": 2096, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -20781,7 +21191,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -20796,69 +21206,69 @@ "title": "Properties", "kind": 1024, "children": [ - 2069, + 2085, + 2121, + 2074, + 2100, + 2084, + 2075, + 2122, + 2053, + 2103, + 2094, + 2093, + 2117, + 2076, + 2073, + 2123, + 2054, + 2065, + 2120, + 2116, + 2119, 2105, + 2109, + 2066, + 2095, + 2091, + 2089, + 2092, + 2097, 2058, - 2084, - 2068, + 2055, + 2052, + 2081, + 2067, + 2057, + 2056, + 2063, 2059, - 2106, - 2037, - 2087, 2078, + 2114, + 2079, + 2072, 2077, + 2083, 2101, - 2060, - 2057, - 2107, - 2038, - 2049, + 2099, + 2070, + 2071, 2104, - 2100, - 2103, - 2089, - 2093, - 2050, - 2079, - 2075, - 2073, - 2076, - 2081, - 2042, - 2039, - 2036, - 2065, - 2051, - 2041, - 2040, - 2047, - 2043, - 2062, - 2098, - 2063, - 2056, 2061, - 2067, - 2085, - 2083, - 2054, - 2055, - 2088, - 2045, - 2044, - 2091, + 2060, + 2107, + 2106, 2090, - 2074, - 2096, - 2097, + 2112, + 2113, + 2098, + 2069, 2082, - 2053, - 2066, - 2052, - 2064, - 2035, - 2046, - 2080 + 2068, + 2080, + 2051, + 2062, + 2096 ] } ], @@ -21750,7 +22160,7 @@ ], "type": { "type": "reference", - "id": 1774, + "id": 1790, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -21788,7 +22198,7 @@ ], "type": { "type": "reference", - "id": 2153, + "id": 2169, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -21943,7 +22353,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -22214,7 +22624,7 @@ ], "type": { "type": "reference", - "id": 2113, + "id": 2129, "name": "FrameParams" }, "inheritedFrom": { @@ -22258,7 +22668,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -22299,7 +22709,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2119, + "id": 2135, "name": "HomeLeftNavItem" } }, @@ -22341,7 +22751,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2129, + "id": 2145, "name": "HomepageModule" } }, @@ -22383,7 +22793,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2328, + "id": 2344, "name": "ListPageColumns" } }, @@ -22687,7 +23097,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2129, + "id": 2145, "name": "HomepageModule" } }, @@ -22769,7 +23179,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2268, + "id": 2284, "name": "RuntimeParameter" } }, @@ -22852,7 +23262,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -23145,7 +23555,7 @@ ], "type": { "type": "reference", - "id": 1774, + "id": 1790, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -23183,7 +23593,7 @@ ], "type": { "type": "reference", - "id": 2153, + "id": 2169, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -23371,7 +23781,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -23642,7 +24052,7 @@ ], "type": { "type": "reference", - "id": 2113, + "id": 2129, "name": "FrameParams" }, "inheritedFrom": { @@ -23686,7 +24096,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -23727,7 +24137,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2119, + "id": 2135, "name": "HomeLeftNavItem" } }, @@ -23769,7 +24179,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2129, + "id": 2145, "name": "HomepageModule" } }, @@ -23811,7 +24221,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2328, + "id": 2344, "name": "ListPageColumns" } }, @@ -24181,7 +24591,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2129, + "id": 2145, "name": "HomepageModule" } }, @@ -24263,7 +24673,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2268, + "id": 2284, "name": "RuntimeParameter" } }, @@ -24402,7 +24812,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -24535,7 +24945,7 @@ ] }, { - "id": 2301, + "id": 2317, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -24550,7 +24960,7 @@ }, "children": [ { - "id": 2302, + "id": 2318, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -24560,21 +24970,21 @@ "sources": [ { "fileName": "types.ts", - "line": 4919, + "line": 5082, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2303, + "id": 2319, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2304, + "id": 2320, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -24582,18 +24992,18 @@ "sources": [ { "fileName": "types.ts", - "line": 4920, + "line": 5083, "character": 8 } ], "type": { "type": "reference", - "id": 2298, + "id": 2314, "name": "VizPoint" } }, { - "id": 2305, + "id": 2321, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -24601,7 +25011,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4921, + "line": 5084, "character": 8 } ], @@ -24609,7 +25019,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2298, + "id": 2314, "name": "VizPoint" } } @@ -24620,8 +25030,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2304, - 2305 + 2320, + 2321 ] } ] @@ -24629,7 +25039,7 @@ } }, { - "id": 2306, + "id": 2322, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -24637,21 +25047,21 @@ "sources": [ { "fileName": "types.ts", - "line": 4923, + "line": 5086, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2307, + "id": 2323, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2315, + "id": 2331, "name": "columns", "kind": 1024, "kindString": "Property", @@ -24659,7 +25069,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4931, + "line": 5094, "character": 8 } ], @@ -24672,7 +25082,7 @@ } }, { - "id": 2316, + "id": 2332, "name": "data", "kind": 1024, "kindString": "Property", @@ -24680,7 +25090,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4932, + "line": 5095, "character": 8 } ], @@ -24693,7 +25103,7 @@ } }, { - "id": 2309, + "id": 2325, "name": "id", "kind": 1024, "kindString": "Property", @@ -24701,7 +25111,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4925, + "line": 5088, "character": 8 } ], @@ -24711,7 +25121,7 @@ } }, { - "id": 2308, + "id": 2324, "name": "name", "kind": 1024, "kindString": "Property", @@ -24719,7 +25129,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4924, + "line": 5087, "character": 8 } ], @@ -24729,7 +25139,7 @@ } }, { - "id": 2310, + "id": 2326, "name": "sources", "kind": 1024, "kindString": "Property", @@ -24737,21 +25147,21 @@ "sources": [ { "fileName": "types.ts", - "line": 4926, + "line": 5089, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2311, + "id": 2327, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2312, + "id": 2328, "name": "header", "kind": 1024, "kindString": "Property", @@ -24759,21 +25169,21 @@ "sources": [ { "fileName": "types.ts", - "line": 4927, + "line": 5090, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2313, + "id": 2329, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2314, + "id": 2330, "name": "guid", "kind": 1024, "kindString": "Property", @@ -24781,7 +25191,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4928, + "line": 5091, "character": 16 } ], @@ -24796,7 +25206,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2314 + 2330 ] } ] @@ -24809,7 +25219,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2312 + 2328 ] } ] @@ -24822,23 +25232,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2315, - 2316, - 2309, - 2308, - 2310 + 2331, + 2332, + 2325, + 2324, + 2326 ] } ], "indexSignature": { - "id": 2317, + "id": 2333, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2318, + "id": 2334, "name": "key", "kind": 32768, "flags": {}, @@ -24857,7 +25267,7 @@ } }, { - "id": 2319, + "id": 2335, "name": "session", "kind": 1024, "kindString": "Property", @@ -24865,7 +25275,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4935, + "line": 5098, "character": 4 } ], @@ -24876,7 +25286,7 @@ } }, { - "id": 2320, + "id": 2336, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -24886,7 +25296,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4936, + "line": 5099, "character": 4 } ], @@ -24901,23 +25311,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2302, - 2306, - 2319, - 2320 + 2318, + 2322, + 2335, + 2336 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4918, + "line": 5081, "character": 17 } ] }, { - "id": 2175, + "id": 2191, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -24927,7 +25337,7 @@ }, "children": [ { - "id": 2229, + "id": 2245, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -24950,7 +25360,7 @@ } }, { - "id": 2228, + "id": 2244, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -24973,7 +25383,7 @@ } }, { - "id": 2198, + "id": 2214, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -24996,7 +25406,7 @@ } }, { - "id": 2199, + "id": 2215, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -25019,7 +25429,7 @@ } }, { - "id": 2201, + "id": 2217, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -25042,7 +25452,7 @@ } }, { - "id": 2200, + "id": 2216, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -25065,7 +25475,7 @@ } }, { - "id": 2180, + "id": 2196, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -25088,7 +25498,7 @@ } }, { - "id": 2241, + "id": 2257, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -25111,7 +25521,7 @@ } }, { - "id": 2242, + "id": 2258, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -25134,7 +25544,7 @@ } }, { - "id": 2239, + "id": 2255, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -25157,7 +25567,7 @@ } }, { - "id": 2240, + "id": 2256, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -25180,7 +25590,7 @@ } }, { - "id": 2203, + "id": 2219, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -25203,7 +25613,7 @@ } }, { - "id": 2208, + "id": 2224, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -25226,7 +25636,7 @@ } }, { - "id": 2205, + "id": 2221, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -25249,7 +25659,7 @@ } }, { - "id": 2207, + "id": 2223, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -25272,7 +25682,7 @@ } }, { - "id": 2206, + "id": 2222, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -25295,7 +25705,7 @@ } }, { - "id": 2204, + "id": 2220, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -25318,7 +25728,7 @@ } }, { - "id": 2213, + "id": 2229, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -25341,7 +25751,7 @@ } }, { - "id": 2210, + "id": 2226, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -25364,7 +25774,7 @@ } }, { - "id": 2212, + "id": 2228, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -25387,7 +25797,7 @@ } }, { - "id": 2211, + "id": 2227, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -25410,7 +25820,7 @@ } }, { - "id": 2209, + "id": 2225, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -25433,7 +25843,7 @@ } }, { - "id": 2217, + "id": 2233, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -25456,7 +25866,7 @@ } }, { - "id": 2216, + "id": 2232, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -25479,7 +25889,7 @@ } }, { - "id": 2215, + "id": 2231, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -25502,7 +25912,7 @@ } }, { - "id": 2214, + "id": 2230, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -25525,7 +25935,7 @@ } }, { - "id": 2202, + "id": 2218, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -25548,7 +25958,7 @@ } }, { - "id": 2264, + "id": 2280, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -25571,7 +25981,7 @@ } }, { - "id": 2267, + "id": 2283, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -25594,7 +26004,7 @@ } }, { - "id": 2262, + "id": 2278, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -25617,7 +26027,7 @@ } }, { - "id": 2265, + "id": 2281, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -25640,7 +26050,7 @@ } }, { - "id": 2266, + "id": 2282, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -25663,7 +26073,7 @@ } }, { - "id": 2261, + "id": 2277, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -25686,7 +26096,7 @@ } }, { - "id": 2263, + "id": 2279, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -25709,7 +26119,7 @@ } }, { - "id": 2234, + "id": 2250, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -25732,7 +26142,7 @@ } }, { - "id": 2233, + "id": 2249, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -25755,7 +26165,7 @@ } }, { - "id": 2236, + "id": 2252, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -25778,7 +26188,7 @@ } }, { - "id": 2235, + "id": 2251, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -25801,7 +26211,7 @@ } }, { - "id": 2232, + "id": 2248, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -25824,7 +26234,7 @@ } }, { - "id": 2230, + "id": 2246, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -25847,7 +26257,7 @@ } }, { - "id": 2231, + "id": 2247, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -25870,7 +26280,7 @@ } }, { - "id": 2237, + "id": 2253, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -25893,7 +26303,7 @@ } }, { - "id": 2238, + "id": 2254, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -25916,7 +26326,7 @@ } }, { - "id": 2249, + "id": 2265, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -25939,7 +26349,7 @@ } }, { - "id": 2250, + "id": 2266, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -25962,7 +26372,7 @@ } }, { - "id": 2253, + "id": 2269, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -25985,7 +26395,7 @@ } }, { - "id": 2251, + "id": 2267, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -26008,7 +26418,7 @@ } }, { - "id": 2252, + "id": 2268, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -26031,7 +26441,7 @@ } }, { - "id": 2260, + "id": 2276, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -26054,7 +26464,7 @@ } }, { - "id": 2259, + "id": 2275, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -26077,7 +26487,7 @@ } }, { - "id": 2258, + "id": 2274, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -26100,7 +26510,7 @@ } }, { - "id": 2257, + "id": 2273, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -26123,7 +26533,7 @@ } }, { - "id": 2255, + "id": 2271, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -26146,7 +26556,7 @@ } }, { - "id": 2254, + "id": 2270, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -26169,7 +26579,7 @@ } }, { - "id": 2247, + "id": 2263, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -26192,7 +26602,7 @@ } }, { - "id": 2244, + "id": 2260, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -26215,7 +26625,7 @@ } }, { - "id": 2243, + "id": 2259, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -26238,7 +26648,7 @@ } }, { - "id": 2245, + "id": 2261, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -26261,7 +26671,7 @@ } }, { - "id": 2248, + "id": 2264, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -26284,7 +26694,7 @@ } }, { - "id": 2246, + "id": 2262, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -26307,7 +26717,7 @@ } }, { - "id": 2181, + "id": 2197, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -26330,7 +26740,7 @@ } }, { - "id": 2182, + "id": 2198, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -26353,7 +26763,7 @@ } }, { - "id": 2176, + "id": 2192, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -26376,7 +26786,7 @@ } }, { - "id": 2177, + "id": 2193, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -26399,7 +26809,7 @@ } }, { - "id": 2178, + "id": 2194, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -26422,7 +26832,7 @@ } }, { - "id": 2179, + "id": 2195, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -26445,7 +26855,7 @@ } }, { - "id": 2190, + "id": 2206, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -26468,7 +26878,7 @@ } }, { - "id": 2194, + "id": 2210, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -26491,7 +26901,7 @@ } }, { - "id": 2195, + "id": 2211, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -26514,7 +26924,7 @@ } }, { - "id": 2193, + "id": 2209, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -26537,7 +26947,7 @@ } }, { - "id": 2189, + "id": 2205, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -26560,7 +26970,7 @@ } }, { - "id": 2192, + "id": 2208, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -26583,7 +26993,7 @@ } }, { - "id": 2186, + "id": 2202, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -26606,7 +27016,7 @@ } }, { - "id": 2187, + "id": 2203, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -26629,7 +27039,7 @@ } }, { - "id": 2188, + "id": 2204, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -26652,7 +27062,7 @@ } }, { - "id": 2183, + "id": 2199, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -26675,7 +27085,7 @@ } }, { - "id": 2184, + "id": 2200, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -26698,7 +27108,7 @@ } }, { - "id": 2185, + "id": 2201, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -26721,7 +27131,7 @@ } }, { - "id": 2191, + "id": 2207, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -26744,7 +27154,7 @@ } }, { - "id": 2256, + "id": 2272, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -26767,7 +27177,7 @@ } }, { - "id": 2196, + "id": 2212, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -26790,7 +27200,7 @@ } }, { - "id": 2197, + "id": 2213, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -26813,7 +27223,7 @@ } }, { - "id": 2226, + "id": 2242, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -26836,7 +27246,7 @@ } }, { - "id": 2224, + "id": 2240, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -26859,7 +27269,7 @@ } }, { - "id": 2225, + "id": 2241, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -26882,7 +27292,7 @@ } }, { - "id": 2221, + "id": 2237, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -26905,7 +27315,7 @@ } }, { - "id": 2222, + "id": 2238, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -26928,7 +27338,7 @@ } }, { - "id": 2223, + "id": 2239, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -26951,7 +27361,7 @@ } }, { - "id": 2227, + "id": 2243, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -26974,7 +27384,7 @@ } }, { - "id": 2218, + "id": 2234, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -26997,7 +27407,7 @@ } }, { - "id": 2219, + "id": 2235, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -27020,7 +27430,7 @@ } }, { - "id": 2220, + "id": 2236, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -27048,98 +27458,98 @@ "title": "Properties", "kind": 1024, "children": [ - 2229, - 2228, - 2198, - 2199, - 2201, - 2200, - 2180, - 2241, - 2242, - 2239, - 2240, - 2203, - 2208, - 2205, - 2207, - 2206, - 2204, - 2213, - 2210, - 2212, - 2211, - 2209, + 2245, + 2244, + 2214, + 2215, 2217, 2216, - 2215, - 2214, - 2202, - 2264, - 2267, - 2262, - 2265, - 2266, - 2261, - 2263, - 2234, + 2196, + 2257, + 2258, + 2255, + 2256, + 2219, + 2224, + 2221, + 2223, + 2222, + 2220, + 2229, + 2226, + 2228, + 2227, + 2225, 2233, - 2236, - 2235, 2232, - 2230, 2231, - 2237, - 2238, - 2249, + 2230, + 2218, + 2280, + 2283, + 2278, + 2281, + 2282, + 2277, + 2279, 2250, - 2253, - 2251, + 2249, 2252, - 2260, - 2259, - 2258, - 2257, - 2255, - 2254, - 2247, - 2244, - 2243, - 2245, + 2251, 2248, 2246, - 2181, - 2182, - 2176, - 2177, - 2178, - 2179, - 2190, + 2247, + 2253, + 2254, + 2265, + 2266, + 2269, + 2267, + 2268, + 2276, + 2275, + 2274, + 2273, + 2271, + 2270, + 2263, + 2260, + 2259, + 2261, + 2264, + 2262, + 2197, + 2198, + 2192, + 2193, 2194, 2195, - 2193, - 2189, - 2192, - 2186, - 2187, - 2188, - 2183, - 2184, - 2185, - 2191, - 2256, - 2196, - 2197, - 2226, - 2224, - 2225, - 2221, - 2222, - 2223, - 2227, - 2218, - 2219, - 2220 + 2206, + 2210, + 2211, + 2209, + 2205, + 2208, + 2202, + 2203, + 2204, + 2199, + 2200, + 2201, + 2207, + 2272, + 2212, + 2213, + 2242, + 2240, + 2241, + 2237, + 2238, + 2239, + 2243, + 2234, + 2235, + 2236 ] } ], @@ -27152,7 +27562,7 @@ ] }, { - "id": 2163, + "id": 2179, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -27162,7 +27572,7 @@ }, "children": [ { - "id": 2165, + "id": 2181, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -27178,12 +27588,12 @@ ], "type": { "type": "reference", - "id": 2166, + "id": 2182, "name": "customCssInterface" } }, { - "id": 2164, + "id": 2180, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -27208,8 +27618,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2165, - 2164 + 2181, + 2180 ] } ], @@ -27222,7 +27632,7 @@ ] }, { - "id": 2153, + "id": 2169, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -27238,7 +27648,7 @@ }, "children": [ { - "id": 2155, + "id": 2171, "name": "content", "kind": 1024, "kindString": "Property", @@ -27255,14 +27665,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2156, + "id": 2172, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2158, + "id": 2174, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -27292,7 +27702,7 @@ } }, { - "id": 2159, + "id": 2175, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -27312,7 +27722,7 @@ } }, { - "id": 2157, + "id": 2173, "name": "strings", "kind": 1024, "kindString": "Property", @@ -27355,21 +27765,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2158, - 2159, - 2157 + 2174, + 2175, + 2173 ] } ], "indexSignature": { - "id": 2160, + "id": 2176, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2161, + "id": 2177, "name": "key", "kind": 32768, "flags": {}, @@ -27388,7 +27798,7 @@ } }, { - "id": 2162, + "id": 2178, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -27408,7 +27818,7 @@ } }, { - "id": 2154, + "id": 2170, "name": "style", "kind": 1024, "kindString": "Property", @@ -27424,7 +27834,7 @@ ], "type": { "type": "reference", - "id": 2163, + "id": 2179, "name": "CustomStyles" } } @@ -27434,9 +27844,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2155, - 2162, - 2154 + 2171, + 2178, + 2170 ] } ], @@ -27449,7 +27859,7 @@ ] }, { - "id": 1778, + "id": 1794, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -27465,7 +27875,7 @@ }, "children": [ { - "id": 1820, + "id": 1836, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -27495,20 +27905,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1821, + "id": 1837, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1822, + "id": 1838, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1823, + "id": 1839, "name": "key", "kind": 32768, "flags": {}, @@ -27540,7 +27950,7 @@ } }, { - "id": 1781, + "id": 1797, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -27563,7 +27973,7 @@ } }, { - "id": 1802, + "id": 1818, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -27605,7 +28015,7 @@ } }, { - "id": 1804, + "id": 1820, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -27634,7 +28044,7 @@ } }, { - "id": 1780, + "id": 1796, "name": "authType", "kind": 1024, "kindString": "Property", @@ -27656,7 +28066,7 @@ } }, { - "id": 1793, + "id": 1809, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -27685,7 +28095,7 @@ } }, { - "id": 1805, + "id": 1821, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -27718,7 +28128,7 @@ } }, { - "id": 1796, + "id": 1812, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -27747,7 +28157,7 @@ } }, { - "id": 1817, + "id": 1833, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -27776,7 +28186,7 @@ } }, { - "id": 1824, + "id": 1840, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -27819,7 +28229,7 @@ } }, { - "id": 1801, + "id": 1817, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -27844,12 +28254,12 @@ ], "type": { "type": "reference", - "id": 2153, + "id": 2169, "name": "CustomisationsInterface" } }, { - "id": 1815, + "id": 1831, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -27878,7 +28288,7 @@ } }, { - "id": 1798, + "id": 1814, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -27908,7 +28318,7 @@ } }, { - "id": 1819, + "id": 1835, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -27937,7 +28347,7 @@ } }, { - "id": 1794, + "id": 1810, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -27970,7 +28380,7 @@ } }, { - "id": 1825, + "id": 1841, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -27990,7 +28400,7 @@ } }, { - "id": 1814, + "id": 1830, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -28019,7 +28429,7 @@ } }, { - "id": 1792, + "id": 1808, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -28048,7 +28458,7 @@ } }, { - "id": 1787, + "id": 1803, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -28082,7 +28492,7 @@ } }, { - "id": 1813, + "id": 1829, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -28115,12 +28525,12 @@ ], "type": { "type": "reference", - "id": 2271, + "id": 2287, "name": "LogLevel" } }, { - "id": 1795, + "id": 1811, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -28149,7 +28559,7 @@ } }, { - "id": 1786, + "id": 1802, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -28182,7 +28592,7 @@ } }, { - "id": 1816, + "id": 1832, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -28211,7 +28621,7 @@ } }, { - "id": 1785, + "id": 1801, "name": "password", "kind": 1024, "kindString": "Property", @@ -28235,7 +28645,7 @@ } }, { - "id": 1811, + "id": 1827, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -28264,7 +28674,7 @@ } }, { - "id": 1797, + "id": 1813, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -28297,7 +28707,7 @@ } }, { - "id": 1788, + "id": 1804, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -28327,7 +28737,7 @@ } }, { - "id": 1790, + "id": 1806, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -28356,7 +28766,7 @@ } }, { - "id": 1812, + "id": 1828, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -28385,7 +28795,7 @@ } }, { - "id": 1791, + "id": 1807, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -28414,7 +28824,7 @@ } }, { - "id": 1800, + "id": 1816, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -28437,7 +28847,7 @@ } }, { - "id": 1799, + "id": 1815, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -28466,7 +28876,7 @@ } }, { - "id": 1779, + "id": 1795, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -28487,7 +28897,7 @@ } }, { - "id": 1803, + "id": 1819, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -28510,7 +28920,7 @@ } }, { - "id": 1784, + "id": 1800, "name": "username", "kind": 1024, "kindString": "Property", @@ -28533,7 +28943,7 @@ } }, { - "id": 1782, + "id": 1798, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -28549,7 +28959,7 @@ ], "signatures": [ { - "id": 1783, + "id": 1799, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -28577,48 +28987,48 @@ "title": "Properties", "kind": 1024, "children": [ + 1836, + 1797, + 1818, 1820, - 1781, - 1802, - 1804, - 1780, - 1793, - 1805, 1796, + 1809, + 1821, + 1812, + 1833, + 1840, 1817, - 1824, - 1801, - 1815, - 1798, - 1819, - 1794, - 1825, + 1831, 1814, - 1792, - 1787, + 1835, + 1810, + 1841, + 1830, + 1808, + 1803, + 1829, + 1811, + 1802, + 1832, + 1801, + 1827, 1813, - 1795, - 1786, + 1804, + 1806, + 1828, + 1807, 1816, - 1785, - 1811, - 1797, - 1788, - 1790, - 1812, - 1791, - 1800, - 1799, - 1779, - 1803, - 1784 + 1815, + 1795, + 1819, + 1800 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1782 + 1798 ] } ], @@ -28631,7 +29041,7 @@ ] }, { - "id": 2113, + "id": 2129, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -28647,7 +29057,7 @@ }, "children": [ { - "id": 2115, + "id": 2131, "name": "height", "kind": 1024, "kindString": "Property", @@ -28679,7 +29089,7 @@ } }, { - "id": 2116, + "id": 2132, "name": "loading", "kind": 1024, "kindString": "Property", @@ -28715,7 +29125,7 @@ } }, { - "id": 2114, + "id": 2130, "name": "width", "kind": 1024, "kindString": "Property", @@ -28752,9 +29162,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2115, - 2116, - 2114 + 2131, + 2132, + 2130 ] } ], @@ -28766,7 +29176,7 @@ } ], "indexSignature": { - "id": 2117, + "id": 2133, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -28776,7 +29186,7 @@ }, "parameters": [ { - "id": 2118, + "id": 2134, "name": "key", "kind": 32768, "flags": {}, @@ -28810,7 +29220,7 @@ } }, { - "id": 1920, + "id": 1936, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -28826,7 +29236,7 @@ }, "children": [ { - "id": 1931, + "id": 1947, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -28859,7 +29269,7 @@ } }, { - "id": 1949, + "id": 1965, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -28889,20 +29299,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1950, + "id": 1966, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1951, + "id": 1967, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1952, + "id": 1968, "name": "key", "kind": 32768, "flags": {}, @@ -28938,7 +29348,7 @@ } }, { - "id": 1983, + "id": 1999, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -28979,7 +29389,7 @@ } }, { - "id": 1962, + "id": 1978, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -29008,7 +29418,7 @@ ], "type": { "type": "reference", - "id": 1774, + "id": 1790, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -29017,7 +29427,7 @@ } }, { - "id": 1947, + "id": 1963, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -29054,7 +29464,7 @@ } }, { - "id": 1948, + "id": 1964, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -29083,7 +29493,7 @@ ], "type": { "type": "reference", - "id": 2153, + "id": 2169, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -29092,7 +29502,7 @@ } }, { - "id": 1984, + "id": 2000, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -29133,7 +29543,7 @@ } }, { - "id": 1922, + "id": 1938, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -29170,7 +29580,7 @@ } }, { - "id": 1965, + "id": 1981, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -29207,7 +29617,7 @@ } }, { - "id": 1955, + "id": 1971, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -29244,7 +29654,7 @@ } }, { - "id": 1954, + "id": 1970, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -29275,7 +29685,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -29285,7 +29695,7 @@ } }, { - "id": 1979, + "id": 1995, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -29326,7 +29736,7 @@ } }, { - "id": 1938, + "id": 1954, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -29363,7 +29773,7 @@ } }, { - "id": 1937, + "id": 1953, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -29400,7 +29810,7 @@ } }, { - "id": 1985, + "id": 2001, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -29441,7 +29851,7 @@ } }, { - "id": 1982, + "id": 1998, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -29478,7 +29888,7 @@ } }, { - "id": 1923, + "id": 1939, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -29514,7 +29924,7 @@ } }, { - "id": 1978, + "id": 1994, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -29552,7 +29962,7 @@ } }, { - "id": 1981, + "id": 1997, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -29590,7 +30000,7 @@ } }, { - "id": 1967, + "id": 1983, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -29627,7 +30037,7 @@ } }, { - "id": 1971, + "id": 1987, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -29656,7 +30066,7 @@ ], "type": { "type": "reference", - "id": 2113, + "id": 2129, "name": "FrameParams" }, "inheritedFrom": { @@ -29665,7 +30075,7 @@ } }, { - "id": 1921, + "id": 1937, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -29699,7 +30109,7 @@ } }, { - "id": 1956, + "id": 1972, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -29734,7 +30144,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -29744,7 +30154,7 @@ } }, { - "id": 1953, + "id": 1969, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -29776,7 +30186,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2328, + "id": 2344, "name": "ListPageColumns" } }, @@ -29786,7 +30196,7 @@ } }, { - "id": 1958, + "id": 1974, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -29826,7 +30236,7 @@ } }, { - "id": 1943, + "id": 1959, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -29863,7 +30273,7 @@ } }, { - "id": 1933, + "id": 1949, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -29900,7 +30310,7 @@ } }, { - "id": 1932, + "id": 1948, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -29933,7 +30343,7 @@ } }, { - "id": 1976, + "id": 1992, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -29970,7 +30380,7 @@ } }, { - "id": 1940, + "id": 1956, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -30007,7 +30417,7 @@ } }, { - "id": 1936, + "id": 1952, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -30040,7 +30450,7 @@ } }, { - "id": 1963, + "id": 1979, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -30077,7 +30487,7 @@ } }, { - "id": 1924, + "id": 1940, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -30110,7 +30520,7 @@ } }, { - "id": 1930, + "id": 1946, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -30143,7 +30553,7 @@ } }, { - "id": 1961, + "id": 1977, "name": "locale", "kind": 1024, "kindString": "Property", @@ -30180,7 +30590,7 @@ } }, { - "id": 1966, + "id": 1982, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -30217,7 +30627,7 @@ } }, { - "id": 1969, + "id": 1985, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -30254,7 +30664,7 @@ } }, { - "id": 1927, + "id": 1943, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -30287,7 +30697,7 @@ } }, { - "id": 1968, + "id": 1984, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -30324,7 +30734,7 @@ } }, { - "id": 1974, + "id": 1990, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -30365,7 +30775,7 @@ } }, { - "id": 1975, + "id": 1991, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -30396,7 +30806,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2268, + "id": 2284, "name": "RuntimeParameter" } }, @@ -30406,7 +30816,7 @@ } }, { - "id": 1960, + "id": 1976, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -30443,7 +30853,7 @@ } }, { - "id": 1935, + "id": 1951, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -30480,7 +30890,7 @@ } }, { - "id": 1942, + "id": 1958, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -30517,7 +30927,7 @@ } }, { - "id": 1934, + "id": 1950, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -30554,7 +30964,7 @@ } }, { - "id": 1941, + "id": 1957, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -30591,7 +31001,7 @@ } }, { - "id": 1939, + "id": 1955, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -30625,7 +31035,7 @@ } }, { - "id": 1957, + "id": 1973, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -30661,7 +31071,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -30671,7 +31081,7 @@ } }, { - "id": 1959, + "id": 1975, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -30712,7 +31122,7 @@ } }, { - "id": 1928, + "id": 1944, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -30748,7 +31158,7 @@ } }, { - "id": 1926, + "id": 1942, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -30786,57 +31196,57 @@ "title": "Properties", "kind": 1024, "children": [ - 1931, - 1949, - 1983, - 1962, 1947, - 1948, - 1984, - 1922, 1965, - 1955, - 1954, - 1979, - 1938, - 1937, - 1985, - 1982, - 1923, + 1999, 1978, + 1963, + 1964, + 2000, + 1938, 1981, - 1967, 1971, - 1921, - 1956, + 1970, + 1995, + 1954, 1953, - 1958, - 1943, - 1933, - 1932, - 1976, - 1940, - 1936, - 1963, - 1924, - 1930, - 1961, - 1966, + 2001, + 1998, + 1939, + 1994, + 1997, + 1983, + 1987, + 1937, + 1972, 1969, - 1927, - 1968, 1974, - 1975, - 1960, - 1935, - 1942, - 1934, - 1941, - 1939, - 1957, 1959, - 1928, - 1926 + 1949, + 1948, + 1992, + 1956, + 1952, + 1979, + 1940, + 1946, + 1977, + 1982, + 1985, + 1943, + 1984, + 1990, + 1991, + 1976, + 1951, + 1958, + 1950, + 1957, + 1955, + 1973, + 1975, + 1944, + 1942 ] } ], @@ -30992,7 +31402,7 @@ ] }, { - "id": 2268, + "id": 2284, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -31002,7 +31412,7 @@ }, "children": [ { - "id": 2269, + "id": 2285, "name": "name", "kind": 1024, "kindString": "Property", @@ -31023,7 +31433,7 @@ } }, { - "id": 2270, + "id": 2286, "name": "value", "kind": 1024, "kindString": "Property", @@ -31062,8 +31472,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2269, - 2270 + 2285, + 2286 ] } ], @@ -31076,7 +31486,7 @@ ] }, { - "id": 1986, + "id": 2002, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -31096,7 +31506,7 @@ }, "children": [ { - "id": 1999, + "id": 2015, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -31126,20 +31536,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2000, + "id": 2016, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2001, + "id": 2017, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2002, + "id": 2018, "name": "key", "kind": 32768, "flags": {}, @@ -31175,7 +31585,7 @@ } }, { - "id": 2031, + "id": 2047, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -31216,7 +31626,7 @@ } }, { - "id": 2010, + "id": 2026, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -31245,7 +31655,7 @@ ], "type": { "type": "reference", - "id": 1774, + "id": 1790, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -31254,7 +31664,7 @@ } }, { - "id": 1998, + "id": 2014, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -31283,7 +31693,7 @@ ], "type": { "type": "reference", - "id": 2153, + "id": 2169, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -31292,7 +31702,7 @@ } }, { - "id": 2032, + "id": 2048, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -31333,7 +31743,7 @@ } }, { - "id": 1996, + "id": 2012, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -31356,7 +31766,7 @@ } }, { - "id": 2013, + "id": 2029, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -31393,7 +31803,7 @@ } }, { - "id": 1991, + "id": 2007, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -31422,7 +31832,7 @@ } }, { - "id": 2005, + "id": 2021, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -31459,7 +31869,7 @@ } }, { - "id": 2004, + "id": 2020, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -31490,7 +31900,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -31500,7 +31910,7 @@ } }, { - "id": 2027, + "id": 2043, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -31541,7 +31951,7 @@ } }, { - "id": 2033, + "id": 2049, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -31582,7 +31992,7 @@ } }, { - "id": 2030, + "id": 2046, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -31619,7 +32029,7 @@ } }, { - "id": 2026, + "id": 2042, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -31657,7 +32067,7 @@ } }, { - "id": 2029, + "id": 2045, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -31695,7 +32105,7 @@ } }, { - "id": 2015, + "id": 2031, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -31732,7 +32142,7 @@ } }, { - "id": 2019, + "id": 2035, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -31761,7 +32171,7 @@ ], "type": { "type": "reference", - "id": 2113, + "id": 2129, "name": "FrameParams" }, "inheritedFrom": { @@ -31770,7 +32180,7 @@ } }, { - "id": 2006, + "id": 2022, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -31805,7 +32215,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -31815,7 +32225,7 @@ } }, { - "id": 2003, + "id": 2019, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -31847,7 +32257,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2328, + "id": 2344, "name": "ListPageColumns" } }, @@ -31857,7 +32267,7 @@ } }, { - "id": 1993, + "id": 2009, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -31886,7 +32296,7 @@ } }, { - "id": 1990, + "id": 2006, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -31915,7 +32325,7 @@ } }, { - "id": 1995, + "id": 2011, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -31944,7 +32354,7 @@ } }, { - "id": 1989, + "id": 2005, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -31977,7 +32387,7 @@ } }, { - "id": 1992, + "id": 2008, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -32006,7 +32416,7 @@ } }, { - "id": 2024, + "id": 2040, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -32043,7 +32453,7 @@ } }, { - "id": 2011, + "id": 2027, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -32080,7 +32490,7 @@ } }, { - "id": 2009, + "id": 2025, "name": "locale", "kind": 1024, "kindString": "Property", @@ -32117,7 +32527,7 @@ } }, { - "id": 2014, + "id": 2030, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -32154,7 +32564,7 @@ } }, { - "id": 2017, + "id": 2033, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -32191,7 +32601,7 @@ } }, { - "id": 2016, + "id": 2032, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -32228,7 +32638,7 @@ } }, { - "id": 2022, + "id": 2038, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -32269,7 +32679,7 @@ } }, { - "id": 2023, + "id": 2039, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -32300,7 +32710,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2268, + "id": 2284, "name": "RuntimeParameter" } }, @@ -32310,7 +32720,7 @@ } }, { - "id": 1997, + "id": 2013, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -32344,7 +32754,7 @@ } }, { - "id": 2008, + "id": 2024, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -32381,7 +32791,7 @@ } }, { - "id": 1987, + "id": 2003, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -32410,7 +32820,7 @@ } }, { - "id": 1994, + "id": 2010, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -32439,7 +32849,7 @@ } }, { - "id": 2007, + "id": 2023, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -32475,7 +32885,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -32490,43 +32900,43 @@ "title": "Properties", "kind": 1024, "children": [ - 1999, - 2031, - 2010, - 1998, - 2032, - 1996, - 2013, - 1991, - 2005, - 2004, - 2027, - 2033, - 2030, + 2015, + 2047, 2026, + 2014, + 2048, + 2012, 2029, - 2015, + 2007, + 2021, + 2020, + 2043, + 2049, + 2046, + 2042, + 2045, + 2031, + 2035, + 2022, 2019, + 2009, 2006, - 2003, - 1993, - 1990, - 1995, - 1989, - 1992, - 2024, 2011, - 2009, - 2014, - 2017, - 2016, - 2022, - 2023, - 1997, + 2005, 2008, - 1987, - 1994, - 2007 + 2040, + 2027, + 2025, + 2030, + 2033, + 2032, + 2038, + 2039, + 2013, + 2024, + 2003, + 2010, + 2023 ] } ], @@ -32576,7 +32986,7 @@ ] }, { - "id": 1881, + "id": 1897, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -32591,7 +33001,7 @@ }, "children": [ { - "id": 1888, + "id": 1904, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32621,20 +33031,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1889, + "id": 1905, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1890, + "id": 1906, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1891, + "id": 1907, "name": "key", "kind": 32768, "flags": {}, @@ -32670,7 +33080,7 @@ } }, { - "id": 1918, + "id": 1934, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -32711,7 +33121,7 @@ } }, { - "id": 1898, + "id": 1914, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -32740,7 +33150,7 @@ ], "type": { "type": "reference", - "id": 1774, + "id": 1790, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -32749,7 +33159,7 @@ } }, { - "id": 1887, + "id": 1903, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32778,7 +33188,7 @@ ], "type": { "type": "reference", - "id": 2153, + "id": 2169, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -32787,7 +33197,7 @@ } }, { - "id": 1883, + "id": 1899, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -32820,7 +33230,7 @@ } }, { - "id": 1882, + "id": 1898, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -32860,7 +33270,7 @@ } }, { - "id": 1901, + "id": 1917, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -32897,7 +33307,7 @@ } }, { - "id": 1894, + "id": 1910, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -32934,7 +33344,7 @@ } }, { - "id": 1893, + "id": 1909, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -32965,7 +33375,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -32975,7 +33385,7 @@ } }, { - "id": 1914, + "id": 1930, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -33016,7 +33426,7 @@ } }, { - "id": 1919, + "id": 1935, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -33057,7 +33467,7 @@ } }, { - "id": 1917, + "id": 1933, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -33094,7 +33504,7 @@ } }, { - "id": 1913, + "id": 1929, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -33132,7 +33542,7 @@ } }, { - "id": 1916, + "id": 1932, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -33170,7 +33580,7 @@ } }, { - "id": 1886, + "id": 1902, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -33203,7 +33613,7 @@ } }, { - "id": 1903, + "id": 1919, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -33240,7 +33650,7 @@ } }, { - "id": 1907, + "id": 1923, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -33269,7 +33679,7 @@ ], "type": { "type": "reference", - "id": 2113, + "id": 2129, "name": "FrameParams" }, "inheritedFrom": { @@ -33278,7 +33688,7 @@ } }, { - "id": 1895, + "id": 1911, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -33313,7 +33723,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -33323,7 +33733,7 @@ } }, { - "id": 1892, + "id": 1908, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -33355,7 +33765,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2328, + "id": 2344, "name": "ListPageColumns" } }, @@ -33365,7 +33775,7 @@ } }, { - "id": 1911, + "id": 1927, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -33402,7 +33812,7 @@ } }, { - "id": 1899, + "id": 1915, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -33439,7 +33849,7 @@ } }, { - "id": 1897, + "id": 1913, "name": "locale", "kind": 1024, "kindString": "Property", @@ -33476,7 +33886,7 @@ } }, { - "id": 1902, + "id": 1918, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -33513,7 +33923,7 @@ } }, { - "id": 1905, + "id": 1921, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -33550,7 +33960,7 @@ } }, { - "id": 1904, + "id": 1920, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -33587,7 +33997,7 @@ } }, { - "id": 1910, + "id": 1926, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -33618,7 +34028,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2268, + "id": 2284, "name": "RuntimeParameter" } }, @@ -33628,7 +34038,7 @@ } }, { - "id": 1885, + "id": 1901, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -33662,7 +34072,7 @@ } }, { - "id": 1884, + "id": 1900, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -33695,7 +34105,7 @@ } }, { - "id": 1896, + "id": 1912, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -33731,7 +34141,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -33746,35 +34156,35 @@ "title": "Properties", "kind": 1024, "children": [ - 1888, - 1918, - 1898, - 1887, - 1883, - 1882, - 1901, - 1894, - 1893, + 1904, + 1934, 1914, - 1919, - 1917, - 1913, - 1916, - 1886, 1903, - 1907, - 1895, - 1892, - 1911, 1899, - 1897, - 1902, - 1905, - 1904, + 1898, + 1917, 1910, - 1885, - 1884, - 1896 + 1909, + 1930, + 1935, + 1933, + 1929, + 1932, + 1902, + 1919, + 1923, + 1911, + 1908, + 1927, + 1915, + 1913, + 1918, + 1921, + 1920, + 1926, + 1901, + 1900, + 1912 ] } ], @@ -33836,7 +34246,7 @@ ] }, { - "id": 1826, + "id": 1842, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -33852,7 +34262,7 @@ }, "children": [ { - "id": 1846, + "id": 1862, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33882,20 +34292,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1847, + "id": 1863, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1848, + "id": 1864, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1849, + "id": 1865, "name": "key", "kind": 32768, "flags": {}, @@ -33931,7 +34341,7 @@ } }, { - "id": 1838, + "id": 1854, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -33964,7 +34374,7 @@ } }, { - "id": 1828, + "id": 1844, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -33997,7 +34407,7 @@ } }, { - "id": 1827, + "id": 1843, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -34030,7 +34440,7 @@ } }, { - "id": 1878, + "id": 1894, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -34071,7 +34481,7 @@ } }, { - "id": 1841, + "id": 1857, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -34108,7 +34518,7 @@ } }, { - "id": 1857, + "id": 1873, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -34137,7 +34547,7 @@ ], "type": { "type": "reference", - "id": 1774, + "id": 1790, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -34146,7 +34556,7 @@ } }, { - "id": 1845, + "id": 1861, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -34175,7 +34585,7 @@ ], "type": { "type": "reference", - "id": 2153, + "id": 2169, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -34184,7 +34594,7 @@ } }, { - "id": 1843, + "id": 1859, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -34221,7 +34631,7 @@ } }, { - "id": 1879, + "id": 1895, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -34262,7 +34672,7 @@ } }, { - "id": 1834, + "id": 1850, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -34295,7 +34705,7 @@ } }, { - "id": 1833, + "id": 1849, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -34331,7 +34741,7 @@ } }, { - "id": 1860, + "id": 1876, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34368,7 +34778,7 @@ } }, { - "id": 1852, + "id": 1868, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34405,7 +34815,7 @@ } }, { - "id": 1851, + "id": 1867, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34436,7 +34846,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -34446,7 +34856,7 @@ } }, { - "id": 1874, + "id": 1890, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34487,7 +34897,7 @@ } }, { - "id": 1880, + "id": 1896, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34528,7 +34938,7 @@ } }, { - "id": 1831, + "id": 1847, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -34561,7 +34971,7 @@ } }, { - "id": 1877, + "id": 1893, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34598,7 +35008,7 @@ } }, { - "id": 1873, + "id": 1889, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34636,7 +35046,7 @@ } }, { - "id": 1876, + "id": 1892, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34674,7 +35084,7 @@ } }, { - "id": 1837, + "id": 1853, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -34707,7 +35117,7 @@ } }, { - "id": 1862, + "id": 1878, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34744,7 +35154,7 @@ } }, { - "id": 1844, + "id": 1860, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -34781,7 +35191,7 @@ } }, { - "id": 1832, + "id": 1848, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -34814,7 +35224,7 @@ } }, { - "id": 1866, + "id": 1882, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34843,7 +35253,7 @@ ], "type": { "type": "reference", - "id": 2113, + "id": 2129, "name": "FrameParams" }, "inheritedFrom": { @@ -34852,7 +35262,7 @@ } }, { - "id": 1853, + "id": 1869, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34887,7 +35297,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -34897,7 +35307,7 @@ } }, { - "id": 1850, + "id": 1866, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -34929,7 +35339,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2328, + "id": 2344, "name": "ListPageColumns" } }, @@ -34939,7 +35349,7 @@ } }, { - "id": 1829, + "id": 1845, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -34972,7 +35382,7 @@ } }, { - "id": 1830, + "id": 1846, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -35005,7 +35415,7 @@ } }, { - "id": 1839, + "id": 1855, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -35038,7 +35448,7 @@ } }, { - "id": 1871, + "id": 1887, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -35075,7 +35485,7 @@ } }, { - "id": 1842, + "id": 1858, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -35104,7 +35514,7 @@ } }, { - "id": 1858, + "id": 1874, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35141,7 +35551,7 @@ } }, { - "id": 1856, + "id": 1872, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35178,7 +35588,7 @@ } }, { - "id": 1861, + "id": 1877, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35215,7 +35625,7 @@ } }, { - "id": 1864, + "id": 1880, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35252,7 +35662,7 @@ } }, { - "id": 1863, + "id": 1879, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35289,7 +35699,7 @@ } }, { - "id": 1869, + "id": 1885, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35330,7 +35740,7 @@ } }, { - "id": 1870, + "id": 1886, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35361,7 +35771,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2268, + "id": 2284, "name": "RuntimeParameter" } }, @@ -35371,7 +35781,7 @@ } }, { - "id": 1836, + "id": 1852, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -35401,7 +35811,7 @@ } }, { - "id": 1835, + "id": 1851, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -35430,7 +35840,7 @@ } }, { - "id": 1855, + "id": 1871, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35467,7 +35877,7 @@ } }, { - "id": 1840, + "id": 1856, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -35496,7 +35906,7 @@ } }, { - "id": 1854, + "id": 1870, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35532,7 +35942,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1644, + "id": 1660, "name": "Action" } }, @@ -35547,51 +35957,51 @@ "title": "Properties", "kind": 1024, "children": [ - 1846, - 1838, - 1828, - 1827, - 1878, - 1841, + 1862, + 1854, + 1844, + 1843, + 1894, 1857, + 1873, + 1861, + 1859, + 1895, + 1850, + 1849, + 1876, + 1868, + 1867, + 1890, + 1896, + 1847, + 1893, + 1889, + 1892, + 1853, + 1878, + 1860, + 1848, + 1882, + 1869, + 1866, 1845, - 1843, + 1846, + 1855, + 1887, + 1858, + 1874, + 1872, + 1877, + 1880, 1879, - 1834, - 1833, - 1860, + 1885, + 1886, 1852, 1851, - 1874, - 1880, - 1831, - 1877, - 1873, - 1876, - 1837, - 1862, - 1844, - 1832, - 1866, - 1853, - 1850, - 1829, - 1830, - 1839, 1871, - 1842, - 1858, 1856, - 1861, - 1864, - 1863, - 1869, - 1870, - 1836, - 1835, - 1855, - 1840, - 1854 + 1870 ] } ], @@ -35838,14 +36248,14 @@ ] }, { - "id": 2298, + "id": 2314, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2299, + "id": 2315, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -35853,7 +36263,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4911, + "line": 5074, "character": 4 } ], @@ -35866,7 +36276,7 @@ } }, { - "id": 2300, + "id": 2316, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -35874,7 +36284,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4912, + "line": 5075, "character": 4 } ], @@ -35892,21 +36302,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2299, - 2300 + 2315, + 2316 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4910, + "line": 5073, "character": 17 } ] }, { - "id": 2166, + "id": 2182, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -35916,7 +36326,7 @@ }, "children": [ { - "id": 2168, + "id": 2184, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -35946,20 +36356,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2169, + "id": 2185, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2170, + "id": 2186, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2171, + "id": 2187, "name": "selector", "kind": 32768, "flags": {}, @@ -35972,7 +36382,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2172, + "id": 2188, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -35985,14 +36395,14 @@ } ], "indexSignature": { - "id": 2173, + "id": 2189, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2174, + "id": 2190, "name": "declaration", "kind": 32768, "flags": {}, @@ -36014,7 +36424,7 @@ } }, { - "id": 2167, + "id": 2183, "name": "variables", "kind": 1024, "kindString": "Property", @@ -36033,7 +36443,7 @@ ], "type": { "type": "reference", - "id": 2175, + "id": 2191, "name": "CustomCssVariables" } } @@ -36043,8 +36453,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2168, - 2167 + 2184, + 2183 ] } ], @@ -36349,7 +36759,7 @@ ] }, { - "id": 2136, + "id": 2152, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -36376,7 +36786,7 @@ } }, { - "id": 2140, + "id": 2156, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -36391,7 +36801,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2141, + "id": 2157, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -36414,7 +36824,7 @@ ], "signatures": [ { - "id": 2142, + "id": 2158, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -36424,19 +36834,19 @@ }, "parameters": [ { - "id": 2143, + "id": 2159, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2148, + "id": 2164, "name": "MessagePayload" } }, { - "id": 2144, + "id": 2160, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -36446,7 +36856,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2145, + "id": 2161, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -36460,7 +36870,7 @@ ], "signatures": [ { - "id": 2146, + "id": 2162, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -36470,7 +36880,7 @@ }, "parameters": [ { - "id": 2147, + "id": 2163, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -36501,7 +36911,7 @@ } }, { - "id": 2137, + "id": 2153, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -36525,14 +36935,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2138, + "id": 2154, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2139, + "id": 2155, "name": "start", "kind": 1024, "kindString": "Property", @@ -36560,7 +36970,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2139 + 2155 ] } ], @@ -36575,7 +36985,7 @@ } }, { - "id": 2148, + "id": 2164, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -36599,14 +37009,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2149, + "id": 2165, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2151, + "id": 2167, "name": "data", "kind": 1024, "kindString": "Property", @@ -36624,7 +37034,7 @@ } }, { - "id": 2152, + "id": 2168, "name": "status", "kind": 1024, "kindString": "Property", @@ -36644,7 +37054,7 @@ } }, { - "id": 2150, + "id": 2166, "name": "type", "kind": 1024, "kindString": "Property", @@ -36667,9 +37077,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2151, - 2152, - 2150 + 2167, + 2168, + 2166 ] } ], @@ -37074,7 +37484,7 @@ }, "type": { "type": "reference", - "id": 1778, + "id": 1794, "name": "EmbedConfig" } } @@ -37174,7 +37584,7 @@ }, "type": { "type": "reference", - "id": 1778, + "id": 1794, "name": "EmbedConfig" } } @@ -37321,7 +37731,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2108, + "id": 2124, "name": "PrefetchFeatures" } } @@ -37393,7 +37803,7 @@ ] }, { - "id": 2334, + "id": 2350, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -37409,7 +37819,7 @@ ], "signatures": [ { - "id": 2335, + "id": 2351, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -37603,7 +38013,7 @@ ] }, { - "id": 2278, + "id": 2294, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -37617,7 +38027,7 @@ ], "signatures": [ { - "id": 2279, + "id": 2295, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -37627,7 +38037,7 @@ }, "parameters": [ { - "id": 2280, + "id": 2296, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -37639,7 +38049,7 @@ } }, { - "id": 2281, + "id": 2297, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -37650,7 +38060,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2282, + "id": 2298, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -37673,24 +38083,24 @@ "title": "Enumerations", "kind": 4, "children": [ - 1644, + 1660, 1319, 1305, 1312, 1466, - 1774, - 1640, + 1790, + 1656, 1498, - 2119, - 2294, - 2129, + 2135, + 2310, + 2145, 1579, - 2328, - 2271, + 2344, + 2287, 1457, - 2108, + 2124, 1482, - 2321 + 2337 ] }, { @@ -37711,26 +38121,26 @@ "title": "Interfaces", "kind": 256, "children": [ - 2034, + 2050, 1321, 1067, 1257, - 2301, - 2175, - 2163, - 2153, - 1778, - 2113, - 1920, + 2317, + 2191, + 2179, + 2169, + 1794, + 2129, + 1936, 1478, - 2268, - 1986, - 1881, - 1826, + 2284, + 2002, + 1897, + 1842, 1447, 1454, - 2298, - 2166, + 2314, + 2182, 21, 25 ] @@ -37739,10 +38149,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2136, - 2140, - 2137, - 2148 + 2152, + 2156, + 2153, + 2164 ] }, { @@ -37758,9 +38168,9 @@ 1, 4, 7, - 2334, + 2350, 37, - 2278 + 2294 ] } ], From 6f9e337df1a5a2718954806e6b40b5bc886a1d90 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 15 May 2025 11:13:12 +0530 Subject: [PATCH 12/29] Added host event --- src/types.ts | 168 +++++++++++---------------------------------------- 1 file changed, 36 insertions(+), 132 deletions(-) diff --git a/src/types.ts b/src/types.ts index 1635b946..035328d8 100644 --- a/src/types.ts +++ b/src/types.ts @@ -3501,154 +3501,58 @@ export enum HostEvent { TransformTableVizData = 'TransformTableVizData', /** - * Triggers the search query event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.SearchQuery, { - * query: 'sales by region' - * }) - * ``` - * @version SDK: 1.37.0 | ThoughtSpot: 10.8.0.cl - */ - SearchQuery = 'SearchQuery', - /** - * Triggers the edit spotter query event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.EditSpotterQuery, { - * query: 'sales by region' - * }) - * */ - UpdateSpotterQuery = 'UpdateSpotterQuery', - - /** - * Triggers the preview spotter data event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.PreviewSpotterData, { - * query: 'sales by region' - * }) - * ``` - * @version SDK: 1.37.0 | ThoughtSpot: 10.8.0.cl - */ - PreviewSpotterData = 'PreviewSpotterData', - - /** - * Triggers the reset spotter conversation event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.ResetSpotterConversation) - * ``` - */ - ResetSpotterConversation = 'ResetSpotterConversation', - - /** - * Triggers the delete last spotter prompt event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.DeleteLastSpotterPrompt) - * ``` - */ - DeleteLastSpotterPrompt = 'DeleteLastSpotterPrompt', - - /** - * Triggers the edit last spotter prompt event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.EditLastSpotterPrompt) - * ``` - */ - EditLastSpotterPrompt = 'EditLastSpotterPrompt', - - /** - * Triggers the delete spotter prompt event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.DeleteSpotterPrompt) - * ``` - */ - DeleteSpotterPrompt = 'DeleteSpotterPrompt', - - /** - * Triggers the edit spotter answer event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.EditSpotterAnswer) - * ``` - */ - EditSpotterAnswer = 'EditSpotterAnswer', - - /** - * Triggers the save spotter answer event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.SaveSpotterAnswer) - * ``` - */ - SaveSpotterAnswer = 'SaveSpotterAnswer', - - /** - * Triggers the pin spotter answer event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.PinSpotterAnswer) - * ``` - */ - PinSpotterAnswer = 'PinSpotterAnswer', - - /** - * Triggers the make a copy spotter answer event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.MakeACopySpotterAnswer) - * ``` + * Triggers the table visualization re-render with the updated data. + * Includes the following properties: + * @param - `columnDataLite` - an array of object containing the + * data value modifications retrieved from the `EmbedEvent.TableVizRendered` + * payload.For example, { columnDataLite: []}`. */ - MakeACopySpotterAnswer = 'MakeACopySpotterAnswer', + SpotterSearch = 'SpotterSearch', /** - * Triggers the download spotter answer event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.DownloadSpotterAnswer) - * ``` + * Triggers the table visualization re-render with the updated data. + * Includes the following properties: + * @param - `columnDataLite` - an array of object containing the + * data value modifications retrieved from the `EmbedEvent.TableVizRendered` + * payload.For example, { columnDataLite: []}`. */ - DownloadSpotterAnswer = 'DownloadSpotterAnswer', + EditLastPrompt = 'EditLastPrompt', /** - * Triggers the download xlsx spotter answer event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.DownloadXlsxSpotterAnswer) - * ``` + * Triggers the table visualization re-render with the updated data. + * Includes the following properties: + * @param - `columnDataLite` - an array of object containing the + * data value modifications retrieved from the `EmbedEvent.TableVizRendered` + * payload.For example, { columnDataLite: []}`. */ - DownloadXlsxSpotterAnswer = 'DownloadXlsxSpotterAnswer', + PreviewSpotterData = 'PreviewSpotterData', /** - * Triggers the download pdf spotter answer event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.DownloadPdfSpotterAnswer) - * ``` + * Triggers the table visualization re-render with the updated data. + * Includes the following properties: + * @param - `columnDataLite` - an array of object containing the + * data value modifications retrieved from the `EmbedEvent.TableVizRendered` + * payload.For example, { columnDataLite: []}`. */ - DownloadPdfSpotterAnswer = 'DownloadPdfSpotterAnswer', + ResetSpotterConversation = 'ResetSpotterConversation', /** - * Triggers the download png spotter answer event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.DownloadPngSpotterAnswer) - * ``` + * Triggers the table visualization re-render with the updated data. + * Includes the following properties: + * @param - `columnDataLite` - an array of object containing the + * data value modifications retrieved from the `EmbedEvent.TableVizRendered` + * payload.For example, { columnDataLite: []}`. */ - DownloadPngSpotterAnswer = 'DownloadPngSpotterAnswer', + DeleteLastPrompt = 'DeleteLastPrompt', /** - * Triggers the spotter answer chart switcher event for the Spotter experience. - * @example - * ```js - * spotterEmbed.trigger(HostEvent.SpotterAnswerChartSwitcher) - * ``` + * Triggers the table visualization re-render with the updated data. + * Includes the following properties: + * @param - `columnDataLite` - an array of object containing the + * data value modifications retrieved from the `EmbedEvent.TableVizRendered` + * payload.For example, { columnDataLite: []}`. */ - SpotterAnswerChartSwitcher = 'SpotterAnswerChartSwitcher', + AnswerChartSwitcher = 'AnswerChartSwitcher', } /** From 6501264e8c0147e167e929c5e445d791ae470e9e Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 15 May 2025 11:14:22 +0530 Subject: [PATCH 13/29] typedoc update --- static/typedoc/typedoc.json | 3144 ++++++++++++++++------------------- 1 file changed, 1446 insertions(+), 1698 deletions(-) diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 66f6ba3e..2b65d79f 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 1660, + "id": 1650, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 1772, + "id": 1762, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4846, + "line": 4750, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 1680, + "id": 1670, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4003, + "line": 3907, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 1673, + "id": 1663, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3932, + "line": 3836, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 1672, + "id": 1662, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3921, + "line": 3825, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 1678, + "id": 1668, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3984, + "line": 3888, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 1679, + "id": 1669, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3993, + "line": 3897, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 1681, + "id": 1671, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4013, + "line": 3917, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 1755, + "id": 1745, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4651, + "line": 4555, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 1728, + "id": 1718, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4373, + "line": 4277, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1769, + "id": 1759, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4813, + "line": 4717, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 1727, + "id": 1717, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4361, + "line": 4265, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1726, + "id": 1716, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4349, + "line": 4253, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1768, + "id": 1758, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4802, + "line": 4706, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 1739, + "id": 1729, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4486, + "line": 4390, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 1742, + "id": 1732, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4520, + "line": 4424, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 1747, + "id": 1737, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4575, + "line": 4479, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 1741, + "id": 1731, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4509, + "line": 4413, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 1744, + "id": 1734, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4543, + "line": 4447, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 1748, + "id": 1738, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4585, + "line": 4489, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 1745, + "id": 1735, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4554, + "line": 4458, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 1750, + "id": 1740, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4607, + "line": 4511, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 1746, + "id": 1736, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4564, + "line": 4468, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 1743, + "id": 1733, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4531, + "line": 4435, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 1749, + "id": 1739, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4595, + "line": 4499, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 1740, + "id": 1730, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4497, + "line": 4401, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 1781, + "id": 1771, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4944, + "line": 4848, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 1677, + "id": 1667, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3975, + "line": 3879, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 1676, + "id": 1666, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3966, + "line": 3870, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 1675, + "id": 1665, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3954, + "line": 3858, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 1788, + "id": 1778, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5020, + "line": 4924, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 1674, + "id": 1664, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3943, + "line": 3847, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 1719, + "id": 1709, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4300, + "line": 4204, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 1667, + "id": 1657, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3880, + "line": 3784, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1718, + "id": 1708, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4299, + "line": 4203, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1789, + "id": 1779, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5030, + "line": 4934, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 1766, + "id": 1756, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4777, + "line": 4681, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 1730, + "id": 1720, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4393, + "line": 4297, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1735, + "id": 1725, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4444, + "line": 4348, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 1786, + "id": 1776, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5001, + "line": 4905, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 1778, + "id": 1768, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4913, + "line": 4817, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 1780, + "id": 1770, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4932, + "line": 4836, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 1689, + "id": 1679, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4063, + "line": 3967, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1692, + "id": 1682, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4096, + "line": 4000, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1691, + "id": 1681, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4086, + "line": 3990, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1690, + "id": 1680, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4073, + "line": 3977, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1693, + "id": 1683, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4106, + "line": 4010, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1723, + "id": 1713, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4316, + "line": 4220, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 1717, + "id": 1707, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4289, + "line": 4193, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1716, + "id": 1706, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4280, + "line": 4184, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1701, + "id": 1691, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4182, + "line": 4086, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1666, + "id": 1656, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3871, + "line": 3775, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 1729, + "id": 1719, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4382, + "line": 4286, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 1721, + "id": 1711, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4305, + "line": 4209, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 1785, + "id": 1775, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4990, + "line": 4894, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 1758, + "id": 1748, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4684, + "line": 4588, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 1773, + "id": 1763, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4859, + "line": 4763, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 1698, + "id": 1688, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4150, + "line": 4054, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1702, + "id": 1692, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4190, + "line": 4094, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 1787, + "id": 1777, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5011, + "line": 4915, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 1756, + "id": 1746, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4661, + "line": 4565, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 1715, + "id": 1705, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1624,14 +1624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4269, + "line": 4173, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1695, + "id": 1685, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1649,14 +1649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4122, + "line": 4026, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1696, + "id": 1686, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1673,14 +1673,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4132, + "line": 4036, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 1779, + "id": 1769, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4923, + "line": 4827, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 1709, + "id": 1699, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1725,14 +1725,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4231, + "line": 4135, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1764, + "id": 1754, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1753,14 +1753,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4745, + "line": 4649, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 1665, + "id": 1655, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1777,14 +1777,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3862, + "line": 3766, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1762, + "id": 1752, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1801,14 +1801,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4725, + "line": 4629, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1734, + "id": 1724, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1829,14 +1829,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4434, + "line": 4338, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1777, + "id": 1767, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1857,14 +1857,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4902, + "line": 4806, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 1754, + "id": 1744, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4641, + "line": 4545, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 1760, + "id": 1750, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1912,14 +1912,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4705, + "line": 4609, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 1761, + "id": 1751, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1936,14 +1936,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4714, + "line": 4618, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 1771, + "id": 1761, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -1964,14 +1964,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4835, + "line": 4739, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 1774, + "id": 1764, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1992,14 +1992,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4870, + "line": 4774, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 1763, + "id": 1753, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4735, + "line": 4639, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 1712, + "id": 1702, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2044,14 +2044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4248, + "line": 4152, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1699, + "id": 1689, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2068,14 +2068,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4160, + "line": 4064, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1782, + "id": 1772, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2096,14 +2096,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4956, + "line": 4860, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 1725, + "id": 1715, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2121,14 +2121,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4339, + "line": 4243, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 1703, + "id": 1693, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2145,14 +2145,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4200, + "line": 4104, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1738, + "id": 1728, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2173,14 +2173,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4475, + "line": 4379, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 1770, + "id": 1760, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2201,14 +2201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4824, + "line": 4728, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 1752, + "id": 1742, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4621, + "line": 4525, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 1731, + "id": 1721, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2260,14 +2260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4403, + "line": 4307, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 1724, + "id": 1714, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2284,14 +2284,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4325, + "line": 4229, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 1753, + "id": 1743, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2312,14 +2312,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4631, + "line": 4535, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 1783, + "id": 1773, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2340,14 +2340,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4968, + "line": 4872, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 1759, + "id": 1749, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2368,14 +2368,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4696, + "line": 4600, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 1661, + "id": 1651, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2392,14 +2392,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3831, + "line": 3735, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1664, + "id": 1654, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2416,14 +2416,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3849, + "line": 3753, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1669, + "id": 1659, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2440,14 +2440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3894, + "line": 3798, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1670, + "id": 1660, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2464,14 +2464,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3903, + "line": 3807, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1722, + "id": 1712, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2479,14 +2479,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4306, + "line": 4210, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 1671, + "id": 1661, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2503,14 +2503,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3912, + "line": 3816, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1686, + "id": 1676, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2521,14 +2521,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4038, + "line": 3942, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 1757, + "id": 1747, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2549,14 +2549,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4671, + "line": 4575, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 1688, + "id": 1678, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2573,14 +2573,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4053, + "line": 3957, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1683, + "id": 1673, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2597,14 +2597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4026, + "line": 3930, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1784, + "id": 1774, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2625,14 +2625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4979, + "line": 4883, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 1714, + "id": 1704, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2649,14 +2649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4261, + "line": 4165, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1733, + "id": 1723, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2677,14 +2677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4424, + "line": 4328, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1732, + "id": 1722, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2705,14 +2705,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4413, + "line": 4317, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1736, + "id": 1726, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4454, + "line": 4358, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 1737, + "id": 1727, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4464, + "line": 4368, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 1765, + "id": 1755, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2793,14 +2793,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4764, + "line": 4668, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 1700, + "id": 1690, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4172, + "line": 4076, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 1776, + "id": 1766, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4892, + "line": 4796, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 1697, + "id": 1687, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -2869,14 +2869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4141, + "line": 4045, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1767, + "id": 1757, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4788, + "line": 4692, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 1775, + "id": 1765, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2925,7 +2925,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4881, + "line": 4785, "character": 4 } ], @@ -2937,124 +2937,124 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1772, - 1680, - 1673, - 1672, - 1678, - 1679, - 1681, - 1755, - 1728, - 1769, - 1727, - 1726, - 1768, - 1739, - 1742, - 1747, - 1741, - 1744, - 1748, + 1762, + 1670, + 1663, + 1662, + 1668, + 1669, + 1671, 1745, - 1750, - 1746, - 1743, - 1749, - 1740, - 1781, - 1677, - 1676, - 1675, - 1788, - 1674, - 1719, - 1667, 1718, - 1789, - 1766, - 1730, - 1735, - 1786, - 1778, - 1780, - 1689, - 1692, - 1691, - 1690, - 1693, - 1723, + 1759, 1717, 1716, - 1701, - 1666, - 1729, - 1721, - 1785, 1758, - 1773, - 1698, - 1702, - 1787, - 1756, - 1715, - 1695, - 1696, - 1779, - 1709, - 1764, - 1665, - 1762, + 1729, + 1732, + 1737, + 1731, 1734, - 1777, - 1754, - 1760, - 1761, + 1738, + 1735, + 1740, + 1736, + 1733, + 1739, + 1730, 1771, - 1774, - 1763, - 1712, - 1699, - 1782, + 1667, + 1666, + 1665, + 1778, + 1664, + 1709, + 1657, + 1708, + 1779, + 1756, + 1720, 1725, - 1703, - 1738, + 1776, + 1768, 1770, + 1679, + 1682, + 1681, + 1680, + 1683, + 1713, + 1707, + 1706, + 1691, + 1656, + 1719, + 1711, + 1775, + 1748, + 1763, + 1688, + 1692, + 1777, + 1746, + 1705, + 1685, + 1686, + 1769, + 1699, + 1754, + 1655, 1752, - 1731, 1724, + 1767, + 1744, + 1750, + 1751, + 1761, + 1764, 1753, - 1783, - 1759, + 1702, + 1689, + 1772, + 1715, + 1693, + 1728, + 1760, + 1742, + 1721, + 1714, + 1743, + 1773, + 1749, + 1651, + 1654, + 1659, + 1660, + 1712, 1661, - 1664, - 1669, - 1670, + 1676, + 1747, + 1678, + 1673, + 1774, + 1704, + 1723, 1722, - 1671, - 1686, + 1726, + 1727, + 1755, + 1690, + 1766, + 1687, 1757, - 1688, - 1683, - 1784, - 1714, - 1733, - 1732, - 1736, - 1737, - 1765, - 1700, - 1776, - 1697, - 1767, - 1775 + 1765 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3822, + "line": 3726, "character": 12 } ] @@ -3590,7 +3590,7 @@ ] }, { - "id": 1790, + "id": 1780, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3600,7 +3600,7 @@ }, "children": [ { - "id": 1793, + "id": 1783, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3608,14 +3608,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5051, + "line": 4955, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 1791, + "id": 1781, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3623,14 +3623,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5049, + "line": 4953, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 1792, + "id": 1782, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3638,7 +3638,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5050, + "line": 4954, "character": 4 } ], @@ -3650,22 +3650,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1793, - 1791, - 1792 + 1783, + 1781, + 1782 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5048, + "line": 4952, "character": 12 } ] }, { - "id": 1656, + "id": 1646, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -3675,7 +3675,7 @@ }, "children": [ { - "id": 1658, + "id": 1648, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -3686,14 +3686,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3667, + "line": 3571, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 1659, + "id": 1649, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -3704,14 +3704,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3671, + "line": 3575, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 1657, + "id": 1647, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -3722,7 +3722,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3663, + "line": 3567, "character": 4 } ], @@ -3734,16 +3734,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1658, - 1659, - 1657 + 1648, + 1649, + 1647 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3659, + "line": 3563, "character": 12 } ] @@ -5955,7 +5955,7 @@ ] }, { - "id": 2135, + "id": 2125, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -5965,7 +5965,7 @@ }, "children": [ { - "id": 2139, + "id": 2129, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -5988,7 +5988,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2143, + "id": 2133, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6012,7 +6012,7 @@ "defaultValue": "\"create\"" }, { - "id": 2137, + "id": 2127, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6035,7 +6035,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2142, + "id": 2132, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6058,7 +6058,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2138, + "id": 2128, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6081,7 +6081,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2140, + "id": 2130, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6104,7 +6104,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2136, + "id": 2126, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6127,7 +6127,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2141, + "id": 2131, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6150,7 +6150,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2144, + "id": 2134, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6179,15 +6179,15 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2139, - 2143, - 2137, - 2142, - 2138, - 2140, - 2136, - 2141, - 2144 + 2129, + 2133, + 2127, + 2132, + 2128, + 2130, + 2126, + 2131, + 2134 ] } ], @@ -6200,14 +6200,14 @@ ] }, { - "id": 2310, + "id": 2300, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2312, + "id": 2302, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -6222,7 +6222,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2313, + "id": 2303, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -6237,7 +6237,7 @@ "defaultValue": "\"none\"" }, { - "id": 2311, + "id": 2301, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -6257,9 +6257,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2312, - 2313, - 2311 + 2302, + 2303, + 2301 ] } ], @@ -6272,7 +6272,7 @@ ] }, { - "id": 2145, + "id": 2135, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -6288,7 +6288,7 @@ }, "children": [ { - "id": 2148, + "id": 2138, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -6306,7 +6306,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2151, + "id": 2141, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -6324,7 +6324,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2149, + "id": 2139, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -6342,7 +6342,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2146, + "id": 2136, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -6360,7 +6360,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2150, + "id": 2140, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -6378,7 +6378,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2147, + "id": 2137, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -6401,12 +6401,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2148, - 2151, - 2149, - 2146, - 2150, - 2147 + 2138, + 2141, + 2139, + 2136, + 2140, + 2137 ] } ], @@ -6480,6 +6480,31 @@ ], "defaultValue": "\"addColumns\"" }, + { + "id": 1645, + "name": "AnswerChartSwitcher", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers the table visualization re-render with the updated data.\nIncludes the following properties:", + "tags": [ + { + "tag": "param", + "text": "`columnDataLite` - an array of object containing the\ndata value modifications retrieved from the `EmbedEvent.TableVizRendered`\npayload.For example, { columnDataLite: []}`.\n", + "param": "-" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3555, + "character": 4 + } + ], + "defaultValue": "\"AnswerChartSwitcher\"" + }, { "id": 1630, "name": "AskSage", @@ -6613,51 +6638,28 @@ }, { "id": 1644, - "name": "DeleteLastSpotterPrompt", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Triggers the delete last spotter prompt event for the Spotter experience.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.DeleteLastSpotterPrompt)\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3552, - "character": 4 - } - ], - "defaultValue": "\"DeleteLastSpotterPrompt\"" - }, - { - "id": 1646, - "name": "DeleteSpotterPrompt", + "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Triggers the delete spotter prompt event for the Spotter experience.", + "shortText": "Triggers the table visualization re-render with the updated data.\nIncludes the following properties:", "tags": [ { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.DeleteSpotterPrompt)\n```\n" + "tag": "param", + "text": "`columnDataLite` - an array of object containing the\ndata value modifications retrieved from the `EmbedEvent.TableVizRendered`\npayload.For example, { columnDataLite: []}`.\n", + "param": "-" } ] }, "sources": [ { "fileName": "types.ts", - "line": 3570, + "line": 3546, "character": 4 } ], - "defaultValue": "\"DeleteSpotterPrompt\"" + "defaultValue": "\"DeleteLastPrompt\"" }, { "id": 1613, @@ -6804,102 +6806,6 @@ ], "defaultValue": "\"downloadAsXLSX\"" }, - { - "id": 1653, - "name": "DownloadPdfSpotterAnswer", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Triggers the download pdf spotter answer event for the Spotter experience.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.DownloadPdfSpotterAnswer)\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3633, - "character": 4 - } - ], - "defaultValue": "\"DownloadPdfSpotterAnswer\"" - }, - { - "id": 1654, - "name": "DownloadPngSpotterAnswer", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Triggers the download png spotter answer event for the Spotter experience.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.DownloadPngSpotterAnswer)\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3642, - "character": 4 - } - ], - "defaultValue": "\"DownloadPngSpotterAnswer\"" - }, - { - "id": 1651, - "name": "DownloadSpotterAnswer", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Triggers the download spotter answer event for the Spotter experience.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.DownloadSpotterAnswer)\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3615, - "character": 4 - } - ], - "defaultValue": "\"DownloadSpotterAnswer\"" - }, - { - "id": 1652, - "name": "DownloadXlsxSpotterAnswer", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Triggers the download xlsx spotter answer event for the Spotter experience.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.DownloadXlsxSpotterAnswer)\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3624, - "character": 4 - } - ], - "defaultValue": "\"DownloadXlsxSpotterAnswer\"" - }, { "id": 1581, "name": "DrillDown", @@ -6987,52 +6893,29 @@ "defaultValue": "\"edit\"" }, { - "id": 1645, - "name": "EditLastSpotterPrompt", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Triggers the edit last spotter prompt event for the Spotter experience.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.EditLastSpotterPrompt)\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3561, - "character": 4 - } - ], - "defaultValue": "\"EditLastSpotterPrompt\"" - }, - { - "id": 1647, - "name": "EditSpotterAnswer", + "id": 1641, + "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Triggers the edit spotter answer event for the Spotter experience.", + "shortText": "Triggers the table visualization re-render with the updated data.\nIncludes the following properties:", "tags": [ { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.EditSpotterAnswer)\n```\n" + "tag": "param", + "text": "`columnDataLite` - an array of object containing the\ndata value modifications retrieved from the `EmbedEvent.TableVizRendered`\npayload.For example, { columnDataLite: []}`.\n", + "param": "-" } ] }, "sources": [ { "fileName": "types.ts", - "line": 3579, + "line": 3519, "character": 4 } ], - "defaultValue": "\"EditSpotterAnswer\"" + "defaultValue": "\"EditLastPrompt\"" }, { "id": 1598, @@ -7364,30 +7247,6 @@ ], "defaultValue": "\"makeACopy\"" }, - { - "id": 1650, - "name": "MakeACopySpotterAnswer", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Triggers the make a copy spotter answer event for the Spotter experience.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.MakeACopySpotterAnswer)\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3606, - "character": 4 - } - ], - "defaultValue": "\"MakeACopySpotterAnswer\"" - }, { "id": 1605, "name": "ManageMonitor", @@ -7592,30 +7451,6 @@ ], "defaultValue": "\"pin\"" }, - { - "id": 1649, - "name": "PinSpotterAnswer", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Triggers the pin spotter answer event for the Spotter experience.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.PinSpotterAnswer)\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3597, - "character": 4 - } - ], - "defaultValue": "\"PinSpotterAnswer\"" - }, { "id": 1608, "name": "Present", @@ -7656,22 +7491,19 @@ "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Triggers the preview spotter data event for the Spotter experience.", + "shortText": "Triggers the table visualization re-render with the updated data.\nIncludes the following properties:", "tags": [ { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.PreviewSpotterData, {\n query: 'sales by region'\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.8.0.cl\n" + "tag": "param", + "text": "`columnDataLite` - an array of object containing the\ndata value modifications retrieved from the `EmbedEvent.TableVizRendered`\npayload.For example, { columnDataLite: []}`.\n", + "param": "-" } ] }, "sources": [ { "fileName": "types.ts", - "line": 3534, + "line": 3528, "character": 4 } ], @@ -7805,18 +7637,19 @@ "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Triggers the reset spotter conversation event for the Spotter experience.", + "shortText": "Triggers the table visualization re-render with the updated data.\nIncludes the following properties:", "tags": [ { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.ResetSpotterConversation)\n```\n" + "tag": "param", + "text": "`columnDataLite` - an array of object containing the\ndata value modifications retrieved from the `EmbedEvent.TableVizRendered`\npayload.For example, { columnDataLite: []}`.\n", + "param": "-" } ] }, "sources": [ { "fileName": "types.ts", - "line": 3543, + "line": 3537, "character": 4 } ], @@ -7883,30 +7716,6 @@ ], "defaultValue": "\"saveAnswer\"" }, - { - "id": 1648, - "name": "SaveSpotterAnswer", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Triggers the save spotter answer event for the Spotter experience.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.SaveSpotterAnswer)\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3588, - "character": 4 - } - ], - "defaultValue": "\"SaveSpotterAnswer\"" - }, { "id": 1595, "name": "Schedule", @@ -8002,34 +7811,6 @@ ], "defaultValue": "\"search\"" }, - { - "id": 1640, - "name": "SearchQuery", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Triggers the search query event for the Spotter experience.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.SearchQuery, {\n query: 'sales by region'\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.8.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3513, - "character": 4 - } - ], - "defaultValue": "\"SearchQuery\"" - }, { "id": 1586, "name": "SetActiveTab", @@ -8257,28 +8038,29 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1655, - "name": "SpotterAnswerChartSwitcher", + "id": 1640, + "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Triggers the spotter answer chart switcher event for the Spotter experience.", + "shortText": "Triggers the table visualization re-render with the updated data.\nIncludes the following properties:", "tags": [ { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.SpotterAnswerChartSwitcher)\n```\n" + "tag": "param", + "text": "`columnDataLite` - an array of object containing the\ndata value modifications retrieved from the `EmbedEvent.TableVizRendered`\npayload.For example, { columnDataLite: []}`.\n", + "param": "-" } ] }, "sources": [ { "fileName": "types.ts", - "line": 3651, + "line": 3510, "character": 4 } ], - "defaultValue": "\"SpotterAnswerChartSwitcher\"" + "defaultValue": "\"SpotterSearch\"" }, { "id": 1620, @@ -8577,30 +8359,6 @@ ], "defaultValue": "\"updateSageQuery\"" }, - { - "id": 1641, - "name": "UpdateSpotterQuery", - "kind": 16, - "kindString": "Enumeration member", - "flags": {}, - "comment": { - "shortText": "Triggers the edit spotter query event for the Spotter experience.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nspotterEmbed.trigger(HostEvent.EditSpotterQuery, {\n query: 'sales by region'\n})\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 3522, - "character": 4 - } - ], - "defaultValue": "\"UpdateSpotterQuery\"" - }, { "id": 1599, "name": "UpdateTML", @@ -8664,25 +8422,20 @@ "kind": 16, "children": [ 1590, + 1645, 1630, 1607, 1604, 1611, 1644, - 1646, 1613, 1615, 1600, 1614, 1616, - 1653, - 1654, - 1651, - 1652, 1581, 1606, - 1645, - 1647, + 1641, 1598, 1603, 1597, @@ -8694,13 +8447,11 @@ 1625, 1594, 1601, - 1650, 1605, 1621, 1588, 1589, 1593, - 1649, 1608, 1642, 1602, @@ -8710,11 +8461,9 @@ 1643, 1618, 1637, - 1648, 1595, 1596, 1580, - 1640, 1586, 1627, 1626, @@ -8722,7 +8471,7 @@ 1617, 1610, 1612, - 1655, + 1640, 1620, 1619, 1639, @@ -8732,7 +8481,6 @@ 1635, 1587, 1628, - 1641, 1599, 1592 ] @@ -8747,7 +8495,7 @@ ] }, { - "id": 2344, + "id": 2334, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -8763,7 +8511,7 @@ }, "children": [ { - "id": 2347, + "id": 2337, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -8781,7 +8529,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2348, + "id": 2338, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -8799,7 +8547,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2345, + "id": 2335, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -8817,7 +8565,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2349, + "id": 2339, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8835,7 +8583,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2346, + "id": 2336, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -8858,11 +8606,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2347, - 2348, - 2345, - 2349, - 2346 + 2337, + 2338, + 2335, + 2339, + 2336 ] } ], @@ -8875,7 +8623,7 @@ ] }, { - "id": 2287, + "id": 2277, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -8885,7 +8633,7 @@ }, "children": [ { - "id": 2292, + "id": 2282, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -8906,14 +8654,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5173, + "line": 5077, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2289, + "id": 2279, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -8934,14 +8682,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5134, + "line": 5038, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2291, + "id": 2281, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -8962,14 +8710,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5159, + "line": 5063, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2288, + "id": 2278, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -8990,14 +8738,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5122, + "line": 5026, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2293, + "id": 2283, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -9018,14 +8766,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5185, + "line": 5089, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2290, + "id": 2280, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -9046,7 +8794,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5146, + "line": 5050, "character": 4 } ], @@ -9058,19 +8806,19 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2292, - 2289, - 2291, - 2288, - 2293, - 2290 + 2282, + 2279, + 2281, + 2278, + 2283, + 2280 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5109, + "line": 5013, "character": 12 } ] @@ -9236,14 +8984,14 @@ ] }, { - "id": 2124, + "id": 2114, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2125, + "id": 2115, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -9251,14 +8999,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5038, + "line": 4942, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2127, + "id": 2117, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -9266,14 +9014,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5040, + "line": 4944, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2126, + "id": 2116, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -9281,14 +9029,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5039, + "line": 4943, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2128, + "id": 2118, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -9296,7 +9044,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5041, + "line": 4945, "character": 4 } ], @@ -9308,17 +9056,17 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2125, - 2127, - 2126, - 2128 + 2115, + 2117, + 2116, + 2118 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5037, + "line": 4941, "character": 12 } ] @@ -9636,14 +9384,14 @@ ] }, { - "id": 2337, + "id": 2327, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2342, + "id": 2332, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -9658,7 +9406,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2341, + "id": 2331, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -9673,7 +9421,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2340, + "id": 2330, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -9688,7 +9436,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2343, + "id": 2333, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -9703,7 +9451,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2338, + "id": 2328, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -9718,7 +9466,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2339, + "id": 2329, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -9738,12 +9486,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2342, - 2341, - 2340, - 2343, - 2338, - 2339 + 2332, + 2331, + 2330, + 2333, + 2328, + 2329 ] } ], @@ -9863,7 +9611,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2314, + "id": 2304, "name": "VizPoint" } } @@ -11051,7 +10799,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2152, + "id": 2142, "name": "DOMSelector" } }, @@ -11063,7 +10811,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2050, + "id": 2040, "name": "AppViewConfig" } } @@ -11674,7 +11422,7 @@ }, "type": { "type": "reference", - "id": 2156, + "id": 2146, "name": "MessageCallback" } } @@ -11753,7 +11501,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2156, + "id": 2146, "name": "MessageCallback" } }, @@ -11765,7 +11513,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2153, + "id": 2143, "name": "MessageOptions" }, "defaultValue": "..." @@ -12195,7 +11943,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2337, + "id": 2327, "name": "UIPassthroughEvent" } } @@ -13130,7 +12878,7 @@ }, "type": { "type": "reference", - "id": 2156, + "id": 2146, "name": "MessageCallback" } } @@ -13212,7 +12960,7 @@ }, "type": { "type": "reference", - "id": 2156, + "id": 2146, "name": "MessageCallback" } }, @@ -13227,7 +12975,7 @@ }, "type": { "type": "reference", - "id": 2153, + "id": 2143, "name": "MessageOptions" }, "defaultValue": "..." @@ -13667,7 +13415,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2337, + "id": 2327, "name": "UIPassthroughEvent" } } @@ -13830,7 +13578,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2152, + "id": 2142, "name": "DOMSelector" } }, @@ -13842,7 +13590,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1936, + "id": 1926, "name": "LiveboardViewConfig" } } @@ -14444,7 +14192,7 @@ }, "type": { "type": "reference", - "id": 2156, + "id": 2146, "name": "MessageCallback" } } @@ -14523,7 +14271,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2156, + "id": 2146, "name": "MessageCallback" } }, @@ -14535,7 +14283,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2153, + "id": 2143, "name": "MessageOptions" }, "defaultValue": "..." @@ -14965,7 +14713,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2337, + "id": 2327, "name": "UIPassthroughEvent" } } @@ -15130,7 +14878,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2152, + "id": 2142, "name": "DOMSelector" } }, @@ -15142,7 +14890,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2002, + "id": 1992, "name": "SageViewConfig" } } @@ -15676,7 +15424,7 @@ }, "type": { "type": "reference", - "id": 2156, + "id": 2146, "name": "MessageCallback" } } @@ -15755,7 +15503,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2156, + "id": 2146, "name": "MessageCallback" } }, @@ -15767,7 +15515,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2153, + "id": 2143, "name": "MessageOptions" }, "defaultValue": "..." @@ -16198,7 +15946,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2337, + "id": 2327, "name": "UIPassthroughEvent" } } @@ -16373,7 +16121,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1897, + "id": 1887, "name": "SearchBarViewConfig" } } @@ -16874,7 +16622,7 @@ }, "type": { "type": "reference", - "id": 2156, + "id": 2146, "name": "MessageCallback" } } @@ -16956,7 +16704,7 @@ }, "type": { "type": "reference", - "id": 2156, + "id": 2146, "name": "MessageCallback" } }, @@ -16971,7 +16719,7 @@ }, "type": { "type": "reference", - "id": 2153, + "id": 2143, "name": "MessageOptions" }, "defaultValue": "..." @@ -17414,7 +17162,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2337, + "id": 2327, "name": "UIPassthroughEvent" } } @@ -17573,7 +17321,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2152, + "id": 2142, "name": "DOMSelector" } }, @@ -17585,7 +17333,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1842, + "id": 1832, "name": "SearchViewConfig" } } @@ -18118,7 +17866,7 @@ }, "type": { "type": "reference", - "id": 2156, + "id": 2146, "name": "MessageCallback" } } @@ -18200,7 +17948,7 @@ }, "type": { "type": "reference", - "id": 2156, + "id": 2146, "name": "MessageCallback" } }, @@ -18215,7 +17963,7 @@ }, "type": { "type": "reference", - "id": 2153, + "id": 2143, "name": "MessageOptions" }, "defaultValue": "..." @@ -18658,7 +18406,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2337, + "id": 2327, "name": "UIPassthroughEvent" } } @@ -18774,7 +18522,7 @@ ] }, { - "id": 2050, + "id": 2040, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -18790,7 +18538,7 @@ }, "children": [ { - "id": 2085, + "id": 2075, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -18820,20 +18568,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2086, + "id": 2076, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2087, + "id": 2077, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2088, + "id": 2078, "name": "key", "kind": 32768, "flags": {}, @@ -18869,7 +18617,7 @@ } }, { - "id": 2121, + "id": 2111, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -18910,7 +18658,7 @@ } }, { - "id": 2074, + "id": 2064, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -18947,7 +18695,7 @@ } }, { - "id": 2100, + "id": 2090, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -18976,7 +18724,7 @@ ], "type": { "type": "reference", - "id": 1790, + "id": 1780, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -18985,7 +18733,7 @@ } }, { - "id": 2084, + "id": 2074, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -19014,7 +18762,7 @@ ], "type": { "type": "reference", - "id": 2169, + "id": 2159, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -19023,7 +18771,7 @@ } }, { - "id": 2075, + "id": 2065, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -19060,7 +18808,7 @@ } }, { - "id": 2122, + "id": 2112, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -19101,7 +18849,7 @@ } }, { - "id": 2053, + "id": 2043, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -19138,7 +18886,7 @@ } }, { - "id": 2103, + "id": 2093, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -19175,7 +18923,7 @@ } }, { - "id": 2094, + "id": 2084, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -19212,7 +18960,7 @@ } }, { - "id": 2093, + "id": 2083, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -19243,7 +18991,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -19253,7 +19001,7 @@ } }, { - "id": 2117, + "id": 2107, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -19294,7 +19042,7 @@ } }, { - "id": 2076, + "id": 2066, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -19331,7 +19079,7 @@ } }, { - "id": 2073, + "id": 2063, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -19364,7 +19112,7 @@ } }, { - "id": 2123, + "id": 2113, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -19405,7 +19153,7 @@ } }, { - "id": 2054, + "id": 2044, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -19441,7 +19189,7 @@ } }, { - "id": 2065, + "id": 2055, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -19478,7 +19226,7 @@ } }, { - "id": 2120, + "id": 2110, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -19515,7 +19263,7 @@ } }, { - "id": 2116, + "id": 2106, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -19553,7 +19301,7 @@ } }, { - "id": 2119, + "id": 2109, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -19591,7 +19339,7 @@ } }, { - "id": 2105, + "id": 2095, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -19628,7 +19376,7 @@ } }, { - "id": 2109, + "id": 2099, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -19657,7 +19405,7 @@ ], "type": { "type": "reference", - "id": 2129, + "id": 2119, "name": "FrameParams" }, "inheritedFrom": { @@ -19666,7 +19414,7 @@ } }, { - "id": 2066, + "id": 2056, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -19700,7 +19448,7 @@ } }, { - "id": 2095, + "id": 2085, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -19735,7 +19483,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -19745,7 +19493,7 @@ } }, { - "id": 2091, + "id": 2081, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -19776,7 +19524,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2135, + "id": 2125, "name": "HomeLeftNavItem" } }, @@ -19786,7 +19534,7 @@ } }, { - "id": 2089, + "id": 2079, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -19818,7 +19566,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2145, + "id": 2135, "name": "HomepageModule" } }, @@ -19828,7 +19576,7 @@ } }, { - "id": 2092, + "id": 2082, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -19860,7 +19608,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2344, + "id": 2334, "name": "ListPageColumns" } }, @@ -19870,7 +19618,7 @@ } }, { - "id": 2097, + "id": 2087, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -19910,7 +19658,7 @@ } }, { - "id": 2058, + "id": 2048, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -19948,7 +19696,7 @@ } }, { - "id": 2055, + "id": 2045, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -19985,7 +19733,7 @@ } }, { - "id": 2052, + "id": 2042, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -20023,7 +19771,7 @@ } }, { - "id": 2081, + "id": 2071, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -20060,7 +19808,7 @@ } }, { - "id": 2067, + "id": 2057, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -20097,7 +19845,7 @@ } }, { - "id": 2057, + "id": 2047, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -20134,7 +19882,7 @@ } }, { - "id": 2056, + "id": 2046, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -20171,7 +19919,7 @@ } }, { - "id": 2063, + "id": 2053, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -20207,7 +19955,7 @@ } }, { - "id": 2059, + "id": 2049, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -20245,7 +19993,7 @@ } }, { - "id": 2078, + "id": 2068, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -20270,12 +20018,12 @@ ], "type": { "type": "reference", - "id": 2310, + "id": 2300, "name": "HomePageSearchBarMode" } }, { - "id": 2114, + "id": 2104, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -20312,7 +20060,7 @@ } }, { - "id": 2079, + "id": 2069, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -20349,7 +20097,7 @@ } }, { - "id": 2072, + "id": 2062, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -20382,7 +20130,7 @@ } }, { - "id": 2077, + "id": 2067, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -20411,7 +20159,7 @@ } }, { - "id": 2083, + "id": 2073, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -20448,7 +20196,7 @@ } }, { - "id": 2101, + "id": 2091, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -20485,7 +20233,7 @@ } }, { - "id": 2099, + "id": 2089, "name": "locale", "kind": 1024, "kindString": "Property", @@ -20522,7 +20270,7 @@ } }, { - "id": 2070, + "id": 2060, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -20559,7 +20307,7 @@ } }, { - "id": 2071, + "id": 2061, "name": "modularHomeExperienceV3", "kind": 1024, "kindString": "Property", @@ -20596,7 +20344,7 @@ } }, { - "id": 2104, + "id": 2094, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -20633,7 +20381,7 @@ } }, { - "id": 2061, + "id": 2051, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -20668,7 +20416,7 @@ } }, { - "id": 2060, + "id": 2050, "name": "path", "kind": 1024, "kindString": "Property", @@ -20702,7 +20450,7 @@ } }, { - "id": 2107, + "id": 2097, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -20739,7 +20487,7 @@ } }, { - "id": 2106, + "id": 2096, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -20776,7 +20524,7 @@ } }, { - "id": 2090, + "id": 2080, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -20808,7 +20556,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2145, + "id": 2135, "name": "HomepageModule" } }, @@ -20818,7 +20566,7 @@ } }, { - "id": 2112, + "id": 2102, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -20859,7 +20607,7 @@ } }, { - "id": 2113, + "id": 2103, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -20890,7 +20638,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2284, + "id": 2274, "name": "RuntimeParameter" } }, @@ -20900,7 +20648,7 @@ } }, { - "id": 2098, + "id": 2088, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -20937,7 +20685,7 @@ } }, { - "id": 2069, + "id": 2059, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -20974,7 +20722,7 @@ } }, { - "id": 2082, + "id": 2072, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -21011,7 +20759,7 @@ } }, { - "id": 2068, + "id": 2058, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -21048,7 +20796,7 @@ } }, { - "id": 2080, + "id": 2070, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -21085,7 +20833,7 @@ } }, { - "id": 2051, + "id": 2041, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -21122,7 +20870,7 @@ } }, { - "id": 2062, + "id": 2052, "name": "tag", "kind": 1024, "kindString": "Property", @@ -21155,7 +20903,7 @@ } }, { - "id": 2096, + "id": 2086, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -21191,7 +20939,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -21206,69 +20954,69 @@ "title": "Properties", "kind": 1024, "children": [ - 2085, - 2121, - 2074, - 2100, - 2084, 2075, - 2122, - 2053, - 2103, - 2094, - 2093, - 2117, - 2076, - 2073, - 2123, - 2054, + 2111, + 2064, + 2090, + 2074, 2065, - 2120, - 2116, - 2119, - 2105, - 2109, + 2112, + 2043, + 2093, + 2084, + 2083, + 2107, 2066, - 2095, - 2091, - 2089, - 2092, - 2097, - 2058, + 2063, + 2113, + 2044, 2055, - 2052, - 2081, - 2067, - 2057, + 2110, + 2106, + 2109, + 2095, + 2099, 2056, - 2063, - 2059, - 2078, - 2114, + 2085, + 2081, 2079, - 2072, - 2077, - 2083, - 2101, - 2099, - 2070, + 2082, + 2087, + 2048, + 2045, + 2042, 2071, + 2057, + 2047, + 2046, + 2053, + 2049, + 2068, 2104, - 2061, - 2060, - 2107, - 2106, - 2090, - 2112, - 2113, - 2098, 2069, - 2082, - 2068, - 2080, - 2051, 2062, - 2096 + 2067, + 2073, + 2091, + 2089, + 2060, + 2061, + 2094, + 2051, + 2050, + 2097, + 2096, + 2080, + 2102, + 2103, + 2088, + 2059, + 2072, + 2058, + 2070, + 2041, + 2052, + 2086 ] } ], @@ -22160,7 +21908,7 @@ ], "type": { "type": "reference", - "id": 1790, + "id": 1780, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -22198,7 +21946,7 @@ ], "type": { "type": "reference", - "id": 2169, + "id": 2159, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -22353,7 +22101,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -22624,7 +22372,7 @@ ], "type": { "type": "reference", - "id": 2129, + "id": 2119, "name": "FrameParams" }, "inheritedFrom": { @@ -22668,7 +22416,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -22709,7 +22457,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2135, + "id": 2125, "name": "HomeLeftNavItem" } }, @@ -22751,7 +22499,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2145, + "id": 2135, "name": "HomepageModule" } }, @@ -22793,7 +22541,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2344, + "id": 2334, "name": "ListPageColumns" } }, @@ -23097,7 +22845,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2145, + "id": 2135, "name": "HomepageModule" } }, @@ -23179,7 +22927,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2284, + "id": 2274, "name": "RuntimeParameter" } }, @@ -23262,7 +23010,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -23555,7 +23303,7 @@ ], "type": { "type": "reference", - "id": 1790, + "id": 1780, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -23593,7 +23341,7 @@ ], "type": { "type": "reference", - "id": 2169, + "id": 2159, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -23781,7 +23529,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -24052,7 +23800,7 @@ ], "type": { "type": "reference", - "id": 2129, + "id": 2119, "name": "FrameParams" }, "inheritedFrom": { @@ -24096,7 +23844,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -24137,7 +23885,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2135, + "id": 2125, "name": "HomeLeftNavItem" } }, @@ -24179,7 +23927,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2145, + "id": 2135, "name": "HomepageModule" } }, @@ -24221,7 +23969,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2344, + "id": 2334, "name": "ListPageColumns" } }, @@ -24591,7 +24339,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2145, + "id": 2135, "name": "HomepageModule" } }, @@ -24673,7 +24421,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2284, + "id": 2274, "name": "RuntimeParameter" } }, @@ -24812,7 +24560,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -24945,7 +24693,7 @@ ] }, { - "id": 2317, + "id": 2307, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -24960,7 +24708,7 @@ }, "children": [ { - "id": 2318, + "id": 2308, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -24970,21 +24718,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5082, + "line": 4986, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2319, + "id": 2309, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2320, + "id": 2310, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -24992,18 +24740,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5083, + "line": 4987, "character": 8 } ], "type": { "type": "reference", - "id": 2314, + "id": 2304, "name": "VizPoint" } }, { - "id": 2321, + "id": 2311, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -25011,7 +24759,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5084, + "line": 4988, "character": 8 } ], @@ -25019,7 +24767,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2314, + "id": 2304, "name": "VizPoint" } } @@ -25030,8 +24778,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2320, - 2321 + 2310, + 2311 ] } ] @@ -25039,7 +24787,7 @@ } }, { - "id": 2322, + "id": 2312, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -25047,21 +24795,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5086, + "line": 4990, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2323, + "id": 2313, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2331, + "id": 2321, "name": "columns", "kind": 1024, "kindString": "Property", @@ -25069,7 +24817,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5094, + "line": 4998, "character": 8 } ], @@ -25082,7 +24830,7 @@ } }, { - "id": 2332, + "id": 2322, "name": "data", "kind": 1024, "kindString": "Property", @@ -25090,7 +24838,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5095, + "line": 4999, "character": 8 } ], @@ -25103,7 +24851,7 @@ } }, { - "id": 2325, + "id": 2315, "name": "id", "kind": 1024, "kindString": "Property", @@ -25111,7 +24859,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5088, + "line": 4992, "character": 8 } ], @@ -25121,7 +24869,7 @@ } }, { - "id": 2324, + "id": 2314, "name": "name", "kind": 1024, "kindString": "Property", @@ -25129,7 +24877,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5087, + "line": 4991, "character": 8 } ], @@ -25139,7 +24887,7 @@ } }, { - "id": 2326, + "id": 2316, "name": "sources", "kind": 1024, "kindString": "Property", @@ -25147,21 +24895,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5089, + "line": 4993, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2327, + "id": 2317, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2328, + "id": 2318, "name": "header", "kind": 1024, "kindString": "Property", @@ -25169,21 +24917,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5090, + "line": 4994, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2329, + "id": 2319, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2330, + "id": 2320, "name": "guid", "kind": 1024, "kindString": "Property", @@ -25191,7 +24939,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5091, + "line": 4995, "character": 16 } ], @@ -25206,7 +24954,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2330 + 2320 ] } ] @@ -25219,7 +24967,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2328 + 2318 ] } ] @@ -25232,23 +24980,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2331, - 2332, - 2325, - 2324, - 2326 + 2321, + 2322, + 2315, + 2314, + 2316 ] } ], "indexSignature": { - "id": 2333, + "id": 2323, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2334, + "id": 2324, "name": "key", "kind": 32768, "flags": {}, @@ -25267,7 +25015,7 @@ } }, { - "id": 2335, + "id": 2325, "name": "session", "kind": 1024, "kindString": "Property", @@ -25275,7 +25023,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5098, + "line": 5002, "character": 4 } ], @@ -25286,7 +25034,7 @@ } }, { - "id": 2336, + "id": 2326, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -25296,7 +25044,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5099, + "line": 5003, "character": 4 } ], @@ -25311,23 +25059,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2318, - 2322, - 2335, - 2336 + 2308, + 2312, + 2325, + 2326 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5081, + "line": 4985, "character": 17 } ] }, { - "id": 2191, + "id": 2181, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -25337,7 +25085,7 @@ }, "children": [ { - "id": 2245, + "id": 2235, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -25360,7 +25108,7 @@ } }, { - "id": 2244, + "id": 2234, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -25383,7 +25131,7 @@ } }, { - "id": 2214, + "id": 2204, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -25406,7 +25154,7 @@ } }, { - "id": 2215, + "id": 2205, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -25429,7 +25177,7 @@ } }, { - "id": 2217, + "id": 2207, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -25452,7 +25200,7 @@ } }, { - "id": 2216, + "id": 2206, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -25475,7 +25223,7 @@ } }, { - "id": 2196, + "id": 2186, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -25498,7 +25246,7 @@ } }, { - "id": 2257, + "id": 2247, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -25521,7 +25269,7 @@ } }, { - "id": 2258, + "id": 2248, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -25544,7 +25292,7 @@ } }, { - "id": 2255, + "id": 2245, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -25567,7 +25315,7 @@ } }, { - "id": 2256, + "id": 2246, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -25590,7 +25338,7 @@ } }, { - "id": 2219, + "id": 2209, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -25613,7 +25361,7 @@ } }, { - "id": 2224, + "id": 2214, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -25636,7 +25384,7 @@ } }, { - "id": 2221, + "id": 2211, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -25659,7 +25407,7 @@ } }, { - "id": 2223, + "id": 2213, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -25682,7 +25430,7 @@ } }, { - "id": 2222, + "id": 2212, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -25705,7 +25453,7 @@ } }, { - "id": 2220, + "id": 2210, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -25728,7 +25476,7 @@ } }, { - "id": 2229, + "id": 2219, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -25751,7 +25499,7 @@ } }, { - "id": 2226, + "id": 2216, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -25774,7 +25522,7 @@ } }, { - "id": 2228, + "id": 2218, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -25797,7 +25545,7 @@ } }, { - "id": 2227, + "id": 2217, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -25820,7 +25568,7 @@ } }, { - "id": 2225, + "id": 2215, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -25843,7 +25591,7 @@ } }, { - "id": 2233, + "id": 2223, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -25866,7 +25614,7 @@ } }, { - "id": 2232, + "id": 2222, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -25889,7 +25637,7 @@ } }, { - "id": 2231, + "id": 2221, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -25912,7 +25660,7 @@ } }, { - "id": 2230, + "id": 2220, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -25935,7 +25683,7 @@ } }, { - "id": 2218, + "id": 2208, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -25958,7 +25706,7 @@ } }, { - "id": 2280, + "id": 2270, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -25981,7 +25729,7 @@ } }, { - "id": 2283, + "id": 2273, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -26004,7 +25752,7 @@ } }, { - "id": 2278, + "id": 2268, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -26027,7 +25775,7 @@ } }, { - "id": 2281, + "id": 2271, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -26050,7 +25798,7 @@ } }, { - "id": 2282, + "id": 2272, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -26073,7 +25821,7 @@ } }, { - "id": 2277, + "id": 2267, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -26096,7 +25844,7 @@ } }, { - "id": 2279, + "id": 2269, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -26119,7 +25867,7 @@ } }, { - "id": 2250, + "id": 2240, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -26142,7 +25890,7 @@ } }, { - "id": 2249, + "id": 2239, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -26165,7 +25913,7 @@ } }, { - "id": 2252, + "id": 2242, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -26188,7 +25936,7 @@ } }, { - "id": 2251, + "id": 2241, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -26211,7 +25959,7 @@ } }, { - "id": 2248, + "id": 2238, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -26234,7 +25982,7 @@ } }, { - "id": 2246, + "id": 2236, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -26257,7 +26005,7 @@ } }, { - "id": 2247, + "id": 2237, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -26280,7 +26028,7 @@ } }, { - "id": 2253, + "id": 2243, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -26303,7 +26051,7 @@ } }, { - "id": 2254, + "id": 2244, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -26326,7 +26074,7 @@ } }, { - "id": 2265, + "id": 2255, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -26349,7 +26097,7 @@ } }, { - "id": 2266, + "id": 2256, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -26372,7 +26120,7 @@ } }, { - "id": 2269, + "id": 2259, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -26395,7 +26143,7 @@ } }, { - "id": 2267, + "id": 2257, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -26418,7 +26166,7 @@ } }, { - "id": 2268, + "id": 2258, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -26441,7 +26189,7 @@ } }, { - "id": 2276, + "id": 2266, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -26464,7 +26212,7 @@ } }, { - "id": 2275, + "id": 2265, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -26487,7 +26235,7 @@ } }, { - "id": 2274, + "id": 2264, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -26510,7 +26258,7 @@ } }, { - "id": 2273, + "id": 2263, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -26533,7 +26281,7 @@ } }, { - "id": 2271, + "id": 2261, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -26556,7 +26304,7 @@ } }, { - "id": 2270, + "id": 2260, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -26579,7 +26327,7 @@ } }, { - "id": 2263, + "id": 2253, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -26602,7 +26350,7 @@ } }, { - "id": 2260, + "id": 2250, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -26625,7 +26373,7 @@ } }, { - "id": 2259, + "id": 2249, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -26648,7 +26396,7 @@ } }, { - "id": 2261, + "id": 2251, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -26671,7 +26419,7 @@ } }, { - "id": 2264, + "id": 2254, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -26694,7 +26442,7 @@ } }, { - "id": 2262, + "id": 2252, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -26717,7 +26465,7 @@ } }, { - "id": 2197, + "id": 2187, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -26740,7 +26488,7 @@ } }, { - "id": 2198, + "id": 2188, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -26763,7 +26511,7 @@ } }, { - "id": 2192, + "id": 2182, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -26786,7 +26534,7 @@ } }, { - "id": 2193, + "id": 2183, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -26809,7 +26557,7 @@ } }, { - "id": 2194, + "id": 2184, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -26832,7 +26580,7 @@ } }, { - "id": 2195, + "id": 2185, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -26855,7 +26603,7 @@ } }, { - "id": 2206, + "id": 2196, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -26878,7 +26626,7 @@ } }, { - "id": 2210, + "id": 2200, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -26901,7 +26649,7 @@ } }, { - "id": 2211, + "id": 2201, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -26924,7 +26672,7 @@ } }, { - "id": 2209, + "id": 2199, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -26947,7 +26695,7 @@ } }, { - "id": 2205, + "id": 2195, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -26970,7 +26718,7 @@ } }, { - "id": 2208, + "id": 2198, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -26993,7 +26741,7 @@ } }, { - "id": 2202, + "id": 2192, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -27016,7 +26764,7 @@ } }, { - "id": 2203, + "id": 2193, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -27039,7 +26787,7 @@ } }, { - "id": 2204, + "id": 2194, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -27062,7 +26810,7 @@ } }, { - "id": 2199, + "id": 2189, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -27085,7 +26833,7 @@ } }, { - "id": 2200, + "id": 2190, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -27108,7 +26856,7 @@ } }, { - "id": 2201, + "id": 2191, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -27131,7 +26879,7 @@ } }, { - "id": 2207, + "id": 2197, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -27154,7 +26902,7 @@ } }, { - "id": 2272, + "id": 2262, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -27177,7 +26925,7 @@ } }, { - "id": 2212, + "id": 2202, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -27200,7 +26948,7 @@ } }, { - "id": 2213, + "id": 2203, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -27223,7 +26971,7 @@ } }, { - "id": 2242, + "id": 2232, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -27246,7 +26994,7 @@ } }, { - "id": 2240, + "id": 2230, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -27269,7 +27017,7 @@ } }, { - "id": 2241, + "id": 2231, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -27292,7 +27040,7 @@ } }, { - "id": 2237, + "id": 2227, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -27315,7 +27063,7 @@ } }, { - "id": 2238, + "id": 2228, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -27338,7 +27086,7 @@ } }, { - "id": 2239, + "id": 2229, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -27361,7 +27109,7 @@ } }, { - "id": 2243, + "id": 2233, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -27384,7 +27132,7 @@ } }, { - "id": 2234, + "id": 2224, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -27407,7 +27155,7 @@ } }, { - "id": 2235, + "id": 2225, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -27430,7 +27178,7 @@ } }, { - "id": 2236, + "id": 2226, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -27458,98 +27206,98 @@ "title": "Properties", "kind": 1024, "children": [ + 2235, + 2234, + 2204, + 2205, + 2207, + 2206, + 2186, + 2247, + 2248, 2245, - 2244, + 2246, + 2209, 2214, - 2215, - 2217, - 2216, - 2196, - 2257, - 2258, - 2255, - 2256, + 2211, + 2213, + 2212, + 2210, 2219, - 2224, - 2221, + 2216, + 2218, + 2217, + 2215, 2223, 2222, + 2221, 2220, - 2229, - 2226, - 2228, - 2227, - 2225, - 2233, - 2232, - 2231, - 2230, - 2218, - 2280, - 2283, - 2278, - 2281, - 2282, - 2277, - 2279, - 2250, - 2249, - 2252, - 2251, - 2248, - 2246, - 2247, - 2253, - 2254, - 2265, - 2266, - 2269, - 2267, - 2268, - 2276, - 2275, - 2274, + 2208, + 2270, 2273, + 2268, 2271, - 2270, - 2263, - 2260, + 2272, + 2267, + 2269, + 2240, + 2239, + 2242, + 2241, + 2238, + 2236, + 2237, + 2243, + 2244, + 2255, + 2256, 2259, - 2261, + 2257, + 2258, + 2266, + 2265, 2264, - 2262, - 2197, + 2263, + 2261, + 2260, + 2253, + 2250, + 2249, + 2251, + 2254, + 2252, + 2187, + 2188, + 2182, + 2183, + 2184, + 2185, + 2196, + 2200, + 2201, + 2199, + 2195, 2198, 2192, 2193, 2194, - 2195, - 2206, - 2210, - 2211, - 2209, - 2205, - 2208, + 2189, + 2190, + 2191, + 2197, + 2262, 2202, 2203, - 2204, - 2199, - 2200, - 2201, - 2207, - 2272, - 2212, - 2213, - 2242, - 2240, - 2241, - 2237, - 2238, - 2239, - 2243, - 2234, - 2235, - 2236 + 2232, + 2230, + 2231, + 2227, + 2228, + 2229, + 2233, + 2224, + 2225, + 2226 ] } ], @@ -27562,7 +27310,7 @@ ] }, { - "id": 2179, + "id": 2169, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -27572,7 +27320,7 @@ }, "children": [ { - "id": 2181, + "id": 2171, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -27588,12 +27336,12 @@ ], "type": { "type": "reference", - "id": 2182, + "id": 2172, "name": "customCssInterface" } }, { - "id": 2180, + "id": 2170, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -27618,8 +27366,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2181, - 2180 + 2171, + 2170 ] } ], @@ -27632,7 +27380,7 @@ ] }, { - "id": 2169, + "id": 2159, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -27648,7 +27396,7 @@ }, "children": [ { - "id": 2171, + "id": 2161, "name": "content", "kind": 1024, "kindString": "Property", @@ -27665,14 +27413,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2172, + "id": 2162, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2174, + "id": 2164, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -27702,7 +27450,7 @@ } }, { - "id": 2175, + "id": 2165, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -27722,7 +27470,7 @@ } }, { - "id": 2173, + "id": 2163, "name": "strings", "kind": 1024, "kindString": "Property", @@ -27765,21 +27513,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2174, - 2175, - 2173 + 2164, + 2165, + 2163 ] } ], "indexSignature": { - "id": 2176, + "id": 2166, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2177, + "id": 2167, "name": "key", "kind": 32768, "flags": {}, @@ -27798,7 +27546,7 @@ } }, { - "id": 2178, + "id": 2168, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -27818,7 +27566,7 @@ } }, { - "id": 2170, + "id": 2160, "name": "style", "kind": 1024, "kindString": "Property", @@ -27834,7 +27582,7 @@ ], "type": { "type": "reference", - "id": 2179, + "id": 2169, "name": "CustomStyles" } } @@ -27844,9 +27592,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2171, - 2178, - 2170 + 2161, + 2168, + 2160 ] } ], @@ -27859,7 +27607,7 @@ ] }, { - "id": 1794, + "id": 1784, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -27875,7 +27623,7 @@ }, "children": [ { - "id": 1836, + "id": 1826, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -27905,20 +27653,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1837, + "id": 1827, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1838, + "id": 1828, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1839, + "id": 1829, "name": "key", "kind": 32768, "flags": {}, @@ -27950,7 +27698,7 @@ } }, { - "id": 1797, + "id": 1787, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -27973,7 +27721,7 @@ } }, { - "id": 1818, + "id": 1808, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -28015,7 +27763,7 @@ } }, { - "id": 1820, + "id": 1810, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -28044,7 +27792,7 @@ } }, { - "id": 1796, + "id": 1786, "name": "authType", "kind": 1024, "kindString": "Property", @@ -28066,7 +27814,7 @@ } }, { - "id": 1809, + "id": 1799, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -28095,7 +27843,7 @@ } }, { - "id": 1821, + "id": 1811, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -28128,7 +27876,7 @@ } }, { - "id": 1812, + "id": 1802, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -28157,7 +27905,7 @@ } }, { - "id": 1833, + "id": 1823, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -28186,7 +27934,7 @@ } }, { - "id": 1840, + "id": 1830, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -28229,7 +27977,7 @@ } }, { - "id": 1817, + "id": 1807, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -28254,12 +28002,12 @@ ], "type": { "type": "reference", - "id": 2169, + "id": 2159, "name": "CustomisationsInterface" } }, { - "id": 1831, + "id": 1821, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -28288,7 +28036,7 @@ } }, { - "id": 1814, + "id": 1804, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -28318,7 +28066,7 @@ } }, { - "id": 1835, + "id": 1825, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -28347,7 +28095,7 @@ } }, { - "id": 1810, + "id": 1800, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -28380,7 +28128,7 @@ } }, { - "id": 1841, + "id": 1831, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -28400,7 +28148,7 @@ } }, { - "id": 1830, + "id": 1820, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -28429,7 +28177,7 @@ } }, { - "id": 1808, + "id": 1798, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -28458,7 +28206,7 @@ } }, { - "id": 1803, + "id": 1793, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -28492,7 +28240,7 @@ } }, { - "id": 1829, + "id": 1819, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -28525,12 +28273,12 @@ ], "type": { "type": "reference", - "id": 2287, + "id": 2277, "name": "LogLevel" } }, { - "id": 1811, + "id": 1801, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -28559,7 +28307,7 @@ } }, { - "id": 1802, + "id": 1792, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -28592,7 +28340,7 @@ } }, { - "id": 1832, + "id": 1822, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -28621,7 +28369,7 @@ } }, { - "id": 1801, + "id": 1791, "name": "password", "kind": 1024, "kindString": "Property", @@ -28645,7 +28393,7 @@ } }, { - "id": 1827, + "id": 1817, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -28674,7 +28422,7 @@ } }, { - "id": 1813, + "id": 1803, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -28707,7 +28455,7 @@ } }, { - "id": 1804, + "id": 1794, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -28737,7 +28485,7 @@ } }, { - "id": 1806, + "id": 1796, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -28766,7 +28514,7 @@ } }, { - "id": 1828, + "id": 1818, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -28795,7 +28543,7 @@ } }, { - "id": 1807, + "id": 1797, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -28824,7 +28572,7 @@ } }, { - "id": 1816, + "id": 1806, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -28847,7 +28595,7 @@ } }, { - "id": 1815, + "id": 1805, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -28876,7 +28624,7 @@ } }, { - "id": 1795, + "id": 1785, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -28897,7 +28645,7 @@ } }, { - "id": 1819, + "id": 1809, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -28920,7 +28668,7 @@ } }, { - "id": 1800, + "id": 1790, "name": "username", "kind": 1024, "kindString": "Property", @@ -28943,7 +28691,7 @@ } }, { - "id": 1798, + "id": 1788, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -28959,7 +28707,7 @@ ], "signatures": [ { - "id": 1799, + "id": 1789, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -28987,48 +28735,48 @@ "title": "Properties", "kind": 1024, "children": [ - 1836, - 1797, - 1818, - 1820, - 1796, - 1809, - 1821, - 1812, - 1833, - 1840, - 1817, - 1831, - 1814, - 1835, - 1810, - 1841, - 1830, + 1826, + 1787, 1808, - 1803, - 1829, + 1810, + 1786, + 1799, 1811, 1802, - 1832, - 1801, - 1827, - 1813, - 1804, - 1806, - 1828, + 1823, + 1830, 1807, - 1816, - 1815, - 1795, + 1821, + 1804, + 1825, + 1800, + 1831, + 1820, + 1798, + 1793, 1819, - 1800 + 1801, + 1792, + 1822, + 1791, + 1817, + 1803, + 1794, + 1796, + 1818, + 1797, + 1806, + 1805, + 1785, + 1809, + 1790 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1798 + 1788 ] } ], @@ -29041,7 +28789,7 @@ ] }, { - "id": 2129, + "id": 2119, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -29057,7 +28805,7 @@ }, "children": [ { - "id": 2131, + "id": 2121, "name": "height", "kind": 1024, "kindString": "Property", @@ -29089,7 +28837,7 @@ } }, { - "id": 2132, + "id": 2122, "name": "loading", "kind": 1024, "kindString": "Property", @@ -29125,7 +28873,7 @@ } }, { - "id": 2130, + "id": 2120, "name": "width", "kind": 1024, "kindString": "Property", @@ -29162,9 +28910,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2131, - 2132, - 2130 + 2121, + 2122, + 2120 ] } ], @@ -29176,7 +28924,7 @@ } ], "indexSignature": { - "id": 2133, + "id": 2123, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -29186,7 +28934,7 @@ }, "parameters": [ { - "id": 2134, + "id": 2124, "name": "key", "kind": 32768, "flags": {}, @@ -29220,7 +28968,7 @@ } }, { - "id": 1936, + "id": 1926, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -29236,7 +28984,7 @@ }, "children": [ { - "id": 1947, + "id": 1937, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -29269,7 +29017,7 @@ } }, { - "id": 1965, + "id": 1955, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -29299,20 +29047,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1966, + "id": 1956, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1967, + "id": 1957, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1968, + "id": 1958, "name": "key", "kind": 32768, "flags": {}, @@ -29348,7 +29096,7 @@ } }, { - "id": 1999, + "id": 1989, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -29389,7 +29137,7 @@ } }, { - "id": 1978, + "id": 1968, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -29418,7 +29166,7 @@ ], "type": { "type": "reference", - "id": 1790, + "id": 1780, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -29427,7 +29175,7 @@ } }, { - "id": 1963, + "id": 1953, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -29464,7 +29212,7 @@ } }, { - "id": 1964, + "id": 1954, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -29493,7 +29241,7 @@ ], "type": { "type": "reference", - "id": 2169, + "id": 2159, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -29502,7 +29250,7 @@ } }, { - "id": 2000, + "id": 1990, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -29543,7 +29291,7 @@ } }, { - "id": 1938, + "id": 1928, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -29580,7 +29328,7 @@ } }, { - "id": 1981, + "id": 1971, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -29617,7 +29365,7 @@ } }, { - "id": 1971, + "id": 1961, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -29654,7 +29402,7 @@ } }, { - "id": 1970, + "id": 1960, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -29685,7 +29433,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -29695,7 +29443,7 @@ } }, { - "id": 1995, + "id": 1985, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -29736,7 +29484,7 @@ } }, { - "id": 1954, + "id": 1944, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -29773,7 +29521,7 @@ } }, { - "id": 1953, + "id": 1943, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -29810,7 +29558,7 @@ } }, { - "id": 2001, + "id": 1991, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -29851,7 +29599,7 @@ } }, { - "id": 1998, + "id": 1988, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -29888,7 +29636,7 @@ } }, { - "id": 1939, + "id": 1929, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -29924,7 +29672,7 @@ } }, { - "id": 1994, + "id": 1984, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -29962,7 +29710,7 @@ } }, { - "id": 1997, + "id": 1987, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -30000,7 +29748,7 @@ } }, { - "id": 1983, + "id": 1973, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -30037,7 +29785,7 @@ } }, { - "id": 1987, + "id": 1977, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -30066,7 +29814,7 @@ ], "type": { "type": "reference", - "id": 2129, + "id": 2119, "name": "FrameParams" }, "inheritedFrom": { @@ -30075,7 +29823,7 @@ } }, { - "id": 1937, + "id": 1927, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -30109,7 +29857,7 @@ } }, { - "id": 1972, + "id": 1962, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -30144,7 +29892,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -30154,7 +29902,7 @@ } }, { - "id": 1969, + "id": 1959, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -30186,7 +29934,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2344, + "id": 2334, "name": "ListPageColumns" } }, @@ -30196,7 +29944,7 @@ } }, { - "id": 1974, + "id": 1964, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -30236,7 +29984,7 @@ } }, { - "id": 1959, + "id": 1949, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -30273,7 +30021,7 @@ } }, { - "id": 1949, + "id": 1939, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -30310,7 +30058,7 @@ } }, { - "id": 1948, + "id": 1938, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -30343,7 +30091,7 @@ } }, { - "id": 1992, + "id": 1982, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -30380,7 +30128,7 @@ } }, { - "id": 1956, + "id": 1946, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -30417,7 +30165,7 @@ } }, { - "id": 1952, + "id": 1942, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -30450,7 +30198,7 @@ } }, { - "id": 1979, + "id": 1969, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -30487,7 +30235,7 @@ } }, { - "id": 1940, + "id": 1930, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -30520,7 +30268,7 @@ } }, { - "id": 1946, + "id": 1936, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -30553,7 +30301,7 @@ } }, { - "id": 1977, + "id": 1967, "name": "locale", "kind": 1024, "kindString": "Property", @@ -30590,7 +30338,7 @@ } }, { - "id": 1982, + "id": 1972, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -30627,7 +30375,7 @@ } }, { - "id": 1985, + "id": 1975, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -30664,7 +30412,7 @@ } }, { - "id": 1943, + "id": 1933, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -30697,7 +30445,7 @@ } }, { - "id": 1984, + "id": 1974, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -30734,7 +30482,7 @@ } }, { - "id": 1990, + "id": 1980, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -30775,7 +30523,7 @@ } }, { - "id": 1991, + "id": 1981, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -30806,7 +30554,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2284, + "id": 2274, "name": "RuntimeParameter" } }, @@ -30816,7 +30564,7 @@ } }, { - "id": 1976, + "id": 1966, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -30853,7 +30601,7 @@ } }, { - "id": 1951, + "id": 1941, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -30890,7 +30638,7 @@ } }, { - "id": 1958, + "id": 1948, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -30927,7 +30675,7 @@ } }, { - "id": 1950, + "id": 1940, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -30964,7 +30712,7 @@ } }, { - "id": 1957, + "id": 1947, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -31001,7 +30749,7 @@ } }, { - "id": 1955, + "id": 1945, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -31035,7 +30783,7 @@ } }, { - "id": 1973, + "id": 1963, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -31071,7 +30819,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -31081,7 +30829,7 @@ } }, { - "id": 1975, + "id": 1965, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -31122,7 +30870,7 @@ } }, { - "id": 1944, + "id": 1934, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -31158,7 +30906,7 @@ } }, { - "id": 1942, + "id": 1932, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -31196,57 +30944,57 @@ "title": "Properties", "kind": 1024, "children": [ - 1947, - 1965, - 1999, - 1978, - 1963, - 1964, - 2000, - 1938, - 1981, - 1971, - 1970, - 1995, - 1954, - 1953, - 2001, - 1998, - 1939, - 1994, - 1997, - 1983, - 1987, 1937, - 1972, - 1969, - 1974, - 1959, - 1949, - 1948, - 1992, - 1956, - 1952, - 1979, - 1940, - 1946, - 1977, - 1982, + 1955, + 1989, + 1968, + 1953, + 1954, + 1990, + 1928, + 1971, + 1961, + 1960, 1985, + 1944, 1943, - 1984, - 1990, 1991, - 1976, - 1951, - 1958, - 1950, - 1957, - 1955, + 1988, + 1929, + 1984, + 1987, 1973, + 1977, + 1927, + 1962, + 1959, + 1964, + 1949, + 1939, + 1938, + 1982, + 1946, + 1942, + 1969, + 1930, + 1936, + 1967, + 1972, 1975, - 1944, - 1942 + 1933, + 1974, + 1980, + 1981, + 1966, + 1941, + 1948, + 1940, + 1947, + 1945, + 1963, + 1965, + 1934, + 1932 ] } ], @@ -31402,7 +31150,7 @@ ] }, { - "id": 2284, + "id": 2274, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -31412,7 +31160,7 @@ }, "children": [ { - "id": 2285, + "id": 2275, "name": "name", "kind": 1024, "kindString": "Property", @@ -31433,7 +31181,7 @@ } }, { - "id": 2286, + "id": 2276, "name": "value", "kind": 1024, "kindString": "Property", @@ -31472,8 +31220,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2285, - 2286 + 2275, + 2276 ] } ], @@ -31486,7 +31234,7 @@ ] }, { - "id": 2002, + "id": 1992, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -31506,7 +31254,7 @@ }, "children": [ { - "id": 2015, + "id": 2005, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -31536,20 +31284,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2016, + "id": 2006, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2017, + "id": 2007, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2018, + "id": 2008, "name": "key", "kind": 32768, "flags": {}, @@ -31585,7 +31333,7 @@ } }, { - "id": 2047, + "id": 2037, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -31626,7 +31374,7 @@ } }, { - "id": 2026, + "id": 2016, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -31655,7 +31403,7 @@ ], "type": { "type": "reference", - "id": 1790, + "id": 1780, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -31664,7 +31412,7 @@ } }, { - "id": 2014, + "id": 2004, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -31693,7 +31441,7 @@ ], "type": { "type": "reference", - "id": 2169, + "id": 2159, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -31702,7 +31450,7 @@ } }, { - "id": 2048, + "id": 2038, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -31743,7 +31491,7 @@ } }, { - "id": 2012, + "id": 2002, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -31766,7 +31514,7 @@ } }, { - "id": 2029, + "id": 2019, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -31803,7 +31551,7 @@ } }, { - "id": 2007, + "id": 1997, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -31832,7 +31580,7 @@ } }, { - "id": 2021, + "id": 2011, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -31869,7 +31617,7 @@ } }, { - "id": 2020, + "id": 2010, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -31900,7 +31648,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -31910,7 +31658,7 @@ } }, { - "id": 2043, + "id": 2033, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -31951,7 +31699,7 @@ } }, { - "id": 2049, + "id": 2039, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -31992,7 +31740,7 @@ } }, { - "id": 2046, + "id": 2036, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -32029,7 +31777,7 @@ } }, { - "id": 2042, + "id": 2032, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -32067,7 +31815,7 @@ } }, { - "id": 2045, + "id": 2035, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -32105,7 +31853,7 @@ } }, { - "id": 2031, + "id": 2021, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -32142,7 +31890,7 @@ } }, { - "id": 2035, + "id": 2025, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -32171,7 +31919,7 @@ ], "type": { "type": "reference", - "id": 2129, + "id": 2119, "name": "FrameParams" }, "inheritedFrom": { @@ -32180,7 +31928,7 @@ } }, { - "id": 2022, + "id": 2012, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -32215,7 +31963,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -32225,7 +31973,7 @@ } }, { - "id": 2019, + "id": 2009, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -32257,7 +32005,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2344, + "id": 2334, "name": "ListPageColumns" } }, @@ -32267,7 +32015,7 @@ } }, { - "id": 2009, + "id": 1999, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -32296,7 +32044,7 @@ } }, { - "id": 2006, + "id": 1996, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -32325,7 +32073,7 @@ } }, { - "id": 2011, + "id": 2001, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -32354,7 +32102,7 @@ } }, { - "id": 2005, + "id": 1995, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -32387,7 +32135,7 @@ } }, { - "id": 2008, + "id": 1998, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -32416,7 +32164,7 @@ } }, { - "id": 2040, + "id": 2030, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -32453,7 +32201,7 @@ } }, { - "id": 2027, + "id": 2017, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -32490,7 +32238,7 @@ } }, { - "id": 2025, + "id": 2015, "name": "locale", "kind": 1024, "kindString": "Property", @@ -32527,7 +32275,7 @@ } }, { - "id": 2030, + "id": 2020, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -32564,7 +32312,7 @@ } }, { - "id": 2033, + "id": 2023, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -32601,7 +32349,7 @@ } }, { - "id": 2032, + "id": 2022, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -32638,7 +32386,7 @@ } }, { - "id": 2038, + "id": 2028, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -32679,7 +32427,7 @@ } }, { - "id": 2039, + "id": 2029, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -32710,7 +32458,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2284, + "id": 2274, "name": "RuntimeParameter" } }, @@ -32720,7 +32468,7 @@ } }, { - "id": 2013, + "id": 2003, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -32754,7 +32502,7 @@ } }, { - "id": 2024, + "id": 2014, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -32791,7 +32539,7 @@ } }, { - "id": 2003, + "id": 1993, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -32820,7 +32568,7 @@ } }, { - "id": 2010, + "id": 2000, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -32849,7 +32597,7 @@ } }, { - "id": 2023, + "id": 2013, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -32885,7 +32633,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -32900,43 +32648,43 @@ "title": "Properties", "kind": 1024, "children": [ - 2015, - 2047, - 2026, - 2014, - 2048, - 2012, - 2029, - 2007, - 2021, - 2020, - 2043, - 2049, - 2046, - 2042, - 2045, - 2031, - 2035, - 2022, + 2005, + 2037, + 2016, + 2004, + 2038, + 2002, 2019, - 2009, - 2006, + 1997, 2011, - 2005, - 2008, - 2040, - 2027, - 2025, - 2030, + 2010, 2033, - 2032, - 2038, 2039, - 2013, - 2024, + 2036, + 2032, + 2035, + 2021, + 2025, + 2012, + 2009, + 1999, + 1996, + 2001, + 1995, + 1998, + 2030, + 2017, + 2015, + 2020, + 2023, + 2022, + 2028, + 2029, 2003, - 2010, - 2023 + 2014, + 1993, + 2000, + 2013 ] } ], @@ -32986,7 +32734,7 @@ ] }, { - "id": 1897, + "id": 1887, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -33001,7 +32749,7 @@ }, "children": [ { - "id": 1904, + "id": 1894, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33031,20 +32779,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1905, + "id": 1895, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1906, + "id": 1896, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1907, + "id": 1897, "name": "key", "kind": 32768, "flags": {}, @@ -33080,7 +32828,7 @@ } }, { - "id": 1934, + "id": 1924, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33121,7 +32869,7 @@ } }, { - "id": 1914, + "id": 1904, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33150,7 +32898,7 @@ ], "type": { "type": "reference", - "id": 1790, + "id": 1780, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33159,7 +32907,7 @@ } }, { - "id": 1903, + "id": 1893, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33188,7 +32936,7 @@ ], "type": { "type": "reference", - "id": 2169, + "id": 2159, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33197,7 +32945,7 @@ } }, { - "id": 1899, + "id": 1889, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -33230,7 +32978,7 @@ } }, { - "id": 1898, + "id": 1888, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -33270,7 +33018,7 @@ } }, { - "id": 1917, + "id": 1907, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -33307,7 +33055,7 @@ } }, { - "id": 1910, + "id": 1900, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -33344,7 +33092,7 @@ } }, { - "id": 1909, + "id": 1899, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -33375,7 +33123,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -33385,7 +33133,7 @@ } }, { - "id": 1930, + "id": 1920, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -33426,7 +33174,7 @@ } }, { - "id": 1935, + "id": 1925, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -33467,7 +33215,7 @@ } }, { - "id": 1933, + "id": 1923, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -33504,7 +33252,7 @@ } }, { - "id": 1929, + "id": 1919, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -33542,7 +33290,7 @@ } }, { - "id": 1932, + "id": 1922, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -33580,7 +33328,7 @@ } }, { - "id": 1902, + "id": 1892, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -33613,7 +33361,7 @@ } }, { - "id": 1919, + "id": 1909, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -33650,7 +33398,7 @@ } }, { - "id": 1923, + "id": 1913, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -33679,7 +33427,7 @@ ], "type": { "type": "reference", - "id": 2129, + "id": 2119, "name": "FrameParams" }, "inheritedFrom": { @@ -33688,7 +33436,7 @@ } }, { - "id": 1911, + "id": 1901, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -33723,7 +33471,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -33733,7 +33481,7 @@ } }, { - "id": 1908, + "id": 1898, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -33765,7 +33513,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2344, + "id": 2334, "name": "ListPageColumns" } }, @@ -33775,7 +33523,7 @@ } }, { - "id": 1927, + "id": 1917, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -33812,7 +33560,7 @@ } }, { - "id": 1915, + "id": 1905, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -33849,7 +33597,7 @@ } }, { - "id": 1913, + "id": 1903, "name": "locale", "kind": 1024, "kindString": "Property", @@ -33886,7 +33634,7 @@ } }, { - "id": 1918, + "id": 1908, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -33923,7 +33671,7 @@ } }, { - "id": 1921, + "id": 1911, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -33960,7 +33708,7 @@ } }, { - "id": 1920, + "id": 1910, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -33997,7 +33745,7 @@ } }, { - "id": 1926, + "id": 1916, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -34028,7 +33776,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2284, + "id": 2274, "name": "RuntimeParameter" } }, @@ -34038,7 +33786,7 @@ } }, { - "id": 1901, + "id": 1891, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -34072,7 +33820,7 @@ } }, { - "id": 1900, + "id": 1890, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -34105,7 +33853,7 @@ } }, { - "id": 1912, + "id": 1902, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -34141,7 +33889,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -34156,35 +33904,35 @@ "title": "Properties", "kind": 1024, "children": [ + 1894, + 1924, 1904, - 1934, - 1914, - 1903, + 1893, + 1889, + 1888, + 1907, + 1900, 1899, - 1898, - 1917, - 1910, - 1909, - 1930, - 1935, - 1933, - 1929, - 1932, - 1902, - 1919, + 1920, + 1925, 1923, - 1911, - 1908, - 1927, - 1915, + 1919, + 1922, + 1892, + 1909, 1913, - 1918, - 1921, - 1920, - 1926, 1901, - 1900, - 1912 + 1898, + 1917, + 1905, + 1903, + 1908, + 1911, + 1910, + 1916, + 1891, + 1890, + 1902 ] } ], @@ -34246,7 +33994,7 @@ ] }, { - "id": 1842, + "id": 1832, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -34262,7 +34010,7 @@ }, "children": [ { - "id": 1862, + "id": 1852, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -34292,20 +34040,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1863, + "id": 1853, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1864, + "id": 1854, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1865, + "id": 1855, "name": "key", "kind": 32768, "flags": {}, @@ -34341,7 +34089,7 @@ } }, { - "id": 1854, + "id": 1844, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -34374,7 +34122,7 @@ } }, { - "id": 1844, + "id": 1834, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -34407,7 +34155,7 @@ } }, { - "id": 1843, + "id": 1833, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -34440,7 +34188,7 @@ } }, { - "id": 1894, + "id": 1884, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -34481,7 +34229,7 @@ } }, { - "id": 1857, + "id": 1847, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -34518,7 +34266,7 @@ } }, { - "id": 1873, + "id": 1863, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -34547,7 +34295,7 @@ ], "type": { "type": "reference", - "id": 1790, + "id": 1780, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -34556,7 +34304,7 @@ } }, { - "id": 1861, + "id": 1851, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -34585,7 +34333,7 @@ ], "type": { "type": "reference", - "id": 2169, + "id": 2159, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -34594,7 +34342,7 @@ } }, { - "id": 1859, + "id": 1849, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -34631,7 +34379,7 @@ } }, { - "id": 1895, + "id": 1885, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -34672,7 +34420,7 @@ } }, { - "id": 1850, + "id": 1840, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -34705,7 +34453,7 @@ } }, { - "id": 1849, + "id": 1839, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -34741,7 +34489,7 @@ } }, { - "id": 1876, + "id": 1866, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34778,7 +34526,7 @@ } }, { - "id": 1868, + "id": 1858, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34815,7 +34563,7 @@ } }, { - "id": 1867, + "id": 1857, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34846,7 +34594,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -34856,7 +34604,7 @@ } }, { - "id": 1890, + "id": 1880, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34897,7 +34645,7 @@ } }, { - "id": 1896, + "id": 1886, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34938,7 +34686,7 @@ } }, { - "id": 1847, + "id": 1837, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -34971,7 +34719,7 @@ } }, { - "id": 1893, + "id": 1883, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -35008,7 +34756,7 @@ } }, { - "id": 1889, + "id": 1879, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -35046,7 +34794,7 @@ } }, { - "id": 1892, + "id": 1882, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -35084,7 +34832,7 @@ } }, { - "id": 1853, + "id": 1843, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -35117,7 +34865,7 @@ } }, { - "id": 1878, + "id": 1868, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -35154,7 +34902,7 @@ } }, { - "id": 1860, + "id": 1850, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -35191,7 +34939,7 @@ } }, { - "id": 1848, + "id": 1838, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -35224,7 +34972,7 @@ } }, { - "id": 1882, + "id": 1872, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -35253,7 +35001,7 @@ ], "type": { "type": "reference", - "id": 2129, + "id": 2119, "name": "FrameParams" }, "inheritedFrom": { @@ -35262,7 +35010,7 @@ } }, { - "id": 1869, + "id": 1859, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -35297,7 +35045,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -35307,7 +35055,7 @@ } }, { - "id": 1866, + "id": 1856, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -35339,7 +35087,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2344, + "id": 2334, "name": "ListPageColumns" } }, @@ -35349,7 +35097,7 @@ } }, { - "id": 1845, + "id": 1835, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -35382,7 +35130,7 @@ } }, { - "id": 1846, + "id": 1836, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -35415,7 +35163,7 @@ } }, { - "id": 1855, + "id": 1845, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -35448,7 +35196,7 @@ } }, { - "id": 1887, + "id": 1877, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -35485,7 +35233,7 @@ } }, { - "id": 1858, + "id": 1848, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -35514,7 +35262,7 @@ } }, { - "id": 1874, + "id": 1864, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35551,7 +35299,7 @@ } }, { - "id": 1872, + "id": 1862, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35588,7 +35336,7 @@ } }, { - "id": 1877, + "id": 1867, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35625,7 +35373,7 @@ } }, { - "id": 1880, + "id": 1870, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35662,7 +35410,7 @@ } }, { - "id": 1879, + "id": 1869, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35699,7 +35447,7 @@ } }, { - "id": 1885, + "id": 1875, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35740,7 +35488,7 @@ } }, { - "id": 1886, + "id": 1876, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35771,7 +35519,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2284, + "id": 2274, "name": "RuntimeParameter" } }, @@ -35781,7 +35529,7 @@ } }, { - "id": 1852, + "id": 1842, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -35811,7 +35559,7 @@ } }, { - "id": 1851, + "id": 1841, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -35840,7 +35588,7 @@ } }, { - "id": 1871, + "id": 1861, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35877,7 +35625,7 @@ } }, { - "id": 1856, + "id": 1846, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -35906,7 +35654,7 @@ } }, { - "id": 1870, + "id": 1860, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35942,7 +35690,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1660, + "id": 1650, "name": "Action" } }, @@ -35957,51 +35705,51 @@ "title": "Properties", "kind": 1024, "children": [ - 1862, - 1854, + 1852, 1844, - 1843, - 1894, - 1857, - 1873, - 1861, - 1859, - 1895, - 1850, - 1849, - 1876, - 1868, - 1867, - 1890, - 1896, + 1834, + 1833, + 1884, 1847, - 1893, - 1889, - 1892, - 1853, - 1878, - 1860, - 1848, - 1882, - 1869, + 1863, + 1851, + 1849, + 1885, + 1840, + 1839, 1866, - 1845, - 1846, - 1855, - 1887, 1858, - 1874, - 1872, - 1877, + 1857, 1880, - 1879, - 1885, 1886, - 1852, - 1851, - 1871, + 1837, + 1883, + 1879, + 1882, + 1843, + 1868, + 1850, + 1838, + 1872, + 1859, 1856, - 1870 + 1835, + 1836, + 1845, + 1877, + 1848, + 1864, + 1862, + 1867, + 1870, + 1869, + 1875, + 1876, + 1842, + 1841, + 1861, + 1846, + 1860 ] } ], @@ -36248,14 +35996,14 @@ ] }, { - "id": 2314, + "id": 2304, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2315, + "id": 2305, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -36263,7 +36011,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5074, + "line": 4978, "character": 4 } ], @@ -36276,7 +36024,7 @@ } }, { - "id": 2316, + "id": 2306, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -36284,7 +36032,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5075, + "line": 4979, "character": 4 } ], @@ -36302,21 +36050,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2315, - 2316 + 2305, + 2306 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5073, + "line": 4977, "character": 17 } ] }, { - "id": 2182, + "id": 2172, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -36326,7 +36074,7 @@ }, "children": [ { - "id": 2184, + "id": 2174, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -36356,20 +36104,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2185, + "id": 2175, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2186, + "id": 2176, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2187, + "id": 2177, "name": "selector", "kind": 32768, "flags": {}, @@ -36382,7 +36130,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2188, + "id": 2178, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -36395,14 +36143,14 @@ } ], "indexSignature": { - "id": 2189, + "id": 2179, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2190, + "id": 2180, "name": "declaration", "kind": 32768, "flags": {}, @@ -36424,7 +36172,7 @@ } }, { - "id": 2183, + "id": 2173, "name": "variables", "kind": 1024, "kindString": "Property", @@ -36443,7 +36191,7 @@ ], "type": { "type": "reference", - "id": 2191, + "id": 2181, "name": "CustomCssVariables" } } @@ -36453,8 +36201,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2184, - 2183 + 2174, + 2173 ] } ], @@ -36759,7 +36507,7 @@ ] }, { - "id": 2152, + "id": 2142, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -36786,7 +36534,7 @@ } }, { - "id": 2156, + "id": 2146, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -36801,7 +36549,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2157, + "id": 2147, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -36824,7 +36572,7 @@ ], "signatures": [ { - "id": 2158, + "id": 2148, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -36834,19 +36582,19 @@ }, "parameters": [ { - "id": 2159, + "id": 2149, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2164, + "id": 2154, "name": "MessagePayload" } }, { - "id": 2160, + "id": 2150, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -36856,7 +36604,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2161, + "id": 2151, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -36870,7 +36618,7 @@ ], "signatures": [ { - "id": 2162, + "id": 2152, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -36880,7 +36628,7 @@ }, "parameters": [ { - "id": 2163, + "id": 2153, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -36911,7 +36659,7 @@ } }, { - "id": 2153, + "id": 2143, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -36935,14 +36683,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2154, + "id": 2144, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2155, + "id": 2145, "name": "start", "kind": 1024, "kindString": "Property", @@ -36970,7 +36718,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2155 + 2145 ] } ], @@ -36985,7 +36733,7 @@ } }, { - "id": 2164, + "id": 2154, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -37009,14 +36757,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2165, + "id": 2155, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2167, + "id": 2157, "name": "data", "kind": 1024, "kindString": "Property", @@ -37034,7 +36782,7 @@ } }, { - "id": 2168, + "id": 2158, "name": "status", "kind": 1024, "kindString": "Property", @@ -37054,7 +36802,7 @@ } }, { - "id": 2166, + "id": 2156, "name": "type", "kind": 1024, "kindString": "Property", @@ -37077,9 +36825,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2167, - 2168, - 2166 + 2157, + 2158, + 2156 ] } ], @@ -37484,7 +37232,7 @@ }, "type": { "type": "reference", - "id": 1794, + "id": 1784, "name": "EmbedConfig" } } @@ -37584,7 +37332,7 @@ }, "type": { "type": "reference", - "id": 1794, + "id": 1784, "name": "EmbedConfig" } } @@ -37731,7 +37479,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2124, + "id": 2114, "name": "PrefetchFeatures" } } @@ -37803,7 +37551,7 @@ ] }, { - "id": 2350, + "id": 2340, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -37819,7 +37567,7 @@ ], "signatures": [ { - "id": 2351, + "id": 2341, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -38013,7 +37761,7 @@ ] }, { - "id": 2294, + "id": 2284, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -38027,7 +37775,7 @@ ], "signatures": [ { - "id": 2295, + "id": 2285, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -38037,7 +37785,7 @@ }, "parameters": [ { - "id": 2296, + "id": 2286, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -38049,7 +37797,7 @@ } }, { - "id": 2297, + "id": 2287, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -38060,7 +37808,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2298, + "id": 2288, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -38083,24 +37831,24 @@ "title": "Enumerations", "kind": 4, "children": [ - 1660, + 1650, 1319, 1305, 1312, 1466, - 1790, - 1656, + 1780, + 1646, 1498, + 2125, + 2300, 2135, - 2310, - 2145, 1579, - 2344, - 2287, + 2334, + 2277, 1457, - 2124, + 2114, 1482, - 2337 + 2327 ] }, { @@ -38121,26 +37869,26 @@ "title": "Interfaces", "kind": 256, "children": [ - 2050, + 2040, 1321, 1067, 1257, - 2317, - 2191, - 2179, + 2307, + 2181, 2169, - 1794, - 2129, - 1936, + 2159, + 1784, + 2119, + 1926, 1478, - 2284, - 2002, - 1897, - 1842, + 2274, + 1992, + 1887, + 1832, 1447, 1454, - 2314, - 2182, + 2304, + 2172, 21, 25 ] @@ -38149,10 +37897,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2152, - 2156, - 2153, - 2164 + 2142, + 2146, + 2143, + 2154 ] }, { @@ -38168,9 +37916,9 @@ 1, 4, 7, - 2350, + 2340, 37, - 2294 + 2284 ] } ], From 555f516d0d927d71a2076dc643e773d480c0db45 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 15 May 2025 11:24:06 +0530 Subject: [PATCH 14/29] type doc changes --- static/typedoc/typedoc.json | 16133 +++++++++++++++++----------------- 1 file changed, 8124 insertions(+), 8009 deletions(-) diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 2b65d79f..b1b52624 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,67 @@ "originalName": "", "children": [ { - "id": 1650, + "id": 1111, + "name": "BodylessConversation", + "kind": 16777216, + "kindString": "Reference", + "flags": {}, + "sources": [ + { + "fileName": "index.ts", + "line": 91, + "character": 4 + } + ], + "target": 1051 + }, + { + "id": 1110, + "name": "BodylessConversationViewConfig", + "kind": 16777216, + "kindString": "Reference", + "flags": {}, + "sources": [ + { + "fileName": "index.ts", + "line": 90, + "character": 4 + } + ], + "target": 1067 + }, + { + "id": 1308, + "name": "ConversationEmbed", + "kind": 16777216, + "kindString": "Reference", + "flags": {}, + "sources": [ + { + "fileName": "index.ts", + "line": 95, + "character": 4 + } + ], + "target": 1112 + }, + { + "id": 1307, + "name": "ConversationViewConfig", + "kind": 16777216, + "kindString": "Reference", + "flags": {}, + "sources": [ + { + "fileName": "index.ts", + "line": 94, + "character": 4 + } + ], + "target": 1259 + }, + { + "id": 1655, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +87,7 @@ }, "children": [ { - "id": 1762, + "id": 1767, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +108,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4750, + "line": 4751, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 1670, + "id": 1675, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +136,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3907, + "line": 3908, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 1663, + "id": 1668, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +164,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3836, + "line": 3837, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 1662, + "id": 1667, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +188,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3825, + "line": 3826, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 1668, + "id": 1673, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +212,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3888, + "line": 3889, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 1669, + "id": 1674, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +236,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3897, + "line": 3898, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 1671, + "id": 1676, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +264,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3917, + "line": 3918, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 1745, + "id": 1750, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +292,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4555, + "line": 4556, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 1718, + "id": 1723, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +320,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4277, + "line": 4278, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1759, + "id": 1764, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +348,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4717, + "line": 4718, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 1717, + "id": 1722, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +376,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4265, + "line": 4266, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1716, + "id": 1721, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +404,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4253, + "line": 4254, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1758, + "id": 1763, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +433,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4706, + "line": 4707, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 1729, + "id": 1734, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +461,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4390, + "line": 4391, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 1732, + "id": 1737, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +489,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4424, + "line": 4425, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 1737, + "id": 1742, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +517,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4479, + "line": 4480, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 1731, + "id": 1736, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +545,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4413, + "line": 4414, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 1734, + "id": 1739, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +573,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4447, + "line": 4448, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 1738, + "id": 1743, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +601,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4489, + "line": 4490, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 1735, + "id": 1740, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +629,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4458, + "line": 4459, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 1740, + "id": 1745, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +657,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4511, + "line": 4512, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 1736, + "id": 1741, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +685,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4468, + "line": 4469, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 1733, + "id": 1738, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +713,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4435, + "line": 4436, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 1739, + "id": 1744, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +741,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4499, + "line": 4500, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 1730, + "id": 1735, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +769,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4401, + "line": 4402, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 1771, + "id": 1776, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +797,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4848, + "line": 4849, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 1667, + "id": 1672, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +821,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3879, + "line": 3880, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 1666, + "id": 1671, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +849,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3870, + "line": 3871, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 1665, + "id": 1670, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +877,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3858, + "line": 3859, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 1778, + "id": 1783, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +905,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4924, + "line": 4925, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 1664, + "id": 1669, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +929,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3847, + "line": 3848, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 1709, + "id": 1714, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +944,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4204, + "line": 4205, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 1657, + "id": 1662, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +968,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3784, + "line": 3785, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1708, + "id": 1713, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +992,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4203, + "line": 4204, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1779, + "id": 1784, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +1020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4934, + "line": 4935, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 1756, + "id": 1761, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +1048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4681, + "line": 4682, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 1720, + "id": 1725, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1076,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4297, + "line": 4298, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1725, + "id": 1730, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4348, + "line": 4349, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 1776, + "id": 1781, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1132,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4905, + "line": 4906, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 1768, + "id": 1773, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1160,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4817, + "line": 4818, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 1770, + "id": 1775, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1188,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4836, + "line": 4837, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 1679, + "id": 1684, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1212,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3967, + "line": 3968, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1682, + "id": 1687, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1236,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4000, + "line": 4001, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1681, + "id": 1686, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1261,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3990, + "line": 3991, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1680, + "id": 1685, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1285,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3977, + "line": 3978, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1683, + "id": 1688, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1309,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4010, + "line": 4011, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1713, + "id": 1718, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1333,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4220, + "line": 4221, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 1707, + "id": 1712, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1357,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4193, + "line": 4194, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1706, + "id": 1711, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1381,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4184, + "line": 4185, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1691, + "id": 1696, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1405,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4086, + "line": 4087, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1656, + "id": 1661, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3775, + "line": 3776, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 1719, + "id": 1724, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4286, + "line": 4287, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 1711, + "id": 1716, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1472,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4209, + "line": 4210, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 1775, + "id": 1780, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1500,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4894, + "line": 4895, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 1748, + "id": 1753, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1528,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4588, + "line": 4589, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 1763, + "id": 1768, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1556,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4763, + "line": 4764, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 1688, + "id": 1693, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1580,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4054, + "line": 4055, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1692, + "id": 1697, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1604,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4094, + "line": 4095, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 1777, + "id": 1782, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1632,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4915, + "line": 4916, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 1746, + "id": 1751, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1660,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4565, + "line": 4566, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 1705, + "id": 1710, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1624,14 +1684,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4173, + "line": 4174, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1685, + "id": 1690, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1649,14 +1709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4026, + "line": 4027, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1686, + "id": 1691, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1673,14 +1733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4036, + "line": 4037, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 1769, + "id": 1774, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4827, + "line": 4828, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 1699, + "id": 1704, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1725,14 +1785,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4135, + "line": 4136, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1754, + "id": 1759, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1753,14 +1813,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4649, + "line": 4650, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 1655, + "id": 1660, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1777,14 +1837,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3766, + "line": 3767, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1752, + "id": 1757, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1801,14 +1861,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4629, + "line": 4630, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1724, + "id": 1729, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1829,14 +1889,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4338, + "line": 4339, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1767, + "id": 1772, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1857,14 +1917,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4806, + "line": 4807, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 1744, + "id": 1749, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1945,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4545, + "line": 4546, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 1750, + "id": 1755, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1912,14 +1972,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4609, + "line": 4610, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 1751, + "id": 1756, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1936,14 +1996,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4618, + "line": 4619, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 1761, + "id": 1766, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -1964,14 +2024,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4739, + "line": 4740, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 1764, + "id": 1769, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1992,14 +2052,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4774, + "line": 4775, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 1753, + "id": 1758, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2080,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4639, + "line": 4640, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 1702, + "id": 1707, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2044,14 +2104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4152, + "line": 4153, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1689, + "id": 1694, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2068,14 +2128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4064, + "line": 4065, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1772, + "id": 1777, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2096,14 +2156,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4860, + "line": 4861, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 1715, + "id": 1720, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2121,14 +2181,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4243, + "line": 4244, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 1693, + "id": 1698, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2145,14 +2205,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4104, + "line": 4105, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1728, + "id": 1733, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2173,14 +2233,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4379, + "line": 4380, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 1760, + "id": 1765, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2201,14 +2261,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4728, + "line": 4729, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 1742, + "id": 1747, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2289,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4525, + "line": 4526, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 1721, + "id": 1726, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2260,14 +2320,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4307, + "line": 4308, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 1714, + "id": 1719, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2284,14 +2344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4229, + "line": 4230, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 1743, + "id": 1748, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2312,14 +2372,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4535, + "line": 4536, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 1773, + "id": 1778, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2340,14 +2400,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4872, + "line": 4873, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 1749, + "id": 1754, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2368,14 +2428,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4600, + "line": 4601, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 1651, + "id": 1656, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2392,14 +2452,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3735, + "line": 3736, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1654, + "id": 1659, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2416,14 +2476,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3753, + "line": 3754, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1659, + "id": 1664, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2440,14 +2500,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3798, + "line": 3799, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1660, + "id": 1665, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2464,14 +2524,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3807, + "line": 3808, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1712, + "id": 1717, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2479,14 +2539,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4210, + "line": 4211, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 1661, + "id": 1666, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2503,14 +2563,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3816, + "line": 3817, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1676, + "id": 1681, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2521,14 +2581,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3942, + "line": 3943, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 1747, + "id": 1752, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2549,14 +2609,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4575, + "line": 4576, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 1678, + "id": 1683, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2573,14 +2633,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3957, + "line": 3958, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1673, + "id": 1678, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2597,14 +2657,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3930, + "line": 3931, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1774, + "id": 1779, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2625,14 +2685,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4883, + "line": 4884, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 1704, + "id": 1709, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2649,14 +2709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4165, + "line": 4166, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1723, + "id": 1728, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2677,14 +2737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4328, + "line": 4329, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1722, + "id": 1727, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2705,14 +2765,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4317, + "line": 4318, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1726, + "id": 1731, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2793,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4358, + "line": 4359, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 1727, + "id": 1732, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2821,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4368, + "line": 4369, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 1755, + "id": 1760, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2793,14 +2853,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4668, + "line": 4669, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 1690, + "id": 1695, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2877,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4076, + "line": 4077, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 1766, + "id": 1771, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2905,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4796, + "line": 4797, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 1687, + "id": 1692, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -2869,14 +2929,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4045, + "line": 4046, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1757, + "id": 1762, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2957,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4692, + "line": 4693, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 1765, + "id": 1770, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2925,7 +2985,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4785, + "line": 4786, "character": 4 } ], @@ -2937,130 +2997,130 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1762, - 1670, - 1663, - 1662, + 1767, + 1675, 1668, - 1669, - 1671, - 1745, - 1718, - 1759, - 1717, - 1716, - 1758, - 1729, - 1732, - 1737, - 1731, + 1667, + 1673, + 1674, + 1676, + 1750, + 1723, + 1764, + 1722, + 1721, + 1763, 1734, - 1738, - 1735, - 1740, + 1737, + 1742, 1736, - 1733, 1739, - 1730, - 1771, - 1667, - 1666, - 1665, - 1778, - 1664, - 1709, - 1657, - 1708, - 1779, - 1756, - 1720, - 1725, + 1743, + 1740, + 1745, + 1741, + 1738, + 1744, + 1735, 1776, - 1768, - 1770, - 1679, - 1682, - 1681, - 1680, - 1683, + 1672, + 1671, + 1670, + 1783, + 1669, + 1714, + 1662, 1713, - 1707, - 1706, - 1691, - 1656, - 1719, - 1711, + 1784, + 1761, + 1725, + 1730, + 1781, + 1773, 1775, - 1748, - 1763, - 1688, - 1692, - 1777, - 1746, - 1705, - 1685, + 1684, + 1687, 1686, - 1769, - 1699, - 1754, - 1655, - 1752, + 1685, + 1688, + 1718, + 1712, + 1711, + 1696, + 1661, 1724, - 1767, - 1744, - 1750, - 1751, - 1761, - 1764, + 1716, + 1780, 1753, - 1702, - 1689, - 1772, - 1715, + 1768, 1693, - 1728, - 1760, - 1742, - 1721, - 1714, - 1743, - 1773, - 1749, - 1651, - 1654, - 1659, - 1660, - 1712, - 1661, - 1676, - 1747, - 1678, - 1673, + 1697, + 1782, + 1751, + 1710, + 1690, + 1691, 1774, 1704, - 1723, - 1722, - 1726, - 1727, + 1759, + 1660, + 1757, + 1729, + 1772, + 1749, 1755, - 1690, + 1756, 1766, - 1687, - 1757, - 1765 + 1769, + 1758, + 1707, + 1694, + 1777, + 1720, + 1698, + 1733, + 1765, + 1747, + 1726, + 1719, + 1748, + 1778, + 1754, + 1656, + 1659, + 1664, + 1665, + 1717, + 1666, + 1681, + 1752, + 1683, + 1678, + 1779, + 1709, + 1728, + 1727, + 1731, + 1732, + 1760, + 1695, + 1771, + 1692, + 1762, + 1770 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3726, + "line": 3727, "character": 12 } ] }, { - "id": 1319, + "id": 1324, "name": "AuthEvent", "kind": 4, "kindString": "Enumeration", @@ -3076,7 +3136,7 @@ }, "children": [ { - "id": 1320, + "id": 1325, "name": "TRIGGER_SSO_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3087,7 +3147,7 @@ "sources": [ { "fileName": "auth.ts", - "line": 138, + "line": 143, "character": 4 } ], @@ -3099,20 +3159,20 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1320 + 1325 ] } ], "sources": [ { "fileName": "auth.ts", - "line": 133, + "line": 138, "character": 12 } ] }, { - "id": 1305, + "id": 1309, "name": "AuthFailureType", "kind": 4, "kindString": "Enumeration", @@ -3128,7 +3188,7 @@ }, "children": [ { - "id": 1308, + "id": 1312, "name": "EXPIRY", "kind": 16, "kindString": "Enumeration member", @@ -3143,7 +3203,7 @@ "defaultValue": "\"EXPIRY\"" }, { - "id": 1310, + "id": 1314, "name": "IDLE_SESSION_TIMEOUT", "kind": 16, "kindString": "Enumeration member", @@ -3158,7 +3218,7 @@ "defaultValue": "\"IDLE_SESSION_TIMEOUT\"" }, { - "id": 1307, + "id": 1311, "name": "NO_COOKIE_ACCESS", "kind": 16, "kindString": "Enumeration member", @@ -3173,7 +3233,7 @@ "defaultValue": "\"NO_COOKIE_ACCESS\"" }, { - "id": 1309, + "id": 1313, "name": "OTHER", "kind": 16, "kindString": "Enumeration member", @@ -3188,7 +3248,7 @@ "defaultValue": "\"OTHER\"" }, { - "id": 1306, + "id": 1310, "name": "SDK", "kind": 16, "kindString": "Enumeration member", @@ -3203,7 +3263,7 @@ "defaultValue": "\"SDK\"" }, { - "id": 1311, + "id": 1315, "name": "UNAUTHENTICATED_FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3223,12 +3283,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1308, + 1312, + 1314, + 1311, + 1313, 1310, - 1307, - 1309, - 1306, - 1311 + 1315 ] } ], @@ -3241,7 +3301,7 @@ ] }, { - "id": 1312, + "id": 1316, "name": "AuthStatus", "kind": 4, "kindString": "Enumeration", @@ -3257,7 +3317,7 @@ }, "children": [ { - "id": 1313, + "id": 1317, "name": "FAILURE", "kind": 16, "kindString": "Enumeration member", @@ -3275,7 +3335,7 @@ "defaultValue": "\"FAILURE\"" }, { - "id": 1317, + "id": 1321, "name": "LOGOUT", "kind": 16, "kindString": "Enumeration member", @@ -3293,7 +3353,25 @@ "defaultValue": "\"LOGOUT\"" }, { - "id": 1314, + "id": 1323, + "name": "SAML_POPUP_CLOSED_NO_AUTH", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the SAML popup is closed without authentication" + }, + "sources": [ + { + "fileName": "auth.ts", + "line": 84, + "character": 4 + } + ], + "defaultValue": "\"SAML_POPUP_CLOSED_NO_AUTH\"" + }, + { + "id": 1318, "name": "SDK_SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3311,7 +3389,7 @@ "defaultValue": "\"SDK_SUCCESS\"" }, { - "id": 1316, + "id": 1320, "name": "SUCCESS", "kind": 16, "kindString": "Enumeration member", @@ -3329,7 +3407,7 @@ "defaultValue": "\"SUCCESS\"" }, { - "id": 1318, + "id": 1322, "name": "WAITING_FOR_POPUP", "kind": 16, "kindString": "Enumeration member", @@ -3358,11 +3436,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1313, 1317, - 1314, - 1316, - 1318 + 1321, + 1323, + 1318, + 1320, + 1322 ] } ], @@ -3375,7 +3454,7 @@ ] }, { - "id": 1466, + "id": 1471, "name": "AuthType", "kind": 4, "kindString": "Enumeration", @@ -3391,7 +3470,7 @@ }, "children": [ { - "id": 1477, + "id": 1482, "name": "Basic", "kind": 16, "kindString": "Enumeration member", @@ -3410,7 +3489,7 @@ "defaultValue": "\"Basic\"" }, { - "id": 1468, + "id": 1473, "name": "EmbeddedSSO", "kind": 16, "kindString": "Enumeration member", @@ -3439,7 +3518,7 @@ "defaultValue": "\"EmbeddedSSO\"" }, { - "id": 1467, + "id": 1472, "name": "None", "kind": 16, "kindString": "Enumeration member", @@ -3463,7 +3542,7 @@ "defaultValue": "\"None\"" }, { - "id": 1473, + "id": 1478, "name": "OIDCRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3481,7 +3560,7 @@ "defaultValue": "\"SSO_OIDC\"" }, { - "id": 1471, + "id": 1476, "name": "SAMLRedirect", "kind": 16, "kindString": "Enumeration member", @@ -3514,7 +3593,7 @@ "defaultValue": "\"SSO_SAML\"" }, { - "id": 1475, + "id": 1480, "name": "TrustedAuthToken", "kind": 16, "kindString": "Enumeration member", @@ -3538,7 +3617,7 @@ "defaultValue": "\"AuthServer\"" }, { - "id": 1476, + "id": 1481, "name": "TrustedAuthTokenCookieless", "kind": 16, "kindString": "Enumeration member", @@ -3571,13 +3650,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1477, - 1468, - 1467, + 1482, 1473, - 1471, - 1475, - 1476 + 1472, + 1478, + 1476, + 1480, + 1481 ] } ], @@ -3590,7 +3669,7 @@ ] }, { - "id": 1780, + "id": 1785, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3600,7 +3679,7 @@ }, "children": [ { - "id": 1783, + "id": 1788, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3608,14 +3687,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4955, + "line": 4956, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 1781, + "id": 1786, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3623,14 +3702,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4953, + "line": 4954, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 1782, + "id": 1787, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3638,7 +3717,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4954, + "line": 4955, "character": 4 } ], @@ -3650,22 +3729,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1783, - 1781, - 1782 + 1788, + 1786, + 1787 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4952, + "line": 4953, "character": 12 } ] }, { - "id": 1646, + "id": 1651, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -3675,7 +3754,7 @@ }, "children": [ { - "id": 1648, + "id": 1653, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -3693,7 +3772,7 @@ "defaultValue": "\"collapse\"" }, { - "id": 1649, + "id": 1654, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -3711,7 +3790,7 @@ "defaultValue": "\"expand\"" }, { - "id": 1647, + "id": 1652, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -3734,9 +3813,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1648, - 1649, - 1647 + 1653, + 1654, + 1652 ] } ], @@ -3749,7 +3828,7 @@ ] }, { - "id": 1498, + "id": 1503, "name": "EmbedEvent", "kind": 4, "kindString": "Enumeration", @@ -3774,7 +3853,7 @@ }, "children": [ { - "id": 1526, + "id": 1531, "name": "ALL", "kind": 16, "kindString": "Enumeration member", @@ -3802,7 +3881,7 @@ "defaultValue": "\"*\"" }, { - "id": 1506, + "id": 1511, "name": "AddRemoveColumns", "kind": 16, "kindString": "Enumeration member", @@ -3834,7 +3913,7 @@ "defaultValue": "\"addRemoveColumns\"" }, { - "id": 1549, + "id": 1554, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -3862,7 +3941,7 @@ "defaultValue": "\"addToFavorites\"" }, { - "id": 1511, + "id": 1516, "name": "Alert", "kind": 16, "kindString": "Enumeration member", @@ -3894,7 +3973,7 @@ "defaultValue": "\"alert\"" }, { - "id": 1546, + "id": 1551, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -3922,7 +4001,7 @@ "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1533, + "id": 1538, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -3950,7 +4029,7 @@ "defaultValue": "\"answerDelete\"" }, { - "id": 1572, + "id": 1577, "name": "AskSageInit", "kind": 16, "kindString": "Enumeration member", @@ -3990,7 +4069,7 @@ "defaultValue": "\"AskSageInit\"" }, { - "id": 1512, + "id": 1517, "name": "AuthExpire", "kind": 16, "kindString": "Enumeration member", @@ -4018,7 +4097,7 @@ "defaultValue": "\"ThoughtspotAuthExpired\"" }, { - "id": 1500, + "id": 1505, "name": "AuthInit", "kind": 16, "kindString": "Enumeration member", @@ -4050,7 +4129,7 @@ "defaultValue": "\"authInit\"" }, { - "id": 1556, + "id": 1561, "name": "Cancel", "kind": 16, "kindString": "Enumeration member", @@ -4078,7 +4157,7 @@ "defaultValue": "\"cancel\"" }, { - "id": 1544, + "id": 1549, "name": "CopyAEdit", "kind": 16, "kindString": "Enumeration member", @@ -4106,7 +4185,7 @@ "defaultValue": "\"copyAEdit\"" }, { - "id": 1558, + "id": 1563, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -4134,7 +4213,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1539, + "id": 1544, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -4162,7 +4241,7 @@ "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1566, + "id": 1571, "name": "CreateConnection", "kind": 16, "kindString": "Enumeration member", @@ -4186,7 +4265,7 @@ "defaultValue": "\"createConnection\"" }, { - "id": 1577, + "id": 1582, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -4211,7 +4290,7 @@ "defaultValue": "\"createLiveboard\"" }, { - "id": 1578, + "id": 1583, "name": "CreateModel", "kind": 16, "kindString": "Enumeration member", @@ -4235,7 +4314,7 @@ "defaultValue": "\"createModel\"" }, { - "id": 1571, + "id": 1576, "name": "CreateWorksheet", "kind": 16, "kindString": "Enumeration member", @@ -4259,7 +4338,7 @@ "defaultValue": "\"createWorksheet\"" }, { - "id": 1559, + "id": 1564, "name": "CrossFilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4287,7 +4366,7 @@ "defaultValue": "\"cross-filter-changed\"" }, { - "id": 1507, + "id": 1512, "name": "CustomAction", "kind": 16, "kindString": "Enumeration member", @@ -4323,7 +4402,7 @@ "defaultValue": "\"customAction\"" }, { - "id": 1502, + "id": 1507, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -4359,7 +4438,7 @@ "defaultValue": "\"data\"" }, { - "id": 1505, + "id": 1510, "name": "DataSourceSelected", "kind": 16, "kindString": "Enumeration member", @@ -4391,7 +4470,7 @@ "defaultValue": "\"dataSourceSelected\"" }, { - "id": 1554, + "id": 1559, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -4419,7 +4498,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1570, + "id": 1575, "name": "DeletePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -4451,7 +4530,7 @@ "defaultValue": "\"deletePersonalisedView\"" }, { - "id": 1524, + "id": 1529, "name": "DialogClose", "kind": 16, "kindString": "Enumeration member", @@ -4479,7 +4558,7 @@ "defaultValue": "\"dialog-close\"" }, { - "id": 1523, + "id": 1528, "name": "DialogOpen", "kind": 16, "kindString": "Enumeration member", @@ -4507,7 +4586,7 @@ "defaultValue": "\"dialog-open\"" }, { - "id": 1528, + "id": 1533, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -4536,7 +4615,7 @@ "defaultValue": "\"download\"" }, { - "id": 1531, + "id": 1536, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -4564,7 +4643,7 @@ "defaultValue": "\"downloadAsCsv\"" }, { - "id": 1530, + "id": 1535, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -4592,7 +4671,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1529, + "id": 1534, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -4620,7 +4699,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1532, + "id": 1537, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -4648,7 +4727,7 @@ "defaultValue": "\"downloadAsXlsx\"" }, { - "id": 1538, + "id": 1543, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -4676,7 +4755,7 @@ "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1537, + "id": 1542, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -4704,7 +4783,7 @@ "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1504, + "id": 1509, "name": "Drilldown", "kind": 16, "kindString": "Enumeration member", @@ -4748,7 +4827,7 @@ "defaultValue": "\"drillDown\"" }, { - "id": 1551, + "id": 1556, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -4776,7 +4855,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1541, + "id": 1546, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -4804,7 +4883,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1510, + "id": 1515, "name": "Error", "kind": 16, "kindString": "Enumeration member", @@ -4841,7 +4920,7 @@ "defaultValue": "\"Error\"" }, { - "id": 1557, + "id": 1562, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -4869,7 +4948,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1542, + "id": 1547, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -4897,7 +4976,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1562, + "id": 1567, "name": "FilterChanged", "kind": 16, "kindString": "Enumeration member", @@ -4921,7 +5000,7 @@ "defaultValue": "\"filterChanged\"" }, { - "id": 1518, + "id": 1523, "name": "GetDataClick", "kind": 16, "kindString": "Enumeration member", @@ -4949,7 +5028,7 @@ "defaultValue": "\"getDataClick\"" }, { - "id": 1499, + "id": 1504, "name": "Init", "kind": 16, "kindString": "Enumeration member", @@ -4977,7 +5056,7 @@ "defaultValue": "\"init\"" }, { - "id": 1548, + "id": 1553, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -5005,7 +5084,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1525, + "id": 1530, "name": "LiveboardRendered", "kind": 16, "kindString": "Enumeration member", @@ -5037,7 +5116,7 @@ "defaultValue": "\"PinboardRendered\"" }, { - "id": 1501, + "id": 1506, "name": "Load", "kind": 16, "kindString": "Enumeration member", @@ -5069,7 +5148,7 @@ "defaultValue": "\"load\"" }, { - "id": 1552, + "id": 1557, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -5097,7 +5176,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1521, + "id": 1526, "name": "NoCookieAccess", "kind": 16, "kindString": "Enumeration member", @@ -5125,7 +5204,7 @@ "defaultValue": "\"noCookieAccess\"" }, { - "id": 1574, + "id": 1579, "name": "OnBeforeGetVizDataIntercept", "kind": 16, "kindString": "Enumeration member", @@ -5162,7 +5241,7 @@ "defaultValue": "\"onBeforeGetVizDataIntercept\"" }, { - "id": 1575, + "id": 1580, "name": "ParameterChanged", "kind": 16, "kindString": "Enumeration member", @@ -5186,7 +5265,7 @@ "defaultValue": "\"parameterChanged\"" }, { - "id": 1534, + "id": 1539, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -5214,7 +5293,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1553, + "id": 1558, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -5246,7 +5325,7 @@ "defaultValue": "\"present\"" }, { - "id": 1503, + "id": 1508, "name": "QueryChanged", "kind": 16, "kindString": "Enumeration member", @@ -5274,7 +5353,7 @@ "defaultValue": "\"queryChanged\"" }, { - "id": 1573, + "id": 1578, "name": "Rename", "kind": 16, "kindString": "Enumeration member", @@ -5298,7 +5377,7 @@ "defaultValue": "\"rename\"" }, { - "id": 1569, + "id": 1574, "name": "ResetLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -5338,7 +5417,7 @@ "defaultValue": "\"resetLiveboard\"" }, { - "id": 1519, + "id": 1524, "name": "RouteChange", "kind": 16, "kindString": "Enumeration member", @@ -5366,7 +5445,7 @@ "defaultValue": "\"ROUTE_CHANGE\"" }, { - "id": 1563, + "id": 1568, "name": "SageEmbedQuery", "kind": 16, "kindString": "Enumeration member", @@ -5390,7 +5469,7 @@ "defaultValue": "\"sageEmbedQuery\"" }, { - "id": 1564, + "id": 1569, "name": "SageWorksheetUpdated", "kind": 16, "kindString": "Enumeration member", @@ -5414,7 +5493,7 @@ "defaultValue": "\"sageWorksheetUpdated\"" }, { - "id": 1527, + "id": 1532, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -5442,7 +5521,7 @@ "defaultValue": "\"save\"" }, { - "id": 1543, + "id": 1548, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -5470,7 +5549,7 @@ "defaultValue": "\"saveAsView\"" }, { - "id": 1568, + "id": 1573, "name": "SavePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5510,7 +5589,7 @@ "defaultValue": "\"savePersonalisedView\"" }, { - "id": 1550, + "id": 1555, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -5538,7 +5617,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1555, + "id": 1560, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -5566,7 +5645,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1536, + "id": 1541, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -5594,7 +5673,7 @@ "defaultValue": "\"share\"" }, { - "id": 1545, + "id": 1550, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -5622,7 +5701,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1535, + "id": 1540, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -5650,7 +5729,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1576, + "id": 1581, "name": "TableVizRendered", "kind": 16, "kindString": "Enumeration member", @@ -5679,7 +5758,7 @@ "defaultValue": "\"TableVizRendered\"" }, { - "id": 1565, + "id": 1570, "name": "UpdateConnection", "kind": 16, "kindString": "Enumeration member", @@ -5703,7 +5782,7 @@ "defaultValue": "\"updateConnection\"" }, { - "id": 1567, + "id": 1572, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -5743,7 +5822,7 @@ "defaultValue": "\"updatePersonalisedView\"" }, { - "id": 1540, + "id": 1545, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -5771,7 +5850,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1509, + "id": 1514, "name": "VizPointClick", "kind": 16, "kindString": "Enumeration member", @@ -5807,7 +5886,7 @@ "defaultValue": "\"vizPointClick\"" }, { - "id": 1508, + "id": 1513, "name": "VizPointDoubleClick", "kind": 16, "kindString": "Enumeration member", @@ -5839,7 +5918,7 @@ "defaultValue": "\"vizPointDoubleClick\"" }, { - "id": 1560, + "id": 1565, "name": "VizPointRightClick", "kind": 16, "kindString": "Enumeration member", @@ -5872,77 +5951,77 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1526, - 1506, - 1549, + 1531, 1511, - 1546, - 1533, - 1572, - 1512, - 1500, - 1556, - 1544, - 1558, - 1539, - 1566, + 1554, + 1516, + 1551, + 1538, 1577, - 1578, + 1517, + 1505, + 1561, + 1549, + 1563, + 1544, 1571, - 1559, + 1582, + 1583, + 1576, + 1564, + 1512, 1507, - 1502, - 1505, - 1554, - 1570, - 1524, - 1523, - 1528, - 1531, - 1530, + 1510, + 1559, + 1575, 1529, - 1532, - 1538, + 1528, + 1533, + 1536, + 1535, + 1534, 1537, - 1504, - 1551, - 1541, - 1510, - 1557, + 1543, 1542, + 1509, + 1556, + 1546, + 1515, 1562, - 1518, - 1499, - 1548, - 1525, - 1501, - 1552, - 1521, - 1574, - 1575, - 1534, + 1547, + 1567, + 1523, + 1504, 1553, - 1503, - 1573, - 1569, - 1519, - 1563, - 1564, - 1527, - 1543, + 1530, + 1506, + 1557, + 1526, + 1579, + 1580, + 1539, + 1558, + 1508, + 1578, + 1574, + 1524, 1568, - 1550, + 1569, + 1532, + 1548, + 1573, 1555, - 1536, - 1545, - 1535, - 1576, - 1565, - 1567, + 1560, + 1541, + 1550, 1540, - 1509, - 1508, - 1560 + 1581, + 1570, + 1572, + 1545, + 1514, + 1513, + 1565 ] } ], @@ -5955,7 +6034,7 @@ ] }, { - "id": 2125, + "id": 2130, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -5965,7 +6044,7 @@ }, "children": [ { - "id": 2129, + "id": 2134, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -5988,7 +6067,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2133, + "id": 2138, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6012,7 +6091,7 @@ "defaultValue": "\"create\"" }, { - "id": 2127, + "id": 2132, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6035,7 +6114,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2132, + "id": 2137, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6058,7 +6137,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2128, + "id": 2133, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6081,7 +6160,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2130, + "id": 2135, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6104,7 +6183,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2126, + "id": 2131, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6127,7 +6206,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2131, + "id": 2136, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6150,7 +6229,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2134, + "id": 2139, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6179,15 +6258,15 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2129, - 2133, - 2127, + 2134, + 2138, 2132, - 2128, - 2130, - 2126, + 2137, + 2133, + 2135, 2131, - 2134 + 2136, + 2139 ] } ], @@ -6200,14 +6279,14 @@ ] }, { - "id": 2300, + "id": 2305, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2302, + "id": 2307, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -6222,7 +6301,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2303, + "id": 2308, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -6237,7 +6316,7 @@ "defaultValue": "\"none\"" }, { - "id": 2301, + "id": 2306, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -6257,9 +6336,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2302, - 2303, - 2301 + 2307, + 2308, + 2306 ] } ], @@ -6272,7 +6351,7 @@ ] }, { - "id": 2135, + "id": 2140, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -6288,7 +6367,7 @@ }, "children": [ { - "id": 2138, + "id": 2143, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -6306,7 +6385,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2141, + "id": 2146, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -6324,7 +6403,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2139, + "id": 2144, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -6342,7 +6421,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2136, + "id": 2141, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -6360,7 +6439,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2140, + "id": 2145, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -6378,7 +6457,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2137, + "id": 2142, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -6401,12 +6480,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2138, + 2143, + 2146, + 2144, 2141, - 2139, - 2136, - 2140, - 2137 + 2145, + 2142 ] } ], @@ -6419,7 +6498,7 @@ ] }, { - "id": 1579, + "id": 1584, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -6448,7 +6527,7 @@ }, "children": [ { - "id": 1590, + "id": 1595, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -6481,7 +6560,7 @@ "defaultValue": "\"addColumns\"" }, { - "id": 1645, + "id": 1650, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -6506,7 +6585,7 @@ "defaultValue": "\"AnswerChartSwitcher\"" }, { - "id": 1630, + "id": 1635, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -6534,7 +6613,7 @@ "defaultValue": "\"AskSage\"" }, { - "id": 1607, + "id": 1612, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -6567,7 +6646,7 @@ "defaultValue": "\"embedDocument\"" }, { - "id": 1604, + "id": 1609, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -6604,7 +6683,7 @@ "defaultValue": "\"createMonitor\"" }, { - "id": 1611, + "id": 1616, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -6637,7 +6716,7 @@ "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1644, + "id": 1649, "name": "DeleteLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -6662,7 +6741,7 @@ "defaultValue": "\"DeleteLastPrompt\"" }, { - "id": 1613, + "id": 1618, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -6694,7 +6773,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1615, + "id": 1620, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -6722,7 +6801,7 @@ "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1600, + "id": 1605, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -6751,7 +6830,7 @@ "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1614, + "id": 1619, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -6779,7 +6858,7 @@ "defaultValue": "\"downloadAsPng\"" }, { - "id": 1616, + "id": 1621, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -6807,7 +6886,7 @@ "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1581, + "id": 1586, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -6859,7 +6938,7 @@ "defaultValue": "\"triggerDrillDown\"" }, { - "id": 1606, + "id": 1611, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -6893,7 +6972,7 @@ "defaultValue": "\"edit\"" }, { - "id": 1641, + "id": 1646, "name": "EditLastPrompt", "kind": 16, "kindString": "Enumeration member", @@ -6918,7 +6997,7 @@ "defaultValue": "\"EditLastPrompt\"" }, { - "id": 1598, + "id": 1603, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -6946,7 +7025,7 @@ "defaultValue": "\"editTSL\"" }, { - "id": 1603, + "id": 1608, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -6979,7 +7058,7 @@ "defaultValue": "\"explore\"" }, { - "id": 1597, + "id": 1602, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7007,7 +7086,7 @@ "defaultValue": "\"exportTSL\"" }, { - "id": 1629, + "id": 1634, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -7040,7 +7119,7 @@ "defaultValue": "\"getAnswerSession\"" }, { - "id": 1623, + "id": 1628, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -7068,7 +7147,7 @@ "defaultValue": "\"getFilters\"" }, { - "id": 1584, + "id": 1589, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -7096,7 +7175,7 @@ "defaultValue": "\"GetIframeUrl\"" }, { - "id": 1634, + "id": 1639, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -7120,7 +7199,7 @@ "defaultValue": "\"GetParameters\"" }, { - "id": 1609, + "id": 1614, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -7152,7 +7231,7 @@ "defaultValue": "\"getTML\"" }, { - "id": 1625, + "id": 1630, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -7180,7 +7259,7 @@ "defaultValue": "\"getTabs\"" }, { - "id": 1594, + "id": 1599, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -7208,7 +7287,7 @@ "defaultValue": "\"pinboardInfo\"" }, { - "id": 1601, + "id": 1606, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -7248,7 +7327,7 @@ "defaultValue": "\"makeACopy\"" }, { - "id": 1605, + "id": 1610, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7289,7 +7368,7 @@ "defaultValue": "\"manageMonitor\"" }, { - "id": 1621, + "id": 1626, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -7322,7 +7401,7 @@ "defaultValue": "\"manage-pipeline\"" }, { - "id": 1588, + "id": 1593, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -7355,7 +7434,7 @@ "defaultValue": "\"Navigate\"" }, { - "id": 1589, + "id": 1594, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -7388,7 +7467,7 @@ "defaultValue": "\"openFilter\"" }, { - "id": 1593, + "id": 1598, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -7452,7 +7531,7 @@ "defaultValue": "\"pin\"" }, { - "id": 1608, + "id": 1613, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -7485,7 +7564,7 @@ "defaultValue": "\"present\"" }, { - "id": 1642, + "id": 1647, "name": "PreviewSpotterData", "kind": 16, "kindString": "Enumeration member", @@ -7510,7 +7589,7 @@ "defaultValue": "\"PreviewSpotterData\"" }, { - "id": 1602, + "id": 1607, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -7542,7 +7621,7 @@ "defaultValue": "\"delete\"" }, { - "id": 1591, + "id": 1596, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -7575,7 +7654,7 @@ "defaultValue": "\"removeColumn\"" }, { - "id": 1632, + "id": 1637, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -7603,7 +7682,7 @@ "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 1622, + "id": 1627, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -7631,7 +7710,7 @@ "defaultValue": "\"resetSearch\"" }, { - "id": 1643, + "id": 1648, "name": "ResetSpotterConversation", "kind": 16, "kindString": "Enumeration member", @@ -7656,7 +7735,7 @@ "defaultValue": "\"ResetSpotterConversation\"" }, { - "id": 1618, + "id": 1623, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -7684,7 +7763,7 @@ "defaultValue": "\"save\"" }, { - "id": 1637, + "id": 1642, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -7717,7 +7796,7 @@ "defaultValue": "\"saveAnswer\"" }, { - "id": 1595, + "id": 1600, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -7745,7 +7824,7 @@ "defaultValue": "\"subscription\"" }, { - "id": 1596, + "id": 1601, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -7773,7 +7852,7 @@ "defaultValue": "\"schedule-list\"" }, { - "id": 1580, + "id": 1585, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7812,7 +7891,7 @@ "defaultValue": "\"search\"" }, { - "id": 1586, + "id": 1591, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -7845,7 +7924,7 @@ "defaultValue": "\"SetActiveTab\"" }, { - "id": 1627, + "id": 1632, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -7878,7 +7957,7 @@ "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 1626, + "id": 1631, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -7911,7 +7990,7 @@ "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 1585, + "id": 1590, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -7944,7 +8023,7 @@ "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 1617, + "id": 1622, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -7972,7 +8051,7 @@ "defaultValue": "\"share\"" }, { - "id": 1610, + "id": 1615, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -8005,7 +8084,7 @@ "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1612, + "id": 1617, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -8038,7 +8117,7 @@ "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1640, + "id": 1645, "name": "SpotterSearch", "kind": 16, "kindString": "Enumeration member", @@ -8063,7 +8142,7 @@ "defaultValue": "\"SpotterSearch\"" }, { - "id": 1620, + "id": 1625, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -8096,7 +8175,7 @@ "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1619, + "id": 1624, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -8129,7 +8208,7 @@ "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1639, + "id": 1644, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -8162,7 +8241,7 @@ "defaultValue": "\"TransformTableVizData\"" }, { - "id": 1631, + "id": 1636, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -8190,7 +8269,7 @@ "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 1624, + "id": 1629, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -8236,7 +8315,7 @@ "defaultValue": "\"updateFilters\"" }, { - "id": 1633, + "id": 1638, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -8260,7 +8339,7 @@ "defaultValue": "\"UpdateParameters\"" }, { - "id": 1635, + "id": 1640, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8284,7 +8363,7 @@ "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 1587, + "id": 1592, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -8322,7 +8401,7 @@ "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 1628, + "id": 1633, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -8360,7 +8439,7 @@ "defaultValue": "\"updateSageQuery\"" }, { - "id": 1599, + "id": 1604, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -8388,7 +8467,7 @@ "defaultValue": "\"updateTSL\"" }, { - "id": 1592, + "id": 1597, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -8421,68 +8500,68 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1590, - 1645, - 1630, - 1607, - 1604, - 1611, - 1644, - 1613, - 1615, - 1600, - 1614, - 1616, - 1581, - 1606, - 1641, - 1598, - 1603, - 1597, - 1629, - 1623, - 1584, - 1634, + 1595, + 1650, + 1635, + 1612, 1609, - 1625, - 1594, - 1601, + 1616, + 1649, + 1618, + 1620, 1605, + 1619, 1621, - 1588, + 1586, + 1611, + 1646, + 1603, + 1608, + 1602, + 1634, + 1628, 1589, + 1639, + 1614, + 1630, + 1599, + 1606, + 1610, + 1626, 1593, - 1608, + 1594, + 1598, + 1613, + 1647, + 1607, + 1596, + 1637, + 1627, + 1648, + 1623, 1642, - 1602, + 1600, + 1601, + 1585, 1591, 1632, + 1631, + 1590, 1622, - 1643, - 1618, - 1637, - 1595, - 1596, - 1580, - 1586, - 1627, - 1626, - 1585, + 1615, 1617, - 1610, - 1612, - 1640, - 1620, - 1619, - 1639, - 1631, + 1645, + 1625, 1624, + 1644, + 1636, + 1629, + 1638, + 1640, + 1592, 1633, - 1635, - 1587, - 1628, - 1599, - 1592 + 1604, + 1597 ] } ], @@ -8495,7 +8574,7 @@ ] }, { - "id": 2334, + "id": 2339, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -8511,7 +8590,7 @@ }, "children": [ { - "id": 2337, + "id": 2342, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -8529,7 +8608,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2338, + "id": 2343, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -8547,7 +8626,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2335, + "id": 2340, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -8565,7 +8644,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2339, + "id": 2344, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8583,7 +8662,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2336, + "id": 2341, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -8606,11 +8685,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2337, - 2338, - 2335, - 2339, - 2336 + 2342, + 2343, + 2340, + 2344, + 2341 ] } ], @@ -8623,7 +8702,7 @@ ] }, { - "id": 2277, + "id": 2282, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -8633,7 +8712,7 @@ }, "children": [ { - "id": 2282, + "id": 2287, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -8654,14 +8733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5077, + "line": 5078, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2279, + "id": 2284, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -8682,14 +8761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5038, + "line": 5039, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2281, + "id": 2286, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -8710,14 +8789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5063, + "line": 5064, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2278, + "id": 2283, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -8738,14 +8817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5026, + "line": 5027, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2283, + "id": 2288, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -8766,14 +8845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5089, + "line": 5090, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2280, + "id": 2285, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -8794,7 +8873,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5050, + "line": 5051, "character": 4 } ], @@ -8806,25 +8885,25 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2282, - 2279, - 2281, - 2278, + 2287, + 2284, + 2286, 2283, - 2280 + 2288, + 2285 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5013, + "line": 5014, "character": 12 } ] }, { - "id": 1457, + "id": 1462, "name": "Page", "kind": 4, "kindString": "Enumeration", @@ -8834,7 +8913,7 @@ }, "children": [ { - "id": 1460, + "id": 1465, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -8852,7 +8931,7 @@ "defaultValue": "\"answers\"" }, { - "id": 1463, + "id": 1468, "name": "Data", "kind": 16, "kindString": "Enumeration member", @@ -8870,7 +8949,7 @@ "defaultValue": "\"data\"" }, { - "id": 1458, + "id": 1463, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -8888,7 +8967,7 @@ "defaultValue": "\"home\"" }, { - "id": 1461, + "id": 1466, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -8906,7 +8985,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 1465, + "id": 1470, "name": "Monitor", "kind": 16, "kindString": "Enumeration member", @@ -8924,7 +9003,7 @@ "defaultValue": "\"monitor\"" }, { - "id": 1459, + "id": 1464, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -8942,7 +9021,7 @@ "defaultValue": "\"search\"" }, { - "id": 1464, + "id": 1469, "name": "SpotIQ", "kind": 16, "kindString": "Enumeration member", @@ -8965,13 +9044,13 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1460, - 1463, - 1458, - 1461, 1465, - 1459, - 1464 + 1468, + 1463, + 1466, + 1470, + 1464, + 1469 ] } ], @@ -8984,14 +9063,14 @@ ] }, { - "id": 2114, + "id": 2119, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2115, + "id": 2120, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -8999,14 +9078,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4942, + "line": 4943, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2117, + "id": 2122, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -9014,14 +9093,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4944, + "line": 4945, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2116, + "id": 2121, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -9029,14 +9108,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4943, + "line": 4944, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2118, + "id": 2123, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -9044,7 +9123,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4945, + "line": 4946, "character": 4 } ], @@ -9056,23 +9135,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2115, - 2117, - 2116, - 2118 + 2120, + 2122, + 2121, + 2123 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4941, + "line": 4942, "character": 12 } ] }, { - "id": 1482, + "id": 1487, "name": "RuntimeFilterOp", "kind": 4, "kindString": "Enumeration", @@ -9082,7 +9161,7 @@ }, "children": [ { - "id": 1490, + "id": 1495, "name": "BEGINS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -9100,7 +9179,7 @@ "defaultValue": "\"BEGINS_WITH\"" }, { - "id": 1495, + "id": 1500, "name": "BW", "kind": 16, "kindString": "Enumeration member", @@ -9118,7 +9197,7 @@ "defaultValue": "\"BW\"" }, { - "id": 1494, + "id": 1499, "name": "BW_INC", "kind": 16, "kindString": "Enumeration member", @@ -9136,7 +9215,7 @@ "defaultValue": "\"BW_INC\"" }, { - "id": 1492, + "id": 1497, "name": "BW_INC_MAX", "kind": 16, "kindString": "Enumeration member", @@ -9154,7 +9233,7 @@ "defaultValue": "\"BW_INC_MAX\"" }, { - "id": 1493, + "id": 1498, "name": "BW_INC_MIN", "kind": 16, "kindString": "Enumeration member", @@ -9172,7 +9251,7 @@ "defaultValue": "\"BW_INC_MIN\"" }, { - "id": 1489, + "id": 1494, "name": "CONTAINS", "kind": 16, "kindString": "Enumeration member", @@ -9190,7 +9269,7 @@ "defaultValue": "\"CONTAINS\"" }, { - "id": 1491, + "id": 1496, "name": "ENDS_WITH", "kind": 16, "kindString": "Enumeration member", @@ -9208,7 +9287,7 @@ "defaultValue": "\"ENDS_WITH\"" }, { - "id": 1483, + "id": 1488, "name": "EQ", "kind": 16, "kindString": "Enumeration member", @@ -9226,7 +9305,7 @@ "defaultValue": "\"EQ\"" }, { - "id": 1488, + "id": 1493, "name": "GE", "kind": 16, "kindString": "Enumeration member", @@ -9244,7 +9323,7 @@ "defaultValue": "\"GE\"" }, { - "id": 1487, + "id": 1492, "name": "GT", "kind": 16, "kindString": "Enumeration member", @@ -9262,7 +9341,7 @@ "defaultValue": "\"GT\"" }, { - "id": 1496, + "id": 1501, "name": "IN", "kind": 16, "kindString": "Enumeration member", @@ -9280,7 +9359,7 @@ "defaultValue": "\"IN\"" }, { - "id": 1486, + "id": 1491, "name": "LE", "kind": 16, "kindString": "Enumeration member", @@ -9298,7 +9377,7 @@ "defaultValue": "\"LE\"" }, { - "id": 1485, + "id": 1490, "name": "LT", "kind": 16, "kindString": "Enumeration member", @@ -9316,7 +9395,7 @@ "defaultValue": "\"LT\"" }, { - "id": 1484, + "id": 1489, "name": "NE", "kind": 16, "kindString": "Enumeration member", @@ -9334,7 +9413,7 @@ "defaultValue": "\"NE\"" }, { - "id": 1497, + "id": 1502, "name": "NOT_IN", "kind": 16, "kindString": "Enumeration member", @@ -9357,21 +9436,21 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1490, 1495, + 1500, + 1499, + 1497, + 1498, 1494, - 1492, + 1496, + 1488, 1493, - 1489, + 1492, + 1501, 1491, - 1483, - 1488, - 1487, - 1496, - 1486, - 1485, - 1484, - 1497 + 1490, + 1489, + 1502 ] } ], @@ -9384,14 +9463,14 @@ ] }, { - "id": 2327, + "id": 2332, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2332, + "id": 2337, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -9406,7 +9485,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2331, + "id": 2336, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -9421,7 +9500,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2330, + "id": 2335, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -9436,7 +9515,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2333, + "id": 2338, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -9451,7 +9530,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2328, + "id": 2333, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -9466,7 +9545,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2329, + "id": 2334, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -9486,12 +9565,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2332, - 2331, - 2330, + 2337, + 2336, + 2335, + 2338, 2333, - 2328, - 2329 + 2334 ] } ], @@ -9504,7 +9583,7 @@ ] }, { - "id": 1374, + "id": 1379, "name": "AnswerService", "kind": 128, "kindString": "Class", @@ -9533,7 +9612,7 @@ }, "children": [ { - "id": 1375, + "id": 1380, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -9550,7 +9629,7 @@ ], "signatures": [ { - "id": 1376, + "id": 1381, "name": "new AnswerService", "kind": 16384, "kindString": "Constructor signature", @@ -9560,7 +9639,7 @@ }, "parameters": [ { - "id": 1377, + "id": 1382, "name": "session", "kind": 32768, "kindString": "Parameter", @@ -9568,12 +9647,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1447, + "id": 1452, "name": "SessionInterface" } }, { - "id": 1378, + "id": 1383, "name": "answer", "kind": 32768, "kindString": "Parameter", @@ -9585,7 +9664,7 @@ } }, { - "id": 1379, + "id": 1384, "name": "thoughtSpotHost", "kind": 32768, "kindString": "Parameter", @@ -9597,7 +9676,7 @@ } }, { - "id": 1380, + "id": 1385, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -9611,7 +9690,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2304, + "id": 2309, "name": "VizPoint" } } @@ -9619,14 +9698,14 @@ ], "type": { "type": "reference", - "id": 1374, + "id": 1379, "name": "AnswerService" } } ] }, { - "id": 1389, + "id": 1394, "name": "addColumns", "kind": 2048, "kindString": "Method", @@ -9642,7 +9721,7 @@ ], "signatures": [ { - "id": 1390, + "id": 1395, "name": "addColumns", "kind": 4096, "kindString": "Call signature", @@ -9653,7 +9732,7 @@ }, "parameters": [ { - "id": 1391, + "id": 1396, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -9682,7 +9761,7 @@ ] }, { - "id": 1392, + "id": 1397, "name": "addColumnsByName", "kind": 2048, "kindString": "Method", @@ -9698,7 +9777,7 @@ ], "signatures": [ { - "id": 1393, + "id": 1398, "name": "addColumnsByName", "kind": 4096, "kindString": "Call signature", @@ -9714,7 +9793,7 @@ }, "parameters": [ { - "id": 1394, + "id": 1399, "name": "columnNames", "kind": 32768, "kindString": "Parameter", @@ -9743,7 +9822,7 @@ ] }, { - "id": 1441, + "id": 1446, "name": "addDisplayedVizToLiveboard", "kind": 2048, "kindString": "Method", @@ -9759,14 +9838,14 @@ ], "signatures": [ { - "id": 1442, + "id": 1447, "name": "addDisplayedVizToLiveboard", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1443, + "id": 1448, "name": "liveboardId", "kind": 32768, "kindString": "Parameter", @@ -9791,7 +9870,7 @@ ] }, { - "id": 1395, + "id": 1400, "name": "addFilter", "kind": 2048, "kindString": "Method", @@ -9807,7 +9886,7 @@ ], "signatures": [ { - "id": 1396, + "id": 1401, "name": "addFilter", "kind": 4096, "kindString": "Call signature", @@ -9818,7 +9897,7 @@ }, "parameters": [ { - "id": 1397, + "id": 1402, "name": "columnName", "kind": 32768, "kindString": "Parameter", @@ -9830,7 +9909,7 @@ } }, { - "id": 1398, + "id": 1403, "name": "operator", "kind": 32768, "kindString": "Parameter", @@ -9838,12 +9917,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1482, + "id": 1487, "name": "RuntimeFilterOp" } }, { - "id": 1399, + "id": 1404, "name": "values", "kind": 32768, "kindString": "Parameter", @@ -9889,7 +9968,7 @@ ] }, { - "id": 1431, + "id": 1436, "name": "executeQuery", "kind": 2048, "kindString": "Method", @@ -9905,7 +9984,7 @@ ], "signatures": [ { - "id": 1432, + "id": 1437, "name": "executeQuery", "kind": 4096, "kindString": "Call signature", @@ -9916,7 +9995,7 @@ }, "parameters": [ { - "id": 1433, + "id": 1438, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -9930,7 +10009,7 @@ } }, { - "id": 1434, + "id": 1439, "name": "variables", "kind": 32768, "kindString": "Parameter", @@ -9958,7 +10037,7 @@ ] }, { - "id": 1409, + "id": 1414, "name": "fetchCSVBlob", "kind": 2048, "kindString": "Method", @@ -9974,7 +10053,7 @@ ], "signatures": [ { - "id": 1410, + "id": 1415, "name": "fetchCSVBlob", "kind": 4096, "kindString": "Call signature", @@ -9985,7 +10064,7 @@ }, "parameters": [ { - "id": 1411, + "id": 1416, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -9998,7 +10077,7 @@ "defaultValue": "'en-us'" }, { - "id": 1412, + "id": 1417, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -10027,7 +10106,7 @@ ] }, { - "id": 1402, + "id": 1407, "name": "fetchData", "kind": 2048, "kindString": "Method", @@ -10043,7 +10122,7 @@ ], "signatures": [ { - "id": 1403, + "id": 1408, "name": "fetchData", "kind": 4096, "kindString": "Call signature", @@ -10054,7 +10133,7 @@ }, "parameters": [ { - "id": 1404, + "id": 1409, "name": "offset", "kind": 32768, "kindString": "Parameter", @@ -10067,7 +10146,7 @@ "defaultValue": "0" }, { - "id": 1405, + "id": 1410, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -10086,14 +10165,14 @@ { "type": "reflection", "declaration": { - "id": 1406, + "id": 1411, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1407, + "id": 1412, "name": "columns", "kind": 1024, "kindString": "Property", @@ -10104,7 +10183,7 @@ } }, { - "id": 1408, + "id": 1413, "name": "data", "kind": 1024, "kindString": "Property", @@ -10120,8 +10199,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1407, - 1408 + 1412, + 1413 ] } ] @@ -10134,7 +10213,7 @@ ] }, { - "id": 1413, + "id": 1418, "name": "fetchPNGBlob", "kind": 2048, "kindString": "Method", @@ -10150,7 +10229,7 @@ ], "signatures": [ { - "id": 1414, + "id": 1419, "name": "fetchPNGBlob", "kind": 4096, "kindString": "Call signature", @@ -10161,7 +10240,7 @@ }, "parameters": [ { - "id": 1415, + "id": 1420, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -10174,7 +10253,7 @@ "defaultValue": "'en-us'" }, { - "id": 1416, + "id": 1421, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -10189,7 +10268,7 @@ "defaultValue": "false" }, { - "id": 1417, + "id": 1422, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -10218,7 +10297,7 @@ ] }, { - "id": 1437, + "id": 1442, "name": "getAnswer", "kind": 2048, "kindString": "Method", @@ -10234,7 +10313,7 @@ ], "signatures": [ { - "id": 1438, + "id": 1443, "name": "getAnswer", "kind": 4096, "kindString": "Call signature", @@ -10253,7 +10332,7 @@ ] }, { - "id": 1418, + "id": 1423, "name": "getFetchCSVBlobUrl", "kind": 2048, "kindString": "Method", @@ -10269,7 +10348,7 @@ ], "signatures": [ { - "id": 1419, + "id": 1424, "name": "getFetchCSVBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -10280,7 +10359,7 @@ }, "parameters": [ { - "id": 1420, + "id": 1425, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -10293,7 +10372,7 @@ "defaultValue": "'en-us'" }, { - "id": 1421, + "id": 1426, "name": "includeInfo", "kind": 32768, "kindString": "Parameter", @@ -10314,7 +10393,7 @@ ] }, { - "id": 1422, + "id": 1427, "name": "getFetchPNGBlobUrl", "kind": 2048, "kindString": "Method", @@ -10330,7 +10409,7 @@ ], "signatures": [ { - "id": 1423, + "id": 1428, "name": "getFetchPNGBlobUrl", "kind": 4096, "kindString": "Call signature", @@ -10340,7 +10419,7 @@ }, "parameters": [ { - "id": 1424, + "id": 1429, "name": "userLocale", "kind": 32768, "kindString": "Parameter", @@ -10353,7 +10432,7 @@ "defaultValue": "'en-us'" }, { - "id": 1425, + "id": 1430, "name": "omitBackground", "kind": 32768, "kindString": "Parameter", @@ -10366,7 +10445,7 @@ "defaultValue": "false" }, { - "id": 1426, + "id": 1431, "name": "deviceScaleFactor", "kind": 32768, "kindString": "Parameter", @@ -10389,7 +10468,7 @@ ] }, { - "id": 1400, + "id": 1405, "name": "getSQLQuery", "kind": 2048, "kindString": "Method", @@ -10405,7 +10484,7 @@ ], "signatures": [ { - "id": 1401, + "id": 1406, "name": "getSQLQuery", "kind": 4096, "kindString": "Call signature", @@ -10424,7 +10503,7 @@ ] }, { - "id": 1435, + "id": 1440, "name": "getSession", "kind": 2048, "kindString": "Method", @@ -10440,7 +10519,7 @@ ], "signatures": [ { - "id": 1436, + "id": 1441, "name": "getSession", "kind": 4096, "kindString": "Call signature", @@ -10451,14 +10530,14 @@ }, "type": { "type": "reference", - "id": 1447, + "id": 1452, "name": "SessionInterface" } } ] }, { - "id": 1384, + "id": 1389, "name": "getSourceDetail", "kind": 2048, "kindString": "Method", @@ -10474,7 +10553,7 @@ ], "signatures": [ { - "id": 1385, + "id": 1390, "name": "getSourceDetail", "kind": 4096, "kindString": "Call signature", @@ -10496,7 +10575,7 @@ ] }, { - "id": 1439, + "id": 1444, "name": "getTML", "kind": 2048, "kindString": "Method", @@ -10512,7 +10591,7 @@ ], "signatures": [ { - "id": 1440, + "id": 1445, "name": "getTML", "kind": 4096, "kindString": "Call signature", @@ -10531,7 +10610,7 @@ ] }, { - "id": 1427, + "id": 1432, "name": "getUnderlyingDataForPoint", "kind": 2048, "kindString": "Method", @@ -10547,7 +10626,7 @@ ], "signatures": [ { - "id": 1428, + "id": 1433, "name": "getUnderlyingDataForPoint", "kind": 4096, "kindString": "Call signature", @@ -10567,7 +10646,7 @@ }, "parameters": [ { - "id": 1429, + "id": 1434, "name": "outputColumnNames", "kind": 32768, "kindString": "Parameter", @@ -10582,7 +10661,7 @@ } }, { - "id": 1430, + "id": 1435, "name": "selectedPoints", "kind": 32768, "kindString": "Parameter", @@ -10594,7 +10673,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1454, + "id": 1459, "name": "UnderlyingDataPoint" } } @@ -10605,7 +10684,7 @@ "typeArguments": [ { "type": "reference", - "id": 1374, + "id": 1379, "name": "AnswerService" } ], @@ -10615,7 +10694,7 @@ ] }, { - "id": 1386, + "id": 1391, "name": "removeColumns", "kind": 2048, "kindString": "Method", @@ -10631,7 +10710,7 @@ ], "signatures": [ { - "id": 1387, + "id": 1392, "name": "removeColumns", "kind": 4096, "kindString": "Call signature", @@ -10642,7 +10721,7 @@ }, "parameters": [ { - "id": 1388, + "id": 1393, "name": "columnIds", "kind": 32768, "kindString": "Parameter", @@ -10671,7 +10750,7 @@ ] }, { - "id": 1444, + "id": 1449, "name": "setTMLOverride", "kind": 2048, "kindString": "Method", @@ -10687,14 +10766,14 @@ ], "signatures": [ { - "id": 1445, + "id": 1450, "name": "setTMLOverride", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1446, + "id": 1451, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -10718,31 +10797,31 @@ "title": "Constructors", "kind": 512, "children": [ - 1375 + 1380 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1389, - 1392, - 1441, - 1395, - 1431, - 1409, - 1402, - 1413, - 1437, - 1418, - 1422, + 1394, + 1397, + 1446, 1400, - 1435, - 1384, - 1439, + 1436, + 1414, + 1407, + 1418, + 1442, + 1423, 1427, - 1386, - 1444 + 1405, + 1440, + 1389, + 1444, + 1432, + 1391, + 1449 ] } ], @@ -10799,7 +10878,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2142, + "id": 2147, "name": "DOMSelector" } }, @@ -10811,7 +10890,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2040, + "id": 2045, "name": "AppViewConfig" } } @@ -10932,7 +11011,7 @@ "typeArguments": [ { "type": "reference", - "id": 1374, + "id": 1379, "name": "AnswerService" } ], @@ -11407,7 +11486,7 @@ }, "type": { "type": "reference", - "id": 1498, + "id": 1503, "name": "EmbedEvent" } }, @@ -11422,7 +11501,7 @@ }, "type": { "type": "reference", - "id": 2146, + "id": 2151, "name": "MessageCallback" } } @@ -11489,7 +11568,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1498, + "id": 1503, "name": "EmbedEvent" } }, @@ -11501,7 +11580,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2146, + "id": 2151, "name": "MessageCallback" } }, @@ -11513,7 +11592,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2143, + "id": 2148, "name": "MessageOptions" }, "defaultValue": "..." @@ -11824,7 +11903,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1579, + "id": 1584, "name": "HostEvent" } }, @@ -11943,7 +12022,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2327, + "id": 2332, "name": "UIPassthroughEvent" } } @@ -12060,346 +12139,89 @@ ] }, { - "id": 1051, - "name": "BodylessConversation", + "id": 528, + "name": "LiveboardEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", + "shortText": "Embed a ThoughtSpot Liveboard or visualization. When rendered it already\nwaits for the authentication to complete, so you need not wait for\n`AuthStatus.SUCCESS`.", "tags": [ { "tag": "example", - "text": "\n```js\nimport { BodylessConversation } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new BodylessConversation({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" + "text": "\n```js\nimport { .. } from '@thoughtspot/visual-embed-sdk';\ninit({ ... });\nconst embed = new LiveboardEmbed(\"#container\", {\n liveboardId: ,\n// .. other params here.\n})\n```" }, { "tag": "group", - "text": "Embed components" - }, - { - "tag": "version", - "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" - } - ] - }, - "children": [ - { - "id": 1052, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": {}, - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 88, - "character": 4 - } - ], - "signatures": [ - { - "id": 1053, - "name": "new BodylessConversation", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 1054, - "name": "viewConfig", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "id": 1067, - "name": "BodylessConversationViewConfig" - } - } - ], - "type": { - "type": "reference", - "id": 1051, - "name": "BodylessConversation" - } - } - ] - }, - { - "id": 1056, - "name": "sendMessage", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 97, - "character": 17 - } - ], - "signatures": [ - { - "id": 1057, - "name": "sendMessage", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 1058, - "name": "userMessage", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "reflection", - "declaration": { - "id": 1059, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1061, - "name": "container", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - } - }, - { - "id": 1060, - "name": "error", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - }, - { - "id": 1062, - "name": "viz", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1061, - 1060, - 1062 - ] - } - ] - } - }, - { - "type": "reflection", - "declaration": { - "id": 1063, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1064, - "name": "container", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLDivElement" - } - }, - { - "id": 1066, - "name": "error", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "undefined" - } - }, - { - "id": 1065, - "name": "viz", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "type": { - "type": "reference", - "name": "ConversationMessage" - }, - "defaultValue": "..." - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1064, - 1066, - 1065 - ] - } - ] - } - } - ] - } - ], - "name": "Promise" - } - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 1052 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 1056 - ] - } - ], - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 85, - "character": 13 - } - ] - }, - { - "id": 1110, - "name": "ConversationEmbed", - "kind": 128, - "kindString": "Class", - "flags": {}, - "comment": { - "shortText": "Embed ThoughtSpot AI Conversation.", - "tags": [ - { - "tag": "group", - "text": "Embed components" - }, - { - "tag": "example", - "text": "\n```js\nconst conversation = new ConversationEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" - }, - { - "tag": "version", - "text": "SDK: 1.33.1 | ThoughtSpot: 10.5.0.cl\n" + "text": "Embed components\n" } ] }, "children": [ { - "id": 1111, + "id": 529, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 113, + "fileName": "embed/liveboard.ts", + "line": 433, "character": 4 } ], "signatures": [ { - "id": 1112, - "name": "new ConversationEmbed", + "id": 530, + "name": "new LiveboardEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1113, - "name": "container", + "id": 531, + "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "HTMLElement" + "id": 2147, + "name": "DOMSelector" } }, { - "id": 1114, + "id": 532, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1257, - "name": "ConversationViewConfig" + "id": 1931, + "name": "LiveboardViewConfig" } } ], "type": { "type": "reference", - "id": 1110, - "name": "ConversationEmbed" + "id": 528, + "name": "LiveboardEmbed" }, "overwrites": { "type": "reference", - "name": "TsEmbed.constructor" + "name": "V1Embed.constructor" } } ], "overwrites": { "type": "reference", - "name": "TsEmbed.constructor" + "name": "V1Embed.constructor" } }, { - "id": 1235, + "id": 695, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -12415,7 +12237,7 @@ ], "signatures": [ { - "id": 1236, + "id": 696, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -12435,17 +12257,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.destroy" + "name": "V1Embed.destroy" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.destroy" + "name": "V1Embed.destroy" } }, { - "id": 1254, + "id": 712, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -12461,7 +12283,7 @@ ], "signatures": [ { - "id": 1255, + "id": 713, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -12477,7 +12299,7 @@ }, "parameters": [ { - "id": 1256, + "id": 714, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -12498,7 +12320,7 @@ "typeArguments": [ { "type": "reference", - "id": 1374, + "id": 1379, "name": "AnswerService" } ], @@ -12506,17 +12328,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getAnswerService" + "name": "V1Embed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getAnswerService" + "name": "V1Embed.getAnswerService" } }, { - "id": 1116, + "id": 684, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -12525,14 +12347,14 @@ }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 118, + "fileName": "embed/ts-embed.ts", + "line": 1153, "character": 11 } ], "signatures": [ { - "id": 1117, + "id": 685, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -12541,19 +12363,52 @@ "type": "intrinsic", "name": "string" }, - "overwrites": { + "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getIframeSrc" + "name": "V1Embed.getIframeSrc" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getIframeSrc" + "name": "V1Embed.getIframeSrc" } }, { - "id": 1249, + "id": 578, + "name": "getLiveboardUrl", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 720, + "character": 11 + } + ], + "signatures": [ + { + "id": 579, + "name": "getLiveboardUrl", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Returns the full url of the Liveboard/visualization which can be used to open\nthis Liveboard inside the full Thoughtspot application in a new tab.", + "returns": "url string\n" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 707, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -12569,7 +12424,7 @@ ], "signatures": [ { - "id": 1250, + "id": 708, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -12591,14 +12446,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1251, + "id": 709, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1253, + "id": 711, "name": "child", "kind": 1024, "kindString": "Property", @@ -12610,7 +12465,7 @@ "defaultValue": "..." }, { - "id": 1252, + "id": 710, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -12627,8 +12482,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1253, - 1252 + 711, + 710 ] } ] @@ -12636,17 +12491,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getPreRenderIds" + "name": "V1Embed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getPreRenderIds" + "name": "V1Embed.getPreRenderIds" } }, { - "id": 1229, + "id": 689, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -12662,7 +12517,7 @@ ], "signatures": [ { - "id": 1230, + "id": 690, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -12678,7 +12533,7 @@ }, "parameters": [ { - "id": 1231, + "id": 691, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -12686,20 +12541,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1232, + "id": 692, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1233, + "id": 693, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1234, + "id": 694, "name": "key", "kind": 32768, "flags": {}, @@ -12734,17 +12589,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" + "name": "V1Embed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getThoughtSpotPostUrlParams" + "name": "V1Embed.getThoughtSpotPostUrlParams" } }, { - "id": 1237, + "id": 697, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -12760,7 +12615,7 @@ ], "signatures": [ { - "id": 1238, + "id": 698, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -12771,17 +12626,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getUnderlyingFrameElement" + "name": "V1Embed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.getUnderlyingFrameElement" + "name": "V1Embed.getUnderlyingFrameElement" } }, { - "id": 1247, + "id": 705, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -12797,7 +12652,7 @@ ], "signatures": [ { - "id": 1248, + "id": 706, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -12811,17 +12666,85 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.hidePreRender" + "name": "V1Embed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.hidePreRender" + "name": "V1Embed.hidePreRender" } }, { - "id": 1209, + "id": 573, + "name": "navigateToLiveboard", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 701, + "character": 11 + } + ], + "signatures": [ + { + "id": 574, + "name": "navigateToLiveboard", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 575, + "name": "liveboardId", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 576, + "name": "vizId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 577, + "name": "activeTabId", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + }, + { + "id": 675, "name": "off", "kind": 2048, "kindString": "Method", @@ -12837,7 +12760,7 @@ ], "signatures": [ { - "id": 1210, + "id": 676, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -12853,7 +12776,7 @@ }, "parameters": [ { - "id": 1211, + "id": 677, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -12863,12 +12786,12 @@ }, "type": { "type": "reference", - "id": 1498, + "id": 1503, "name": "EmbedEvent" } }, { - "id": 1212, + "id": 678, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -12878,7 +12801,7 @@ }, "type": { "type": "reference", - "id": 2146, + "id": 2151, "name": "MessageCallback" } } @@ -12889,17 +12812,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.off" + "name": "V1Embed.off" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.off" + "name": "V1Embed.off" } }, { - "id": 1203, + "id": 585, "name": "on", "kind": 2048, "kindString": "Method", @@ -12909,20 +12832,23 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1036, + "line": 1454, "character": 11 } ], "signatures": [ { - "id": 1204, + "id": 586, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", "tags": [ + { + "tag": "inheritdoc", + "text": "" + }, { "tag": "example", "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" @@ -12935,63 +12861,41 @@ }, "parameters": [ { - "id": 1205, + "id": 587, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "The message type" - }, "type": { "type": "reference", - "id": 1498, + "id": 1503, "name": "EmbedEvent" } }, { - "id": 1206, + "id": 588, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "A callback as a function" - }, "type": { "type": "reference", - "id": 2146, + "id": 2151, "name": "MessageCallback" } }, { - "id": 1207, + "id": 589, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "The message options" - }, "type": { "type": "reference", - "id": 2143, + "id": 2148, "name": "MessageOptions" }, "defaultValue": "..." - }, - { - "id": 1208, - "name": "isRegisteredBySDK", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": {}, - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "defaultValue": "false" } ], "type": { @@ -13000,17 +12904,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.on" + "name": "V1Embed.on" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.on" + "name": "V1Embed.on" } }, { - "id": 1226, + "id": 686, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -13026,7 +12930,7 @@ ], "signatures": [ { - "id": 1227, + "id": 687, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -13036,7 +12940,7 @@ }, "parameters": [ { - "id": 1228, + "id": 688, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -13063,17 +12967,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.preRender" + "name": "V1Embed.preRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.preRender" + "name": "V1Embed.preRender" } }, { - "id": 1239, + "id": 699, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -13089,7 +12993,7 @@ ], "signatures": [ { - "id": 1240, + "id": 700, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -13116,17 +13020,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.prerenderGeneric" + "name": "V1Embed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.prerenderGeneric" + "name": "V1Embed.prerenderGeneric" } }, { - "id": 1118, + "id": 571, "name": "render", "kind": 2048, "kindString": "Method", @@ -13135,42 +13039,45 @@ }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 166, + "fileName": "embed/liveboard.ts", + "line": 691, "character": 17 } ], "signatures": [ { - "id": 1119, + "id": 572, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Render an embedded ThoughtSpot Liveboard or visualization" + }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 1110, - "name": "ConversationEmbed" + "id": 528, + "name": "LiveboardEmbed" } ], "name": "Promise" }, "overwrites": { "type": "reference", - "name": "TsEmbed.render" + "name": "V1Embed.render" } } ], "overwrites": { "type": "reference", - "name": "TsEmbed.render" + "name": "V1Embed.render" } }, { - "id": 1243, + "id": 701, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -13186,7 +13093,7 @@ ], "signatures": [ { - "id": 1244, + "id": 702, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -13206,17 +13113,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.showPreRender" + "name": "V1Embed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.showPreRender" + "name": "V1Embed.showPreRender" } }, { - "id": 1245, + "id": 703, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -13232,7 +13139,7 @@ ], "signatures": [ { - "id": 1246, + "id": 704, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -13252,17 +13159,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.syncPreRenderStyle" + "name": "V1Embed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.syncPreRenderStyle" + "name": "V1Embed.syncPreRenderStyle" } }, { - "id": 1213, + "id": 565, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -13271,14 +13178,14 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1104, - "character": 17 + "fileName": "embed/liveboard.ts", + "line": 671, + "character": 11 } ], "signatures": [ { - "id": 1214, + "id": 566, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -13289,19 +13196,19 @@ }, "typeParameter": [ { - "id": 1215, + "id": 567, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1579, + "id": 1584, "name": "HostEvent" } }, { - "id": 1216, + "id": 568, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -13310,7 +13217,7 @@ ], "parameters": [ { - "id": 1217, + "id": 569, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -13324,7 +13231,7 @@ } }, { - "id": 1218, + "id": 570, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -13369,19 +13276,19 @@ ], "name": "Promise" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "TsEmbed.trigger" + "name": "V1Embed.trigger" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "TsEmbed.trigger" + "name": "V1Embed.trigger" } }, { - "id": 1219, + "id": 679, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -13397,7 +13304,7 @@ ], "signatures": [ { - "id": 1220, + "id": 680, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -13408,21 +13315,21 @@ }, "typeParameter": [ { - "id": 1221, + "id": 681, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2327, + "id": 2332, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 1222, + "id": 682, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -13436,7 +13343,7 @@ } }, { - "id": 1223, + "id": 683, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -13474,13 +13381,13 @@ }, "inheritedFrom": { "type": "reference", - "name": "TsEmbed.triggerUIPassThrough" + "name": "V1Embed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "name": "TsEmbed.triggerUIPassThrough" + "name": "V1Embed.triggerUIPassThrough" } } ], @@ -13489,58 +13396,60 @@ "title": "Constructors", "kind": 512, "children": [ - 1111 + 529 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1235, - 1254, - 1116, - 1249, - 1229, - 1237, - 1247, - 1209, - 1203, - 1226, - 1239, - 1118, - 1243, - 1245, - 1213, - 1219 + 695, + 712, + 684, + 578, + 707, + 689, + 697, + 705, + 573, + 675, + 585, + 686, + 699, + 571, + 701, + 703, + 565, + 679 ] } ], "sources": [ { - "fileName": "embed/conversation.ts", - "line": 112, + "fileName": "embed/liveboard.ts", + "line": 427, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "name": "TsEmbed" + "name": "V1Embed" } ] }, { - "id": 528, - "name": "LiveboardEmbed", + "id": 715, + "name": "SageEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed a ThoughtSpot Liveboard or visualization. When rendered it already\nwaits for the authentication to complete, so you need not wait for\n`AuthStatus.SUCCESS`.", + "shortText": "Embed ThoughtSpot LLM and GPT-based Natural Language Search component.", "tags": [ { - "tag": "example", - "text": "\n```js\nimport { .. } from '@thoughtspot/visual-embed-sdk';\ninit({ ... });\nconst embed = new LiveboardEmbed(\"#container\", {\n liveboardId: ,\n// .. other params here.\n})\n```" + "tag": "version:", + "text": "SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl, 9.5.1-sw" }, { "tag": "group", @@ -13550,55 +13459,55 @@ }, "children": [ { - "id": 529, + "id": 716, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 433, + "fileName": "embed/sage.ts", + "line": 139, "character": 4 } ], "signatures": [ { - "id": 530, - "name": "new LiveboardEmbed", + "id": 717, + "name": "new SageEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 531, + "id": 718, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2142, + "id": 2147, "name": "DOMSelector" } }, { - "id": 532, + "id": 719, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1926, - "name": "LiveboardViewConfig" + "id": 1997, + "name": "SageViewConfig" } } ], "type": { "type": "reference", - "id": 528, - "name": "LiveboardEmbed" + "id": 715, + "name": "SageEmbed" }, "overwrites": { "type": "reference", @@ -13612,7 +13521,7 @@ } }, { - "id": 695, + "id": 850, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -13628,7 +13537,7 @@ ], "signatures": [ { - "id": 696, + "id": 851, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -13658,7 +13567,7 @@ } }, { - "id": 712, + "id": 869, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -13674,7 +13583,7 @@ ], "signatures": [ { - "id": 713, + "id": 870, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -13690,7 +13599,7 @@ }, "parameters": [ { - "id": 714, + "id": 871, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -13711,7 +13620,7 @@ "typeArguments": [ { "type": "reference", - "id": 1374, + "id": 1379, "name": "AnswerService" } ], @@ -13729,8 +13638,8 @@ } }, { - "id": 684, - "name": "getIframeSrc", + "id": 723, + "name": "getIFrameSrc", "kind": 2048, "kindString": "Method", "flags": { @@ -13738,36 +13647,32 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1153, + "fileName": "embed/sage.ts", + "line": 183, "character": 11 } ], "signatures": [ { - "id": 685, - "name": "getIframeSrc", + "id": 724, + "name": "getIFrameSrc", "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Construct the URL of the embedded ThoughtSpot sage to be\nloaded in the iframe", + "returns": "iframe url\n" + }, "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.getIframeSrc" } } - ], - "inheritedFrom": { - "type": "reference", - "name": "V1Embed.getIframeSrc" - } + ] }, { - "id": 578, - "name": "getLiveboardUrl", + "id": 837, + "name": "getIframeSrc", "kind": 2048, "kindString": "Method", "flags": { @@ -13775,31 +13680,35 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 720, + "fileName": "embed/ts-embed.ts", + "line": 1153, "character": 11 } ], "signatures": [ { - "id": 579, - "name": "getLiveboardUrl", + "id": 838, + "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Returns the full url of the Liveboard/visualization which can be used to open\nthis Liveboard inside the full Thoughtspot application in a new tab.", - "returns": "url string\n" - }, "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "V1Embed.getIframeSrc" } } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "V1Embed.getIframeSrc" + } }, { - "id": 707, + "id": 864, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -13815,7 +13724,7 @@ ], "signatures": [ { - "id": 708, + "id": 865, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -13837,14 +13746,14 @@ "type": { "type": "reflection", "declaration": { - "id": 709, + "id": 866, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 711, + "id": 868, "name": "child", "kind": 1024, "kindString": "Property", @@ -13856,7 +13765,7 @@ "defaultValue": "..." }, { - "id": 710, + "id": 867, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -13873,8 +13782,8 @@ "title": "Properties", "kind": 1024, "children": [ - 711, - 710 + 868, + 867 ] } ] @@ -13892,7 +13801,7 @@ } }, { - "id": 689, + "id": 844, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -13908,7 +13817,7 @@ ], "signatures": [ { - "id": 690, + "id": 845, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -13924,7 +13833,7 @@ }, "parameters": [ { - "id": 691, + "id": 846, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -13932,20 +13841,20 @@ "type": { "type": "reflection", "declaration": { - "id": 692, + "id": 847, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 693, + "id": 848, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 694, + "id": 849, "name": "key", "kind": 32768, "flags": {}, @@ -13990,7 +13899,7 @@ } }, { - "id": 697, + "id": 852, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -14006,7 +13915,7 @@ ], "signatures": [ { - "id": 698, + "id": 853, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -14027,7 +13936,7 @@ } }, { - "id": 705, + "id": 862, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -14043,7 +13952,7 @@ ], "signatures": [ { - "id": 706, + "id": 863, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -14067,75 +13976,7 @@ } }, { - "id": 573, - "name": "navigateToLiveboard", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 701, - "character": 11 - } - ], - "signatures": [ - { - "id": 574, - "name": "navigateToLiveboard", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 575, - "name": "liveboardId", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 576, - "name": "vizId", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 577, - "name": "activeTabId", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - }, - { - "id": 675, + "id": 822, "name": "off", "kind": 2048, "kindString": "Method", @@ -14151,7 +13992,7 @@ ], "signatures": [ { - "id": 676, + "id": 823, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -14167,7 +14008,7 @@ }, "parameters": [ { - "id": 677, + "id": 824, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14177,12 +14018,12 @@ }, "type": { "type": "reference", - "id": 1498, + "id": 1503, "name": "EmbedEvent" } }, { - "id": 678, + "id": 825, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -14192,7 +14033,7 @@ }, "type": { "type": "reference", - "id": 2146, + "id": 2151, "name": "MessageCallback" } } @@ -14213,7 +14054,7 @@ } }, { - "id": 585, + "id": 732, "name": "on", "kind": 2048, "kindString": "Method", @@ -14229,7 +14070,7 @@ ], "signatures": [ { - "id": 586, + "id": 733, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -14252,38 +14093,38 @@ }, "parameters": [ { - "id": 587, + "id": 734, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1498, + "id": 1503, "name": "EmbedEvent" } }, { - "id": 588, + "id": 735, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2146, + "id": 2151, "name": "MessageCallback" } }, { - "id": 589, + "id": 736, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2143, + "id": 2148, "name": "MessageOptions" }, "defaultValue": "..." @@ -14305,7 +14146,7 @@ } }, { - "id": 686, + "id": 841, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -14321,7 +14162,7 @@ ], "signatures": [ { - "id": 687, + "id": 842, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -14331,7 +14172,7 @@ }, "parameters": [ { - "id": 688, + "id": 843, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -14368,7 +14209,7 @@ } }, { - "id": 699, + "id": 854, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -14384,7 +14225,7 @@ ], "signatures": [ { - "id": 700, + "id": 855, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -14421,7 +14262,7 @@ } }, { - "id": 571, + "id": 725, "name": "render", "kind": 2048, "kindString": "Method", @@ -14430,28 +14271,29 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 691, + "fileName": "embed/sage.ts", + "line": 208, "character": 17 } ], "signatures": [ { - "id": 572, + "id": 726, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Render an embedded ThoughtSpot Liveboard or visualization" + "shortText": "Render the embedded ThoughtSpot Sage", + "returns": "Eureka/Sage embed\n" }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 528, - "name": "LiveboardEmbed" + "id": 715, + "name": "SageEmbed" } ], "name": "Promise" @@ -14468,7 +14310,7 @@ } }, { - "id": 701, + "id": 858, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -14484,7 +14326,7 @@ ], "signatures": [ { - "id": 702, + "id": 859, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -14514,7 +14356,7 @@ } }, { - "id": 703, + "id": 860, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -14530,7 +14372,7 @@ ], "signatures": [ { - "id": 704, + "id": 861, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -14560,7 +14402,7 @@ } }, { - "id": 565, + "id": 826, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -14569,14 +14411,14 @@ }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 671, - "character": 11 + "fileName": "embed/ts-embed.ts", + "line": 1104, + "character": 17 } ], "signatures": [ { - "id": 566, + "id": 827, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -14587,19 +14429,19 @@ }, "typeParameter": [ { - "id": 567, + "id": 828, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1579, + "id": 1584, "name": "HostEvent" } }, { - "id": 568, + "id": 829, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -14608,7 +14450,7 @@ ], "parameters": [ { - "id": 569, + "id": 830, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -14622,7 +14464,7 @@ } }, { - "id": 570, + "id": 831, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -14667,19 +14509,19 @@ ], "name": "Promise" }, - "overwrites": { + "inheritedFrom": { "type": "reference", "name": "V1Embed.trigger" } } ], - "overwrites": { + "inheritedFrom": { "type": "reference", "name": "V1Embed.trigger" } }, { - "id": 679, + "id": 832, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -14695,7 +14537,7 @@ ], "signatures": [ { - "id": 680, + "id": 833, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -14706,21 +14548,21 @@ }, "typeParameter": [ { - "id": 681, + "id": 834, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2327, + "id": 2332, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 682, + "id": 835, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -14734,7 +14576,7 @@ } }, { - "id": 683, + "id": 836, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -14787,38 +14629,37 @@ "title": "Constructors", "kind": 512, "children": [ - 529 + 716 ] }, { "title": "Methods", "kind": 2048, "children": [ - 695, - 712, - 684, - 578, - 707, - 689, - 697, - 705, - 573, - 675, - 585, - 686, - 699, - 571, - 701, - 703, - 565, - 679 + 850, + 869, + 723, + 837, + 864, + 844, + 852, + 862, + 822, + 732, + 841, + 854, + 725, + 858, + 860, + 826, + 832 ] } ], "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 427, + "fileName": "embed/sage.ts", + "line": 131, "character": 13 } ], @@ -14830,17 +14671,17 @@ ] }, { - "id": 715, - "name": "SageEmbed", + "id": 212, + "name": "SearchBarEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot LLM and GPT-based Natural Language Search component.", + "shortText": "Embed ThoughtSpot search bar", "tags": [ { "tag": "version:", - "text": "SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl, 9.5.1-sw" + "text": "SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1-sw" }, { "tag": "group", @@ -14850,69 +14691,68 @@ }, "children": [ { - "id": 716, + "id": 213, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/sage.ts", - "line": 139, + "fileName": "embed/search-bar.tsx", + "line": 117, "character": 4 } ], "signatures": [ { - "id": 717, - "name": "new SageEmbed", + "id": 214, + "name": "new SearchBarEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 718, + "id": 215, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "reference", - "id": 2142, - "name": "DOMSelector" + "type": "intrinsic", + "name": "string" } }, { - "id": 719, + "id": 216, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1992, - "name": "SageViewConfig" + "id": 1892, + "name": "SearchBarViewConfig" } } ], "type": { "type": "reference", - "id": 715, - "name": "SageEmbed" + "id": 212, + "name": "SearchBarEmbed" }, "overwrites": { "type": "reference", - "name": "V1Embed.constructor" + "name": "TsEmbed.constructor" } } ], "overwrites": { "type": "reference", - "name": "V1Embed.constructor" + "name": "TsEmbed.constructor" } }, { - "id": 850, + "id": 344, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -14928,7 +14768,7 @@ ], "signatures": [ { - "id": 851, + "id": 345, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -14948,17 +14788,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.destroy" + "name": "TsEmbed.destroy" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.destroy" + "name": "TsEmbed.destroy" } }, { - "id": 869, + "id": 363, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -14974,7 +14814,7 @@ ], "signatures": [ { - "id": 870, + "id": 364, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -14990,7 +14830,7 @@ }, "parameters": [ { - "id": 871, + "id": 365, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -15011,7 +14851,7 @@ "typeArguments": [ { "type": "reference", - "id": 1374, + "id": 1379, "name": "AnswerService" } ], @@ -15019,50 +14859,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getAnswerService" + "name": "TsEmbed.getAnswerService" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getAnswerService" + "name": "TsEmbed.getAnswerService" } }, { - "id": 723, - "name": "getIFrameSrc", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/sage.ts", - "line": 183, - "character": 11 - } - ], - "signatures": [ - { - "id": 724, - "name": "getIFrameSrc", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Construct the URL of the embedded ThoughtSpot sage to be\nloaded in the iframe", - "returns": "iframe url\n" - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - { - "id": 837, + "id": 331, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -15078,7 +14885,7 @@ ], "signatures": [ { - "id": 838, + "id": 332, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -15089,17 +14896,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getIframeSrc" + "name": "TsEmbed.getIframeSrc" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getIframeSrc" + "name": "TsEmbed.getIframeSrc" } }, { - "id": 864, + "id": 358, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -15115,7 +14922,7 @@ ], "signatures": [ { - "id": 865, + "id": 359, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -15137,14 +14944,14 @@ "type": { "type": "reflection", "declaration": { - "id": 866, + "id": 360, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 868, + "id": 362, "name": "child", "kind": 1024, "kindString": "Property", @@ -15156,7 +14963,7 @@ "defaultValue": "..." }, { - "id": 867, + "id": 361, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -15173,8 +14980,8 @@ "title": "Properties", "kind": 1024, "children": [ - 868, - 867 + 362, + 361 ] } ] @@ -15182,17 +14989,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getPreRenderIds" + "name": "TsEmbed.getPreRenderIds" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getPreRenderIds" + "name": "TsEmbed.getPreRenderIds" } }, { - "id": 844, + "id": 338, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -15208,7 +15015,7 @@ ], "signatures": [ { - "id": 845, + "id": 339, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -15224,7 +15031,7 @@ }, "parameters": [ { - "id": 846, + "id": 340, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -15232,20 +15039,20 @@ "type": { "type": "reflection", "declaration": { - "id": 847, + "id": 341, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 848, + "id": 342, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 849, + "id": 343, "name": "key", "kind": 32768, "flags": {}, @@ -15280,17 +15087,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getThoughtSpotPostUrlParams" + "name": "TsEmbed.getThoughtSpotPostUrlParams" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getThoughtSpotPostUrlParams" + "name": "TsEmbed.getThoughtSpotPostUrlParams" } }, { - "id": 852, + "id": 346, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -15306,7 +15113,7 @@ ], "signatures": [ { - "id": 853, + "id": 347, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -15317,17 +15124,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.getUnderlyingFrameElement" + "name": "TsEmbed.getUnderlyingFrameElement" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.getUnderlyingFrameElement" + "name": "TsEmbed.getUnderlyingFrameElement" } }, { - "id": 862, + "id": 356, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -15343,7 +15150,7 @@ ], "signatures": [ { - "id": 863, + "id": 357, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -15357,17 +15164,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.hidePreRender" + "name": "TsEmbed.hidePreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.hidePreRender" + "name": "TsEmbed.hidePreRender" } }, { - "id": 822, + "id": 316, "name": "off", "kind": 2048, "kindString": "Method", @@ -15383,7 +15190,7 @@ ], "signatures": [ { - "id": 823, + "id": 317, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -15399,7 +15206,7 @@ }, "parameters": [ { - "id": 824, + "id": 318, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15409,12 +15216,12 @@ }, "type": { "type": "reference", - "id": 1498, + "id": 1503, "name": "EmbedEvent" } }, { - "id": 825, + "id": 319, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -15424,7 +15231,7 @@ }, "type": { "type": "reference", - "id": 2146, + "id": 2151, "name": "MessageCallback" } } @@ -15435,17 +15242,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.off" + "name": "TsEmbed.off" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.off" + "name": "TsEmbed.off" } }, { - "id": 732, + "id": 310, "name": "on", "kind": 2048, "kindString": "Method", @@ -15455,23 +15262,20 @@ "sources": [ { "fileName": "embed/ts-embed.ts", - "line": 1454, + "line": 1036, "character": 11 } ], "signatures": [ { - "id": 733, + "id": 311, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { + "shortText": "Registers an event listener to trigger an alert when the ThoughtSpot app\nsends an event of a particular message type to the host application.", "tags": [ - { - "tag": "inheritdoc", - "text": "" - }, { "tag": "example", "text": "\n```js\ntsEmbed.on(EmbedEvent.Error, (data) => {\n console.error(data);\n});\n```" @@ -15484,41 +15288,63 @@ }, "parameters": [ { - "id": 734, + "id": 312, "name": "messageType", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "The message type" + }, "type": { "type": "reference", - "id": 1498, + "id": 1503, "name": "EmbedEvent" } }, { - "id": 735, + "id": 313, "name": "callback", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "A callback as a function" + }, "type": { "type": "reference", - "id": 2146, + "id": 2151, "name": "MessageCallback" } }, { - "id": 736, + "id": 314, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "The message options" + }, "type": { "type": "reference", - "id": 2143, + "id": 2148, "name": "MessageOptions" }, "defaultValue": "..." + }, + { + "id": 315, + "name": "isRegisteredBySDK", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "false" } ], "type": { @@ -15527,17 +15353,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.on" + "name": "TsEmbed.on" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.on" + "name": "TsEmbed.on" } }, { - "id": 841, + "id": 335, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -15553,7 +15379,7 @@ ], "signatures": [ { - "id": 842, + "id": 336, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -15563,7 +15389,7 @@ }, "parameters": [ { - "id": 843, + "id": 337, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -15590,17 +15416,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.preRender" + "name": "TsEmbed.preRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.preRender" + "name": "TsEmbed.preRender" } }, { - "id": 854, + "id": 348, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -15616,7 +15442,7 @@ ], "signatures": [ { - "id": 855, + "id": 349, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -15643,17 +15469,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.prerenderGeneric" + "name": "TsEmbed.prerenderGeneric" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.prerenderGeneric" + "name": "TsEmbed.prerenderGeneric" } }, { - "id": 725, + "id": 221, "name": "render", "kind": 2048, "kindString": "Method", @@ -15662,46 +15488,45 @@ }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 208, + "fileName": "embed/search-bar.tsx", + "line": 176, "character": 17 } ], "signatures": [ { - "id": 726, + "id": 222, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, "comment": { - "shortText": "Render the embedded ThoughtSpot Sage", - "returns": "Eureka/Sage embed\n" + "shortText": "Render the embedded ThoughtSpot search" }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 715, - "name": "SageEmbed" + "id": 212, + "name": "SearchBarEmbed" } ], "name": "Promise" }, "overwrites": { "type": "reference", - "name": "V1Embed.render" + "name": "TsEmbed.render" } } ], "overwrites": { "type": "reference", - "name": "V1Embed.render" + "name": "TsEmbed.render" } }, { - "id": 858, + "id": 352, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -15717,7 +15542,7 @@ ], "signatures": [ { - "id": 859, + "id": 353, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -15737,17 +15562,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.showPreRender" + "name": "TsEmbed.showPreRender" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.showPreRender" + "name": "TsEmbed.showPreRender" } }, { - "id": 860, + "id": 354, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -15763,7 +15588,7 @@ ], "signatures": [ { - "id": 861, + "id": 355, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -15783,17 +15608,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.syncPreRenderStyle" + "name": "TsEmbed.syncPreRenderStyle" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.syncPreRenderStyle" + "name": "TsEmbed.syncPreRenderStyle" } }, { - "id": 826, + "id": 320, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -15809,7 +15634,7 @@ ], "signatures": [ { - "id": 827, + "id": 321, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -15820,19 +15645,19 @@ }, "typeParameter": [ { - "id": 828, + "id": 322, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1579, + "id": 1584, "name": "HostEvent" } }, { - "id": 829, + "id": 323, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -15841,7 +15666,7 @@ ], "parameters": [ { - "id": 830, + "id": 324, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -15855,7 +15680,7 @@ } }, { - "id": 831, + "id": 325, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -15902,17 +15727,17 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.trigger" + "name": "TsEmbed.trigger" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.trigger" + "name": "TsEmbed.trigger" } }, { - "id": 832, + "id": 326, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -15928,7 +15753,7 @@ ], "signatures": [ { - "id": 833, + "id": 327, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -15939,21 +15764,21 @@ }, "typeParameter": [ { - "id": 834, + "id": 328, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2327, + "id": 2332, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 835, + "id": 329, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -15967,7 +15792,7 @@ } }, { - "id": 836, + "id": 330, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -16005,13 +15830,13 @@ }, "inheritedFrom": { "type": "reference", - "name": "V1Embed.triggerUIPassThrough" + "name": "TsEmbed.triggerUIPassThrough" } } ], "inheritedFrom": { "type": "reference", - "name": "V1Embed.triggerUIPassThrough" + "name": "TsEmbed.triggerUIPassThrough" } } ], @@ -16020,60 +15845,55 @@ "title": "Constructors", "kind": 512, "children": [ - 716 + 213 ] }, { "title": "Methods", "kind": 2048, "children": [ - 850, - 869, - 723, - 837, - 864, - 844, - 852, - 862, - 822, - 732, - 841, - 854, - 725, - 858, - 860, - 826, - 832 + 344, + 363, + 331, + 358, + 338, + 346, + 356, + 316, + 310, + 335, + 348, + 221, + 352, + 354, + 320, + 326 ] } ], "sources": [ { - "fileName": "embed/sage.ts", - "line": 131, + "fileName": "embed/search-bar.tsx", + "line": 109, "character": 13 } ], "extendedTypes": [ { "type": "reference", - "name": "V1Embed" + "name": "TsEmbed" } ] }, { - "id": 212, - "name": "SearchBarEmbed", + "id": 55, + "name": "SearchEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot search bar", + "shortText": "Embed ThoughtSpot search", "tags": [ - { - "tag": "version:", - "text": "SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1-sw" - }, { "tag": "group", "text": "Embed components\n" @@ -16082,54 +15902,55 @@ }, "children": [ { - "id": 213, + "id": 56, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 117, + "fileName": "embed/search.ts", + "line": 321, "character": 4 } ], "signatures": [ { - "id": 214, - "name": "new SearchBarEmbed", + "id": 57, + "name": "new SearchEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 215, + "id": 58, "name": "domSelector", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2147, + "name": "DOMSelector" } }, { - "id": 216, + "id": 59, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1887, - "name": "SearchBarViewConfig" + "id": 1837, + "name": "SearchViewConfig" } } ], "type": { "type": "reference", - "id": 212, - "name": "SearchBarEmbed" + "id": 55, + "name": "SearchEmbed" }, "overwrites": { "type": "reference", @@ -16143,7 +15964,7 @@ } }, { - "id": 344, + "id": 190, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -16159,7 +15980,7 @@ ], "signatures": [ { - "id": 345, + "id": 191, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -16189,7 +16010,7 @@ } }, { - "id": 363, + "id": 209, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -16205,7 +16026,7 @@ ], "signatures": [ { - "id": 364, + "id": 210, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -16221,7 +16042,7 @@ }, "parameters": [ { - "id": 365, + "id": 211, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -16242,7 +16063,7 @@ "typeArguments": [ { "type": "reference", - "id": 1374, + "id": 1379, "name": "AnswerService" } ], @@ -16260,7 +16081,39 @@ } }, { - "id": 331, + "id": 73, + "name": "getIFrameSrc", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 473, + "character": 11 + } + ], + "signatures": [ + { + "id": 74, + "name": "getIFrameSrc", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Construct the URL of the embedded ThoughtSpot search to be\nloaded in the iframe" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 177, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -16276,7 +16129,7 @@ ], "signatures": [ { - "id": 332, + "id": 178, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -16297,7 +16150,7 @@ } }, { - "id": 358, + "id": 204, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -16313,7 +16166,7 @@ ], "signatures": [ { - "id": 359, + "id": 205, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -16335,14 +16188,14 @@ "type": { "type": "reflection", "declaration": { - "id": 360, + "id": 206, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 362, + "id": 208, "name": "child", "kind": 1024, "kindString": "Property", @@ -16354,7 +16207,7 @@ "defaultValue": "..." }, { - "id": 361, + "id": 207, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -16371,8 +16224,8 @@ "title": "Properties", "kind": 1024, "children": [ - 362, - 361 + 208, + 207 ] } ] @@ -16390,7 +16243,7 @@ } }, { - "id": 338, + "id": 184, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -16406,7 +16259,7 @@ ], "signatures": [ { - "id": 339, + "id": 185, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -16422,7 +16275,7 @@ }, "parameters": [ { - "id": 340, + "id": 186, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -16430,20 +16283,20 @@ "type": { "type": "reflection", "declaration": { - "id": 341, + "id": 187, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 342, + "id": 188, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 343, + "id": 189, "name": "key", "kind": 32768, "flags": {}, @@ -16488,7 +16341,7 @@ } }, { - "id": 346, + "id": 192, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -16504,7 +16357,7 @@ ], "signatures": [ { - "id": 347, + "id": 193, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -16525,7 +16378,7 @@ } }, { - "id": 356, + "id": 202, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -16541,7 +16394,7 @@ ], "signatures": [ { - "id": 357, + "id": 203, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -16565,7 +16418,7 @@ } }, { - "id": 316, + "id": 162, "name": "off", "kind": 2048, "kindString": "Method", @@ -16581,7 +16434,7 @@ ], "signatures": [ { - "id": 317, + "id": 163, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -16597,7 +16450,7 @@ }, "parameters": [ { - "id": 318, + "id": 164, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16607,12 +16460,12 @@ }, "type": { "type": "reference", - "id": 1498, + "id": 1503, "name": "EmbedEvent" } }, { - "id": 319, + "id": 165, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16622,7 +16475,7 @@ }, "type": { "type": "reference", - "id": 2146, + "id": 2151, "name": "MessageCallback" } } @@ -16643,7 +16496,7 @@ } }, { - "id": 310, + "id": 156, "name": "on", "kind": 2048, "kindString": "Method", @@ -16659,7 +16512,7 @@ ], "signatures": [ { - "id": 311, + "id": 157, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -16679,7 +16532,7 @@ }, "parameters": [ { - "id": 312, + "id": 158, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -16689,12 +16542,12 @@ }, "type": { "type": "reference", - "id": 1498, + "id": 1503, "name": "EmbedEvent" } }, { - "id": 313, + "id": 159, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -16704,12 +16557,12 @@ }, "type": { "type": "reference", - "id": 2146, + "id": 2151, "name": "MessageCallback" } }, { - "id": 314, + "id": 160, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -16719,13 +16572,13 @@ }, "type": { "type": "reference", - "id": 2143, + "id": 2148, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 315, + "id": 161, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -16754,7 +16607,7 @@ } }, { - "id": 335, + "id": 181, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -16770,7 +16623,7 @@ ], "signatures": [ { - "id": 336, + "id": 182, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -16780,7 +16633,7 @@ }, "parameters": [ { - "id": 337, + "id": 183, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -16817,7 +16670,7 @@ } }, { - "id": 348, + "id": 194, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -16833,7 +16686,7 @@ ], "signatures": [ { - "id": 349, + "id": 195, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -16870,7 +16723,7 @@ } }, { - "id": 221, + "id": 75, "name": "render", "kind": 2048, "kindString": "Method", @@ -16879,14 +16732,14 @@ }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 176, + "fileName": "embed/search.ts", + "line": 484, "character": 17 } ], "signatures": [ { - "id": 222, + "id": 76, "name": "render", "kind": 4096, "kindString": "Call signature", @@ -16899,8 +16752,8 @@ "typeArguments": [ { "type": "reference", - "id": 212, - "name": "SearchBarEmbed" + "id": 55, + "name": "SearchEmbed" } ], "name": "Promise" @@ -16917,7 +16770,7 @@ } }, { - "id": 352, + "id": 198, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -16933,7 +16786,7 @@ ], "signatures": [ { - "id": 353, + "id": 199, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -16963,7 +16816,7 @@ } }, { - "id": 354, + "id": 200, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -16979,7 +16832,7 @@ ], "signatures": [ { - "id": 355, + "id": 201, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -17009,7 +16862,7 @@ } }, { - "id": 320, + "id": 166, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -17025,7 +16878,7 @@ ], "signatures": [ { - "id": 321, + "id": 167, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -17036,19 +16889,19 @@ }, "typeParameter": [ { - "id": 322, + "id": 168, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1579, + "id": 1584, "name": "HostEvent" } }, { - "id": 323, + "id": 169, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -17057,7 +16910,7 @@ ], "parameters": [ { - "id": 324, + "id": 170, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17071,7 +16924,7 @@ } }, { - "id": 325, + "id": 171, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -17128,7 +16981,7 @@ } }, { - "id": 326, + "id": 172, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -17144,7 +16997,7 @@ ], "signatures": [ { - "id": 327, + "id": 173, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -17155,21 +17008,21 @@ }, "typeParameter": [ { - "id": 328, + "id": 174, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2327, + "id": 2332, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 329, + "id": 175, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -17183,7 +17036,7 @@ } }, { - "id": 330, + "id": 176, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -17236,36 +17089,37 @@ "title": "Constructors", "kind": 512, "children": [ - 213 + 56 ] }, { "title": "Methods", "kind": 2048, "children": [ - 344, - 363, - 331, - 358, - 338, - 346, - 356, - 316, - 310, - 335, - 348, - 221, - 352, - 354, - 320, - 326 + 190, + 209, + 73, + 177, + 204, + 184, + 192, + 202, + 162, + 156, + 181, + 194, + 75, + 198, + 200, + 166, + 172 ] } ], "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 109, + "fileName": "embed/search.ts", + "line": 315, "character": 13 } ], @@ -17277,71 +17131,340 @@ ] }, { - "id": 55, - "name": "SearchEmbed", + "id": 1051, + "name": "SpotterAgentEmbed", "kind": 128, "kindString": "Class", "flags": {}, "comment": { - "shortText": "Embed ThoughtSpot search", + "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", "tags": [ + { + "tag": "deprecated", + "text": "Formally known as BodylessConversation" + }, + { + "tag": "example", + "text": "\n```js\nimport { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new SpotterAgentEmbed({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" + }, { "tag": "group", - "text": "Embed components\n" + "text": "Embed components" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "children": [ { - "id": 56, + "id": 1052, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "sources": [ { - "fileName": "embed/search.ts", - "line": 321, + "fileName": "embed/bodyless-conversation.ts", + "line": 91, "character": 4 } ], "signatures": [ { - "id": 57, - "name": "new SearchEmbed", + "id": 1053, + "name": "new SpotterAgentEmbed", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 58, - "name": "domSelector", + "id": 1054, + "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2142, - "name": "DOMSelector" + "id": 1067, + "name": "SpotterAgentEmbedViewConfig" + } + } + ], + "type": { + "type": "reference", + "id": 1051, + "name": "SpotterAgentEmbed" + } + } + ] + }, + { + "id": 1056, + "name": "sendMessage", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 100, + "character": 17 + } + ], + "signatures": [ + { + "id": 1057, + "name": "sendMessage", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1058, + "name": "userMessage", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "reflection", + "declaration": { + "id": 1059, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1061, + "name": "container", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + } + }, + { + "id": 1060, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 1062, + "name": "viz", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1061, + 1060, + 1062 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 1063, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1064, + "name": "container", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLDivElement" + } + }, + { + "id": 1066, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "undefined" + } + }, + { + "id": 1065, + "name": "viz", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "type": { + "type": "reference", + "name": "ConversationMessage" + }, + "defaultValue": "..." + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1064, + 1066, + 1065 + ] + } + ] + } + } + ] + } + ], + "name": "Promise" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1052 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 1056 + ] + } + ], + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 88, + "character": 13 + } + ] + }, + { + "id": 1112, + "name": "SpotterEmbed", + "kind": 128, + "kindString": "Class", + "flags": {}, + "comment": { + "shortText": "Embed ThoughtSpot AI Conversation.", + "tags": [ + { + "tag": "deprecated", + "text": "Formally known as ConversationEmbed" + }, + { + "tag": "group", + "text": "Embed components" + }, + { + "tag": "example", + "text": "\n```js\nconst conversation = new SpotterEmbed('#tsEmbed', {\n worksheetId: 'worksheetId',\n searchOptions: {\n searchQuery: 'searchQuery',\n },\n});\nconversation.render();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + } + ] + }, + "children": [ + { + "id": 1113, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "sources": [ + { + "fileName": "embed/conversation.ts", + "line": 115, + "character": 4 + } + ], + "signatures": [ + { + "id": 1114, + "name": "new SpotterEmbed", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1115, + "name": "container", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "HTMLElement" } }, { - "id": 59, + "id": 1116, "name": "viewConfig", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1832, - "name": "SearchViewConfig" + "id": 1259, + "name": "SpotterEmbedViewConfig" } } ], "type": { "type": "reference", - "id": 55, - "name": "SearchEmbed" + "id": 1112, + "name": "SpotterEmbed" }, "overwrites": { "type": "reference", @@ -17355,7 +17478,7 @@ } }, { - "id": 190, + "id": 1237, "name": "destroy", "kind": 2048, "kindString": "Method", @@ -17371,7 +17494,7 @@ ], "signatures": [ { - "id": 191, + "id": 1238, "name": "destroy", "kind": 4096, "kindString": "Call signature", @@ -17401,7 +17524,7 @@ } }, { - "id": 209, + "id": 1256, "name": "getAnswerService", "kind": 2048, "kindString": "Method", @@ -17417,7 +17540,7 @@ ], "signatures": [ { - "id": 210, + "id": 1257, "name": "getAnswerService", "kind": 4096, "kindString": "Call signature", @@ -17433,7 +17556,7 @@ }, "parameters": [ { - "id": 211, + "id": 1258, "name": "vizId", "kind": 32768, "kindString": "Parameter", @@ -17454,7 +17577,7 @@ "typeArguments": [ { "type": "reference", - "id": 1374, + "id": 1379, "name": "AnswerService" } ], @@ -17472,39 +17595,7 @@ } }, { - "id": 73, - "name": "getIFrameSrc", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 473, - "character": 11 - } - ], - "signatures": [ - { - "id": 74, - "name": "getIFrameSrc", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Construct the URL of the embedded ThoughtSpot search to be\nloaded in the iframe" - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ] - }, - { - "id": 177, + "id": 1118, "name": "getIframeSrc", "kind": 2048, "kindString": "Method", @@ -17513,14 +17604,14 @@ }, "sources": [ { - "fileName": "embed/ts-embed.ts", - "line": 1153, + "fileName": "embed/conversation.ts", + "line": 120, "character": 11 } ], "signatures": [ { - "id": 178, + "id": 1119, "name": "getIframeSrc", "kind": 4096, "kindString": "Call signature", @@ -17529,19 +17620,19 @@ "type": "intrinsic", "name": "string" }, - "inheritedFrom": { + "overwrites": { "type": "reference", "name": "TsEmbed.getIframeSrc" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", "name": "TsEmbed.getIframeSrc" } }, { - "id": 204, + "id": 1251, "name": "getPreRenderIds", "kind": 2048, "kindString": "Method", @@ -17557,7 +17648,7 @@ ], "signatures": [ { - "id": 205, + "id": 1252, "name": "getPreRenderIds", "kind": 4096, "kindString": "Call signature", @@ -17579,14 +17670,14 @@ "type": { "type": "reflection", "declaration": { - "id": 206, + "id": 1253, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 208, + "id": 1255, "name": "child", "kind": 1024, "kindString": "Property", @@ -17598,7 +17689,7 @@ "defaultValue": "..." }, { - "id": 207, + "id": 1254, "name": "wrapper", "kind": 1024, "kindString": "Property", @@ -17615,8 +17706,8 @@ "title": "Properties", "kind": 1024, "children": [ - 208, - 207 + 1255, + 1254 ] } ] @@ -17634,7 +17725,7 @@ } }, { - "id": 184, + "id": 1231, "name": "getThoughtSpotPostUrlParams", "kind": 2048, "kindString": "Method", @@ -17650,7 +17741,7 @@ ], "signatures": [ { - "id": 185, + "id": 1232, "name": "getThoughtSpotPostUrlParams", "kind": 4096, "kindString": "Call signature", @@ -17666,7 +17757,7 @@ }, "parameters": [ { - "id": 186, + "id": 1233, "name": "additionalParams", "kind": 32768, "kindString": "Parameter", @@ -17674,20 +17765,20 @@ "type": { "type": "reflection", "declaration": { - "id": 187, + "id": 1234, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 188, + "id": 1235, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 189, + "id": 1236, "name": "key", "kind": 32768, "flags": {}, @@ -17732,7 +17823,7 @@ } }, { - "id": 192, + "id": 1239, "name": "getUnderlyingFrameElement", "kind": 2048, "kindString": "Method", @@ -17748,7 +17839,7 @@ ], "signatures": [ { - "id": 193, + "id": 1240, "name": "getUnderlyingFrameElement", "kind": 4096, "kindString": "Call signature", @@ -17769,7 +17860,7 @@ } }, { - "id": 202, + "id": 1249, "name": "hidePreRender", "kind": 2048, "kindString": "Method", @@ -17785,7 +17876,7 @@ ], "signatures": [ { - "id": 203, + "id": 1250, "name": "hidePreRender", "kind": 4096, "kindString": "Call signature", @@ -17809,7 +17900,7 @@ } }, { - "id": 162, + "id": 1211, "name": "off", "kind": 2048, "kindString": "Method", @@ -17825,7 +17916,7 @@ ], "signatures": [ { - "id": 163, + "id": 1212, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -17841,7 +17932,7 @@ }, "parameters": [ { - "id": 164, + "id": 1213, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17851,12 +17942,12 @@ }, "type": { "type": "reference", - "id": 1498, + "id": 1503, "name": "EmbedEvent" } }, { - "id": 165, + "id": 1214, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -17866,7 +17957,7 @@ }, "type": { "type": "reference", - "id": 2146, + "id": 2151, "name": "MessageCallback" } } @@ -17887,7 +17978,7 @@ } }, { - "id": 156, + "id": 1205, "name": "on", "kind": 2048, "kindString": "Method", @@ -17903,7 +17994,7 @@ ], "signatures": [ { - "id": 157, + "id": 1206, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -17923,7 +18014,7 @@ }, "parameters": [ { - "id": 158, + "id": 1207, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -17933,12 +18024,12 @@ }, "type": { "type": "reference", - "id": 1498, + "id": 1503, "name": "EmbedEvent" } }, { - "id": 159, + "id": 1208, "name": "callback", "kind": 32768, "kindString": "Parameter", @@ -17948,12 +18039,12 @@ }, "type": { "type": "reference", - "id": 2146, + "id": 2151, "name": "MessageCallback" } }, { - "id": 160, + "id": 1209, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -17963,13 +18054,13 @@ }, "type": { "type": "reference", - "id": 2143, + "id": 2148, "name": "MessageOptions" }, "defaultValue": "..." }, { - "id": 161, + "id": 1210, "name": "isRegisteredBySDK", "kind": 32768, "kindString": "Parameter", @@ -17998,7 +18089,7 @@ } }, { - "id": 181, + "id": 1228, "name": "preRender", "kind": 2048, "kindString": "Method", @@ -18014,7 +18105,7 @@ ], "signatures": [ { - "id": 182, + "id": 1229, "name": "preRender", "kind": 4096, "kindString": "Call signature", @@ -18024,7 +18115,7 @@ }, "parameters": [ { - "id": 183, + "id": 1230, "name": "showPreRenderByDefault", "kind": 32768, "kindString": "Parameter", @@ -18061,7 +18152,7 @@ } }, { - "id": 194, + "id": 1241, "name": "prerenderGeneric", "kind": 2048, "kindString": "Method", @@ -18077,7 +18168,7 @@ ], "signatures": [ { - "id": 195, + "id": 1242, "name": "prerenderGeneric", "kind": 4096, "kindString": "Call signature", @@ -18114,7 +18205,7 @@ } }, { - "id": 75, + "id": 1120, "name": "render", "kind": 2048, "kindString": "Method", @@ -18123,28 +18214,25 @@ }, "sources": [ { - "fileName": "embed/search.ts", - "line": 484, + "fileName": "embed/conversation.ts", + "line": 168, "character": 17 } ], "signatures": [ { - "id": 76, + "id": 1121, "name": "render", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Render the embedded ThoughtSpot search" - }, "type": { "type": "reference", "typeArguments": [ { "type": "reference", - "id": 55, - "name": "SearchEmbed" + "id": 1112, + "name": "SpotterEmbed" } ], "name": "Promise" @@ -18161,7 +18249,7 @@ } }, { - "id": 198, + "id": 1245, "name": "showPreRender", "kind": 2048, "kindString": "Method", @@ -18177,7 +18265,7 @@ ], "signatures": [ { - "id": 199, + "id": 1246, "name": "showPreRender", "kind": 4096, "kindString": "Call signature", @@ -18207,7 +18295,7 @@ } }, { - "id": 200, + "id": 1247, "name": "syncPreRenderStyle", "kind": 2048, "kindString": "Method", @@ -18223,7 +18311,7 @@ ], "signatures": [ { - "id": 201, + "id": 1248, "name": "syncPreRenderStyle", "kind": 4096, "kindString": "Call signature", @@ -18253,7 +18341,7 @@ } }, { - "id": 166, + "id": 1215, "name": "trigger", "kind": 2048, "kindString": "Method", @@ -18269,7 +18357,7 @@ ], "signatures": [ { - "id": 167, + "id": 1216, "name": "trigger", "kind": 4096, "kindString": "Call signature", @@ -18280,19 +18368,19 @@ }, "typeParameter": [ { - "id": 168, + "id": 1217, "name": "HostEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 1579, + "id": 1584, "name": "HostEvent" } }, { - "id": 169, + "id": 1218, "name": "PayloadT", "kind": 131072, "kindString": "Type parameter", @@ -18301,7 +18389,7 @@ ], "parameters": [ { - "id": 170, + "id": 1219, "name": "messageType", "kind": 32768, "kindString": "Parameter", @@ -18315,7 +18403,7 @@ } }, { - "id": 171, + "id": 1220, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18372,7 +18460,7 @@ } }, { - "id": 172, + "id": 1221, "name": "triggerUIPassThrough", "kind": 2048, "kindString": "Method", @@ -18388,7 +18476,7 @@ ], "signatures": [ { - "id": 173, + "id": 1222, "name": "triggerUIPassThrough", "kind": 4096, "kindString": "Call signature", @@ -18399,21 +18487,21 @@ }, "typeParameter": [ { - "id": 174, + "id": 1223, "name": "UIPassthroughEventT", "kind": 131072, "kindString": "Type parameter", "flags": {}, "type": { "type": "reference", - "id": 2327, + "id": 2332, "name": "UIPassthroughEvent" } } ], "parameters": [ { - "id": 175, + "id": 1224, "name": "apiName", "kind": 32768, "kindString": "Parameter", @@ -18427,7 +18515,7 @@ } }, { - "id": 176, + "id": 1225, "name": "parameters", "kind": 32768, "kindString": "Parameter", @@ -18480,37 +18568,36 @@ "title": "Constructors", "kind": 512, "children": [ - 56 + 1113 ] }, { "title": "Methods", "kind": 2048, "children": [ - 190, - 209, - 73, - 177, - 204, - 184, - 192, - 202, - 162, - 156, - 181, - 194, - 75, - 198, - 200, - 166, - 172 + 1237, + 1256, + 1118, + 1251, + 1231, + 1239, + 1249, + 1211, + 1205, + 1228, + 1241, + 1120, + 1245, + 1247, + 1215, + 1221 ] } ], "sources": [ { - "fileName": "embed/search.ts", - "line": 315, + "fileName": "embed/conversation.ts", + "line": 114, "character": 13 } ], @@ -18522,7 +18609,7 @@ ] }, { - "id": 2040, + "id": 2045, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -18538,7 +18625,7 @@ }, "children": [ { - "id": 2075, + "id": 2080, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -18568,20 +18655,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2076, + "id": 2081, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2077, + "id": 2082, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2078, + "id": 2083, "name": "key", "kind": 32768, "flags": {}, @@ -18617,7 +18704,7 @@ } }, { - "id": 2111, + "id": 2116, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -18658,7 +18745,7 @@ } }, { - "id": 2064, + "id": 2069, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -18695,7 +18782,7 @@ } }, { - "id": 2090, + "id": 2095, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -18724,7 +18811,7 @@ ], "type": { "type": "reference", - "id": 1780, + "id": 1785, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -18733,7 +18820,7 @@ } }, { - "id": 2074, + "id": 2079, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -18762,7 +18849,7 @@ ], "type": { "type": "reference", - "id": 2159, + "id": 2164, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -18771,7 +18858,7 @@ } }, { - "id": 2065, + "id": 2070, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -18808,7 +18895,7 @@ } }, { - "id": 2112, + "id": 2117, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -18849,7 +18936,7 @@ } }, { - "id": 2043, + "id": 2048, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -18886,7 +18973,7 @@ } }, { - "id": 2093, + "id": 2098, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -18923,7 +19010,7 @@ } }, { - "id": 2084, + "id": 2089, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -18960,7 +19047,7 @@ } }, { - "id": 2083, + "id": 2088, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -18991,7 +19078,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, @@ -19001,7 +19088,7 @@ } }, { - "id": 2107, + "id": 2112, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -19042,7 +19129,7 @@ } }, { - "id": 2066, + "id": 2071, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -19079,7 +19166,7 @@ } }, { - "id": 2063, + "id": 2068, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -19112,7 +19199,7 @@ } }, { - "id": 2113, + "id": 2118, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -19153,7 +19240,7 @@ } }, { - "id": 2044, + "id": 2049, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -19189,7 +19276,7 @@ } }, { - "id": 2055, + "id": 2060, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -19226,7 +19313,7 @@ } }, { - "id": 2110, + "id": 2115, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -19263,7 +19350,7 @@ } }, { - "id": 2106, + "id": 2111, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -19301,7 +19388,7 @@ } }, { - "id": 2109, + "id": 2114, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -19339,7 +19426,7 @@ } }, { - "id": 2095, + "id": 2100, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -19376,7 +19463,7 @@ } }, { - "id": 2099, + "id": 2104, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -19405,7 +19492,7 @@ ], "type": { "type": "reference", - "id": 2119, + "id": 2124, "name": "FrameParams" }, "inheritedFrom": { @@ -19414,7 +19501,7 @@ } }, { - "id": 2056, + "id": 2061, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -19448,7 +19535,7 @@ } }, { - "id": 2085, + "id": 2090, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -19483,7 +19570,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, @@ -19493,7 +19580,7 @@ } }, { - "id": 2081, + "id": 2086, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -19524,7 +19611,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2125, + "id": 2130, "name": "HomeLeftNavItem" } }, @@ -19534,7 +19621,7 @@ } }, { - "id": 2079, + "id": 2084, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -19566,7 +19653,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2135, + "id": 2140, "name": "HomepageModule" } }, @@ -19576,7 +19663,7 @@ } }, { - "id": 2082, + "id": 2087, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -19608,7 +19695,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2334, + "id": 2339, "name": "ListPageColumns" } }, @@ -19618,7 +19705,7 @@ } }, { - "id": 2087, + "id": 2092, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -19658,7 +19745,7 @@ } }, { - "id": 2048, + "id": 2053, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -19696,7 +19783,7 @@ } }, { - "id": 2045, + "id": 2050, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -19733,7 +19820,7 @@ } }, { - "id": 2042, + "id": 2047, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -19771,7 +19858,7 @@ } }, { - "id": 2071, + "id": 2076, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -19808,7 +19895,7 @@ } }, { - "id": 2057, + "id": 2062, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -19845,7 +19932,7 @@ } }, { - "id": 2047, + "id": 2052, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -19882,7 +19969,7 @@ } }, { - "id": 2046, + "id": 2051, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -19919,7 +20006,7 @@ } }, { - "id": 2053, + "id": 2058, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -19955,7 +20042,7 @@ } }, { - "id": 2049, + "id": 2054, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -19993,7 +20080,7 @@ } }, { - "id": 2068, + "id": 2073, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -20018,12 +20105,12 @@ ], "type": { "type": "reference", - "id": 2300, + "id": 2305, "name": "HomePageSearchBarMode" } }, { - "id": 2104, + "id": 2109, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -20060,7 +20147,7 @@ } }, { - "id": 2069, + "id": 2074, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -20097,7 +20184,7 @@ } }, { - "id": 2062, + "id": 2067, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -20130,7 +20217,7 @@ } }, { - "id": 2067, + "id": 2072, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -20159,7 +20246,7 @@ } }, { - "id": 2073, + "id": 2078, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -20196,7 +20283,7 @@ } }, { - "id": 2091, + "id": 2096, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -20233,7 +20320,7 @@ } }, { - "id": 2089, + "id": 2094, "name": "locale", "kind": 1024, "kindString": "Property", @@ -20270,7 +20357,7 @@ } }, { - "id": 2060, + "id": 2065, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -20307,7 +20394,7 @@ } }, { - "id": 2061, + "id": 2066, "name": "modularHomeExperienceV3", "kind": 1024, "kindString": "Property", @@ -20344,7 +20431,7 @@ } }, { - "id": 2094, + "id": 2099, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -20381,7 +20468,7 @@ } }, { - "id": 2051, + "id": 2056, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -20411,12 +20498,12 @@ ], "type": { "type": "reference", - "id": 1457, + "id": 1462, "name": "Page" } }, { - "id": 2050, + "id": 2055, "name": "path", "kind": 1024, "kindString": "Property", @@ -20450,7 +20537,7 @@ } }, { - "id": 2097, + "id": 2102, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -20487,7 +20574,7 @@ } }, { - "id": 2096, + "id": 2101, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -20524,7 +20611,7 @@ } }, { - "id": 2080, + "id": 2085, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -20556,7 +20643,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2135, + "id": 2140, "name": "HomepageModule" } }, @@ -20566,7 +20653,7 @@ } }, { - "id": 2102, + "id": 2107, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -20597,7 +20684,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1478, + "id": 1483, "name": "RuntimeFilter" } }, @@ -20607,7 +20694,7 @@ } }, { - "id": 2103, + "id": 2108, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -20638,7 +20725,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2274, + "id": 2279, "name": "RuntimeParameter" } }, @@ -20648,7 +20735,7 @@ } }, { - "id": 2088, + "id": 2093, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -20685,7 +20772,7 @@ } }, { - "id": 2059, + "id": 2064, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -20722,7 +20809,7 @@ } }, { - "id": 2072, + "id": 2077, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -20759,7 +20846,7 @@ } }, { - "id": 2058, + "id": 2063, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -20796,7 +20883,7 @@ } }, { - "id": 2070, + "id": 2075, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -20833,7 +20920,7 @@ } }, { - "id": 2041, + "id": 2046, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -20870,7 +20957,7 @@ } }, { - "id": 2052, + "id": 2057, "name": "tag", "kind": 1024, "kindString": "Property", @@ -20903,7 +20990,7 @@ } }, { - "id": 2086, + "id": 2091, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -20939,7 +21026,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, @@ -20954,69 +21041,69 @@ "title": "Properties", "kind": 1024, "children": [ - 2075, - 2111, - 2064, - 2090, - 2074, - 2065, - 2112, - 2043, - 2093, - 2084, - 2083, - 2107, - 2066, - 2063, - 2113, - 2044, - 2055, - 2110, - 2106, - 2109, + 2080, + 2116, + 2069, 2095, - 2099, - 2056, - 2085, - 2081, 2079, - 2082, - 2087, + 2070, + 2117, 2048, - 2045, - 2042, + 2098, + 2089, + 2088, + 2112, 2071, - 2057, - 2047, - 2046, - 2053, - 2049, 2068, - 2104, - 2069, - 2062, - 2067, - 2073, - 2091, - 2089, + 2118, + 2049, 2060, + 2115, + 2111, + 2114, + 2100, + 2104, 2061, - 2094, - 2051, + 2090, + 2086, + 2084, + 2087, + 2092, + 2053, 2050, - 2097, + 2047, + 2076, + 2062, + 2052, + 2051, + 2058, + 2054, + 2073, + 2109, + 2074, + 2067, + 2072, + 2078, 2096, - 2080, + 2094, + 2065, + 2066, + 2099, + 2056, + 2055, 2102, - 2103, - 2088, - 2059, - 2072, - 2058, - 2070, - 2041, - 2052, - 2086 + 2101, + 2085, + 2107, + 2108, + 2093, + 2064, + 2077, + 2063, + 2075, + 2046, + 2057, + 2091 ] } ], @@ -21045,7 +21132,7 @@ ] }, { - "id": 1321, + "id": 1326, "name": "AuthEventEmitter", "kind": 256, "kindString": "Interface", @@ -21061,14 +21148,14 @@ }, "children": [ { - "id": 1358, + "id": 1363, "name": "emit", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1359, + "id": 1364, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -21078,19 +21165,19 @@ }, "parameters": [ { - "id": 1360, + "id": 1365, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1320, + "id": 1325, "name": "TRIGGER_SSO_POPUP" } }, { - "id": 1361, + "id": 1366, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -21114,14 +21201,14 @@ ] }, { - "id": 1362, + "id": 1367, "name": "off", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1363, + "id": 1368, "name": "off", "kind": 4096, "kindString": "Call signature", @@ -21131,7 +21218,7 @@ }, "parameters": [ { - "id": 1364, + "id": 1369, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -21139,12 +21226,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1312, + "id": 1316, "name": "AuthStatus" } }, { - "id": 1365, + "id": 1370, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -21153,21 +21240,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1366, + "id": 1371, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1367, + "id": 1372, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1368, + "id": 1373, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -21193,7 +21280,7 @@ } }, { - "id": 1369, + "id": 1374, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -21205,7 +21292,7 @@ } }, { - "id": 1370, + "id": 1375, "name": "once", "kind": 32768, "kindString": "Parameter", @@ -21221,21 +21308,21 @@ ], "type": { "type": "reference", - "id": 1321, + "id": 1326, "name": "AuthEventEmitter" } } ] }, { - "id": 1322, + "id": 1327, "name": "on", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1323, + "id": 1328, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -21245,7 +21332,7 @@ }, "parameters": [ { - "id": 1324, + "id": 1329, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -21253,12 +21340,12 @@ "comment": {}, "type": { "type": "reference", - "id": 1313, + "id": 1317, "name": "FAILURE" } }, { - "id": 1325, + "id": 1330, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -21269,28 +21356,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1326, + "id": 1331, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1327, + "id": 1332, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1328, + "id": 1333, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1305, + "id": 1309, "name": "AuthFailureType" } } @@ -21307,12 +21394,12 @@ ], "type": { "type": "reference", - "id": 1321, + "id": 1326, "name": "AuthEventEmitter" } }, { - "id": 1329, + "id": 1334, "name": "on", "kind": 4096, "kindString": "Call signature", @@ -21322,7 +21409,7 @@ }, "parameters": [ { - "id": 1330, + "id": 1335, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -21333,24 +21420,29 @@ "types": [ { "type": "reference", - "id": 1314, + "id": 1318, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1317, + "id": 1321, "name": "LOGOUT" }, { "type": "reference", - "id": 1318, + "id": 1322, "name": "WAITING_FOR_POPUP" + }, + { + "type": "reference", + "id": 1323, + "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1331, + "id": 1336, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -21361,14 +21453,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1332, + "id": 1337, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1333, + "id": 1338, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -21385,31 +21477,31 @@ ], "type": { "type": "reference", - "id": 1321, + "id": 1326, "name": "AuthEventEmitter" } }, { - "id": 1334, + "id": 1339, "name": "on", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1335, + "id": 1340, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1316, + "id": 1320, "name": "SUCCESS" } }, { - "id": 1336, + "id": 1341, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -21417,21 +21509,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1337, + "id": 1342, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1338, + "id": 1343, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1339, + "id": 1344, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -21454,40 +21546,40 @@ ], "type": { "type": "reference", - "id": 1321, + "id": 1326, "name": "AuthEventEmitter" } } ] }, { - "id": 1340, + "id": 1345, "name": "once", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1341, + "id": 1346, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1342, + "id": 1347, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1313, + "id": 1317, "name": "FAILURE" } }, { - "id": 1343, + "id": 1348, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -21495,28 +21587,28 @@ "type": { "type": "reflection", "declaration": { - "id": 1344, + "id": 1349, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1345, + "id": 1350, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1346, + "id": 1351, "name": "failureType", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1305, + "id": 1309, "name": "AuthFailureType" } } @@ -21533,19 +21625,19 @@ ], "type": { "type": "reference", - "id": 1321, + "id": 1326, "name": "AuthEventEmitter" } }, { - "id": 1347, + "id": 1352, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1348, + "id": 1353, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -21555,24 +21647,29 @@ "types": [ { "type": "reference", - "id": 1314, + "id": 1318, "name": "SDK_SUCCESS" }, { "type": "reference", - "id": 1317, + "id": 1321, "name": "LOGOUT" }, { "type": "reference", - "id": 1318, + "id": 1322, "name": "WAITING_FOR_POPUP" + }, + { + "type": "reference", + "id": 1323, + "name": "SAML_POPUP_CLOSED_NO_AUTH" } ] } }, { - "id": 1349, + "id": 1354, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -21580,14 +21677,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1350, + "id": 1355, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1351, + "id": 1356, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -21604,31 +21701,31 @@ ], "type": { "type": "reference", - "id": 1321, + "id": 1326, "name": "AuthEventEmitter" } }, { - "id": 1352, + "id": 1357, "name": "once", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1353, + "id": 1358, "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 1316, + "id": 1320, "name": "SUCCESS" } }, { - "id": 1354, + "id": 1359, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -21636,21 +21733,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1355, + "id": 1360, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1356, + "id": 1361, "name": "__type", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1357, + "id": 1362, "name": "sessionInfo", "kind": 32768, "kindString": "Parameter", @@ -21673,21 +21770,21 @@ ], "type": { "type": "reference", - "id": 1321, + "id": 1326, "name": "AuthEventEmitter" } } ] }, { - "id": 1371, + "id": 1376, "name": "removeAllListeners", "kind": 2048, "kindString": "Method", "flags": {}, "signatures": [ { - "id": 1372, + "id": 1377, "name": "removeAllListeners", "kind": 4096, "kindString": "Call signature", @@ -21697,7 +21794,7 @@ }, "parameters": [ { - "id": 1373, + "id": 1378, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -21707,14 +21804,14 @@ }, "type": { "type": "reference", - "id": 1312, + "id": 1316, "name": "AuthStatus" } } ], "type": { "type": "reference", - "id": 1321, + "id": 1326, "name": "AuthEventEmitter" } } @@ -21726,83 +21823,327 @@ "title": "Methods", "kind": 2048, "children": [ - 1358, - 1362, - 1322, - 1340, - 1371 + 1363, + 1367, + 1327, + 1345, + 1376 ] } ], "sources": [ { "fileName": "auth.ts", - "line": 86, + "line": 91, "character": 17 } ] }, { - "id": 1067, - "name": "BodylessConversationViewConfig", + "id": 2312, + "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { - "shortText": "Configuration for bodyless conversation options.", "tags": [ { "tag": "group", - "text": "Embed components\n" + "text": "Events\n" } ] }, "children": [ { - "id": 1082, - "name": "additionalFlags", + "id": 2313, + "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" - } - ] - }, "sources": [ { "fileName": "types.ts", - "line": 868, + "line": 4987, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 1083, + "id": 2314, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2315, + "name": "clickedPoint", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4988, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 2309, + "name": "VizPoint" + } + }, + { + "id": 2316, + "name": "selectedPoints", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4989, + "character": 8 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2309, + "name": "VizPoint" + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2315, + 2316 + ] + } + ] + } + } + }, + { + "id": 2317, + "name": "embedAnswerData", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4991, + "character": 4 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2318, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, + "children": [ + { + "id": 2326, + "name": "columns", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4999, + "character": 8 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + }, + { + "id": 2327, + "name": "data", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 5000, + "character": 8 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + }, + { + "id": 2320, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4993, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2319, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4992, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2321, + "name": "sources", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4994, + "character": 8 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2322, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2323, + "name": "header", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4995, + "character": 12 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2324, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2325, + "name": "guid", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "types.ts", + "line": 4996, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2325 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2323 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2326, + 2327, + 2320, + 2319, + 2321 + ] + } + ], "indexSignature": { - "id": 1084, + "id": 2328, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1085, + "id": 2329, "name": "key", "kind": 32768, "flags": {}, @@ -21813,1266 +22154,765 @@ } ], "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] + "type": "intrinsic", + "name": "any" } } } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.additionalFlags" } }, { - "id": 1103, - "name": "collapseSearchBar", + "id": 2330, + "name": "session", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", - "tags": [ - { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" - } - ] - }, + "flags": {}, "sources": [ { "fileName": "types.ts", - "line": 1101, + "line": 5003, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { "type": "reference", - "name": "ViewConfig.collapseSearchBar" + "id": 1452, + "name": "SessionInterface" } }, { - "id": 1088, - "name": "contextMenuTrigger", + "id": 2331, + "name": "vizId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" - } - ] - }, "sources": [ { "fileName": "types.ts", - "line": 900, + "line": 5004, "character": 4 } ], "type": { - "type": "reference", - "id": 1780, - "name": "ContextMenuTriggerOptions" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.contextMenuTrigger" + "type": "intrinsic", + "name": "string" } - }, + } + ], + "groups": [ { - "id": 1086, - "name": "customizations", + "title": "Properties", + "kind": 1024, + "children": [ + 2313, + 2317, + 2330, + 2331 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 4986, + "character": 17 + } + ] + }, + { + "id": 2186, + "name": "CustomCssVariables", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The list of customization css variables. These\nare the only allowed variables possible." + }, + "children": [ + { + "id": 2240, + "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" - }, - { - "tag": "default", - "text": "''\n" - } - ] + "shortText": "Background color of the chart type element when a user hovers over a chart type on\nthe chart selection widget." }, "sources": [ { - "fileName": "types.ts", - "line": 875, + "fileName": "css-variables.ts", + "line": 291, "character": 4 } ], "type": { - "type": "reference", - "id": 2159, - "name": "CustomisationsInterface" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.customizations" + "type": "intrinsic", + "name": "string" } }, { - "id": 1106, - "name": "dataPanelV2", + "id": 2239, + "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to control Data panel experience", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" - } - ] + "shortText": "Background color of the selected chart type on the chart selection widget." }, "sources": [ { - "fileName": "types.ts", - "line": 1132, + "fileName": "css-variables.ts", + "line": 285, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.dataPanelV2" + "name": "string" } }, { - "id": 1105, - "name": "disableRedirectionLinksInNewTab", + "id": 2209, + "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" - } - ] + "shortText": "Background color of the data panel." }, "sources": [ { - "fileName": "types.ts", - "line": 1119, + "fileName": "css-variables.ts", + "line": 127, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disableRedirectionLinksInNewTab" + "name": "string" } }, { - "id": 1075, - "name": "disabledActionReason", + "id": 2210, + "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The tooltip to display for disabled actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" - } - ] + "shortText": "Background color of the vertical panel on the right side of the Answer page, which\nincludes the options to edit charts and tables." }, "sources": [ { - "fileName": "types.ts", - "line": 752, + "fileName": "css-variables.ts", + "line": 133, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disabledActionReason" } }, { - "id": 1073, - "name": "disabledActions", + "id": 2212, + "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" - } - ] + "shortText": "Background color of the currently selected chart type in the chart switcher." }, "sources": [ { - "fileName": "types.ts", - "line": 726, + "fileName": "css-variables.ts", + "line": 143, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1650, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disabledActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1099, - "name": "doNotTrackPreRenderSize", + "id": 2211, + "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" - } - ] + "shortText": "Background color of the chart switcher on search results and Answer pages." }, "sources": [ { - "fileName": "types.ts", - "line": 1060, + "fileName": "css-variables.ts", + "line": 138, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.doNotTrackPreRenderSize" + "name": "string" } }, { - "id": 1107, - "name": "enableCustomColumnGroups", + "id": 2191, + "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To enable custom column groups in data panel v2", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" - } - ] + "shortText": "Font color of the text on toggle buttons such as\n**All**, **Answers**, and **Liveboards** on the Home page (Classic experience),\nthe text color of the chart and table tiles on Home page (New modular Homepage\nexperience), and title text on the AI-generated charts and tables.\nThe default color code is #2770EF." }, "sources": [ { - "fileName": "types.ts", - "line": 1145, + "fileName": "css-variables.ts", + "line": 34, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.enableCustomColumnGroups" + "name": "string" } }, { - "id": 1102, - "name": "enableV2Shell_experimental", + "id": 2252, + "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" - } - ] + "shortText": "Font color of the X and Y axis labels." }, "sources": [ { - "fileName": "types.ts", - "line": 1089, + "fileName": "css-variables.ts", + "line": 351, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.enableV2Shell_experimental" + "name": "string" } }, { - "id": 1092, - "name": "excludeRuntimeFiltersfromURL", + "id": 2253, + "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" - } - ] + "shortText": "Font family specification for X and Y axis labels." }, "sources": [ { - "fileName": "types.ts", - "line": 938, + "fileName": "css-variables.ts", + "line": 356, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.excludeRuntimeFiltersfromURL" + "name": "string" } }, { - "id": 1101, - "name": "excludeRuntimeParametersfromURL", + "id": 2250, + "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" - } - ] + "shortText": "Font color of axis title on charts." }, "sources": [ { - "fileName": "types.ts", - "line": 1075, + "fileName": "css-variables.ts", + "line": 341, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.excludeRuntimeParametersfromURL" + "name": "string" } }, { - "id": 1104, - "name": "exposeTranslationIDs", + "id": 2251, + "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to expose translation IDs on the embedded app.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" - } - ] + "shortText": "Font family specification for the X and Y axis title text." }, "sources": [ { - "fileName": "types.ts", - "line": 1107, + "fileName": "css-variables.ts", + "line": 346, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.exposeTranslationIDs" + "name": "string" } }, { - "id": 1070, - "name": "frameParams", + "id": 2214, + "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" - } - ] + "shortText": "Border-radius of small buttons such as secondary buttons.\nFor example, share and favorite buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 702, + "fileName": "css-variables.ts", + "line": 155, "character": 4 } ], "type": { - "type": "reference", - "id": 2119, - "name": "FrameParams" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.frameParams" + "type": "intrinsic", + "name": "string" } }, { - "id": 1076, - "name": "hiddenActions", + "id": 2219, + "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" - }, - { - "tag": "important", - "text": "\n" - } - ] + "shortText": "Backgroud color of the primary buttons when active." }, "sources": [ { - "fileName": "types.ts", - "line": 767, + "fileName": "css-variables.ts", + "line": 182, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1650, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1097, - "name": "hiddenHomeLeftNavItems", + "id": 2216, + "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." - }, - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" - } - ] + "shortText": "Font family specification for the text on primary buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 1024, + "fileName": "css-variables.ts", + "line": 166, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2125, - "name": "HomeLeftNavItem" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenHomeLeftNavItems" + "type": "intrinsic", + "name": "string" } }, { - "id": 1094, - "name": "hiddenHomepageModules", + "id": 2218, + "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" - } - ] + "shortText": "Background color of the primary buttons on hover." }, "sources": [ { - "fileName": "types.ts", - "line": 971, + "fileName": "css-variables.ts", + "line": 177, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2135, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenHomepageModules" + "type": "intrinsic", + "name": "string" } }, { - "id": 1109, - "name": "hiddenListColumns", + "id": 2217, + "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is available only in full app embedding.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 10.9.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" - } - ] + "shortText": "Background color of the primary buttons. For example, the primary buttons such as\nPin* and *Save*." }, "sources": [ { - "fileName": "types.ts", - "line": 1176, + "fileName": "css-variables.ts", + "line": 172, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2334, - "name": "ListPageColumns" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenListColumns" + "type": "intrinsic", + "name": "string" } }, { - "id": 1093, - "name": "hiddenTabs", + "id": 2215, + "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" - } - ] + "shortText": "Font color of the text on primary buttons. For example, the primary buttons on\nLiveboard*, Answer, *Data* workspace, *SpotIQ*, or *Home* page." }, "sources": [ { - "fileName": "types.ts", - "line": 954, + "fileName": "css-variables.ts", + "line": 161, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenTabs" + "type": "intrinsic", + "name": "string" } }, { - "id": 1087, - "name": "insertAsSibling", + "id": 2224, + "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" - } - ] + "shortText": "Backgroud color of the secondary buttons when active." }, "sources": [ { - "fileName": "types.ts", - "line": 888, + "fileName": "css-variables.ts", + "line": 207, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.insertAsSibling" + "name": "string" } }, { - "id": 1089, - "name": "linkOverride", + "id": 2221, + "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" - } - ] + "shortText": "Font family specification for the text on the secondary buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 912, + "fileName": "css-variables.ts", + "line": 192, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.linkOverride" + "name": "string" } }, { - "id": 1081, - "name": "locale", + "id": 2223, + "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The locale settings to apply to the embedded view.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" - } - ] + "shortText": "Background color of the secondary button on hover." }, "sources": [ { - "fileName": "types.ts", - "line": 847, + "fileName": "css-variables.ts", + "line": 202, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.locale" } }, { - "id": 1108, - "name": "overrideOrgId", + "id": 2222, + "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" - } - ] + "shortText": "Background color of the secondary buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 1161, + "fileName": "css-variables.ts", + "line": 197, "character": 4 } ], "type": { "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.overrideOrgId" + "name": "string" } }, { - "id": 1098, - "name": "preRenderId", + "id": 2220, + "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" - }, - { - "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" - } - ] + "shortText": "Font color of the text on the secondary buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 1039, + "fileName": "css-variables.ts", + "line": 187, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.preRenderId" } }, { - "id": 1074, - "name": "primaryAction", + "id": 2228, + "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The primary action to display on top of the viz for Liveboard and App Embed.\nUse this to set the primary action.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n primaryAction: Action.Download\n});\n```\n" - } - ] + "shortText": "Backgroud color of the tertiary buttons when active." }, "sources": [ { - "fileName": "types.ts", - "line": 739, + "fileName": "css-variables.ts", + "line": 228, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.primaryAction" } }, { - "id": 1095, - "name": "reorderedHomepageModules", + "id": 2227, + "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" - } - ] + "shortText": "Background color of the tertiary button when a user hovers over these buttons." }, "sources": [ { - "fileName": "types.ts", - "line": 988, + "fileName": "css-variables.ts", + "line": 223, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2135, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.reorderedHomepageModules" + "type": "intrinsic", + "name": "string" } }, { - "id": 1079, - "name": "runtimeFilters", + "id": 2226, + "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" - } - ] + "shortText": "Background color of the tertiary button." }, "sources": [ { - "fileName": "types.ts", - "line": 817, + "fileName": "css-variables.ts", + "line": 218, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1478, - "name": "RuntimeFilter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.runtimeFilters" + "type": "intrinsic", + "name": "string" } }, { - "id": 1080, - "name": "runtimeParameters", + "id": 2225, + "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" - } - ] + "shortText": "Font color of the tertiary button. For example, the *Undo*, *Redo*, and *Reset*\nbuttons on the *Search* page." }, "sources": [ { - "fileName": "types.ts", - "line": 835, + "fileName": "css-variables.ts", + "line": 213, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2274, - "name": "RuntimeParameter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.runtimeParameters" + "type": "intrinsic", + "name": "string" } }, { - "id": 1078, - "name": "showAlerts", + "id": 2213, + "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" - } - ] + "shortText": "Border-radius of main buttons.\nFor example, the *Search data* button in the top navigation panel." }, "sources": [ { - "fileName": "types.ts", - "line": 798, + "fileName": "css-variables.ts", + "line": 149, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.showAlerts" + "name": "string" } }, { - "id": 1077, - "name": "visibleActions", + "id": 2275, + "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" - } - ] + "shortText": "Border and font color of checkbox in active state." }, "sources": [ { - "fileName": "types.ts", - "line": 785, + "fileName": "css-variables.ts", + "line": 462, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1650, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.visibleActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1096, - "name": "visibleTabs", + "id": 2278, + "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", - "text": "Use either `visibleTabs` or `hiddenTabs`.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" - } - ] + "shortText": "Background color of checkbox." }, "sources": [ { - "fileName": "types.ts", - "line": 1006, + "fileName": "css-variables.ts", + "line": 474, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.visibleTabs" + "type": "intrinsic", + "name": "string" } }, { - "id": 1068, - "name": "worksheetId", + "id": 2273, + "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The ID of the worksheet to use for the conversation." + "shortText": "Border color of checkbox." }, "sources": [ { - "fileName": "embed/bodyless-conversation.ts", - "line": 15, + "fileName": "css-variables.ts", + "line": 454, "character": 4 } ], @@ -23080,1549 +22920,873 @@ "type": "intrinsic", "name": "string" } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1082, - 1103, - 1088, - 1086, - 1106, - 1105, - 1075, - 1073, - 1099, - 1107, - 1102, - 1092, - 1101, - 1104, - 1070, - 1076, - 1097, - 1094, - 1109, - 1093, - 1087, - 1089, - 1081, - 1108, - 1098, - 1074, - 1095, - 1079, - 1080, - 1078, - 1077, - 1096, - 1068 - ] - } - ], - "sources": [ - { - "fileName": "embed/bodyless-conversation.ts", - "line": 11, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "ViewConfig" - } - ] - }, - { - "id": 1257, - "name": "ConversationViewConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The configuration for the embedded conversationEmbed options.", - "tags": [ - { - "tag": "group", - "text": "Embed components\n" - } - ] - }, - "children": [ + }, { - "id": 1278, - "name": "additionalFlags", + "id": 2276, + "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" - } - ] + "shortText": "Border color and font color of checkbox in checked state." }, "sources": [ { - "fileName": "types.ts", - "line": 868, + "fileName": "css-variables.ts", + "line": 466, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 1279, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 1280, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1281, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - } - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.additionalFlags" + "type": "intrinsic", + "name": "string" } }, { - "id": 1299, - "name": "collapseSearchBar", + "id": 2277, + "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", - "tags": [ - { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" - } - ] + "shortText": "Border and font color of checkbox in disabled state." }, "sources": [ { - "fileName": "types.ts", - "line": 1101, + "fileName": "css-variables.ts", + "line": 470, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.collapseSearchBar" + "name": "string" } }, { - "id": 1284, - "name": "contextMenuTrigger", + "id": 2272, + "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" - } - ] + "shortText": "Border color of checkbox in error state." }, "sources": [ { - "fileName": "types.ts", - "line": 900, + "fileName": "css-variables.ts", + "line": 450, "character": 4 } ], "type": { - "type": "reference", - "id": 1780, - "name": "ContextMenuTriggerOptions" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.contextMenuTrigger" + "type": "intrinsic", + "name": "string" } }, { - "id": 1282, - "name": "customizations", + "id": 2274, + "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" - }, - { - "tag": "default", - "text": "''\n" - } - ] + "shortText": "Border color of checkbox in hover state." }, "sources": [ { - "fileName": "types.ts", - "line": 875, + "fileName": "css-variables.ts", + "line": 458, "character": 4 } ], "type": { - "type": "reference", - "id": 2159, - "name": "CustomisationsInterface" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.customizations" + "type": "intrinsic", + "name": "string" } }, { - "id": 1262, - "name": "dataPanelV2", + "id": 2245, + "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to control Data panel experience", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | ThoughtSpot Cloud: 10.4.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" - } - ] + "shortText": "Background color of the filter chips when selected." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 67, + "fileName": "css-variables.ts", + "line": 316, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "overwrites": { - "type": "reference", - "name": "ViewConfig.dataPanelV2" + "name": "string" } }, { - "id": 1301, - "name": "disableRedirectionLinksInNewTab", + "id": 2244, + "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" - } - ] + "shortText": "Font color of the filter label when a filter chip is selected" }, "sources": [ { - "fileName": "types.ts", - "line": 1119, + "fileName": "css-variables.ts", + "line": 311, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disableRedirectionLinksInNewTab" + "name": "string" } }, { - "id": 1260, - "name": "disableSourceSelection", + "id": 2247, + "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "disableSourceSelection : Disables data source selection\nbut still display the selected data source.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n disableSourceSelection : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" - } - ] + "shortText": "Background color of filter chips on hover." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 42, + "fileName": "css-variables.ts", + "line": 326, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1271, - "name": "disabledActionReason", + "id": 2246, + "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The tooltip to display for disabled actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" - } - ] + "shortText": "Font color of the text on filter chips when hovered over." }, "sources": [ { - "fileName": "types.ts", - "line": 752, + "fileName": "css-variables.ts", + "line": 321, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disabledActionReason" } }, { - "id": 1269, - "name": "disabledActions", + "id": 2243, + "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" - } - ] + "shortText": "Background color of filter chips." }, "sources": [ { - "fileName": "types.ts", - "line": 726, + "fileName": "css-variables.ts", + "line": 306, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1650, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.disabledActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1295, - "name": "doNotTrackPreRenderSize", + "id": 2241, + "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" - }, - { - "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" - } - ] + "shortText": "Border-radius of filter chips." }, "sources": [ { - "fileName": "types.ts", - "line": 1060, + "fileName": "css-variables.ts", + "line": 296, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.doNotTrackPreRenderSize" + "name": "string" } }, { - "id": 1302, - "name": "enableCustomColumnGroups", + "id": 2242, + "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To enable custom column groups in data panel v2", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" - } - ] + "shortText": "Shadow effect for filter chips." }, "sources": [ { - "fileName": "types.ts", - "line": 1145, + "fileName": "css-variables.ts", + "line": 301, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.enableCustomColumnGroups" + "name": "string" } }, { - "id": 1298, - "name": "enableV2Shell_experimental", + "id": 2248, + "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" - } - ] + "shortText": "Font color of the text on filter chips." }, "sources": [ { - "fileName": "types.ts", - "line": 1089, + "fileName": "css-variables.ts", + "line": 331, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.enableV2Shell_experimental" + "name": "string" } }, { - "id": 1288, - "name": "excludeRuntimeFiltersfromURL", + "id": 2249, + "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" - } - ] + "shortText": "Font family specification for the text on filter chips." }, "sources": [ { - "fileName": "types.ts", - "line": 938, + "fileName": "css-variables.ts", + "line": 336, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.excludeRuntimeFiltersfromURL" + "name": "string" } }, { - "id": 1297, - "name": "excludeRuntimeParametersfromURL", + "id": 2260, + "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" - } - ] + "shortText": "Background color of the dialogs." }, "sources": [ { - "fileName": "types.ts", - "line": 1075, + "fileName": "css-variables.ts", + "line": 391, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.excludeRuntimeParametersfromURL" + "name": "string" } }, { - "id": 1300, - "name": "exposeTranslationIDs", + "id": 2261, + "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to expose translation IDs on the embedded app.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" - } - ] + "shortText": "Font color of the body text displayed on dialogs." }, "sources": [ { - "fileName": "types.ts", - "line": 1107, + "fileName": "css-variables.ts", + "line": 396, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.exposeTranslationIDs" + "name": "string" } }, { - "id": 1266, - "name": "frameParams", + "id": 2264, + "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" - } - ] + "shortText": "Background color of the footer area on dialogs." }, "sources": [ { - "fileName": "types.ts", - "line": 702, + "fileName": "css-variables.ts", + "line": 411, "character": 4 } ], "type": { - "type": "reference", - "id": 2119, - "name": "FrameParams" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.frameParams" + "type": "intrinsic", + "name": "string" } }, { - "id": 1272, - "name": "hiddenActions", + "id": 2262, + "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" - }, - { - "tag": "important", - "text": "\n" - } - ] + "shortText": "Background color of the header text on dialogs." }, "sources": [ { - "fileName": "types.ts", - "line": 767, + "fileName": "css-variables.ts", + "line": 401, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1650, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1293, - "name": "hiddenHomeLeftNavItems", + "id": 2263, + "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." - }, - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" - } - ] + "shortText": "Font color of the header text on dialogs." }, "sources": [ { - "fileName": "types.ts", - "line": 1024, + "fileName": "css-variables.ts", + "line": 406, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2125, - "name": "HomeLeftNavItem" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenHomeLeftNavItems" + "type": "intrinsic", + "name": "string" } }, { - "id": 1290, - "name": "hiddenHomepageModules", + "id": 2271, + "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" - } - ] + "shortText": "Background for favorite carousel find your favorites card in modular home." }, "sources": [ { - "fileName": "types.ts", - "line": 971, + "fileName": "css-variables.ts", + "line": 446, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2135, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenHomepageModules" + "type": "intrinsic", + "name": "string" } }, { - "id": 1304, - "name": "hiddenListColumns", + "id": 2270, + "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is available only in full app embedding.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 10.9.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" - } - ] + "shortText": "Icon color for favorite carousel find your favorites card in modular home." }, "sources": [ { - "fileName": "types.ts", - "line": 1176, + "fileName": "css-variables.ts", + "line": 441, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2334, - "name": "ListPageColumns" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenListColumns" + "type": "intrinsic", + "name": "string" } }, { - "id": 1289, - "name": "hiddenTabs", + "id": 2269, + "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" - } - ] + "shortText": "Text color for favorite carousel find your favorites card in modular home." }, "sources": [ { - "fileName": "types.ts", - "line": 954, + "fileName": "css-variables.ts", + "line": 436, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.hiddenTabs" + "type": "intrinsic", + "name": "string" } }, { - "id": 1264, - "name": "hideSampleQuestions", + "id": 2268, + "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "hideSampleQuestions : Hide sample questions on\nthe initial screen of the conversation.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n hideSampleQuestions : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" - } - ] + "shortText": "Text color for slected item in modular home's watchlist." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 94, + "fileName": "css-variables.ts", + "line": 431, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1261, - "name": "hideSourceSelection", + "id": 2266, + "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "hideSourceSelection : Hide data source selection", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n hideSourceSelection : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" - } - ] + "shortText": "Background for hover state in list" }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 54, + "fileName": "css-variables.ts", + "line": 421, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1283, - "name": "insertAsSibling", + "id": 2265, + "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" - } - ] + "shortText": "Background for selected state in list" }, "sources": [ { - "fileName": "types.ts", - "line": 888, + "fileName": "css-variables.ts", + "line": 416, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.insertAsSibling" + "name": "string" } }, { - "id": 1285, - "name": "linkOverride", + "id": 2258, + "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" - } - ] + "shortText": "Background color for menu items on hover." }, "sources": [ { - "fileName": "types.ts", - "line": 912, + "fileName": "css-variables.ts", + "line": 381, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.linkOverride" + "name": "string" } }, { - "id": 1277, - "name": "locale", + "id": 2255, + "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The locale settings to apply to the embedded view.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" - } - ] + "shortText": "Background color of menu panels." }, "sources": [ { - "fileName": "types.ts", - "line": 847, + "fileName": "css-variables.ts", + "line": 366, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.locale" } }, { - "id": 1303, - "name": "overrideOrgId", + "id": 2254, + "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" - }, - { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" - } - ] + "shortText": "Font color of the menu items." }, "sources": [ { - "fileName": "types.ts", - "line": 1161, + "fileName": "css-variables.ts", + "line": 361, "character": 4 } ], "type": { "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.overrideOrgId" + "name": "string" } }, { - "id": 1294, - "name": "preRenderId", + "id": 2256, + "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" - }, - { - "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" - } - ] + "shortText": "Font family specification for the menu items." }, "sources": [ { - "fileName": "types.ts", - "line": 1039, + "fileName": "css-variables.ts", + "line": 371, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.preRenderId" } }, { - "id": 1270, - "name": "primaryAction", + "id": 2259, + "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The primary action to display on top of the viz for Liveboard and App Embed.\nUse this to set the primary action.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n primaryAction: Action.Download\n});\n```\n" - } - ] + "shortText": "Text color for selected menu items." }, "sources": [ { - "fileName": "types.ts", - "line": 739, + "fileName": "css-variables.ts", + "line": 386, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.primaryAction" } }, { - "id": 1291, - "name": "reorderedHomepageModules", + "id": 2257, + "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", - "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" - } - ] + "shortText": "Text capitalization specification for the menu items." }, "sources": [ { - "fileName": "types.ts", - "line": 988, + "fileName": "css-variables.ts", + "line": 376, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2135, - "name": "HomepageModule" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.reorderedHomepageModules" + "type": "intrinsic", + "name": "string" } }, { - "id": 1275, - "name": "runtimeFilters", + "id": 2192, + "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" - } - ] + "shortText": "Background color of the top navigation panel." }, "sources": [ { - "fileName": "types.ts", - "line": 817, + "fileName": "css-variables.ts", + "line": 39, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1478, - "name": "RuntimeFilter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.runtimeFilters" + "type": "intrinsic", + "name": "string" } }, { - "id": 1276, - "name": "runtimeParameters", + "id": 2193, + "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", - "tags": [ - { - "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" - } - ] + "shortText": "Font color of the top navigation panel." }, "sources": [ { - "fileName": "types.ts", - "line": 835, + "fileName": "css-variables.ts", + "line": 44, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2274, - "name": "RuntimeParameter" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.runtimeParameters" + "type": "intrinsic", + "name": "string" } }, { - "id": 1259, - "name": "searchOptions", + "id": 2187, + "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Ability to pass a starting search query to the conversation." + "shortText": "Background color of the Liveboard, visualization, Search, and Answer pages." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 29, + "fileName": "css-variables.ts", + "line": 9, "character": 4 } ], "type": { - "type": "reference", - "name": "SearchOptions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1274, - "name": "showAlerts", + "id": 2188, + "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" - } - ] + "shortText": "Color of the text on application pages." }, "sources": [ { - "fileName": "types.ts", - "line": 798, + "fileName": "css-variables.ts", + "line": 14, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.showAlerts" + "name": "string" } }, { - "id": 1263, - "name": "showSpotterLimitations", + "id": 2189, + "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "showSpotterLimitations : show limitation text\nof the spotter underneath the chat input.\ndefault is false.", - "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new ConversationEmbed('#tsEmbed', {\n ... // other options\n showSpotterLimitations : true,\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.36.0 | Thoughtspot: 10.5.0.cl\n" - } - ] + "shortText": "Font type for the text on application pages." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 81, + "fileName": "css-variables.ts", + "line": 19, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1273, - "name": "visibleActions", + "id": 2190, + "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" - } - ] + "shortText": "Text transformation specification for UI elements in the app." }, "sources": [ { - "fileName": "types.ts", - "line": 785, + "fileName": "css-variables.ts", + "line": 24, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1650, - "name": "Action" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.visibleActions" + "type": "intrinsic", + "name": "string" } }, { - "id": 1292, - "name": "visibleTabs", + "id": 2201, + "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", - "text": "Use either `visibleTabs` or `hiddenTabs`.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" - } - ] + "shortText": "Background color of the search suggestions panel." }, "sources": [ { - "fileName": "types.ts", - "line": 1006, + "fileName": "css-variables.ts", + "line": 84, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "ViewConfig.visibleTabs" + "type": "intrinsic", + "name": "string" } }, { - "id": 1258, - "name": "worksheetId", + "id": 2205, + "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The ID of the worksheet to use for the conversation." + "shortText": "Font color of the text in the search suggestion panel." }, "sources": [ { - "fileName": "embed/conversation.ts", - "line": 25, + "fileName": "css-variables.ts", + "line": 106, "character": 4 } ], @@ -24630,544 +23794,68 @@ "type": "intrinsic", "name": "string" } - } - ], - "groups": [ + }, { - "title": "Properties", + "id": 2206, + "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, - "children": [ - 1278, - 1299, - 1284, - 1282, - 1262, - 1301, - 1260, - 1271, - 1269, - 1295, - 1302, - 1298, - 1288, - 1297, - 1300, - 1266, - 1272, - 1293, - 1290, - 1304, - 1289, - 1264, - 1261, - 1283, - 1285, - 1277, - 1303, - 1294, - 1270, - 1291, - 1275, - 1276, - 1259, - 1274, - 1263, - 1273, - 1292, - 1258 - ] - } - ], - "sources": [ - { - "fileName": "embed/conversation.ts", - "line": 21, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "ViewConfig" - } - ] - }, - { - "id": 2307, - "name": "CustomActionPayload", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "tags": [ - { - "tag": "group", - "text": "Events\n" + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Font color of the sub-text that appears below the keyword in the search suggestion\npanel." + }, + "sources": [ + { + "fileName": "css-variables.ts", + "line": 112, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" } - ] - }, - "children": [ + }, { - "id": 2308, - "name": "contextMenuPoints", + "id": 2204, + "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Background color of the search suggestion block on hover." + }, "sources": [ { - "fileName": "types.ts", - "line": 4986, + "fileName": "css-variables.ts", + "line": 101, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 2309, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2310, - "name": "clickedPoint", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4987, - "character": 8 - } - ], - "type": { - "type": "reference", - "id": 2304, - "name": "VizPoint" - } - }, - { - "id": 2311, - "name": "selectedPoints", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4988, - "character": 8 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2304, - "name": "VizPoint" - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2310, - 2311 - ] - } - ] - } + "type": "intrinsic", + "name": "string" } }, { - "id": 2312, - "name": "embedAnswerData", + "id": 2200, + "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Background color of the search bar." + }, "sources": [ { - "fileName": "types.ts", - "line": 4990, - "character": 4 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2313, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2321, - "name": "columns", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4998, - "character": 8 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - }, - { - "id": 2322, - "name": "data", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4999, - "character": 8 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - }, - { - "id": 2315, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4992, - "character": 8 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2314, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4991, - "character": 8 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2316, - "name": "sources", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4993, - "character": 8 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2317, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2318, - "name": "header", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4994, - "character": 12 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2319, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2320, - "name": "guid", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 4995, - "character": 16 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2320 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2318 - ] - } - ] - } - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2321, - 2322, - 2315, - 2314, - 2316 - ] - } - ], - "indexSignature": { - "id": 2323, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 2324, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - } - } - }, - { - "id": 2325, - "name": "session", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "types.ts", - "line": 5002, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 1447, - "name": "SessionInterface" - } - }, - { - "id": 2326, - "name": "vizId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "types.ts", - "line": 5003, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2308, - 2312, - 2325, - 2326 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 4985, - "character": 17 - } - ] - }, - { - "id": 2181, - "name": "CustomCssVariables", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The list of customization css variables. These\nare the only allowed variables possible." - }, - "children": [ - { - "id": 2235, - "name": "--ts-var-answer-chart-hover-background", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Background color of the chart type element when a user hovers over a chart type on\nthe chart selection widget." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 291, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2234, - "name": "--ts-var-answer-chart-select-background", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Background color of the selected chart type on the chart selection widget." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 285, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2204, - "name": "--ts-var-answer-data-panel-background-color", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Background color of the data panel." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 127, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2205, - "name": "--ts-var-answer-edit-panel-background-color", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Background color of the vertical panel on the right side of the Answer page, which\nincludes the options to edit charts and tables." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 133, + "fileName": "css-variables.ts", + "line": 79, "character": 4 } ], @@ -25177,20 +23865,20 @@ } }, { - "id": 2207, - "name": "--ts-var-answer-view-table-chart-switcher-active-background", + "id": 2203, + "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the currently selected chart type in the chart switcher." + "shortText": "Background color of the navigation help text that appears at the bottom of the\nsearch suggestions panel." }, "sources": [ { "fileName": "css-variables.ts", - "line": 143, + "line": 96, "character": 4 } ], @@ -25200,20 +23888,20 @@ } }, { - "id": 2206, - "name": "--ts-var-answer-view-table-chart-switcher-background", + "id": 2197, + "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the chart switcher on search results and Answer pages." + "shortText": "Font color of the text in the Search bar." }, "sources": [ { "fileName": "css-variables.ts", - "line": 138, + "line": 64, "character": 4 } ], @@ -25223,20 +23911,20 @@ } }, { - "id": 2186, - "name": "--ts-var-application-color", + "id": 2198, + "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on toggle buttons such as\n**All**, **Answers**, and **Liveboards** on the Home page (Classic experience),\nthe text color of the chart and table tiles on Home page (New modular Homepage\nexperience), and title text on the AI-generated charts and tables.\nThe default color code is #2770EF." + "shortText": "Font of the text in the Search bar." }, "sources": [ { "fileName": "css-variables.ts", - "line": 34, + "line": 69, "character": 4 } ], @@ -25246,20 +23934,20 @@ } }, { - "id": 2247, - "name": "--ts-var-axis-data-label-color", + "id": 2199, + "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the X and Y axis labels." + "shortText": "Font style of the text in the Search bar." }, "sources": [ { "fileName": "css-variables.ts", - "line": 351, + "line": 74, "character": 4 } ], @@ -25269,20 +23957,20 @@ } }, { - "id": 2248, - "name": "--ts-var-axis-data-label-font-family", + "id": 2194, + "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for X and Y axis labels." + "shortText": "Background color of the *Search data* button." }, "sources": [ { "fileName": "css-variables.ts", - "line": 356, + "line": 49, "character": 4 } ], @@ -25292,20 +23980,20 @@ } }, { - "id": 2245, - "name": "--ts-var-axis-title-color", + "id": 2195, + "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of axis title on charts." + "shortText": "Color of the text on the *Search data* button." }, "sources": [ { "fileName": "css-variables.ts", - "line": 341, + "line": 54, "character": 4 } ], @@ -25315,20 +24003,20 @@ } }, { - "id": 2246, - "name": "--ts-var-axis-title-font-family", + "id": 2196, + "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the X and Y axis title text." + "shortText": "Font of the text on the *Search data* button." }, "sources": [ { "fileName": "css-variables.ts", - "line": 346, + "line": 59, "character": 4 } ], @@ -25338,20 +24026,20 @@ } }, { - "id": 2209, - "name": "--ts-var-button--icon-border-radius", + "id": 2202, + "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border-radius of small buttons such as secondary buttons.\nFor example, share and favorite buttons." + "shortText": "Background color of the navigation panel that allows you to undo, redo, and reset\nsearch operations." }, "sources": [ { "fileName": "css-variables.ts", - "line": 155, + "line": 90, "character": 4 } ], @@ -25361,20 +24049,20 @@ } }, { - "id": 2214, - "name": "--ts-var-button--primary--active-background", + "id": 2267, + "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Backgroud color of the primary buttons when active." + "shortText": "Background for hover state in segment control." }, "sources": [ { "fileName": "css-variables.ts", - "line": 182, + "line": 426, "character": 4 } ], @@ -25384,20 +24072,20 @@ } }, { - "id": 2211, - "name": "--ts-var-button--primary--font-family", + "id": 2207, + "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the text on primary buttons." + "shortText": "Background color of the input box in the Spotter page." }, "sources": [ { "fileName": "css-variables.ts", - "line": 166, + "line": 117, "character": 4 } ], @@ -25407,20 +24095,20 @@ } }, { - "id": 2213, - "name": "--ts-var-button--primary--hover-background", + "id": 2208, + "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the primary buttons on hover." + "shortText": "Background color of the previously asked prompt message in the Spotter page." }, "sources": [ { "fileName": "css-variables.ts", - "line": 177, + "line": 122, "character": 4 } ], @@ -25430,20 +24118,20 @@ } }, { - "id": 2212, - "name": "--ts-var-button--primary-background", + "id": 2237, + "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the primary buttons. For example, the primary buttons such as\nPin* and *Save*." + "shortText": "Background color of the visualization tiles and header panel on a Liveboard." }, "sources": [ { "fileName": "css-variables.ts", - "line": 172, + "line": 275, "character": 4 } ], @@ -25453,20 +24141,20 @@ } }, { - "id": 2210, - "name": "--ts-var-button--primary-color", + "id": 2235, + "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on primary buttons. For example, the primary buttons on\nLiveboard*, Answer, *Data* workspace, *SpotIQ*, or *Home* page." + "shortText": "Border-radius for the visualization tiles and header panel on a Liveboard." }, "sources": [ { "fileName": "css-variables.ts", - "line": 161, + "line": 265, "character": 4 } ], @@ -25476,20 +24164,20 @@ } }, { - "id": 2219, - "name": "--ts-var-button--secondary--active-background", + "id": 2236, + "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Backgroud color of the secondary buttons when active." + "shortText": "Box shadow property for the visualization tiles and header panel on a Liveboard." }, "sources": [ { "fileName": "css-variables.ts", - "line": 207, + "line": 270, "character": 4 } ], @@ -25499,20 +24187,20 @@ } }, { - "id": 2216, - "name": "--ts-var-button--secondary--font-family", + "id": 2232, + "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the text on the secondary buttons." + "shortText": "Font color of the description text and subtitle of a visualization or Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 192, + "line": 248, "character": 4 } ], @@ -25522,20 +24210,20 @@ } }, { - "id": 2218, - "name": "--ts-var-button--secondary--hover-background", + "id": 2233, + "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the secondary button on hover." + "shortText": "Font family specification of description text and subtitle of a visualization or\nAnswer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 202, + "line": 254, "character": 4 } ], @@ -25545,20 +24233,20 @@ } }, { - "id": 2217, - "name": "--ts-var-button--secondary-background", + "id": 2234, + "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the secondary buttons." + "shortText": "Text transformation specification for description text and subtitle of a\nvisualization or Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 197, + "line": 260, "character": 4 } ], @@ -25568,20 +24256,20 @@ } }, { - "id": 2215, - "name": "--ts-var-button--secondary-color", + "id": 2238, + "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on the secondary buttons." + "shortText": "Background color of the legend on a visualization or Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 187, + "line": 280, "character": 4 } ], @@ -25591,20 +24279,20 @@ } }, { - "id": 2223, - "name": "--ts-var-button--tertiary--active-background", + "id": 2229, + "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Backgroud color of the tertiary buttons when active." + "shortText": "Font color of the title text of a visualization or Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 228, + "line": 233, "character": 4 } ], @@ -25614,20 +24302,20 @@ } }, { - "id": 2222, - "name": "--ts-var-button--tertiary--hover-background", + "id": 2230, + "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the tertiary button when a user hovers over these buttons." + "shortText": "Font family specification for the title text of a visualization/Answer." }, "sources": [ { "fileName": "css-variables.ts", - "line": 223, + "line": 238, "character": 4 } ], @@ -25637,20 +24325,20 @@ } }, { - "id": 2221, - "name": "--ts-var-button--tertiary-background", + "id": 2231, + "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the tertiary button." + "shortText": "Text transformation specification for visualization and Answer titles." }, "sources": [ { "fileName": "css-variables.ts", - "line": 218, + "line": 243, "character": 4 } ], @@ -25658,45 +24346,159 @@ "type": "intrinsic", "name": "string" } - }, + } + ], + "groups": [ { - "id": 2220, - "name": "--ts-var-button--tertiary-color", + "title": "Properties", "kind": 1024, - "kindString": "Property", - "flags": { + "children": [ + 2240, + 2239, + 2209, + 2210, + 2212, + 2211, + 2191, + 2252, + 2253, + 2250, + 2251, + 2214, + 2219, + 2216, + 2218, + 2217, + 2215, + 2224, + 2221, + 2223, + 2222, + 2220, + 2228, + 2227, + 2226, + 2225, + 2213, + 2275, + 2278, + 2273, + 2276, + 2277, + 2272, + 2274, + 2245, + 2244, + 2247, + 2246, + 2243, + 2241, + 2242, + 2248, + 2249, + 2260, + 2261, + 2264, + 2262, + 2263, + 2271, + 2270, + 2269, + 2268, + 2266, + 2265, + 2258, + 2255, + 2254, + 2256, + 2259, + 2257, + 2192, + 2193, + 2187, + 2188, + 2189, + 2190, + 2201, + 2205, + 2206, + 2204, + 2200, + 2203, + 2197, + 2198, + 2199, + 2194, + 2195, + 2196, + 2202, + 2267, + 2207, + 2208, + 2237, + 2235, + 2236, + 2232, + 2233, + 2234, + 2238, + 2229, + 2230, + 2231 + ] + } + ], + "sources": [ + { + "fileName": "css-variables.ts", + "line": 5, + "character": 17 + } + ] + }, + { + "id": 2174, + "name": "CustomStyles", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Styles within the {@link CustomisationsInterface}." + }, + "children": [ + { + "id": 2176, + "name": "customCSS", + "kind": 1024, + "kindString": "Property", + "flags": { "isOptional": true }, - "comment": { - "shortText": "Font color of the tertiary button. For example, the *Undo*, *Redo*, and *Reset*\nbuttons on the *Search* page." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 213, + "fileName": "types.ts", + "line": 271, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2177, + "name": "customCssInterface" } }, { - "id": 2208, - "name": "--ts-var-button-border-radius", + "id": 2175, + "name": "customCSSUrl", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Border-radius of main buttons.\nFor example, the *Search data* button in the top navigation panel." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 149, + "fileName": "types.ts", + "line": 270, "character": 4 } ], @@ -25704,45 +24506,204 @@ "type": "intrinsic", "name": "string" } - }, + } + ], + "groups": [ { - "id": 2270, - "name": "--ts-var-checkbox-active-color", + "title": "Properties", + "kind": 1024, + "children": [ + 2176, + 2175 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 269, + "character": 17 + } + ] + }, + { + "id": 2164, + "name": "CustomisationsInterface", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Configuration to define the customization on the Embedded\nThoughtSpot components.\nYou can customize styles, text strings, and icons.\nFor more information, see https://developers.thoughtspot.com/docs/custom-css.", + "tags": [ + { + "tag": "example", + "text": "\n```js\n init({\n // ...\n customizations: {\n style: {\n customCSS: {\n variables: {},\n rules_UNSTABLE: {}\n }\n },\n content: {\n strings: {\n 'LIVEBOARDS': 'Dashboards',\n 'ANSWERS': 'Visualizations',\n 'Edit': 'Modify',\n 'Show underlying data': 'Show source data',\n 'SpotIQ': 'Insights',\n 'Monitor': 'Alerts',\n }\n },\n iconSpriteUrl: 'https://my-custom-icon-sprite.svg'\n }\n })\n```\n" + } + ] + }, + "children": [ + { + "id": 2166, + "name": "content", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Border and font color of checkbox in active state." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 462, + "fileName": "types.ts", + "line": 307, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 2167, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2169, + "name": "stringIDs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "types.ts", + "line": 312, + "character": 8 + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "Record" + } + }, + { + "id": 2170, + "name": "stringIDsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "types.ts", + "line": 313, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2168, + "name": "strings", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | 9.7.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 311, + "character": 8 + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2169, + 2170, + 2168 + ] + } + ], + "indexSignature": { + "id": 2171, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 2172, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + } } }, { - "id": 2273, - "name": "--ts-var-checkbox-background-color", + "id": 2173, + "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Background color of checkbox." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 474, + "fileName": "types.ts", + "line": 316, "character": 4 } ], @@ -25752,66 +24713,152 @@ } }, { - "id": 2268, - "name": "--ts-var-checkbox-border-color", + "id": 2165, + "name": "style", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Border color of checkbox." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 454, + "fileName": "types.ts", + "line": 306, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2174, + "name": "CustomStyles" } - }, + } + ], + "groups": [ { - "id": 2271, - "name": "--ts-var-checkbox-checked-color", + "title": "Properties", + "kind": 1024, + "children": [ + 2166, + 2173, + 2165 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 305, + "character": 17 + } + ] + }, + { + "id": 1789, + "name": "EmbedConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The configuration object for embedding ThoughtSpot content.\nIt includes the ThoughtSpot hostname or IP address,\nthe type of authentication, and the authentication endpoint\nif a trusted authentication server is used.", + "tags": [ + { + "tag": "group", + "text": "Authentication / Init\n" + } + ] + }, + "children": [ + { + "id": 1831, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border color and font color of checkbox in checked state." + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.33.5 | ThoughtSpot: *\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 466, + "fileName": "types.ts", + "line": 629, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 1832, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1833, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1834, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } } }, { - "id": 2272, - "name": "--ts-var-checkbox-checked-disabled", + "id": 1792, + "name": "authEndpoint", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border and font color of checkbox in disabled state." + "shortText": "[AuthServer] The trusted authentication endpoint to use to get the\nauthentication token. A `GET` request is made to the\nauthentication API endpoint, which returns the token\nas a plaintext response. For trusted authentication,\nthe `authEndpoint` or `getAuthToken` attribute is required." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 470, + "fileName": "types.ts", + "line": 342, "character": 4 } ], @@ -25821,43 +24868,68 @@ } }, { - "id": 2267, - "name": "--ts-var-checkbox-error-border", + "id": 1813, + "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border color of checkbox in error state." + "shortText": "For `inPopup` SAMLRedirect or OIDCRedirect authentication, we need a\nbutton that the user can click to trigger the flow.\nThis attribute sets a containing element for that button.", + "tags": [ + { + "tag": "example", + "text": "\n```js\ninit({\n authType: AuthType.SAMLRedirect,\n inPopup: true,\n authTriggerContainer: '#auth-trigger-container'\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 450, + "fileName": "types.ts", + "line": 505, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "reference", + "name": "HTMLElement" + } + ] } }, { - "id": 2269, - "name": "--ts-var-checkbox-hover-border", + "id": 1815, + "name": "authTriggerText", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border color of checkbox in hover state." + "shortText": "Text to show in the button which triggers the popup auth flow.\nDefault: `Authorize`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 458, + "fileName": "types.ts", + "line": 518, "character": 4 } ], @@ -25867,112 +24939,139 @@ } }, { - "id": 2240, - "name": "--ts-var-chip--active-background", + "id": 1791, + "name": "authType", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "Background color of the filter chips when selected." + "shortText": "The authentication mechanism to use." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 316, + "fileName": "types.ts", + "line": 334, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 1471, + "name": "AuthType" } }, { - "id": 2239, - "name": "--ts-var-chip--active-color", + "id": 1804, + "name": "autoLogin", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the filter label when a filter chip is selected" + "shortText": "Re-login a user with the previous login options\nwhen a user session expires.", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 311, + "fileName": "types.ts", + "line": 433, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2242, - "name": "--ts-var-chip--hover-background", + "id": 1816, + "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of filter chips on hover." + "shortText": "Prevent users from accessing the full application or ThoughtSpot application pages\naccess to the embedded application users\noutside of the iframe.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.22.0 | ThoughtSpot: 9.3.0.cl, 9.5.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 326, + "fileName": "types.ts", + "line": 526, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2241, - "name": "--ts-var-chip--hover-color", + "id": 1807, + "name": "callPrefetch", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on filter chips when hovered over." + "shortText": "Calls the prefetch method internally when set to `true`", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 321, + "fileName": "types.ts", + "line": 455, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2238, - "name": "--ts-var-chip-background", + "id": 1828, + "name": "currencyFormat", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of filter chips." + "shortText": "Format to be used for currency when currency format is set to infer from browser", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 306, + "fileName": "types.ts", + "line": 588, "character": 4 } ], @@ -25982,66 +25081,99 @@ } }, { - "id": 2236, - "name": "--ts-var-chip-border-radius", + "id": 1835, + "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Border-radius of filter chips." + "shortText": "This is an object (key/val) for customVariables being\nused by the third party tool's script.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n customVariablesForThirdPartyTools: {\n key1: 'value1',\n key2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK 1.37.0 | ThoughtSpot: 10.8.0.cl\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 296, + "fileName": "types.ts", + "line": 645, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Record" } }, { - "id": 2237, - "name": "--ts-var-chip-box-shadow", + "id": 1812, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Shadow effect for filter chips." + "shortText": "Custom style params for embed Config.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 301, + "fileName": "types.ts", + "line": 490, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2164, + "name": "CustomisationsInterface" } }, { - "id": 2243, - "name": "--ts-var-chip-color", + "id": 1826, + "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text on filter chips." + "shortText": "Overrides default/user preferred locale for date formatting", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 331, + "fileName": "types.ts", + "line": 578, "character": 4 } ], @@ -26051,204 +25183,268 @@ } }, { - "id": 2244, - "name": "--ts-var-chip-title-font-family", + "id": 1809, + "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the text on filter chips." + "shortText": "[AuthServer|Basic] Detect if third-party party cookies are enabled by doing an\nadditional call. This is slower and should be avoided. Listen to the\n`NO_COOKIE_ACCESS` event to handle the situation.", + "text": "This is slightly slower than letting the browser handle the cookie check, as it\ninvolves an extra network call.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.10.4 | ThoughtSpot: 8.2.0.cl, 8.4.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 336, + "fileName": "types.ts", + "line": 475, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2255, - "name": "--ts-var-dialog-body-background", + "id": 1830, + "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the dialogs." + "shortText": "This flag is used to disable showing the login failure page in the embedded app.", + "tags": [ + { + "tag": "version", + "text": "SDK 1.32.3 | ThoughtSpot: 10.1.0.cl, 10.1.0.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 391, + "fileName": "types.ts", + "line": 609, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2256, - "name": "--ts-var-dialog-body-color", + "id": 1805, + "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the body text displayed on dialogs." + "shortText": "Disable redirection to the login page when the embedded session expires\nThis flag is typically used alongside the combination of authentication modes such\nas {@link AuthType.AuthServer} and auto-login behavior {@link\nEmbedConfig.autoLogin}", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.9.3 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 396, + "fileName": "types.ts", + "line": 443, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2259, - "name": "--ts-var-dialog-footer-background", + "id": 1836, + "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, - "comment": { - "shortText": "Background color of the footer area on dialogs." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 411, + "fileName": "types.ts", + "line": 647, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2257, - "name": "--ts-var-dialog-header-background", + "id": 1825, + "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the header text on dialogs." + "shortText": "Disables the Mixpanel tracking from the SDK.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.27.9\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 401, + "fileName": "types.ts", + "line": 573, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2258, - "name": "--ts-var-dialog-header-color", + "id": 1803, + "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the header text on dialogs." + "shortText": "Ignore the cookie access alert when third-party cookies are blocked by the\nuser's browser. If you set this to `true`, the embedded iframe behaviour\npersists even in the case of a non-logged-in user.", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 406, + "fileName": "types.ts", + "line": 426, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2266, - "name": "--ts-var-home-favorite-suggestion-card-background", + "id": 1798, + "name": "inPopup", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background for favorite carousel find your favorites card in modular home." + "shortText": "[SSO] For SSO Authentication, if `inPopup` is set to true, it will open\nthe SAML auth flow in a popup, instead of redirecting the browser in place.", + "text": "Need to use this with `authTriggerContainer`. Or manually trigger\nthe `AuthEvent.TRIGGER_SSO_POPUP` event on a user interaction.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.18.0\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 446, + "fileName": "types.ts", + "line": 387, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2265, - "name": "--ts-var-home-favorite-suggestion-card-icon-color", + "id": 1824, + "name": "logLevel", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Icon color for favorite carousel find your favorites card in modular home." + "shortText": "Suppress or show specific types of logs in the console output.\nFor example, `LogLevel.ERROR` shows only Visual Embed SDK and\nThoughtSpot application errors and suppresses\nother logs such as warnings, information alerts,\nand debug messages in the console output.", + "tags": [ + { + "tag": "default", + "text": "LogLevel.ERROR" + }, + { + "tag": "example", + "text": "\n```js\ninit({\n ...embedConfig,\n logLevel: LogLevel.SILENT\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.7 | ThoughtSpot: 9.10.0.cl\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 441, + "fileName": "types.ts", + "line": 568, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2282, + "name": "LogLevel" } }, { - "id": 2264, - "name": "--ts-var-home-favorite-suggestion-card-text-color", + "id": 1806, + "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text color for favorite carousel find your favorites card in modular home." + "shortText": "This message is displayed in the embedded view when a user login fails.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.10.1 | ThoughtSpot: 8.2.0.cl, 8.4.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 436, + "fileName": "types.ts", + "line": 449, "character": 4 } ], @@ -26258,43 +25454,59 @@ } }, { - "id": 2263, - "name": "--ts-var-home-watchlist-selected-text-color", + "id": 1797, + "name": "noRedirect", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text color for slected item in modular home's watchlist." + "shortText": "[SSO] For SSO Authentication, if `noRedirect` is set to true, it will\nopen the SAML auth flow in a popup, instead of redirecting the browser in\nplace.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "deprecated", + "text": "\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 431, + "fileName": "types.ts", + "line": 376, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2261, - "name": "--ts-var-list-hover-background", + "id": 1827, + "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background for hover state in list" + "shortText": "Overrides default/user preferred locale for number formatting", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 421, + "fileName": "types.ts", + "line": 583, "character": 4 } ], @@ -26304,20 +25516,21 @@ } }, { - "id": 2260, - "name": "--ts-var-list-selected-background", + "id": 1796, + "name": "password", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background for selected state in list" + "shortText": "[Basic] The ThoughtSpot login password corresponding to the username", + "text": "Warning: This feature is primarily intended for developer testing. It is\nstrongly advised not to use this authentication method in production.\n" }, "sources": [ { - "fileName": "css-variables.ts", - "line": 416, + "fileName": "types.ts", + "line": 367, "character": 4 } ], @@ -26327,20 +25540,26 @@ } }, { - "id": 2253, - "name": "--ts-var-menu--hover-background", + "id": 1822, + "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color for menu items on hover." + "shortText": "Pendo API key to enable Pendo tracking to your own subscription, the key\nis added as an additional key to the embed, as per this link:https://support.pendo.io/hc/en-us/articles/360032201951-Send-data-to-multiple-subscriptions[document].", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.27.0 | ThoughtSpot: 9.8.0.cl\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 381, + "fileName": "types.ts", + "line": 543, "character": 4 } ], @@ -26350,43 +25569,60 @@ } }, { - "id": 2250, - "name": "--ts-var-menu-background", + "id": 1808, + "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of menu panels." + "shortText": "When there are multiple objects embedded, queue the rendering of embedded objects\nto start after the previous embed's render is complete. This helps improve\nperformance by decreasing the load on the browser.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1" + }, + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 366, + "fileName": "types.ts", + "line": 464, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2249, - "name": "--ts-var-menu-color", + "id": 1799, + "name": "redirectPath", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the menu items." + "shortText": "[SSO] For SSO Authentication, one can supply an optional path param;\nThis will be the path on the host origin where the SAML flow will be\nterminated.", + "text": "Eg: \"/dashboard\", \"#/foo\" [Do not include the host]", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.10.2 | ThoughtSpot 8.2.0.cl, 8.4.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 361, + "fileName": "types.ts", + "line": 397, "character": 4 } ], @@ -26396,135 +25632,157 @@ } }, { - "id": 2251, - "name": "--ts-var-menu-font-family", + "id": 1801, + "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the menu items." + "shortText": "Boolean to define if the query parameters in the ThoughtSpot URL\nshould be encoded in base64. This provides additional security to\nThoughtSpot clusters against cross-site scripting attacks.", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 371, + "fileName": "types.ts", + "line": 408, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2254, - "name": "--ts-var-menu-selected-text-color", + "id": 1823, + "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text color for selected menu items." + "shortText": "If passed as true all alerts will be suppressed in the embedded app.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.2 | ThoughtSpot: *\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 386, + "fileName": "types.ts", + "line": 549, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2252, - "name": "--ts-var-menu-text-transform", + "id": 1802, + "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text capitalization specification for the menu items." + "shortText": "Suppress cookie access alert when third-party cookies are blocked by the\nuser's browser. Third-party cookie blocking is the default behaviour on\nsome web browsers like Safari. If you set this attribute to `true`,\nyou are encouraged to handle `noCookieAccess` event, to show your own treatment\nin this case.", + "tags": [ + { + "tag": "default", + "text": "false\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 376, + "fileName": "types.ts", + "line": 418, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2187, - "name": "--ts-var-nav-background", + "id": 1811, + "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the top navigation panel." + "shortText": "Hide `beta` alert warning message for SageEmbed." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 39, + "fileName": "types.ts", + "line": 485, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2188, - "name": "--ts-var-nav-color", + "id": 1810, + "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the top navigation panel." + "shortText": "Hide the `beta` alert warning message for SearchEmbed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.12.0 | ThoughtSpot: 8.4.0.cl, 8.4.1.sw*\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 44, + "fileName": "types.ts", + "line": 480, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2182, - "name": "--ts-var-root-background", + "id": 1790, + "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "Background color of the Liveboard, visualization, Search, and Answer pages." + "shortText": "The ThoughtSpot cluster hostname or IP address." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 9, + "fileName": "types.ts", + "line": 330, "character": 4 } ], @@ -26534,43 +25792,43 @@ } }, { - "id": 2183, - "name": "--ts-var-root-color", + "id": 1814, + "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Color of the text on application pages." + "shortText": "Specify that we want to use the `AuthEvent.TRIGGER_SSO_POPUP` event to trigger\nSAML popup. This is useful when you want to trigger the popup on a custom user\naction." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 14, + "fileName": "types.ts", + "line": 512, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2184, - "name": "--ts-var-root-font-family", + "id": 1795, + "name": "username", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font type for the text on application pages." + "shortText": "[AuthServer / Basic] The user name of the ThoughtSpot user. This\nattribute is required for trusted authentication." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 19, + "fileName": "types.ts", + "line": 359, "character": 4 } ], @@ -26580,112 +25838,323 @@ } }, { - "id": 2185, - "name": "--ts-var-root-text-transform", - "kind": 1024, - "kindString": "Property", + "id": 1793, + "name": "getAuthToken", + "kind": 2048, + "kindString": "Method", "flags": { "isOptional": true }, - "comment": { - "shortText": "Text transformation specification for UI elements in the app." - }, "sources": [ { - "fileName": "css-variables.ts", - "line": 24, + "fileName": "types.ts", + "line": 354, "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "string" - } + "signatures": [ + { + "id": 1794, + "name": "getAuthToken", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "[AuthServer] A function that invokes the trusted authentication endpoint\nand returns a Promise that resolves to the `auth token` string.\nFor trusted authentication, the `authEndpoint` or `getAuthToken`\nattribute is required.", + "text": "It is advisable to fetch a new token inside this method and not\nreuse the old issued token. When auth expires this method is\ncalled again and if it is called with an older token, the authentication\nwill not succeed.\n" + }, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + } + ], + "name": "Promise" + } + } + ] + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1831, + 1792, + 1813, + 1815, + 1791, + 1804, + 1816, + 1807, + 1828, + 1835, + 1812, + 1826, + 1809, + 1830, + 1805, + 1836, + 1825, + 1803, + 1798, + 1824, + 1806, + 1797, + 1827, + 1796, + 1822, + 1808, + 1799, + 1801, + 1823, + 1802, + 1811, + 1810, + 1790, + 1814, + 1795 + ] }, { - "id": 2196, - "name": "--ts-var-search-auto-complete-background", + "title": "Methods", + "kind": 2048, + "children": [ + 1793 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 326, + "character": 17 + } + ] + }, + { + "id": 2124, + "name": "FrameParams", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "Embedded iframe configuration", + "tags": [ + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, + "children": [ + { + "id": 2126, + "name": "height", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the search suggestions panel." + "shortText": "The height of the iframe (unit is pixels if numeric)." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 84, + "fileName": "types.ts", + "line": 665, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] } }, { - "id": 2200, - "name": "--ts-var-search-auto-complete-font-color", + "id": 2127, + "name": "loading", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text in the search suggestion panel." + "shortText": "Set to 'lazy' to enable lazy loading of the embedded TS frame.\nThis will defer loading of the frame until it comes into the\nviewport. This is useful for performance optimization." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 106, + "fileName": "types.ts", + "line": 671, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "literal", + "value": "lazy" + }, + { + "type": "literal", + "value": "eager" + }, + { + "type": "literal", + "value": "auto" + } + ] } }, { - "id": 2201, - "name": "--ts-var-search-auto-complete-subtext-font-color", + "id": 2125, + "name": "width", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the sub-text that appears below the keyword in the search suggestion\npanel." + "shortText": "The width of the iframe (unit is pixels if numeric)." }, "sources": [ { - "fileName": "css-variables.ts", - "line": 112, + "fileName": "types.ts", + "line": 661, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2126, + 2127, + 2125 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 657, + "character": 17 + } + ], + "indexSignature": { + "id": 2128, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "comment": { + "shortText": "This parameters will be passed on the iframe\nas is." }, + "parameters": [ + { + "id": 2129, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + }, + { + "type": "intrinsic", + "name": "undefined" + } + ] + } + } + }, + { + "id": 1931, + "name": "LiveboardViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "The configuration for the embedded Liveboard or visualization page view.", + "tags": [ + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, + "children": [ { - "id": 2199, - "name": "--ts-var-search-bar-auto-complete-hover-background", + "id": 1942, + "name": "activeTabId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the search suggestion block on hover." + "shortText": "Set a Liveboard tab as an active tab.\nSpecify the tab ID.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n activeTabId:'id-1234',\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1-sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 101, + "fileName": "embed/liveboard.ts", + "line": 181, "character": 4 } ], @@ -26695,1145 +26164,1001 @@ } }, { - "id": 2195, - "name": "--ts-var-search-bar-background", + "id": 1960, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the search bar." + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 79, + "fileName": "types.ts", + "line": 868, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reflection", + "declaration": { + "id": 1961, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1962, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1963, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.additionalFlags" } }, { - "id": 2198, - "name": "--ts-var-search-bar-navigation-help-text-background", + "id": 1994, + "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the navigation help text that appears at the bottom of the\nsearch suggestions panel." + "shortText": "To set the initial state of the search bar in case of saved Answers.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 96, + "fileName": "types.ts", + "line": 1101, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.collapseSearchBar" } }, { - "id": 2192, - "name": "--ts-var-search-bar-text-font-color", + "id": 1973, + "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the text in the Search bar." + "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 64, + "fileName": "types.ts", + "line": 900, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 1785, + "name": "ContextMenuTriggerOptions" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.contextMenuTrigger" } }, { - "id": 2193, - "name": "--ts-var-search-bar-text-font-family", + "id": 1958, + "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font of the text in the Search bar." + "shortText": "This flag is for show/hide checkboxes for include or exclude\ncover page and filters in the Liveboard PDF.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot:10.8.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n coverAndFilterOptionInPDF: false,\n})\n```\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 69, + "fileName": "embed/liveboard.ts", + "line": 409, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2194, - "name": "--ts-var-search-bar-text-font-style", + "id": 1959, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font style of the text in the Search bar." + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + }, + { + "tag": "default", + "text": "''\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 74, + "fileName": "types.ts", + "line": 875, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2164, + "name": "CustomisationsInterface" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.customizations" } }, { - "id": 2189, - "name": "--ts-var-search-data-button-background", + "id": 1995, + "name": "dataPanelV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the *Search data* button." + "shortText": "Flag to control Data panel experience", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 49, + "fileName": "types.ts", + "line": 1132, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.dataPanelV2" } }, { - "id": 2190, - "name": "--ts-var-search-data-button-font-color", + "id": 1933, + "name": "defaultHeight", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Color of the text on the *Search data* button." + "shortText": "This is the minimum height(in pixels) for a full-height Liveboard.\nSetting this height helps resolve issues with empty Liveboards and\nother screens navigable from a Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1" + }, + { + "tag": "default", + "text": "500" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n defaultHeight: 600,\n});\n```\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 54, + "fileName": "embed/liveboard.ts", + "line": 80, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "number" } }, { - "id": 2191, - "name": "--ts-var-search-data-button-font-family", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Font of the text on the *Search data* button." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 59, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2197, - "name": "--ts-var-search-navigation-button-background", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Background color of the navigation panel that allows you to undo, redo, and reset\nsearch operations." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 90, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2262, - "name": "--ts-var-segment-control-hover-background", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Background for hover state in segment control." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 426, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2202, - "name": "--ts-var-spotter-input-background", + "id": 1976, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the input box in the Spotter page." + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 117, + "fileName": "types.ts", + "line": 1119, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2203, - "name": "--ts-var-spotter-prompt-background", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Background color of the previously asked prompt message in the Spotter page." + "name": "boolean" }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 122, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 2232, - "name": "--ts-var-viz-background", + "id": 1966, + "name": "disabledActionReason", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Background color of the visualization tiles and header panel on a Liveboard." + "shortText": "The tooltip to display for disabled actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 275, + "fileName": "types.ts", + "line": 752, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" - } - }, - { - "id": 2230, - "name": "--ts-var-viz-border-radius", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true }, - "comment": { - "shortText": "Border-radius for the visualization tiles and header panel on a Liveboard." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 265, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "Omit.disabledActionReason" } }, { - "id": 2231, - "name": "--ts-var-viz-box-shadow", + "id": 1965, + "name": "disabledActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Box shadow property for the visualization tiles and header panel on a Liveboard." + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 270, + "fileName": "types.ts", + "line": 726, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2227, - "name": "--ts-var-viz-description-color", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Font color of the description text and subtitle of a visualization or Answer." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 248, - "character": 4 + "type": "array", + "elementType": { + "type": "reference", + "id": 1655, + "name": "Action" } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2228, - "name": "--ts-var-viz-description-font-family", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true }, - "comment": { - "shortText": "Font family specification of description text and subtitle of a visualization or\nAnswer." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 254, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "Omit.disabledActions" } }, { - "id": 2229, - "name": "--ts-var-viz-description-text-transform", + "id": 1990, + "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text transformation specification for description text and subtitle of a\nvisualization or Answer." + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + }, + { + "tag": "example", + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 260, + "fileName": "types.ts", + "line": 1060, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2233, - "name": "--ts-var-viz-legend-hover-background", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Background color of the legend on a visualization or Answer." + "name": "boolean" }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 280, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 2224, - "name": "--ts-var-viz-title-color", + "id": 1949, + "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font color of the title text of a visualization or Answer." + "shortText": "This flag is used to enable the 2 column layout on a Liveboard", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.32.0 | ThoughtSpot:10.1.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n enable2ColumnLayout: true,\n})\n```\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 233, + "fileName": "embed/liveboard.ts", + "line": 273, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2225, - "name": "--ts-var-viz-title-font-family", + "id": 1948, + "name": "enableAskSage", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Font family specification for the title text of a visualization/Answer." + "shortText": "enable or disable ask sage", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.29.0 | Thoughtspot: 9.12.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableAskSage:true,\n})\n```\n" + } + ] }, "sources": [ { - "fileName": "css-variables.ts", - "line": 238, + "fileName": "embed/liveboard.ts", + "line": 259, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 2226, - "name": "--ts-var-viz-title-text-transform", + "id": 1996, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text transformation specification for visualization and Answer titles." - }, - "sources": [ - { - "fileName": "css-variables.ts", - "line": 243, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2235, - 2234, - 2204, - 2205, - 2207, - 2206, - 2186, - 2247, - 2248, - 2245, - 2246, - 2209, - 2214, - 2211, - 2213, - 2212, - 2210, - 2219, - 2216, - 2218, - 2217, - 2215, - 2223, - 2222, - 2221, - 2220, - 2208, - 2270, - 2273, - 2268, - 2271, - 2272, - 2267, - 2269, - 2240, - 2239, - 2242, - 2241, - 2238, - 2236, - 2237, - 2243, - 2244, - 2255, - 2256, - 2259, - 2257, - 2258, - 2266, - 2265, - 2264, - 2263, - 2261, - 2260, - 2253, - 2250, - 2249, - 2251, - 2254, - 2252, - 2187, - 2188, - 2182, - 2183, - 2184, - 2185, - 2196, - 2200, - 2201, - 2199, - 2195, - 2198, - 2192, - 2193, - 2194, - 2189, - 2190, - 2191, - 2197, - 2262, - 2202, - 2203, - 2232, - 2230, - 2231, - 2227, - 2228, - 2229, - 2233, - 2224, - 2225, - 2226 - ] - } - ], - "sources": [ - { - "fileName": "css-variables.ts", - "line": 5, - "character": 17 - } - ] - }, - { - "id": 2169, - "name": "CustomStyles", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "Styles within the {@link CustomisationsInterface}." - }, - "children": [ - { - "id": 2171, - "name": "customCSS", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "types.ts", - "line": 271, - "character": 4 - } - ], - "type": { - "type": "reference", - "id": 2172, - "name": "customCssInterface" - } - }, - { - "id": 2170, - "name": "customCSSUrl", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "types.ts", - "line": 270, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2171, - 2170 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 269, - "character": 17 - } - ] - }, - { - "id": 2159, - "name": "CustomisationsInterface", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "Configuration to define the customization on the Embedded\nThoughtSpot components.\nYou can customize styles, text strings, and icons.\nFor more information, see https://developers.thoughtspot.com/docs/custom-css.", - "tags": [ - { - "tag": "example", - "text": "\n```js\n init({\n // ...\n customizations: {\n style: {\n customCSS: {\n variables: {},\n rules_UNSTABLE: {}\n }\n },\n content: {\n strings: {\n 'LIVEBOARDS': 'Dashboards',\n 'ANSWERS': 'Visualizations',\n 'Edit': 'Modify',\n 'Show underlying data': 'Show source data',\n 'SpotIQ': 'Insights',\n 'Monitor': 'Alerts',\n }\n },\n iconSpriteUrl: 'https://my-custom-icon-sprite.svg'\n }\n })\n```\n" - } - ] - }, - "children": [ - { - "id": 2161, - "name": "content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "types.ts", - "line": 307, - "character": 4 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 2162, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2164, - "name": "stringIDs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "types.ts", - "line": 312, - "character": 8 - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "Record" - } - }, - { - "id": 2165, - "name": "stringIDsUrl", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "types.ts", - "line": 313, - "character": 8 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2163, - "name": "strings", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "tags": [ - { - "tag": "version", - "text": "SDK: 1.26.0 | 9.7.0.cl\n" - } - ] - }, - "sources": [ - { - "fileName": "types.ts", - "line": 311, - "character": 8 - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2164, - 2165, - 2163 - ] - } - ], - "indexSignature": { - "id": 2166, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 2167, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } + "shortText": "To enable custom column groups in data panel v2", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" + }, + { + "tag": "default", + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1145, + "character": 4 } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.enableCustomColumnGroups" } }, { - "id": 2168, - "name": "iconSpriteUrl", + "id": 1993, + "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + } + ] + }, "sources": [ { "fileName": "types.ts", - "line": 316, + "line": 1089, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.enableV2Shell_experimental" } }, { - "id": 2160, - "name": "style", + "id": 1934, + "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "tags": [ + { + "tag": "deprecated", + "text": "If set to true, the context menu in visualizations will be enabled." + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n enableVizTransformations:true,\n})\n```" + }, + { + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw\n" + } + ] + }, "sources": [ { - "fileName": "types.ts", - "line": 306, + "fileName": "embed/liveboard.ts", + "line": 92, "character": 4 } ], "type": { - "type": "reference", - "id": 2169, - "name": "CustomStyles" + "type": "intrinsic", + "name": "boolean" } - } - ], - "groups": [ + }, { - "title": "Properties", + "id": 1989, + "name": "excludeRuntimeFiltersfromURL", "kind": 1024, - "children": [ - 2161, - 2168, - 2160 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 305, - "character": 17 - } - ] - }, - { - "id": 1784, - "name": "EmbedConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The configuration object for embedding ThoughtSpot content.\nIt includes the ThoughtSpot hostname or IP address,\nthe type of authentication, and the authentication endpoint\nif a trusted authentication server is used.", - "tags": [ - { - "tag": "group", - "text": "Authentication / Init\n" + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 938, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeFiltersfromURL" } - ] - }, - "children": [ + }, { - "id": 1826, - "name": "additionalFlags", + "id": 1992, + "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + "tag": "default", + "text": "false" }, { "tag": "version", - "text": "SDK: 1.33.5 | ThoughtSpot: *\n" + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 629, + "line": 1075, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 1827, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 1828, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1829, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - } - } + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeParametersfromURL" } }, { - "id": 1787, - "name": "authEndpoint", + "id": 1978, + "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[AuthServer] The trusted authentication endpoint to use to get the\nauthentication token. A `GET` request is made to the\nauthentication API endpoint, which returns the token\nas a plaintext response. For trusted authentication,\nthe `authEndpoint` or `getAuthToken` attribute is required." + "shortText": "This flag can be used to expose translation IDs on the embedded app.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 342, + "line": 1107, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.exposeTranslationIDs" } }, { - "id": 1808, - "name": "authTriggerContainer", + "id": 1982, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "For `inPopup` SAMLRedirect or OIDCRedirect authentication, we need a\nbutton that the user can click to trigger the flow.\nThis attribute sets a containing element for that button.", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ { - "tag": "example", - "text": "\n```js\ninit({\n authType: AuthType.SAMLRedirect,\n inPopup: true,\n authTriggerContainer: '#auth-trigger-container'\n})\n```" + "tag": "version", + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, { - "tag": "version", - "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 505, + "line": 702, "character": 4 } ], "type": { - "type": "union", - "types": [ + "type": "reference", + "id": 2124, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.frameParams" + } + }, + { + "id": 1932, + "name": "fullHeight", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If set to true, the embedded object container dynamically resizes\naccording to the height of the Liveboard.", + "text": "**Note**: Using fullHeight loads all visualizations on the\nLiveboard simultaneously, which results in multiple warehouse\nqueries and potentially a longer wait for the topmost\nvisualizations to display on the screen.\nSetting `fullHeight` to `false` fetches visualizations\nincrementally as users scroll the page to view the charts and tables.\n", + "tags": [ { - "type": "intrinsic", - "name": "string" + "tag": "version", + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, { - "type": "reference", - "name": "HTMLElement" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n});\n```\n" } ] + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 64, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1810, - "name": "authTriggerText", + "id": 1967, + "name": "hiddenActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Text to show in the button which triggers the popup auth flow.\nDefault: `Authorize`.", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ { "tag": "version", - "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + }, + { + "tag": "important", + "text": "\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 518, + "line": 767, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "id": 1655, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenActions" } }, { - "id": 1786, - "name": "authType", + "id": 1964, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The authentication mechanism to use." + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is available only in full app embedding.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.38.0 | ThoughtSpot: 10.9.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 334, + "line": 1176, "character": 4 } ], "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2339, + "name": "ListPageColumns" + } + }, + "inheritedFrom": { "type": "reference", - "id": 1466, - "name": "AuthType" + "name": "Omit.hiddenListColumns" } }, { - "id": 1799, - "name": "autoLogin", + "id": 1969, + "name": "hiddenTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Re-login a user with the previous login options\nwhen a user session expires.", + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", "tags": [ { - "tag": "default", - "text": "false\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 433, + "line": 954, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenTabs" + } + }, + { + "id": 1954, + "name": "hideIrrelevantChipsInLiveboardTabs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This flag is used to enable/disable hide irrelevant filters in a Liveboard tab", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.36.0 | ThoughtSpot:10.6.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n hideIrrelevantChipsInLiveboardTabs: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 354, "character": 4 } ], @@ -27843,30 +27168,67 @@ } }, { - "id": 1811, - "name": "blockNonEmbedFullAppAccess", + "id": 1944, + "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Prevent users from accessing the full application or ThoughtSpot application pages\naccess to the embedded application users\noutside of the iframe.", + "shortText": "Show or hide the Liveboard header.", "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" + }, { "tag": "default", - "text": "true" + "text": "false" }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hideLiveboardHeader:true,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 206, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1943, + "name": "hideTabPanel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show or hide the tab panel of the embedded Liveboard.", + "tags": [ { "tag": "version", - "text": "SDK: 1.22.0 | ThoughtSpot: 9.3.0.cl, 9.5.1.sw\n" + "text": "SDK: 1.25.0 | Thoughtspot: 9.6.0.cl, 9.8.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n hideTabPanel:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 526, + "fileName": "embed/liveboard.ts", + "line": 193, "character": 4 } ], @@ -27876,157 +27238,174 @@ } }, { - "id": 1802, - "name": "callPrefetch", + "id": 1987, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Calls the prefetch method internally when set to `true`", + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", "tags": [ { - "tag": "default", - "text": "false\n" + "tag": "version", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 455, + "line": 888, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.insertAsSibling" } }, { - "id": 1823, - "name": "currencyFormat", + "id": 1951, + "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Format to be used for currency when currency format is set to infer from browser", + "shortText": "Enables or disables the compact header feature on a Liveboard.\nCompact Liveboard header is turned off by default on Liveboards in\nThoughtSpot Embedded apps.", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + "text": "SDK: 1.35.0 | ThoughtSpot:10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n isLiveboardCompactHeaderEnabled: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 588, + "fileName": "embed/liveboard.ts", + "line": 311, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 1830, - "name": "customVariablesForThirdPartyTools", + "id": 1947, + "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) for customVariables being\nused by the third party tool's script.", + "shortText": "Control the position and visibility of\nthe Liveboard header as the users scroll down the\nembedded Liveboard page.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n customVariablesForThirdPartyTools: {\n key1: 'value1',\n key2: 'value2'\n }\n});\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other Liveboard view config\n isLiveboardHeaderSticky: true,\n});\n```" }, { "tag": "version", - "text": "SDK 1.37.0 | ThoughtSpot: 10.8.0.cl\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw\n" } ] }, "sources": [ - { - "fileName": "types.ts", - "line": 645, + { + "fileName": "embed/liveboard.ts", + "line": 246, "character": 4 } ], "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Record" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1807, - "name": "customizations", + "id": 1974, + "name": "linkOverride", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Custom style params for embed Config.", + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", "tags": [ { "tag": "version", - "text": "SDK: 1.17.0 | ThoughtSpot: 8.9.0.cl, 9.0.1.sw\n" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 490, + "line": 912, "character": 4 } ], "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { "type": "reference", - "id": 2159, - "name": "CustomisationsInterface" + "name": "Omit.linkOverride" } }, { - "id": 1821, - "name": "dateFormatLocale", + "id": 1935, + "name": "liveboardId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides default/user preferred locale for date formatting", + "shortText": "The Liveboard to display in the embedded view.\nUse either liveboardId or pinboardId to reference the Liveboard to embed.", "tags": [ { "tag": "version", - "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + "text": "SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n liveboardId:id of liveboard,\n})\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 578, + "fileName": "embed/liveboard.ts", + "line": 104, "character": 4 } ], @@ -28036,27 +27415,30 @@ } }, { - "id": 1804, - "name": "detectCookieAccessSlow", + "id": 1941, + "name": "liveboardV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[AuthServer|Basic] Detect if third-party party cookies are enabled by doing an\nadditional call. This is slower and should be avoided. Listen to the\n`NO_COOKIE_ACCESS` event to handle the situation.", - "text": "This is slightly slower than letting the browser handle the cookie check, as it\ninvolves an extra network call.", + "shortText": "Render embedded Liveboards and visualizations in the\nnew Liveboard experience mode.", "tags": [ { "tag": "version", - "text": "SDK: 1.10.4 | ThoughtSpot: 8.2.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.14.0 | ThoughtSpot: 8.6.0.cl, 8.8.1-sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n liveboardV2:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 475, + "fileName": "embed/liveboard.ts", + "line": 168, "character": 4 } ], @@ -28066,108 +27448,141 @@ } }, { - "id": 1825, - "name": "disableLoginFailurePage", + "id": 1972, + "name": "locale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to disable showing the login failure page in the embedded app.", + "shortText": "The locale settings to apply to the embedded view.", "tags": [ { "tag": "version", - "text": "SDK 1.32.3 | ThoughtSpot: 10.1.0.cl, 10.1.0.sw\n" + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 609, + "line": 847, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.locale" } }, { - "id": 1800, - "name": "disableLoginRedirect", + "id": 1977, + "name": "overrideOrgId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Disable redirection to the login page when the embedded session expires\nThis flag is typically used alongside the combination of authentication modes such\nas {@link AuthType.AuthServer} and auto-login behavior {@link\nEmbedConfig.autoLogin}", + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", "tags": [ { - "tag": "version", - "text": "SDK: 1.9.3 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" }, { - "tag": "default", - "text": "false\n" + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 443, + "line": 1161, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.overrideOrgId" } }, { - "id": 1831, - "name": "disablePreauthCache", + "id": 1980, + "name": "preRenderId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, + "comment": { + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + } + ] + }, "sources": [ { "fileName": "types.ts", - "line": 647, + "line": 1039, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.preRenderId" } }, { - "id": 1820, - "name": "disableSDKTracking", + "id": 1938, + "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Disables the Mixpanel tracking from the SDK.", + "shortText": "If set to true, all filter chips from a\nLiveboard page will be read-only (no X buttons)", "tags": [ { "tag": "version", - "text": "SDK: 1.27.9\n" + "text": "SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n preventLiveboardFilterRemoval:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 573, + "fileName": "embed/liveboard.ts", + "line": 134, "character": 4 } ], @@ -28177,160 +27592,190 @@ } }, { - "id": 1798, - "name": "ignoreNoCookieAccess", + "id": 1979, + "name": "primaryAction", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Ignore the cookie access alert when third-party cookies are blocked by the\nuser's browser. If you set this to `true`, the embedded iframe behaviour\npersists even in the case of a non-logged-in user.", + "shortText": "The primary action to display on top of the viz for Liveboard and App Embed.\nUse this to set the primary action.", "tags": [ { - "tag": "default", - "text": "false\n" + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n primaryAction: Action.Download\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 426, + "line": 739, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.primaryAction" } }, { - "id": 1793, - "name": "inPopup", + "id": 1985, + "name": "runtimeFilters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[SSO] For SSO Authentication, if `inPopup` is set to true, it will open\nthe SAML auth flow in a popup, instead of redirecting the browser in place.", - "text": "Need to use this with `authTriggerContainer`. Or manually trigger\nthe `AuthEvent.TRIGGER_SSO_POPUP` event on a user interaction.", + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { - "tag": "version", - "text": "SDK: 1.18.0\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 387, + "line": 817, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1483, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.runtimeFilters" } }, { - "id": 1819, - "name": "logLevel", + "id": 1986, + "name": "runtimeParameters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Suppress or show specific types of logs in the console output.\nFor example, `LogLevel.ERROR` shows only Visual Embed SDK and\nThoughtSpot application errors and suppresses\nother logs such as warnings, information alerts,\nand debug messages in the console output.", + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { - "tag": "default", - "text": "LogLevel.ERROR" + "tag": "version", + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { "tag": "example", - "text": "\n```js\ninit({\n ...embedConfig,\n logLevel: LogLevel.SILENT\n})\n```" - }, - { - "tag": "version", - "text": "SDK: 1.26.7 | ThoughtSpot: 9.10.0.cl\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 568, + "line": 835, "character": 4 } ], "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2279, + "name": "RuntimeParameter" + } + }, + "inheritedFrom": { "type": "reference", - "id": 2277, - "name": "LogLevel" + "name": "Omit.runtimeParameters" } }, { - "id": 1801, - "name": "loginFailedMessage", + "id": 1971, + "name": "showAlerts", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This message is displayed in the embedded view when a user login fails.", + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", "tags": [ { "tag": "version", - "text": "SDK: 1.10.1 | ThoughtSpot: 8.2.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 449, + "line": 798, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.showAlerts" } }, { - "id": 1792, - "name": "noRedirect", + "id": 1946, + "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[SSO] For SSO Authentication, if `noRedirect` is set to true, it will\nopen the SAML auth flow in a popup, instead of redirecting the browser in\nplace.", + "shortText": "Show or hide the Liveboard description.", "tags": [ { "tag": "default", "text": "false" }, { - "tag": "deprecated", - "text": "\n" + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardDescription:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 376, + "fileName": "embed/liveboard.ts", + "line": 232, "character": 4 } ], @@ -28340,112 +27785,142 @@ } }, { - "id": 1822, - "name": "numberFormatLocale", + "id": 1953, + "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides default/user preferred locale for number formatting", + "shortText": "This flag is used to show/hide the re-verify banner\nin Liveboard compact header", "tags": [ + { + "tag": "default", + "text": "true" + }, { "tag": "version", - "text": "SDK: 1.28.4 | ThoughtSpot: 10.0.0.cl, 9.5.0.sw\n" + "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardReverifyBanner: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 583, + "fileName": "embed/liveboard.ts", + "line": 340, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 1791, - "name": "password", + "id": 1945, + "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[Basic] The ThoughtSpot login password corresponding to the username", - "text": "Warning: This feature is primarily intended for developer testing. It is\nstrongly advised not to use this authentication method in production.\n" + "shortText": "Show or hide the Liveboard title.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardTitle:true,\n})\n```\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 367, + "fileName": "embed/liveboard.ts", + "line": 219, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 1817, - "name": "pendoTrackingKey", + "id": 1952, + "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Pendo API key to enable Pendo tracking to your own subscription, the key\nis added as an additional key to the embed, as per this link:https://support.pendo.io/hc/en-us/articles/360032201951-Send-data-to-multiple-subscriptions[document].", + "shortText": "This flag is used to show/hide verified icon in the Liveboard compact header", "tags": [ + { + "tag": "default", + "text": "true" + }, { "tag": "version", - "text": "SDK: 1.27.0 | ThoughtSpot: 9.8.0.cl\n" + "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardVerifiedBadge: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 543, + "fileName": "embed/liveboard.ts", + "line": 325, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" } }, { - "id": 1803, - "name": "queueMultiRenders", + "id": 1950, + "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "When there are multiple objects embedded, queue the rendering of embedded objects\nto start after the previous embed's render is complete. This helps improve\nperformance by decreasing the load on the browser.", + "shortText": "Show a preview image of the visualization before the visualization loads.\nOnly works for visualizations embeds with a viz id.", + "text": "Also, viz snashot should be enabled in the ThoughtSpot instance.\nContact ThoughtSpot support to enable this feature.\n\nSince, this will show preview images, be careful that it may show\nundesired data to the user when using row level security.", "tags": [ { - "tag": "version", - "text": "SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n liveboardId: 'liveboard-id',\n vizId: 'viz-id',\n showPreviewLoader: true,\n});\nembed.render();\n```" }, { - "tag": "default", - "text": "false\n" + "tag": "version", + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 464, + "fileName": "embed/liveboard.ts", + "line": 294, "character": 4 } ], @@ -28455,279 +27930,436 @@ } }, { - "id": 1794, - "name": "redirectPath", + "id": 1968, + "name": "visibleActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "[SSO] For SSO Authentication, one can supply an optional path param;\nThis will be the path on the host origin where the SAML flow will be\nterminated.", - "text": "Eg: \"/dashboard\", \"#/foo\" [Do not include the host]", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", "tags": [ { "tag": "version", - "text": "SDK: 1.10.2 | ThoughtSpot 8.2.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "important", + "text": "" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 397, + "line": 785, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "reference", + "id": 1655, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.visibleActions" } }, { - "id": 1796, - "name": "shouldEncodeUrlQueryParams", + "id": 1970, + "name": "visibleTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to define if the query parameters in the ThoughtSpot URL\nshould be encoded in base64. This provides additional security to\nThoughtSpot clusters against cross-site scripting attacks.", + "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", + "text": "Use either `visibleTabs` or `hiddenTabs`.", "tags": [ { - "tag": "default", - "text": "false\n" + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 408, + "line": 1006, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.visibleTabs" } }, { - "id": 1818, - "name": "suppressErrorAlerts", + "id": 1939, + "name": "visibleVizs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If passed as true all alerts will be suppressed in the embedded app.", + "shortText": "Array of visualization IDs which should be visible when the Liveboard\nrenders. This can be changed by triggering the `SetVisibleVizs`\nevent.", "tags": [ { "tag": "version", - "text": "SDK: 1.26.2 | ThoughtSpot: *\n" + "text": "SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleVizs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 549, + "fileName": "embed/liveboard.ts", + "line": 150, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 1797, - "name": "suppressNoCookieAccessAlert", + "id": 1937, + "name": "vizId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Suppress cookie access alert when third-party cookies are blocked by the\nuser's browser. Third-party cookie blocking is the default behaviour on\nsome web browsers like Safari. If you set this attribute to `true`,\nyou are encouraged to handle `noCookieAccess` event, to show your own treatment\nin this case.", + "shortText": "The visualization within the Liveboard to display.", "tags": [ { - "tag": "default", - "text": "false\n" + "tag": "version", + "text": "SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n vizId:'430496d6-6903-4601-937e-2c691821af3c',\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 418, + "fileName": "embed/liveboard.ts", + "line": 121, "character": 4 } ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1942, + 1960, + 1994, + 1973, + 1958, + 1959, + 1995, + 1933, + 1976, + 1966, + 1965, + 1990, + 1949, + 1948, + 1996, + 1993, + 1934, + 1989, + 1992, + 1978, + 1982, + 1932, + 1967, + 1964, + 1969, + 1954, + 1944, + 1943, + 1987, + 1951, + 1947, + 1974, + 1935, + 1941, + 1972, + 1977, + 1980, + 1938, + 1979, + 1985, + 1986, + 1971, + 1946, + 1953, + 1945, + 1952, + 1950, + 1968, + 1970, + 1939, + 1937 + ] + } + ], + "sources": [ + { + "fileName": "embed/liveboard.ts", + "line": 39, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "hiddenHomepageModules" + }, + { + "type": "literal", + "value": "hiddenHomeLeftNavItems" + }, + { + "type": "literal", + "value": "reorderedHomepageModules" + } + ] + } + ], + "name": "Omit" + } + ] + }, + { + "id": 1483, + "name": "RuntimeFilter", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "A filter that can be applied to ThoughtSpot answers, Liveboards, or\nvisualizations at runtime." + }, + "children": [ { - "id": 1806, - "name": "suppressSageEmbedBetaWarning", + "id": 1484, + "name": "columnName", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "Hide `beta` alert warning message for SageEmbed." + "shortText": "The name of the column to filter on (case-sensitive)" }, "sources": [ { "fileName": "types.ts", - "line": 485, + "line": 1374, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1805, - "name": "suppressSearchEmbedBetaWarning", + "id": 1485, + "name": "operator", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "Hide the `beta` alert warning message for SearchEmbed.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.12.0 | ThoughtSpot: 8.4.0.cl, 8.4.1.sw*\n" - } - ] + "shortText": "The operator to apply" }, "sources": [ { "fileName": "types.ts", - "line": 480, + "line": 1378, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 1487, + "name": "RuntimeFilterOp" } }, { - "id": 1785, - "name": "thoughtSpotHost", + "id": 1486, + "name": "values", "kind": 1024, "kindString": "Property", "flags": {}, "comment": { - "shortText": "The ThoughtSpot cluster hostname or IP address." + "shortText": "The list of operands. Some operators like EQ, LE accept\na single operand, whereas other operators like BW and IN accept multiple\noperands." }, "sources": [ { "fileName": "types.ts", - "line": 330, + "line": 1384, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "bigint" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } } - }, + } + ], + "groups": [ { - "id": 1809, - "name": "useEventForSAMLPopup", + "title": "Properties", + "kind": 1024, + "children": [ + 1484, + 1485, + 1486 + ] + } + ], + "sources": [ + { + "fileName": "types.ts", + "line": 1370, + "character": 17 + } + ] + }, + { + "id": 2279, + "name": "RuntimeParameter", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "shortText": "A filter that can be applied to ThoughtSpot Answers, Liveboards, or\nvisualizations at runtime." + }, + "children": [ + { + "id": 2280, + "name": "name", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "Specify that we want to use the `AuthEvent.TRIGGER_SSO_POPUP` event to trigger\nSAML popup. This is useful when you want to trigger the popup on a custom user\naction." + "shortText": "The name of the runtime parameter to filter on (case-sensitive)" }, "sources": [ { "fileName": "types.ts", - "line": 512, + "line": 1394, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1790, - "name": "username", + "id": 2281, + "name": "value", "kind": 1024, "kindString": "Property", - "flags": { - "isOptional": true - }, + "flags": {}, "comment": { - "shortText": "[AuthServer / Basic] The user name of the ThoughtSpot user. This\nattribute is required for trusted authentication." + "shortText": "Values" }, "sources": [ { "fileName": "types.ts", - "line": 359, + "line": 1398, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1788, - "name": "getAuthToken", - "kind": 2048, - "kindString": "Method", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "types.ts", - "line": 354, - "character": 4 - } - ], - "signatures": [ - { - "id": 1789, - "name": "getAuthToken", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "[AuthServer] A function that invokes the trusted authentication endpoint\nand returns a Promise that resolves to the `auth token` string.\nFor trusted authentication, the `authEndpoint` or `getAuthToken`\nattribute is required.", - "text": "It is advisable to fetch a new token inside this method and not\nreuse the old issued token. When auth expires this method is\ncalled again and if it is called with an older token, the authentication\nwill not succeed.\n" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" }, - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "string" - } - ], - "name": "Promise" + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" } - } - ] + ] + } } ], "groups": [ @@ -28735,68 +28367,32 @@ "title": "Properties", "kind": 1024, "children": [ - 1826, - 1787, - 1808, - 1810, - 1786, - 1799, - 1811, - 1802, - 1823, - 1830, - 1807, - 1821, - 1804, - 1825, - 1800, - 1831, - 1820, - 1798, - 1793, - 1819, - 1801, - 1792, - 1822, - 1791, - 1817, - 1803, - 1794, - 1796, - 1818, - 1797, - 1806, - 1805, - 1785, - 1809, - 1790 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 1788 + 2280, + 2281 ] } ], "sources": [ { "fileName": "types.ts", - "line": 326, + "line": 1390, "character": 17 } ] }, { - "id": 2119, - "name": "FrameParams", + "id": 1997, + "name": "SageViewConfig", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { - "shortText": "Embedded iframe configuration", + "shortText": "The configuration attributes for the embedded Natural language search view. Based on\nGPT and LLM.", "tags": [ + { + "tag": "version:", + "text": "SDK: 1.23.0 | ThoughtSpot: 9.8.0.cl, 9.8.0.sw" + }, { "tag": "group", "text": "Embed components\n" @@ -28805,460 +28401,539 @@ }, "children": [ { - "id": 2121, - "name": "height", + "id": 2010, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The height of the iframe (unit is pixels if numeric)." + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 665, + "line": 868, "character": 4 } ], "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" + "type": "reflection", + "declaration": { + "id": 2011, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 2012, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 2013, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } } - ] + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.additionalFlags" } }, { - "id": 2122, - "name": "loading", + "id": 2042, + "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Set to 'lazy' to enable lazy loading of the embedded TS frame.\nThis will defer loading of the frame until it comes into the\nviewport. This is useful for performance optimization." + "shortText": "To set the initial state of the search bar in case of saved Answers.", + "tags": [ + { + "tag": "default", + "text": "true" + }, + { + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 671, + "line": 1101, "character": 4 } ], "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": "lazy" - }, + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.collapseSearchBar" + } + }, + { + "id": 2021, + "name": "contextMenuTrigger", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "tags": [ { - "type": "literal", - "value": "eager" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" }, { - "type": "literal", - "value": "auto" + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" } ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 900, + "character": 4 + } + ], + "type": { + "type": "reference", + "id": 1785, + "name": "ContextMenuTriggerOptions" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.contextMenuTrigger" } }, { - "id": 2120, - "name": "width", + "id": 2009, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width of the iframe (unit is pixels if numeric)." + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + }, + { + "tag": "default", + "text": "''\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 661, + "line": 875, "character": 4 } ], "type": { - "type": "union", - "types": [ + "type": "reference", + "id": 2164, + "name": "CustomisationsInterface" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.customizations" + } + }, + { + "id": 2043, + "name": "dataPanelV2", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to control Data panel experience", + "tags": [ { - "type": "intrinsic", - "name": "string" + "tag": "default", + "text": "false" }, { - "type": "intrinsic", - "name": "number" + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" } ] - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2121, - 2122, - 2120 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 657, - "character": 17 - } - ], - "indexSignature": { - "id": 2123, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "comment": { - "shortText": "This parameters will be passed on the iframe\nas is." - }, - "parameters": [ - { - "id": 2124, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1132, + "character": 4 } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.dataPanelV2" } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - }, + }, + { + "id": 2007, + "name": "dataSource", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The data source GUID (Worksheet GUID) to set on load." + }, + "sources": [ { - "type": "intrinsic", - "name": "undefined" + "fileName": "embed/sage.ts", + "line": 104, + "character": 4 } - ] - } - } - }, - { - "id": 1926, - "name": "LiveboardViewConfig", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "The configuration for the embedded Liveboard or visualization page view.", - "tags": [ - { - "tag": "group", - "text": "Embed components\n" + ], + "type": { + "type": "intrinsic", + "name": "string" } - ] - }, - "children": [ + }, { - "id": 1937, - "name": "activeTabId", + "id": 2024, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Set a Liveboard tab as an active tab.\nSpecify the tab ID.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n activeTabId:'id-1234',\n})\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" }, { "tag": "version", - "text": "SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1-sw\n" + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 181, + "fileName": "types.ts", + "line": 1119, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1955, - "name": "additionalFlags", + "id": 2002, + "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", + "shortText": "Disable the worksheet selection option.", "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" - }, { "tag": "version", - "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 868, + "fileName": "embed/sage.ts", + "line": 76, "character": 4 } ], "type": { - "type": "reflection", - "declaration": { - "id": 1956, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": { - "id": 1957, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 1958, - "name": "key", - "kind": 32768, - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - } - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.additionalFlags" + "type": "intrinsic", + "name": "boolean" } }, { - "id": 1989, - "name": "collapseSearchBar", + "id": 2016, + "name": "disabledActionReason", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To set the initial state of the search bar in case of saved Answers.", + "shortText": "The tooltip to display for disabled actions.", "tags": [ - { - "tag": "default", - "text": "true" - }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1101, + "line": 752, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.collapseSearchBar" + "name": "Omit.disabledActionReason" } }, { - "id": 1968, - "name": "contextMenuTrigger", + "id": 2015, + "name": "disabledActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "flag to set ContextMenu Trigger to either left or right click.", + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 900, + "line": 726, "character": 4 } ], "type": { - "type": "reference", - "id": 1780, - "name": "ContextMenuTriggerOptions" + "type": "array", + "elementType": { + "type": "reference", + "id": 1655, + "name": "Action" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.contextMenuTrigger" + "name": "Omit.disabledActions" } }, { - "id": 1953, - "name": "coverAndFilterOptionInPDF", + "id": 2038, + "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is for show/hide checkboxes for include or exclude\ncover page and filters in the Liveboard PDF.", + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", "tags": [ { "tag": "default", - "text": "true" + "text": "false" }, { "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot:10.8.0.cl" + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n coverAndFilterOptionInPDF: false,\n})\n```\n" + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 409, + "fileName": "types.ts", + "line": 1060, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1954, - "name": "customizations", + "id": 2044, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", + "shortText": "To enable custom column groups in data panel v2", "tags": [ { "tag": "version", - "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" }, { "tag": "default", - "text": "''\n" + "text": "false" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 875, + "line": 1145, "character": 4 } ], "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { "type": "reference", - "id": 2159, - "name": "CustomisationsInterface" + "name": "Omit.enableCustomColumnGroups" + } + }, + { + "id": 2041, + "name": "enableV2Shell_experimental", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1089, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.customizations" + "name": "Omit.enableV2Shell_experimental" } }, { - "id": 1990, - "name": "dataPanelV2", + "id": 2037, + "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to control Data panel experience", + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { "tag": "default", @@ -29266,18 +28941,14 @@ }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1132, + "line": 938, "character": 4 } ], @@ -29287,71 +28958,72 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.dataPanelV2" + "name": "Omit.excludeRuntimeFiltersfromURL" } }, { - "id": 1928, - "name": "defaultHeight", + "id": 2040, + "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This is the minimum height(in pixels) for a full-height Liveboard.\nSetting this height helps resolve issues with empty Liveboards and\nother screens navigable from a Liveboard.", + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ - { - "tag": "version", - "text": "SDK: 1.5.0 | ThoughtSpot: ts7.oct.cl, 7.2.1" - }, { "tag": "default", - "text": "500" + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n defaultHeight: 600,\n});\n```\n" + "tag": "version", + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 80, + "fileName": "types.ts", + "line": 1075, "character": 4 } ], "type": { "type": "intrinsic", - "name": "number" + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeParametersfromURL" } }, { - "id": 1971, - "name": "disableRedirectionLinksInNewTab", + "id": 2026, + "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "shortText": "This flag can be used to expose translation IDs on the embedded app.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + "tag": "default", + "text": "false" }, { "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1119, + "line": 1107, "character": 4 } ], @@ -29361,56 +29033,57 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" + "name": "Omit.exposeTranslationIDs" } }, { - "id": 1961, - "name": "disabledActionReason", + "id": 2030, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The tooltip to display for disabled actions.", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 752, + "line": 702, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2124, + "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActionReason" + "name": "Omit.frameParams" } }, { - "id": 1960, - "name": "disabledActions", + "id": 2017, + "name": "hiddenActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ { "tag": "version", @@ -29418,14 +29091,18 @@ }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" + }, + { + "tag": "important", + "text": "\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 726, + "line": 767, "character": 4 } ], @@ -29433,85 +29110,78 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActions" + "name": "Omit.hiddenActions" } }, { - "id": 1985, - "name": "doNotTrackPreRenderSize", + "id": 2014, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is available only in full app embedding.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" + "text": "SDK: 1.38.0 | ThoughtSpot: 10.9.0.cl" }, { "tag": "example", - "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1060, + "line": 1176, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2339, + "name": "ListPageColumns" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" + "name": "Omit.hiddenListColumns" } }, { - "id": 1944, - "name": "enable2ColumnLayout", + "id": 2004, + "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to enable the 2 column layout on a Liveboard", + "shortText": "Show or hide autocomplete suggestions for the search query string.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot:10.1.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n enable2ColumnLayout: true,\n})\n```\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 273, + "fileName": "embed/sage.ts", + "line": 86, "character": 4 } ], @@ -29521,34 +29191,26 @@ } }, { - "id": 1943, - "name": "enableAskSage", + "id": 2001, + "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "enable or disable ask sage", + "shortText": "Show or hide the Answer header, that is, the `AI Answer` title\nat the top of the Answer page.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.29.0 | Thoughtspot: 9.12.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableAskSage:true,\n})\n```\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.10.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 259, + "fileName": "embed/sage.ts", + "line": 71, "character": 4 } ], @@ -29558,145 +29220,158 @@ } }, { - "id": 1991, - "name": "enableCustomColumnGroups", + "id": 2006, + "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "To enable custom column groups in data panel v2", + "shortText": "Show or hide sample questions.\nThe sample questions are autogenerated based on the worksheet\nselected for the search operation.", "tags": [ { "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" - }, + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/sage.ts", + "line": 100, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2000, + "name": "hideSearchBarTitle", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show or hide the search bar title.", + "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.29.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw" }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" + "tag": "deprecated", + "text": "Thoughtspot: 9.10.0.cl | search bar doesn't have the title from 9.10.0.cl\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1145, + "fileName": "embed/sage.ts", + "line": 65, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.enableCustomColumnGroups" } }, { - "id": 1988, - "name": "enableV2Shell_experimental", + "id": 2003, + "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", + "shortText": "Hide the worksheet selection panel.", "tags": [ - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" - }, { "tag": "version", - "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1089, + "fileName": "embed/sage.ts", + "line": 81, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.enableV2Shell_experimental" } }, { - "id": 1929, - "name": "enableVizTransformations", + "id": 2035, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", "tags": [ { - "tag": "deprecated", - "text": "If set to true, the context menu in visualizations will be enabled." + "tag": "version", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n enableVizTransformations:true,\n})\n```" - }, - { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 92, + "fileName": "types.ts", + "line": 888, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.insertAsSibling" } }, { - "id": 1984, - "name": "excludeRuntimeFiltersfromURL", + "id": 2022, + "name": "linkOverride", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" }, { - "tag": "version", - "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 938, + "line": 912, "character": 4 } ], @@ -29706,185 +29381,182 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeFiltersfromURL" + "name": "Omit.linkOverride" } }, { - "id": 1987, - "name": "excludeRuntimeParametersfromURL", + "id": 2020, + "name": "locale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", - "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", + "shortText": "The locale settings to apply to the embedded view.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { - "tag": "version", - "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1075, + "line": 847, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeParametersfromURL" + "name": "Omit.locale" } }, { - "id": 1973, - "name": "exposeTranslationIDs", + "id": 2025, + "name": "overrideOrgId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to expose translation IDs on the embedded app.", + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" }, { "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1107, + "line": 1161, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "number" }, "inheritedFrom": { "type": "reference", - "name": "Omit.exposeTranslationIDs" + "name": "Omit.overrideOrgId" } }, { - "id": 1977, - "name": "frameParams", + "id": 2028, + "name": "preRenderId", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", "tags": [ { - "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" + "tag": "version", + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 702, + "line": 1039, "character": 4 } ], "type": { - "type": "reference", - "id": 2119, - "name": "FrameParams" + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Omit.frameParams" + "name": "Omit.preRenderId" } }, { - "id": 1927, - "name": "fullHeight", + "id": 2027, + "name": "primaryAction", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, the embedded object container dynamically resizes\naccording to the height of the Liveboard.", - "text": "**Note**: Using fullHeight loads all visualizations on the\nLiveboard simultaneously, which results in multiple warehouse\nqueries and potentially a longer wait for the topmost\nvisualizations to display on the screen.\nSetting `fullHeight` to `false` fetches visualizations\nincrementally as users scroll the page to view the charts and tables.\n", + "shortText": "The primary action to display on top of the viz for Liveboard and App Embed.\nUse this to set the primary action.", "tags": [ { "tag": "version", - "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n fullHeight: true,\n});\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n primaryAction: Action.Download\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 64, + "fileName": "types.ts", + "line": 739, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.primaryAction" } }, { - "id": 1962, - "name": "hiddenActions", + "id": 2033, + "name": "runtimeFilters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" - }, - { - "tag": "important", - "text": "\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 767, + "line": 817, "character": 4 } ], @@ -29892,41 +29564,40 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, - "name": "Action" + "id": 1483, + "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenActions" + "name": "Omit.runtimeFilters" } }, { - "id": 1959, - "name": "hiddenListColumns", + "id": 2034, + "name": "runtimeParameters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is available only in full app embedding.", + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 10.9.0.cl" + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1176, + "line": 835, "character": 4 } ], @@ -29934,121 +29605,107 @@ "type": "array", "elementType": { "type": "reference", - "id": 2334, - "name": "ListPageColumns" + "id": 2279, + "name": "RuntimeParameter" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenListColumns" + "name": "Omit.runtimeParameters" } }, { - "id": 1964, - "name": "hiddenTabs", + "id": 2008, + "name": "searchOptions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", + "shortText": "Includes the following properties:", + "text": "`searchQuery`: The search query string to pass in the search bar.\nSupports Natural Language Search queries.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + "text": "\n```js\nsearchOptions: {\n searchQuery: 'average sales by country and product type',\n executeSearch: true,\n}\n```" }, { "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" + "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 954, + "fileName": "embed/sage.ts", + "line": 124, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } - }, - "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenTabs" + "name": "SearchOptions" } }, { - "id": 1949, - "name": "hideIrrelevantChipsInLiveboardTabs", + "id": 2019, + "name": "showAlerts", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to enable/disable hide irrelevant filters in a Liveboard tab", + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", "tags": [ - { - "tag": "default", - "text": "false" - }, { "tag": "version", - "text": "SDK: 1.36.0 | ThoughtSpot:10.6.0.cl" + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n hideIrrelevantChipsInLiveboardTabs: true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 354, + "fileName": "types.ts", + "line": 798, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.showAlerts" } }, { - "id": 1939, - "name": "hideLiveboardHeader", + "id": 1998, + "name": "showObjectResults", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the Liveboard header.", + "shortText": "If set to true, a list of Liveboard and Answers related\nto the natural language search will be shown below the\nAI generated answer.", "tags": [ { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" - }, - { - "tag": "default", - "text": "false" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hideLiveboardHeader:true,\n});\n```\n" + "tag": "deprecated", + "text": "Currently Liveboard and Answers related\nto the natural language search will not be shown for sage\nembed\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 206, + "fileName": "embed/sage.ts", + "line": 49, "character": 4 } ], @@ -30058,30 +29715,26 @@ } }, { - "id": 1938, - "name": "hideTabPanel", + "id": 2005, + "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the tab panel of the embedded Liveboard.", + "shortText": "Show or hide autocomplete suggestions for the search query string.", "tags": [ { - "tag": "version", - "text": "SDK: 1.25.0 | Thoughtspot: 9.6.0.cl, 9.8.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n hideTabPanel:true,\n})\n```\n" + "tag": "deprecated", + "text": "\nCurrently, the object suggestions will not be shown for Natural Language Search.\nYou can use {@link hideAutocompleteSuggestions} instead.\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 193, + "fileName": "embed/sage.ts", + "line": 93, "character": 4 } ], @@ -30091,314 +29744,488 @@ } }, { - "id": 1982, - "name": "insertAsSibling", + "id": 2018, + "name": "visibleActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", "tags": [ { "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, + { + "tag": "important", + "text": "" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 888, + "line": 785, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1655, + "name": "Action" + } }, "inheritedFrom": { "type": "reference", - "name": "Omit.insertAsSibling" + "name": "Omit.visibleActions" } - }, + } + ], + "groups": [ { - "id": 1946, - "name": "isLiveboardCompactHeaderEnabled", + "title": "Properties", + "kind": 1024, + "children": [ + 2010, + 2042, + 2021, + 2009, + 2043, + 2007, + 2024, + 2002, + 2016, + 2015, + 2038, + 2044, + 2041, + 2037, + 2040, + 2026, + 2030, + 2017, + 2014, + 2004, + 2001, + 2006, + 2000, + 2003, + 2035, + 2022, + 2020, + 2025, + 2028, + 2027, + 2033, + 2034, + 2008, + 2019, + 1998, + 2005, + 2018 + ] + } + ], + "sources": [ + { + "fileName": "embed/sage.ts", + "line": 36, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "hiddenHomepageModules" + }, + { + "type": "literal", + "value": "hiddenHomeLeftNavItems" + }, + { + "type": "literal", + "value": "hiddenTabs" + }, + { + "type": "literal", + "value": "visibleTabs" + }, + { + "type": "literal", + "value": "reorderedHomepageModules" + } + ] + } + ], + "name": "Omit" + } + ] + }, + { + "id": 1892, + "name": "SearchBarViewConfig", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "comment": { + "tags": [ + { + "tag": "group", + "text": "Embed components\n" + } + ] + }, + "children": [ + { + "id": 1899, + "name": "additionalFlags", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Enables or disables the compact header feature on a Liveboard.\nCompact Liveboard header is turned off by default on Liveboards in\nThoughtSpot Embedded apps.", + "shortText": "This is an object (key/val) of override flags which will be applied\nto the internal embedded object. This can be used to add any\nURL flag.\nIf the same flags are passed in init, they will be overriden by the values here.\nWarning: This option is for advanced use only and is used internally\nto control embed behavior in non-regular ways. We do not publish the\nlist of supported keys and values associated with each.", "tags": [ { - "tag": "default", - "text": "false" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n additionalFlags: {\n flag1: 'value1',\n flag2: 'value2'\n }\n});\n```" }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n isLiveboardCompactHeaderEnabled: true,\n})\n```\n" + "text": "SDK: 1.9.0 | ThoughtSpot: 8.1.0.cl, 8.4.1.sw\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 311, + "fileName": "types.ts", + "line": 868, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reflection", + "declaration": { + "id": 1900, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 1901, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 1902, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.additionalFlags" } }, { - "id": 1942, - "name": "isLiveboardHeaderSticky", + "id": 1929, + "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Control the position and visibility of\nthe Liveboard header as the users scroll down the\nembedded Liveboard page.", + "shortText": "To set the initial state of the search bar in case of saved Answers.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other Liveboard view config\n isLiveboardHeaderSticky: true,\n});\n```" + "tag": "default", + "text": "true" }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw\n" + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n collapseSearchBar: true\n});\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 246, + "fileName": "types.ts", + "line": 1101, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.collapseSearchBar" } }, { - "id": 1969, - "name": "linkOverride", + "id": 1909, + "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to override the *Open Link in New Tab* context menu option.", + "shortText": "flag to set ContextMenu Trigger to either left or right click.", "tags": [ { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#tsEmbed', {\n ... // other options\n contextMenuTrigger:ContextMenuTriggerOptions.LEFT_CLICK || RIGHT_CLICK,\n})\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 912, + "line": 900, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 1785, + "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { "type": "reference", - "name": "Omit.linkOverride" + "name": "Omit.contextMenuTrigger" } }, { - "id": 1930, - "name": "liveboardId", + "id": 1898, + "name": "customizations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The Liveboard to display in the embedded view.\nUse either liveboardId or pinboardId to reference the Liveboard to embed.", + "shortText": "Dynamic CSSUrl and customCSS to be injected in the loaded application.\nYou would also need to set `style-src` in the CSP settings.", "tags": [ { "tag": "version", - "text": "SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1" + "text": "SDK: 1.17.2 | ThoughtSpot: 8.4.1.sw, 8.4.0.cl" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n liveboardId:id of liveboard,\n})\n" + "tag": "default", + "text": "''\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 104, + "fileName": "types.ts", + "line": 875, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "id": 2164, + "name": "CustomisationsInterface" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.customizations" } }, { - "id": 1936, - "name": "liveboardV2", + "id": 1894, + "name": "dataSource", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Render embedded Liveboards and visualizations in the\nnew Liveboard experience mode.", + "shortText": "Pass the ID of the source to be selected.", "tags": [ { - "tag": "version", - "text": "SDK: 1.14.0 | ThoughtSpot: 8.6.0.cl, 8.8.1-sw" + "tag": "version:", + "text": "SDK: 1.19.0, ThoughtSpot 9.0.0.cl, 9.0.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n liveboardV2:true,\n})\n```\n" + "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n dataSource:'id-2345',\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 168, + "fileName": "embed/search-bar.tsx", + "line": 46, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 1967, - "name": "locale", + "id": 1893, + "name": "dataSources", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The locale settings to apply to the embedded view.", + "shortText": "The array of data source GUIDs to set on load.\nOnly a single data source is supported currently.", "tags": [ { - "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "tag": "deprecated", + "text": "Use `dataSource` instead" + }, + { + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.1-sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" + "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n dataSources:['id-2345','id-2345'],\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 847, + "fileName": "embed/search-bar.tsx", + "line": 34, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.locale" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 1972, - "name": "overrideOrgId", + "id": 1912, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1161, + "line": 1119, "character": 4 } ], "type": { "type": "intrinsic", - "name": "number" + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.overrideOrgId" + "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1975, - "name": "preRenderId", + "id": 1905, + "name": "disabledActionReason", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "shortText": "The tooltip to display for disabled actions.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "tag": "version", - "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n disabledActionReason: \"Reason for disabling\",\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1039, + "line": 752, "character": 4 } ], @@ -30408,186 +30235,195 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.preRenderId" + "name": "Omit.disabledActionReason" } }, { - "id": 1933, - "name": "preventLiveboardFilterRemoval", + "id": 1904, + "name": "disabledActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, all filter chips from a\nLiveboard page will be read-only (no X buttons)", + "shortText": "The list of actions to disable from the primary menu, more menu\n(...), and the contextual menu. These actions will be disabled\nfor the user.\nUse this to disable actions.", "tags": [ { "tag": "version", - "text": "SDK: 1.3.0 | ThoughtSpot ts7.aug.cl, 7.2.1.sw" + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n preventLiveboardFilterRemoval:true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n disabledActions: [Action.Download, Action.Save]\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 134, + "fileName": "types.ts", + "line": 726, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1655, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disabledActions" } }, { - "id": 1974, - "name": "primaryAction", + "id": 1925, + "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The primary action to display on top of the viz for Liveboard and App Embed.\nUse this to set the primary action.", + "shortText": "Determines if the PreRender component should dynamically track the size\nof its embedding element and adjust its own size accordingly.\nEnabling this option allows the PreRender component to automatically adapt\nits dimensions based on changes to the size of the embedding element.", "tags": [ + { + "tag": "default", + "text": "false" + }, { "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl" + "text": "SDK: 1.24.0 | ThoughtSpot:9.4.0.cl, 9.4.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n primaryAction: Action.Download\n});\n```\n" + "text": "\n```js\n// Disable tracking PreRender size in the configuration\nconst config = {\n doNotTrackPreRenderSize: true,\n};\n\n// Instantiate an object with the configuration\nconst myComponent = new MyComponent(config);\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 739, + "line": 1060, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.primaryAction" + "name": "Omit.doNotTrackPreRenderSize" } }, { - "id": 1980, - "name": "runtimeFilters", + "id": 1930, + "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "To enable custom column groups in data panel v2", "tags": [ { "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl, 10.1.0.sw" + }, + { + "tag": "default", + "text": "false" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableCustomColumnGroups: true,\n});\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 817, + "line": 1145, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 1478, - "name": "RuntimeFilter" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeFilters" + "name": "Omit.enableCustomColumnGroups" } }, { - "id": 1981, - "name": "runtimeParameters", + "id": 1928, + "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "Enable the V2 shell. This can provide performance benefits\ndue to a lighterweight shell.", "tags": [ { - "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n liveboardId: '123',\n enableV2Shell_experimental: true\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + "tag": "version", + "text": "SDK: 1.31.2 | ThoughtSpot: 10.0.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 835, + "line": 1089, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "id": 2274, - "name": "RuntimeParameter" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeParameters" + "name": "Omit.enableV2Shell_experimental" } }, { - "id": 1966, - "name": "showAlerts", + "id": 1924, + "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "shortText": "Boolean to exclude runtimeFilters in the URL\nBy default it is true, this flag removes runtime filters from the URL\nwhen set to false, runtime filters will be included in the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + "tag": "default", + "text": "false" }, { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.24.0 | ThoughtSpot: 9.5.0.cl\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 798, + "line": 938, "character": 4 } ], @@ -30597,19 +30433,20 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.showAlerts" + "name": "Omit.excludeRuntimeFiltersfromURL" } }, { - "id": 1941, - "name": "showLiveboardDescription", + "id": 1927, + "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the Liveboard description.", + "shortText": "Boolean to exclude runtimeParameters from the URL\nwhen set to true, this flag removes runtime parameters from the URL.", + "text": "Irrespective of this flag, runtime filters ( if passed ) will be applied to the\nembedded view.", "tags": [ { "tag": "default", @@ -30617,55 +30454,51 @@ }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardDescription:true,\n})\n```\n" + "text": "SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 232, + "fileName": "types.ts", + "line": 1075, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.excludeRuntimeParametersfromURL" } }, { - "id": 1948, - "name": "showLiveboardReverifyBanner", + "id": 1897, + "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to show/hide the re-verify banner\nin Liveboard compact header", + "shortText": "Exclude the search token string from the URL.\nIf set to true, the search token string is not appended to the URL.", "tags": [ { - "tag": "default", - "text": "true" - }, - { - "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + "tag": "version:", + "text": "SDK: 1.35.7 | ThoughtSpot: 10.8.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardReverifyBanner: true,\n})\n```\n" + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n },\n excludeSearchTokenStringFromURL: true,\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 340, + "fileName": "embed/search-bar.tsx", + "line": 97, "character": 4 } ], @@ -30675,15 +30508,15 @@ } }, { - "id": 1940, - "name": "showLiveboardTitle", + "id": 1914, + "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the Liveboard title.", + "shortText": "This flag can be used to expose translation IDs on the embedded app.", "tags": [ { "tag": "default", @@ -30691,127 +30524,135 @@ }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.7.0.cl, 9.8.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardTitle:true,\n})\n```\n" + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 219, + "fileName": "types.ts", + "line": 1107, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.exposeTranslationIDs" } }, { - "id": 1947, - "name": "showLiveboardVerifiedBadge", + "id": 1918, + "name": "frameParams", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag is used to show/hide verified icon in the Liveboard compact header", + "shortText": "The width and height dimensions to render an embedded\nobject inside your app. Specify the values in pixels or percentage.", "tags": [ - { - "tag": "default", - "text": "true" - }, { "tag": "version", - "text": "SDK: 1.35.0 | ThoughtSpot:10.4.0.cl" + "text": "SDK: 1.1.0 | ThoughtSpot: ts7.may.cl, 7.2.1" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n showLiveboardVerifiedBadge: true,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n frameParams: {\n width: '500px' | '50%',\n height: '400px' | '60%',\n },\n});\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 325, + "fileName": "types.ts", + "line": 702, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "id": 2124, + "name": "FrameParams" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.frameParams" } }, { - "id": 1945, - "name": "showPreviewLoader", + "id": 1906, + "name": "hiddenActions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show a preview image of the visualization before the visualization loads.\nOnly works for visualizations embeds with a viz id.", - "text": "Also, viz snashot should be enabled in the ThoughtSpot instance.\nContact ThoughtSpot support to enable this feature.\n\nSince, this will show preview images, be careful that it may show\nundesired data to the user when using row level security.", + "shortText": "The list of actions to hide from the embedded.\nThis actions will be hidden from the user.\nUse this to hide an action.", "tags": [ + { + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" + }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n liveboardId: 'liveboard-id',\n vizId: 'viz-id',\n showPreviewLoader: true,\n});\nembed.render();\n```" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenActions: [Action.Download, Action.Export]\n});\n```" }, { - "tag": "version", - "text": "SDK: 1.32.0 | ThoughtSpot: 10.0.0.cl\n" + "tag": "important", + "text": "\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 294, + "fileName": "types.ts", + "line": 767, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 1655, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.hiddenActions" } }, { - "id": 1963, - "name": "visibleActions", + "id": 1903, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", - "text": "Use either this or hiddenActions.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is available only in full app embedding.", "tags": [ { "tag": "version", - "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" - }, - { - "tag": "important", - "text": "" + "text": "SDK: 1.38.0 | ThoughtSpot: 10.9.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 785, + "line": 1176, "character": 4 } ], @@ -30819,399 +30660,389 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, - "name": "Action" + "id": 2339, + "name": "ListPageColumns" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.visibleActions" + "name": "Omit.hiddenListColumns" } }, { - "id": 1965, - "name": "visibleTabs", + "id": 1922, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", - "text": "Use either `visibleTabs` or `hiddenTabs`.", + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", "tags": [ { "tag": "version", - "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1006, + "line": 888, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "boolean" }, "inheritedFrom": { "type": "reference", - "name": "Omit.visibleTabs" + "name": "Omit.insertAsSibling" } }, { - "id": 1934, - "name": "visibleVizs", + "id": 1910, + "name": "linkOverride", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Array of visualization IDs which should be visible when the Liveboard\nrenders. This can be changed by triggering the `SetVisibleVizs`\nevent.", + "shortText": "Flag to override the *Open Link in New Tab* context menu option.", "tags": [ { "tag": "version", - "text": "SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleVizs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n linkOverride:false,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 150, + "fileName": "types.ts", + "line": 912, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.linkOverride" } }, { - "id": 1932, - "name": "vizId", + "id": 1908, + "name": "locale", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The visualization within the Liveboard to display.", + "shortText": "The locale settings to apply to the embedded view.", "tags": [ { "tag": "version", - "text": "SDK: 1.9.1 | ThoughtSpot: 8.1.0.cl, 8.4.1-sw" + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n vizId:'430496d6-6903-4601-937e-2c691821af3c',\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n locale:'en',\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/liveboard.ts", - "line": 121, + "fileName": "types.ts", + "line": 847, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.locale" } - } - ], - "groups": [ + }, { - "title": "Properties", + "id": 1913, + "name": "overrideOrgId", "kind": 1024, - "children": [ - 1937, - 1955, - 1989, - 1968, - 1953, - 1954, - 1990, - 1928, - 1971, - 1961, - 1960, - 1985, - 1944, - 1943, - 1991, - 1988, - 1929, - 1984, - 1987, - 1973, - 1977, - 1927, - 1962, - 1959, - 1964, - 1949, - 1939, - 1938, - 1982, - 1946, - 1942, - 1969, - 1930, - 1936, - 1967, - 1972, - 1975, - 1933, - 1974, - 1980, - 1981, - 1966, - 1941, - 1948, - 1940, - 1947, - 1945, - 1963, - 1965, - 1934, - 1932 - ] - } - ], - "sources": [ - { - "fileName": "embed/liveboard.ts", - "line": 39, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Overrides an Org context for embedding application users.\nThis parameter allows a user authenticated to one Org to view the\nobjects from another Org.\nThe `overrideOrgId` setting is honoured only if the\nPer Org URL feature is enabled on your ThoughtSpot instance.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other options\n overrideOrgId: 142536\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.35.0 | ThoughtSpot: 10.5.0.cl\n" + } + ] + }, + "sources": [ { - "type": "union", - "types": [ - { - "type": "literal", - "value": "hiddenHomepageModules" - }, - { - "type": "literal", - "value": "hiddenHomeLeftNavItems" - }, - { - "type": "literal", - "value": "reorderedHomepageModules" - } - ] + "fileName": "types.ts", + "line": 1161, + "character": 4 } ], - "name": "Omit" - } - ] - }, - { - "id": 1478, - "name": "RuntimeFilter", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "A filter that can be applied to ThoughtSpot answers, Liveboards, or\nvisualizations at runtime." - }, - "children": [ + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.overrideOrgId" + } + }, { - "id": 1479, - "name": "columnName", + "id": 1916, + "name": "preRenderId", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The name of the column to filter on (case-sensitive)" + "shortText": "PreRender id to be used for PreRendering the embed.\nUse PreRender to render the embed in the background and then\nshow or hide the rendered embed using showPreRender or hidePreRender respectively.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n preRenderId: \"preRenderId-123\"\n});\nembed.showPreRender();\n```" + }, + { + "tag": "version", + "text": "SDK: 1.25.0 | ThoughtSpot: 9.6.0.cl, 9.8.0.sw\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 1374, + "line": 1039, "character": 4 } ], "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.preRenderId" } }, { - "id": 1480, - "name": "operator", + "id": 1915, + "name": "primaryAction", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The operator to apply" + "shortText": "The primary action to display on top of the viz for Liveboard and App Embed.\nUse this to set the primary action.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n primaryAction: Action.Download\n});\n```\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 1378, + "line": 739, "character": 4 } ], "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { "type": "reference", - "id": 1482, - "name": "RuntimeFilterOp" + "name": "Omit.primaryAction" } }, { - "id": 1481, - "name": "values", + "id": 1921, + "name": "runtimeParameters", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The list of operands. Some operators like EQ, LE accept\na single operand, whereas other operators like BW and IN accept multiple\noperands." + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "tags": [ + { + "tag": "version", + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 1384, + "line": 835, "character": 4 } ], "type": { "type": "array", "elementType": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - }, - { - "type": "intrinsic", - "name": "bigint" - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] + "type": "reference", + "id": 2279, + "name": "RuntimeParameter" } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.runtimeParameters" } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1479, - 1480, - 1481 - ] - } - ], - "sources": [ - { - "fileName": "types.ts", - "line": 1370, - "character": 17 - } - ] - }, - { - "id": 2274, - "name": "RuntimeParameter", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "comment": { - "shortText": "A filter that can be applied to ThoughtSpot Answers, Liveboards, or\nvisualizations at runtime." - }, - "children": [ + }, { - "id": 2275, - "name": "name", + "id": 1896, + "name": "searchOptions", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "The name of the runtime parameter to filter on (case-sensitive)" + "shortText": "Configuration for search options.\nIncludes the following properties:", + "text": "`searchTokenString`: Search tokens to pass in the query.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.4.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n }\n})\n```\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 1394, + "fileName": "embed/search-bar.tsx", + "line": 81, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "name": "SearchOptions" } }, { - "id": 2276, - "name": "value", + "id": 1895, + "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, "comment": { - "shortText": "Values" + "shortText": "Boolean to define if the last selected data source should be used", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.24.0, ThoughtSpot 9.5.0.cl, 9.5.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n useLastSelectedSources:false,\n})\n```\n" + } + ] }, "sources": [ { - "fileName": "types.ts", - "line": 1398, + "fileName": "embed/search-bar.tsx", + "line": 58, "character": 4 } ], "type": { - "type": "union", - "types": [ + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1907, + "name": "visibleActions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of actions to display from the primary menu, more menu\n(...), and the contextual menu. These will be only actions that\nare visible to the user.\nUse this to hide all actions except the ones you want to show.", + "text": "Use either this or hiddenActions.", + "tags": [ { - "type": "intrinsic", - "name": "string" + "tag": "version", + "text": "SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw" }, { - "type": "intrinsic", - "name": "number" + "tag": "important", + "text": "" }, { - "type": "intrinsic", - "name": "boolean" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n visibleActions: [Action.Download, Action.Export]\n});\n```\n" } ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 785, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1655, + "name": "Action" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.visibleActions" } } ], @@ -31220,32 +31051,104 @@ "title": "Properties", "kind": 1024, "children": [ - 2275, - 2276 + 1899, + 1929, + 1909, + 1898, + 1894, + 1893, + 1912, + 1905, + 1904, + 1925, + 1930, + 1928, + 1924, + 1927, + 1897, + 1914, + 1918, + 1906, + 1903, + 1922, + 1910, + 1908, + 1913, + 1916, + 1915, + 1921, + 1896, + 1895, + 1907 ] } ], "sources": [ { - "fileName": "types.ts", - "line": 1390, + "fileName": "embed/search-bar.tsx", + "line": 9, "character": 17 } + ], + "extendedTypes": [ + { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "name": "ViewConfig" + }, + { + "type": "union", + "types": [ + { + "type": "literal", + "value": "runtimeFilters" + }, + { + "type": "literal", + "value": "showAlerts" + }, + { + "type": "literal", + "value": "dataPanelV2" + }, + { + "type": "literal", + "value": "hiddenHomepageModules" + }, + { + "type": "literal", + "value": "hiddenHomeLeftNavItems" + }, + { + "type": "literal", + "value": "hiddenTabs" + }, + { + "type": "literal", + "value": "visibleTabs" + }, + { + "type": "literal", + "value": "reorderedHomepageModules" + } + ] + } + ], + "name": "Omit" + } ] }, { - "id": 1992, - "name": "SageViewConfig", + "id": 1837, + "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { - "shortText": "The configuration attributes for the embedded Natural language search view. Based on\nGPT and LLM.", + "shortText": "The configuration attributes for the embedded search view.", "tags": [ - { - "tag": "version:", - "text": "SDK: 1.23.0 | ThoughtSpot: 9.8.0.cl, 9.8.0.sw" - }, { "tag": "group", "text": "Embed components\n" @@ -31254,7 +31157,7 @@ }, "children": [ { - "id": 2005, + "id": 1857, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -31284,20 +31187,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2006, + "id": 1858, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2007, + "id": 1859, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2008, + "id": 1860, "name": "key", "kind": 32768, "flags": {}, @@ -31333,7 +31236,106 @@ } }, { - "id": 2037, + "id": 1849, + "name": "answerId", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The GUID of a saved answer to load initially.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n answerId:'sed-1234',\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 233, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1839, + "name": "collapseDataPanel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If set to true, the data panel is collapsed on load,\nbut can be expanded manually.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n collapseDataPanel:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 104, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1838, + "name": "collapseDataSources", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If set to true, the data sources panel is collapsed on load,\nbut can be expanded manually.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n collapseDataSources:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 91, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1889, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -31374,7 +31376,44 @@ } }, { - "id": 2016, + "id": 1852, + "name": "collapseSearchBarInitially", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "To set the initial state of the search bar in case of saved-answers.", + "tags": [ + { + "tag": "default", + "text": "false" + }, + { + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + }, + { + "tag": "deprecated", + "text": "Use {@link collapseSearchBar} instead\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 258, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1868, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -31403,7 +31442,7 @@ ], "type": { "type": "reference", - "id": 1780, + "id": 1785, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -31412,7 +31451,7 @@ } }, { - "id": 2004, + "id": 1856, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -31441,7 +31480,7 @@ ], "type": { "type": "reference", - "id": 2159, + "id": 2164, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -31450,7 +31489,44 @@ } }, { - "id": 2038, + "id": 1854, + "name": "dataPanelCustomGroupsAccordionInitialState", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "This controls the initial behaviour of custom column groups accordion.\nIt takes DataPanelCustomColumnGroupsAccordionState enum values as input.\nList of different enum values:-\n- EXPAND_ALL: Expand all the accordion initially in data panel v2.\n- COLLAPSE_ALL: Collapse all the accordions initially in data panel v2.\n- EXPAND_FIRST: Expand the first accordion and collapse the rest.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" + }, + { + "tag": "default", + "text": "DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataPanelCustomGroupsAccordionInitialState:\n DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 282, + "character": 4 + } + ], + "type": { + "type": "reference", + "name": "DataPanelCustomColumnGroupsAccordionState" + } + }, + { + "id": 1890, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -31491,7 +31567,7 @@ } }, { - "id": 2002, + "id": 1845, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -31499,12 +31575,22 @@ "isOptional": true }, "comment": { - "shortText": "The data source GUID (Worksheet GUID) to set on load." + "shortText": "The array of data source GUIDs to set on load.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.19.0" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataSource:'id-234',\n})\n```\n" + } + ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 104, + "fileName": "embed/search.ts", + "line": 179, "character": 4 } ], @@ -31514,73 +31600,80 @@ } }, { - "id": 2019, - "name": "disableRedirectionLinksInNewTab", + "id": 1844, + "name": "dataSources", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "shortText": "The array of data source GUIDs to set on load.\nOnly a single data source is supported currently.", "tags": [ { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + "tag": "deprecated", + "text": "Use `dataSource` instead." }, { - "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataSources:['id-234','id-456'],\n})\n```\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1119, + "fileName": "embed/search.ts", + "line": 167, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } } }, { - "id": 1997, - "name": "disableWorksheetChange", + "id": 1871, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Disable the worksheet selection option.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + }, { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 76, + "fileName": "types.ts", + "line": 1119, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 2011, + "id": 1863, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -31617,7 +31710,7 @@ } }, { - "id": 2010, + "id": 1862, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -31648,7 +31741,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, @@ -31658,7 +31751,7 @@ } }, { - "id": 2033, + "id": 1885, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -31699,7 +31792,7 @@ } }, { - "id": 2039, + "id": 1891, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -31740,7 +31833,40 @@ } }, { - "id": 2036, + "id": 1842, + "name": "enableSearchAssist", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If set to true, the Search Assist feature is enabled.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.13.0 | ThoughtSpot: 8.5.0.cl, 8.8.1-sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableSearchAssist:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 142, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1888, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -31777,7 +31903,7 @@ } }, { - "id": 2032, + "id": 1884, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -31815,7 +31941,7 @@ } }, { - "id": 2035, + "id": 1887, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -31853,7 +31979,40 @@ } }, { - "id": 2021, + "id": 1848, + "name": "excludeSearchTokenStringFromURL", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Exclude the search token string from the URL.\nIf set to true, the search token string is not appended to the URL.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.35.7 | ThoughtSpot: 10.8.0.cl" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n },\n excludeSearchTokenStringFromURL: true,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 221, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1873, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -31890,7 +32049,77 @@ } }, { - "id": 2025, + "id": 1855, + "name": "focusSearchBarOnRender", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Flag to remove focus from search bar initially when user\nlands on search embed page.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.32.0 | Thoughtspot: 10.3.0.cl" + }, + { + "tag": "default", + "text": "true" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\nfocusSearchBarOnRender: false,\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 296, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1843, + "name": "forceTable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "If set to true, the tabular view is set as the default\nformat for presenting search data.", + "tags": [ + { + "tag": "version:", + "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n forceTable:true,\n})\n" + } + ] + }, + "sources": [ + { + "fileName": "embed/search.ts", + "line": 154, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1877, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -31919,7 +32148,7 @@ ], "type": { "type": "reference", - "id": 2119, + "id": 2124, "name": "FrameParams" }, "inheritedFrom": { @@ -31928,7 +32157,7 @@ } }, { - "id": 2012, + "id": 1864, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -31963,7 +32192,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, @@ -31973,7 +32202,7 @@ } }, { - "id": 2009, + "id": 1861, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -32005,7 +32234,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2334, + "id": 2339, "name": "ListPageColumns" } }, @@ -32015,55 +32244,30 @@ } }, { - "id": 1999, - "name": "hideAutocompleteSuggestions", + "id": 1840, + "name": "hideDataSources", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide autocomplete suggestions for the search query string.", + "shortText": "Show or hide the data sources panel.", "tags": [ { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/sage.ts", - "line": 86, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1996, - "name": "hideSageAnswerHeader", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Show or hide the Answer header, that is, the `AI Answer` title\nat the top of the Answer page.", - "tags": [ + "tag": "version:", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.1.0.sw" + }, { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.10.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideDataSources:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 71, + "fileName": "embed/search.ts", + "line": 116, "character": 4 } ], @@ -32073,26 +32277,30 @@ } }, { - "id": 2001, - "name": "hideSampleQuestions", + "id": 1841, + "name": "hideResults", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide sample questions.\nThe sample questions are autogenerated based on the worksheet\nselected for the search operation.", + "shortText": "Show or hide the charts and tables in search answers.\nThis attribute can be used to create a custom visualization\nusing raw answer data.", "tags": [ { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + "tag": "version:", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideResults:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 100, + "fileName": "embed/search.ts", + "line": 130, "character": 4 } ], @@ -32102,30 +32310,30 @@ } }, { - "id": 1995, - "name": "hideSearchBarTitle", + "id": 1850, + "name": "hideSearchBar", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the search bar title.", + "shortText": "If set to true, the search page will render without the Search Bar\nThe chart/table should still be visible.", "tags": [ { "tag": "version", - "text": "SDK: 1.29.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw" + "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { - "tag": "deprecated", - "text": "Thoughtspot: 9.10.0.cl | search bar doesn't have the title from 9.10.0.cl\n" + "tag": "example", + "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideSearchBar:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 65, + "fileName": "embed/search.ts", + "line": 246, "character": 4 } ], @@ -32135,73 +32343,73 @@ } }, { - "id": 1998, - "name": "hideWorksheetSelector", + "id": 1882, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide the worksheet selection panel.", + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", "tags": [ { "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 81, + "fileName": "types.ts", + "line": 888, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.insertAsSibling" } }, { - "id": 2030, - "name": "insertAsSibling", + "id": 1853, + "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "shortText": "Flag to enable onBeforeSearchExecute Embed Event", "tags": [ { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + "tag": "version:", + "text": "SDK: 1.29.0 | Thoughtspot: 10.1.0.cl\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 888, + "fileName": "embed/search.ts", + "line": 263, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.insertAsSibling" } }, { - "id": 2017, + "id": 1869, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -32238,7 +32446,7 @@ } }, { - "id": 2015, + "id": 1867, "name": "locale", "kind": 1024, "kindString": "Property", @@ -32275,7 +32483,7 @@ } }, { - "id": 2020, + "id": 1872, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -32312,7 +32520,7 @@ } }, { - "id": 2023, + "id": 1875, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -32349,7 +32557,7 @@ } }, { - "id": 2022, + "id": 1874, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -32386,7 +32594,7 @@ } }, { - "id": 2028, + "id": 1880, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -32417,7 +32625,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1478, + "id": 1483, "name": "RuntimeFilter" } }, @@ -32427,7 +32635,7 @@ } }, { - "id": 2029, + "id": 1881, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -32458,7 +32666,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2274, + "id": 2279, "name": "RuntimeParameter" } }, @@ -32468,7 +32676,7 @@ } }, { - "id": 2003, + "id": 1847, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -32476,23 +32684,19 @@ "isOptional": true }, "comment": { - "shortText": "Includes the following properties:", - "text": "`searchQuery`: The search query string to pass in the search bar.\nSupports Natural Language Search queries.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", + "shortText": "Configuration for search options.\nIncludes the following properties:", + "text": "`searchTokenString`: Search tokens to pass in the query.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", "tags": [ { "tag": "example", - "text": "\n```js\nsearchOptions: {\n searchQuery: 'average sales by country and product type',\n executeSearch: true,\n}\n```" - }, - { - "tag": "version", - "text": "SDK: 1.26.0 | Thoughtspot: 9.8.0.cl, 9.8.0.sw\n" + "text": "\n```js\nsearchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n}\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 124, + "fileName": "embed/search.ts", + "line": 205, "character": 4 } ], @@ -32502,92 +32706,92 @@ } }, { - "id": 2014, - "name": "showAlerts", + "id": 1846, + "name": "searchQuery", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "shortText": "The initial search query to load the answer with.", "tags": [ { - "tag": "version", - "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + "tag": "deprecated", + "text": "\n\nUse {@link searchOptions} instead.\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 798, + "fileName": "embed/search.ts", + "line": 186, "character": 4 } ], "type": { "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.showAlerts" + "name": "string" } }, { - "id": 1993, - "name": "showObjectResults", + "id": 1866, + "name": "showAlerts", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, a list of Liveboard and Answers related\nto the natural language search will be shown below the\nAI generated answer.", + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", "tags": [ { - "tag": "deprecated", - "text": "Currently Liveboard and Answers related\nto the natural language search will not be shown for sage\nembed\n" + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 49, + "fileName": "types.ts", + "line": 798, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Omit.showAlerts" } }, { - "id": 2000, - "name": "showObjectSuggestions", + "id": 1851, + "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide autocomplete suggestions for the search query string.", + "shortText": "Flag to set if last selected dataSource should be used", "tags": [ { - "tag": "deprecated", - "text": "\nCurrently, the object suggestions will not be shown for Natural Language Search.\nYou can use {@link hideAutocompleteSuggestions} instead.\n" + "tag": "version:", + "text": "SDK: 1.24.0\n" } ] }, "sources": [ { - "fileName": "embed/sage.ts", - "line": 93, + "fileName": "embed/search.ts", + "line": 251, "character": 4 } ], @@ -32597,7 +32801,7 @@ } }, { - "id": 2013, + "id": 1865, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -32633,7 +32837,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, @@ -32648,50 +32852,58 @@ "title": "Properties", "kind": 1024, "children": [ - 2005, - 2037, - 2016, - 2004, - 2038, - 2002, - 2019, - 1997, - 2011, - 2010, - 2033, - 2039, - 2036, - 2032, - 2035, - 2021, - 2025, - 2012, - 2009, - 1999, - 1996, - 2001, - 1995, - 1998, - 2030, - 2017, - 2015, - 2020, - 2023, - 2022, - 2028, - 2029, - 2003, - 2014, - 1993, - 2000, - 2013 + 1857, + 1849, + 1839, + 1838, + 1889, + 1852, + 1868, + 1856, + 1854, + 1890, + 1845, + 1844, + 1871, + 1863, + 1862, + 1885, + 1891, + 1842, + 1888, + 1884, + 1887, + 1848, + 1873, + 1855, + 1843, + 1877, + 1864, + 1861, + 1840, + 1841, + 1850, + 1882, + 1853, + 1869, + 1867, + 1872, + 1875, + 1874, + 1880, + 1881, + 1847, + 1846, + 1866, + 1851, + 1865 ] } ], "sources": [ { - "fileName": "embed/sage.ts", - "line": 36, + "fileName": "embed/search.ts", + "line": 70, "character": 17 } ], @@ -32734,13 +32946,153 @@ ] }, { - "id": 1887, - "name": "SearchBarViewConfig", + "id": 1452, + "name": "SessionInterface", + "kind": 256, + "kindString": "Interface", + "flags": {}, + "children": [ + { + "id": 1455, + "name": "acSession", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 14, + "character": 4 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1456, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1458, + "name": "genNo", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 14, + "character": 36 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1457, + "name": "sessionId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 14, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1458, + 1457 + ] + } + ] + } + } + }, + { + "id": 1454, + "name": "genNo", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 13, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1453, + "name": "sessionId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 12, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1455, + 1454, + 1453 + ] + } + ], + "sources": [ + { + "fileName": "utils/graphql/answerService/answerService.ts", + "line": 11, + "character": 17 + } + ] + }, + { + "id": 1067, + "name": "SpotterAgentEmbedViewConfig", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { + "shortText": "Configuration for bodyless conversation options.", "tags": [ + { + "tag": "deprecated", + "text": "Formally known as BodylessConversationViewConfig" + }, { "tag": "group", "text": "Embed components\n" @@ -32749,7 +33101,7 @@ }, "children": [ { - "id": 1894, + "id": 1082, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32779,20 +33131,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1895, + "id": 1083, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1896, + "id": 1084, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1897, + "id": 1085, "name": "key", "kind": 32768, "flags": {}, @@ -32824,11 +33176,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.additionalFlags" + "name": "ViewConfig.additionalFlags" } }, { - "id": 1924, + "id": 1103, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -32865,11 +33217,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.collapseSearchBar" + "name": "ViewConfig.collapseSearchBar" } }, { - "id": 1904, + "id": 1088, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -32898,16 +33250,16 @@ ], "type": { "type": "reference", - "id": 1780, + "id": 1785, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { "type": "reference", - "name": "Omit.contextMenuTrigger" + "name": "ViewConfig.contextMenuTrigger" } }, { - "id": 1893, + "id": 1086, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32936,89 +33288,57 @@ ], "type": { "type": "reference", - "id": 2159, + "id": 2164, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "name": "Omit.customizations" - } - }, - { - "id": 1889, - "name": "dataSource", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Pass the ID of the source to be selected.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.19.0, ThoughtSpot 9.0.0.cl, 9.0.1.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n dataSource:'id-2345',\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search-bar.tsx", - "line": 46, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" + "name": "ViewConfig.customizations" } }, { - "id": 1888, - "name": "dataSources", + "id": 1106, + "name": "dataPanelV2", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The array of data source GUIDs to set on load.\nOnly a single data source is supported currently.", + "shortText": "Flag to control Data panel experience", "tags": [ { - "tag": "deprecated", - "text": "Use `dataSource` instead" + "tag": "default", + "text": "false" }, { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.1-sw" + "tag": "version", + "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n dataSources:['id-2345','id-2345'],\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n dataPanelV2: true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 34, + "fileName": "types.ts", + "line": 1132, "character": 4 } ], "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.dataPanelV2" } }, { - "id": 1907, + "id": 1105, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -33051,11 +33371,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" + "name": "ViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1900, + "id": 1075, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -33088,11 +33408,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActionReason" + "name": "ViewConfig.disabledActionReason" } }, { - "id": 1899, + "id": 1073, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -33123,17 +33443,17 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActions" + "name": "ViewConfig.disabledActions" } }, { - "id": 1920, + "id": 1099, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -33170,11 +33490,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" + "name": "ViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1925, + "id": 1107, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -33211,11 +33531,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableCustomColumnGroups" + "name": "ViewConfig.enableCustomColumnGroups" } }, { - "id": 1923, + "id": 1102, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -33248,11 +33568,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableV2Shell_experimental" + "name": "ViewConfig.enableV2Shell_experimental" } }, { - "id": 1919, + "id": 1092, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -33286,11 +33606,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeFiltersfromURL" + "name": "ViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1922, + "id": 1101, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -33324,44 +33644,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeParametersfromURL" - } - }, - { - "id": 1892, - "name": "excludeSearchTokenStringFromURL", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Exclude the search token string from the URL.\nIf set to true, the search token string is not appended to the URL.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.35.7 | ThoughtSpot: 10.8.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n },\n excludeSearchTokenStringFromURL: true,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search-bar.tsx", - "line": 97, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "name": "ViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1909, + "id": 1104, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -33394,11 +33681,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.exposeTranslationIDs" + "name": "ViewConfig.exposeTranslationIDs" } }, { - "id": 1913, + "id": 1070, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -33427,16 +33714,16 @@ ], "type": { "type": "reference", - "id": 2119, + "id": 2124, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "name": "Omit.frameParams" + "name": "ViewConfig.frameParams" } }, { - "id": 1901, + "id": 1076, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -33471,17 +33758,100 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenActions" + "name": "ViewConfig.hiddenActions" } }, { - "id": 1898, + "id": 1097, + "name": "hiddenHomeLeftNavItems", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." + }, + { + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1024, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2130, + "name": "HomeLeftNavItem" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomeLeftNavItems" + } + }, + { + "id": 1094, + "name": "hiddenHomepageModules", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 971, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2140, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomepageModules" + } + }, + { + "id": 1109, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -33513,17 +33883,57 @@ "type": "array", "elementType": { "type": "reference", - "id": 2334, + "id": 2339, "name": "ListPageColumns" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenListColumns" + "name": "ViewConfig.hiddenListColumns" } }, { - "id": 1917, + "id": 1093, + "name": "hiddenTabs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" + }, + { + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 954, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenTabs" + } + }, + { + "id": 1087, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -33556,11 +33966,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.insertAsSibling" + "name": "ViewConfig.insertAsSibling" } }, { - "id": 1905, + "id": 1089, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -33593,11 +34003,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.linkOverride" + "name": "ViewConfig.linkOverride" } }, { - "id": 1903, + "id": 1081, "name": "locale", "kind": 1024, "kindString": "Property", @@ -33630,11 +34040,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.locale" + "name": "ViewConfig.locale" } }, { - "id": 1908, + "id": 1108, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -33667,11 +34077,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.overrideOrgId" + "name": "ViewConfig.overrideOrgId" } }, { - "id": 1911, + "id": 1098, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -33704,11 +34114,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.preRenderId" + "name": "ViewConfig.preRenderId" } }, { - "id": 1910, + "id": 1074, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -33741,34 +34151,35 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.primaryAction" + "name": "ViewConfig.primaryAction" } }, { - "id": 1916, - "name": "runtimeParameters", + "id": 1095, + "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 835, + "line": 988, "character": 4 } ], @@ -33776,84 +34187,136 @@ "type": "array", "elementType": { "type": "reference", - "id": 2274, - "name": "RuntimeParameter" + "id": 2140, + "name": "HomepageModule" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeParameters" + "name": "ViewConfig.reorderedHomepageModules" } }, { - "id": 1891, - "name": "searchOptions", + "id": 1079, + "name": "runtimeFilters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Configuration for search options.\nIncludes the following properties:", - "text": "`searchTokenString`: Search tokens to pass in the query.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.4.0.sw" + "tag": "version", + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n }\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 81, + "fileName": "types.ts", + "line": 817, "character": 4 } ], "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 1483, + "name": "RuntimeFilter" + } + }, + "inheritedFrom": { "type": "reference", - "name": "SearchOptions" + "name": "ViewConfig.runtimeFilters" } }, { - "id": 1890, - "name": "useLastSelectedSources", + "id": 1080, + "name": "runtimeParameters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Boolean to define if the last selected data source should be used", + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.24.0, ThoughtSpot 9.5.0.cl, 9.5.0.sw" + "tag": "version", + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchBarEmbed('#tsEmbed', {\n ... // other options\n useLastSelectedSources:false,\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 58, + "fileName": "types.ts", + "line": 835, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2279, + "name": "RuntimeParameter" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.runtimeParameters" + } + }, + { + "id": 1078, + "name": "showAlerts", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "Show alert messages and toast messages in the embedded\nview in full app embed.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.11.0 | ThoughtSpot: 8.3.0.cl, 8.4.1.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#embed-container', {\n ... // other options\n showAlerts:true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 798, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.showAlerts" } }, { - "id": 1902, + "id": 1077, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -33889,13 +34352,75 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.visibleActions" + "name": "ViewConfig.visibleActions" + } + }, + { + "id": 1096, + "name": "visibleTabs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", + "text": "Use either `visibleTabs` or `hiddenTabs`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 1006, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleTabs" + } + }, + { + "id": 1068, + "name": "worksheetId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "comment": { + "shortText": "The ID of the worksheet to use for the conversation." + }, + "sources": [ + { + "fileName": "embed/bodyless-conversation.ts", + "line": 16, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "string" } } ], @@ -33904,104 +34429,69 @@ "title": "Properties", "kind": 1024, "children": [ - 1894, - 1924, - 1904, - 1893, - 1889, - 1888, - 1907, - 1900, - 1899, - 1920, - 1925, - 1923, - 1919, - 1922, - 1892, - 1909, - 1913, - 1901, - 1898, - 1917, - 1905, - 1903, - 1908, - 1911, - 1910, - 1916, - 1891, - 1890, - 1902 + 1082, + 1103, + 1088, + 1086, + 1106, + 1105, + 1075, + 1073, + 1099, + 1107, + 1102, + 1092, + 1101, + 1104, + 1070, + 1076, + 1097, + 1094, + 1109, + 1093, + 1087, + 1089, + 1081, + 1108, + 1098, + 1074, + 1095, + 1079, + 1080, + 1078, + 1077, + 1096, + 1068 ] } ], "sources": [ { - "fileName": "embed/search-bar.tsx", - "line": 9, + "fileName": "embed/bodyless-conversation.ts", + "line": 12, "character": 17 } ], "extendedTypes": [ { "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "runtimeFilters" - }, - { - "type": "literal", - "value": "showAlerts" - }, - { - "type": "literal", - "value": "dataPanelV2" - }, - { - "type": "literal", - "value": "hiddenHomepageModules" - }, - { - "type": "literal", - "value": "hiddenHomeLeftNavItems" - }, - { - "type": "literal", - "value": "hiddenTabs" - }, - { - "type": "literal", - "value": "visibleTabs" - }, - { - "type": "literal", - "value": "reorderedHomepageModules" - } - ] - } - ], - "name": "Omit" + "name": "ViewConfig" } ] }, { - "id": 1832, - "name": "SearchViewConfig", + "id": 1259, + "name": "SpotterEmbedViewConfig", "kind": 256, "kindString": "Interface", "flags": {}, "comment": { - "shortText": "The configuration attributes for the embedded search view.", + "shortText": "The configuration for the embedded spotterEmbed options.", "tags": [ + { + "tag": "deprecated", + "text": "Formally known as ConversationViewConfig" + }, { "tag": "group", "text": "Embed components\n" @@ -34010,7 +34500,7 @@ }, "children": [ { - "id": 1852, + "id": 1280, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -34040,20 +34530,20 @@ "type": { "type": "reflection", "declaration": { - "id": 1853, + "id": 1281, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 1854, + "id": 1282, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1855, + "id": 1283, "name": "key", "kind": 32768, "flags": {}, @@ -34085,110 +34575,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.additionalFlags" - } - }, - { - "id": 1844, - "name": "answerId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The GUID of a saved answer to load initially.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n answerId:'sed-1234',\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 233, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1834, - "name": "collapseDataPanel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the data panel is collapsed on load,\nbut can be expanded manually.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.34.0 | ThoughtSpot: 10.3.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n collapseDataPanel:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 104, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1833, - "name": "collapseDataSources", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the data sources panel is collapsed on load,\nbut can be expanded manually.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n collapseDataSources:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 91, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "name": "ViewConfig.additionalFlags" } }, { - "id": 1884, + "id": 1301, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -34225,48 +34616,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.collapseSearchBar" - } - }, - { - "id": 1847, - "name": "collapseSearchBarInitially", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "To set the initial state of the search bar in case of saved-answers.", - "tags": [ - { - "tag": "default", - "text": "false" - }, - { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" - }, - { - "tag": "deprecated", - "text": "Use {@link collapseSearchBar} instead\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 258, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "name": "ViewConfig.collapseSearchBar" } }, { - "id": 1863, + "id": 1286, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -34295,16 +34649,16 @@ ], "type": { "type": "reference", - "id": 1780, + "id": 1785, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { "type": "reference", - "name": "Omit.contextMenuTrigger" + "name": "ViewConfig.contextMenuTrigger" } }, { - "id": 1851, + "id": 1284, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -34333,53 +34687,16 @@ ], "type": { "type": "reference", - "id": 2159, + "id": 2164, "name": "CustomisationsInterface" }, "inheritedFrom": { "type": "reference", - "name": "Omit.customizations" - } - }, - { - "id": 1849, - "name": "dataPanelCustomGroupsAccordionInitialState", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "This controls the initial behaviour of custom column groups accordion.\nIt takes DataPanelCustomColumnGroupsAccordionState enum values as input.\nList of different enum values:-\n- EXPAND_ALL: Expand all the accordion initially in data panel v2.\n- COLLAPSE_ALL: Collapse all the accordions initially in data panel v2.\n- EXPAND_FIRST: Expand the first accordion and collapse the rest.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.0.0.cl" - }, - { - "tag": "default", - "text": "DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataPanelCustomGroupsAccordionInitialState:\n DataPanelCustomColumnGroupsAccordionState.EXPAND_ALL,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 282, - "character": 4 - } - ], - "type": { - "type": "reference", - "name": "DataPanelCustomColumnGroupsAccordionState" + "name": "ViewConfig.customizations" } }, { - "id": 1885, + "id": 1264, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -34395,7 +34712,7 @@ }, { "tag": "version", - "text": "SDK: 1.34.0 | ThoughtSpot Cloud: 10.3.0.cl" + "text": "SDK: 1.36.0 | ThoughtSpot Cloud: 10.4.0.cl" }, { "tag": "example", @@ -34405,8 +34722,8 @@ }, "sources": [ { - "fileName": "types.ts", - "line": 1132, + "fileName": "embed/conversation.ts", + "line": 68, "character": 4 } ], @@ -34414,119 +34731,83 @@ "type": "intrinsic", "name": "boolean" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "Omit.dataPanelV2" + "name": "ViewConfig.dataPanelV2" } }, { - "id": 1840, - "name": "dataSource", + "id": 1303, + "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The array of data source GUIDs to set on load.", + "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.19.0" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataSource:'id-234',\n})\n```\n" + "tag": "version", + "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 179, + "fileName": "types.ts", + "line": 1119, "character": 4 } ], "type": { "type": "intrinsic", - "name": "string" - } - }, - { - "id": 1839, - "name": "dataSources", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "The array of data source GUIDs to set on load.\nOnly a single data source is supported currently.", - "tags": [ - { - "tag": "deprecated", - "text": "Use `dataSource` instead." - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n dataSources:['id-234','id-456'],\n})\n```\n" - } - ] + "name": "boolean" }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 167, - "character": 4 - } - ], - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "string" - } + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.disableRedirectionLinksInNewTab" } }, { - "id": 1866, - "name": "disableRedirectionLinksInNewTab", + "id": 1262, + "name": "disableSourceSelection", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "This flag can be used to disable links inside the embedded app,\nand disable redirection of links in a new tab.", + "shortText": "disableSourceSelection : Disables data source selection\nbut still display the selected data source.", "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n disableRedirectionLinksInNewTab: true\n});\n```" + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... // other options\n disableSourceSelection : true,\n})\n```" }, { "tag": "version", - "text": "SDK: 1.32.1 | ThoughtSpot: 10.3.0.cl\n" + "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 1119, + "fileName": "embed/conversation.ts", + "line": 43, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.disableRedirectionLinksInNewTab" } }, { - "id": 1858, + "id": 1273, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34559,11 +34840,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActionReason" + "name": "ViewConfig.disabledActionReason" } }, { - "id": 1857, + "id": 1271, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34594,17 +34875,17 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.disabledActions" + "name": "ViewConfig.disabledActions" } }, { - "id": 1880, + "id": 1297, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34641,11 +34922,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.doNotTrackPreRenderSize" + "name": "ViewConfig.doNotTrackPreRenderSize" } }, { - "id": 1886, + "id": 1304, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34682,44 +34963,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableCustomColumnGroups" - } - }, - { - "id": 1837, - "name": "enableSearchAssist", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the Search Assist feature is enabled.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.13.0 | ThoughtSpot: 8.5.0.cl, 8.8.1-sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n enableSearchAssist:true,\n})\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 142, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "name": "ViewConfig.enableCustomColumnGroups" } }, { - "id": 1883, + "id": 1300, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34752,11 +35000,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.enableV2Shell_experimental" + "name": "ViewConfig.enableV2Shell_experimental" } }, { - "id": 1879, + "id": 1290, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34790,11 +35038,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeFiltersfromURL" + "name": "ViewConfig.excludeRuntimeFiltersfromURL" } }, { - "id": 1882, + "id": 1299, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34828,44 +35076,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.excludeRuntimeParametersfromURL" - } - }, - { - "id": 1843, - "name": "excludeSearchTokenStringFromURL", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Exclude the search token string from the URL.\nIf set to true, the search token string is not appended to the URL.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.35.7 | ThoughtSpot: 10.8.0.cl" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n searchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n },\n excludeSearchTokenStringFromURL: true,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 221, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "name": "ViewConfig.excludeRuntimeParametersfromURL" } }, { - "id": 1868, + "id": 1302, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34898,81 +35113,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.exposeTranslationIDs" - } - }, - { - "id": 1850, - "name": "focusSearchBarOnRender", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "Flag to remove focus from search bar initially when user\nlands on search embed page.", - "tags": [ - { - "tag": "version", - "text": "SDK: 1.32.0 | Thoughtspot: 10.3.0.cl" - }, - { - "tag": "default", - "text": "true" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\nfocusSearchBarOnRender: false,\n});\n```\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 296, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 1838, - "name": "forceTable", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "comment": { - "shortText": "If set to true, the tabular view is set as the default\nformat for presenting search data.", - "tags": [ - { - "tag": "version:", - "text": "SDK: 1.1.0 | ThoughtSpot: 8.1.0.sw" - }, - { - "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n forceTable:true,\n})\n" - } - ] - }, - "sources": [ - { - "fileName": "embed/search.ts", - "line": 154, - "character": 4 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" + "name": "ViewConfig.exposeTranslationIDs" } }, { - "id": 1872, + "id": 1268, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -35001,16 +35146,16 @@ ], "type": { "type": "reference", - "id": 2119, + "id": 2124, "name": "FrameParams" }, "inheritedFrom": { "type": "reference", - "name": "Omit.frameParams" + "name": "ViewConfig.frameParams" } }, { - "id": 1859, + "id": 1274, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -35045,41 +35190,40 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenActions" + "name": "ViewConfig.hiddenActions" } }, { - "id": 1856, - "name": "hiddenListColumns", + "id": 1295, + "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", - "text": "**Note**: This option is available only in full app embedding.", + "shortText": "homepageLeftNavItems : Show or hide the left navigation bar items.\nThere are 8 eight home navigation list items.\nTo hide these items, specify the string in the array.", "tags": [ { - "tag": "version", - "text": "SDK: 1.38.0 | ThoughtSpot: 10.9.0.cl" + "tag": "example", + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomeLeftNavItems : [HomeLeftNavItem.Home,HomeLeftNavItem.Answers],\n})\n```\n\n**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl)." }, { - "tag": "example", - "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 1176, + "line": 1024, "character": 4 } ], @@ -35087,106 +35231,164 @@ "type": "array", "elementType": { "type": "reference", - "id": 2334, - "name": "ListPageColumns" + "id": 2130, + "name": "HomeLeftNavItem" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.hiddenListColumns" + "name": "ViewConfig.hiddenHomeLeftNavItems" } }, { - "id": 1835, - "name": "hideDataSources", + "id": 1292, + "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the data sources panel.", + "shortText": "Hide the home page modules\nFor example: hiddenHomepageModules = [HomepageModule.MyLibrary]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { - "tag": "version:", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.1.0.sw" + "tag": "version", + "text": "SDK: 1.28.0 | ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideDataSources:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenHomepageModules : [HomepageModule.Favorite,HomepageModule.Learning],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 116, + "fileName": "types.ts", + "line": 971, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2140, + "name": "HomepageModule" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenHomepageModules" } }, { - "id": 1836, - "name": "hideResults", + "id": 1306, + "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Show or hide the charts and tables in search answers.\nThis attribute can be used to create a custom visualization\nusing raw answer data.", + "shortText": "Hide list page columns\nFor example: hiddenListColumns = [ListPageColumns.Author]", + "text": "**Note**: This option is available only in full app embedding.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.1.0.sw" + "tag": "version", + "text": "SDK: 1.38.0 | ThoughtSpot: 10.9.0.cl" }, { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideResults:true,\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n hiddenListColumns : [ListPageColumns.Favorite,ListPageColumns.Author],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 130, + "fileName": "types.ts", + "line": 1176, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "array", + "elementType": { + "type": "reference", + "id": 2339, + "name": "ListPageColumns" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenListColumns" } }, { - "id": 1845, - "name": "hideSearchBar", + "id": 1291, + "name": "hiddenTabs", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "If set to true, the search page will render without the Search Bar\nThe chart/table should still be visible.", + "shortText": "The list of tab IDs to hide from the embedded.\nThis Tabs will be hidden from their respective LBs.\nUse this to hide an tabID.", "tags": [ { - "tag": "version", - "text": "SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed', {\n ... // other liveboard view config\n hiddenTabs: [\n'430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726']\n});\n```" }, + { + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 954, + "character": 4 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.hiddenTabs" + } + }, + { + "id": 1266, + "name": "hideSampleQuestions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "hideSampleQuestions : Hide sample questions on\nthe initial screen of the conversation.", + "tags": [ { "tag": "example", - "text": "\n```js\nconst embed = new SearchEmbed('#tsEmbed', {\n ... // other options\n hideSearchBar:true,\n})\n```\n" + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... // other options\n hideSampleQuestions : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 246, + "fileName": "embed/conversation.ts", + "line": 95, "character": 4 } ], @@ -35196,73 +35398,77 @@ } }, { - "id": 1877, - "name": "insertAsSibling", + "id": 1263, + "name": "hideSourceSelection", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", + "shortText": "hideSourceSelection : Hide data source selection", "tags": [ { - "tag": "version", - "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + "tag": "example", + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... // other options\n hideSourceSelection : true,\n})\n```" }, { - "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" + "tag": "version", + "text": "SDK: 1.36.0 | Thoughtspot: 10.6.0.cl\n" } ] }, "sources": [ { - "fileName": "types.ts", - "line": 888, + "fileName": "embed/conversation.ts", + "line": 55, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Omit.insertAsSibling" } }, { - "id": 1848, - "name": "isOnBeforeGetVizDataInterceptEnabled", + "id": 1285, + "name": "insertAsSibling", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to enable onBeforeSearchExecute Embed Event", + "shortText": "Insert as a sibling of the target container, instead of appending to a\nchild inside it.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.29.0 | Thoughtspot: 10.1.0.cl\n" + "tag": "version", + "text": "SDK: 1.2.0 | ThoughtSpot: 9.0.0.cl, 9.0.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n insertAsSibling:true,\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 263, + "fileName": "types.ts", + "line": 888, "character": 4 } ], "type": { "type": "intrinsic", "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.insertAsSibling" } }, { - "id": 1864, + "id": 1287, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35295,11 +35501,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.linkOverride" + "name": "ViewConfig.linkOverride" } }, { - "id": 1862, + "id": 1279, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35332,11 +35538,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.locale" + "name": "ViewConfig.locale" } }, { - "id": 1867, + "id": 1305, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35369,11 +35575,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.overrideOrgId" + "name": "ViewConfig.overrideOrgId" } }, { - "id": 1870, + "id": 1296, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35406,11 +35612,11 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.preRenderId" + "name": "ViewConfig.preRenderId" } }, { - "id": 1869, + "id": 1272, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35443,34 +35649,35 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.primaryAction" + "name": "ViewConfig.primaryAction" } }, { - "id": 1875, - "name": "runtimeFilters", + "id": 1293, + "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "reordering the home page modules\neg: reorderedHomepageModules = [HomepageModule.MyLibrary, HomepageModule.Watchlist]", + "text": "**Note**: This option does not apply to the classic homepage.\nTo access the updated modular homepage, set\n`modularHomeExperience` to `true` (available as Early Access feature in 9.12.5.cl).", "tags": [ { "tag": "version", - "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" + "text": "SDK: 1.28.0| ThoughtSpot: 9.12.5.cl, 10.1.0.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new AppEmbed('#tsEmbed', {\n ... // other options\n reorderedHomepageModules:[HomepageModule.Favorite,HomepageModule.MyLibrary]\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 817, + "line": 988, "character": 4 } ], @@ -35478,40 +35685,40 @@ "type": "array", "elementType": { "type": "reference", - "id": 1478, - "name": "RuntimeFilter" + "id": 2140, + "name": "HomepageModule" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeFilters" + "name": "ViewConfig.reorderedHomepageModules" } }, { - "id": 1876, - "name": "runtimeParameters", + "id": 1277, + "name": "runtimeFilters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", + "shortText": "The list of runtime filters to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ { "tag": "version", - "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + "text": "SDK: 1.9.4 | ThoughtSpot 8.1.0.cl, 8.4.1.sw" }, { "tag": "example", - "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeFilters: [\n {\n columnName: 'value',\n operator: RuntimeFilterOp.EQ,\n values: ['string' | 123 | true],\n },\n ],\n})\n```\n" } ] }, "sources": [ { "fileName": "types.ts", - "line": 835, + "line": 817, "character": 4 } ], @@ -35519,76 +35726,81 @@ "type": "array", "elementType": { "type": "reference", - "id": 2274, - "name": "RuntimeParameter" + "id": 1483, + "name": "RuntimeFilter" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.runtimeParameters" + "name": "ViewConfig.runtimeFilters" } }, { - "id": 1842, - "name": "searchOptions", + "id": 1278, + "name": "runtimeParameters", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Configuration for search options.\nIncludes the following properties:", - "text": "`searchTokenString`: Search tokens to pass in the query.\n\n`executeSearch`: Boolean to define if the search should be executed or not.\nIf it is executed, the focus is placed on the results.\nIf it’s not executed, the focus is placed at the end of\nthe token string in the search bar.", + "shortText": "The list of parameter override to apply to a search Answer,\nvisualization, or Liveboard.", "tags": [ + { + "tag": "version", + "text": "SDK : 1.25.0 | ThoughtSpot: 9.2.0.cl, 9.5.0.sw" + }, { "tag": "example", - "text": "\n```js\nsearchOptions: {\n searchTokenString: '[quantity purchased] [region]',\n executeSearch: true,\n}\n```\n" + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n runtimeParameters: [\n {\n name: 'value',\n value: 'string' | 123 | true,\n },\n ],\n})\n```\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 205, + "fileName": "types.ts", + "line": 835, "character": 4 } ], "type": { + "type": "array", + "elementType": { + "type": "reference", + "id": 2279, + "name": "RuntimeParameter" + } + }, + "inheritedFrom": { "type": "reference", - "name": "SearchOptions" + "name": "ViewConfig.runtimeParameters" } }, { - "id": 1841, - "name": "searchQuery", + "id": 1261, + "name": "searchOptions", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "The initial search query to load the answer with.", - "tags": [ - { - "tag": "deprecated", - "text": "\n\nUse {@link searchOptions} instead.\n" - } - ] + "shortText": "Ability to pass a starting search query to the conversation." }, "sources": [ { - "fileName": "embed/search.ts", - "line": 186, + "fileName": "embed/conversation.ts", + "line": 30, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "string" + "type": "reference", + "name": "SearchOptions" } }, { - "id": 1861, + "id": 1276, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35621,30 +35833,34 @@ }, "inheritedFrom": { "type": "reference", - "name": "Omit.showAlerts" + "name": "ViewConfig.showAlerts" } }, { - "id": 1846, - "name": "useLastSelectedSources", + "id": 1265, + "name": "showSpotterLimitations", "kind": 1024, "kindString": "Property", "flags": { "isOptional": true }, "comment": { - "shortText": "Flag to set if last selected dataSource should be used", + "shortText": "showSpotterLimitations : show limitation text\nof the spotter underneath the chat input.\ndefault is false.", "tags": [ { - "tag": "version:", - "text": "SDK: 1.24.0\n" + "tag": "example", + "text": "\n```js\nconst embed = new SpotterEmbed('#tsEmbed', {\n ... // other options\n showSpotterLimitations : true,\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.36.0 | Thoughtspot: 10.5.0.cl\n" } ] }, "sources": [ { - "fileName": "embed/search.ts", - "line": 251, + "fileName": "embed/conversation.ts", + "line": 82, "character": 4 } ], @@ -35654,7 +35870,7 @@ } }, { - "id": 1860, + "id": 1275, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35690,221 +35906,69 @@ "type": "array", "elementType": { "type": "reference", - "id": 1650, + "id": 1655, "name": "Action" } }, "inheritedFrom": { "type": "reference", - "name": "Omit.visibleActions" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1852, - 1844, - 1834, - 1833, - 1884, - 1847, - 1863, - 1851, - 1849, - 1885, - 1840, - 1839, - 1866, - 1858, - 1857, - 1880, - 1886, - 1837, - 1883, - 1879, - 1882, - 1843, - 1868, - 1850, - 1838, - 1872, - 1859, - 1856, - 1835, - 1836, - 1845, - 1877, - 1848, - 1864, - 1862, - 1867, - 1870, - 1869, - 1875, - 1876, - 1842, - 1841, - 1861, - 1846, - 1860 - ] - } - ], - "sources": [ - { - "fileName": "embed/search.ts", - "line": 70, - "character": 17 - } - ], - "extendedTypes": [ - { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "name": "ViewConfig" - }, - { - "type": "union", - "types": [ - { - "type": "literal", - "value": "hiddenHomepageModules" - }, - { - "type": "literal", - "value": "hiddenHomeLeftNavItems" - }, - { - "type": "literal", - "value": "hiddenTabs" - }, - { - "type": "literal", - "value": "visibleTabs" - }, - { - "type": "literal", - "value": "reorderedHomepageModules" - } - ] - } - ], - "name": "Omit" - } - ] - }, - { - "id": 1447, - "name": "SessionInterface", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 1450, - "name": "acSession", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 14, - "character": 4 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 1451, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 1453, - "name": "genNo", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 14, - "character": 36 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 1452, - "name": "sessionId", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 14, - "character": 17 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 1453, - 1452 - ] - } - ] - } + "name": "ViewConfig.visibleActions" } }, { - "id": 1449, - "name": "genNo", + "id": 1294, + "name": "visibleTabs", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isOptional": true + }, + "comment": { + "shortText": "The list of tab IDs to show in the embedded Liveboard.\nOnly the tabs specified in the array will be shown in the Liveboard.", + "text": "Use either `visibleTabs` or `hiddenTabs`.", + "tags": [ + { + "tag": "version", + "text": "SDK: 1.26.0 | ThoughtSpot: 9.7.0.cl, 10.1.0.sw" + }, + { + "tag": "example", + "text": "\n```js\nconst embed = new LiveboardEmbed('#embed-container', {\n ... // other options\n visibleTabs: [\n '430496d6-6903-4601-937e-2c691821af3c',\n 'f547ec54-2a37-4516-a222-2b06719af726'\n ]\n})\n```\n" + } + ] + }, "sources": [ { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 13, + "fileName": "types.ts", + "line": 1006, "character": 4 } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "ViewConfig.visibleTabs" } }, { - "id": 1448, - "name": "sessionId", + "id": 1260, + "name": "worksheetId", "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "The ID of the worksheet to use for the conversation." + }, "sources": [ { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 12, + "fileName": "embed/conversation.ts", + "line": 26, "character": 4 } ], @@ -35919,29 +35983,70 @@ "title": "Properties", "kind": 1024, "children": [ - 1450, - 1449, - 1448 + 1280, + 1301, + 1286, + 1284, + 1264, + 1303, + 1262, + 1273, + 1271, + 1297, + 1304, + 1300, + 1290, + 1299, + 1302, + 1268, + 1274, + 1295, + 1292, + 1306, + 1291, + 1266, + 1263, + 1285, + 1287, + 1279, + 1305, + 1296, + 1272, + 1293, + 1277, + 1278, + 1261, + 1276, + 1265, + 1275, + 1294, + 1260 ] } ], "sources": [ { - "fileName": "utils/graphql/answerService/answerService.ts", - "line": 11, + "fileName": "embed/conversation.ts", + "line": 22, "character": 17 } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "ViewConfig" + } ] }, { - "id": 1454, + "id": 1459, "name": "UnderlyingDataPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 1455, + "id": 1460, "name": "columnId", "kind": 1024, "kindString": "Property", @@ -35959,7 +36064,7 @@ } }, { - "id": 1456, + "id": 1461, "name": "dataValue", "kind": 1024, "kindString": "Property", @@ -35982,8 +36087,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1455, - 1456 + 1460, + 1461 ] } ], @@ -35996,14 +36101,14 @@ ] }, { - "id": 2304, + "id": 2309, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2305, + "id": 2310, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -36011,7 +36116,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4978, + "line": 4979, "character": 4 } ], @@ -36024,7 +36129,7 @@ } }, { - "id": 2306, + "id": 2311, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -36032,7 +36137,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4979, + "line": 4980, "character": 4 } ], @@ -36050,21 +36155,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2305, - 2306 + 2310, + 2311 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4977, + "line": 4978, "character": 17 } ] }, { - "id": 2172, + "id": 2177, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -36074,7 +36179,7 @@ }, "children": [ { - "id": 2174, + "id": 2179, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -36104,20 +36209,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2175, + "id": 2180, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2176, + "id": 2181, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2177, + "id": 2182, "name": "selector", "kind": 32768, "flags": {}, @@ -36130,7 +36235,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2178, + "id": 2183, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -36143,14 +36248,14 @@ } ], "indexSignature": { - "id": 2179, + "id": 2184, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2180, + "id": 2185, "name": "declaration", "kind": 32768, "flags": {}, @@ -36172,7 +36277,7 @@ } }, { - "id": 2173, + "id": 2178, "name": "variables", "kind": 1024, "kindString": "Property", @@ -36191,7 +36296,7 @@ ], "type": { "type": "reference", - "id": 2181, + "id": 2186, "name": "CustomCssVariables" } } @@ -36201,8 +36306,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2174, - 2173 + 2179, + 2178 ] } ], @@ -36507,7 +36612,7 @@ ] }, { - "id": 2142, + "id": 2147, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -36534,7 +36639,7 @@ } }, { - "id": 2146, + "id": 2151, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -36549,7 +36654,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2147, + "id": 2152, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -36572,7 +36677,7 @@ ], "signatures": [ { - "id": 2148, + "id": 2153, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -36582,19 +36687,19 @@ }, "parameters": [ { - "id": 2149, + "id": 2154, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2154, + "id": 2159, "name": "MessagePayload" } }, { - "id": 2150, + "id": 2155, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -36604,7 +36709,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2151, + "id": 2156, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -36618,7 +36723,7 @@ ], "signatures": [ { - "id": 2152, + "id": 2157, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -36628,7 +36733,7 @@ }, "parameters": [ { - "id": 2153, + "id": 2158, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -36659,7 +36764,7 @@ } }, { - "id": 2143, + "id": 2148, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -36683,14 +36788,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2144, + "id": 2149, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2145, + "id": 2150, "name": "start", "kind": 1024, "kindString": "Property", @@ -36718,7 +36823,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2145 + 2150 ] } ], @@ -36733,7 +36838,7 @@ } }, { - "id": 2154, + "id": 2159, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -36757,14 +36862,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2155, + "id": 2160, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2157, + "id": 2162, "name": "data", "kind": 1024, "kindString": "Property", @@ -36782,7 +36887,7 @@ } }, { - "id": 2158, + "id": 2163, "name": "status", "kind": 1024, "kindString": "Property", @@ -36802,7 +36907,7 @@ } }, { - "id": 2156, + "id": 2161, "name": "type", "kind": 1024, "kindString": "Property", @@ -36825,9 +36930,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2157, - 2158, - 2156 + 2162, + 2163, + 2161 ] } ], @@ -36891,7 +36996,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1374, + "id": 1379, "name": "AnswerService" } } @@ -37153,7 +37258,7 @@ ], "type": { "type": "reference", - "id": 1374, + "id": 1379, "name": "AnswerService" } }, @@ -37232,7 +37337,7 @@ }, "type": { "type": "reference", - "id": 1784, + "id": 1789, "name": "EmbedConfig" } } @@ -37332,14 +37437,14 @@ }, "type": { "type": "reference", - "id": 1784, + "id": 1789, "name": "EmbedConfig" } } ], "type": { "type": "reference", - "id": 1321, + "id": 1326, "name": "AuthEventEmitter" } } @@ -37479,7 +37584,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2114, + "id": 2119, "name": "PrefetchFeatures" } } @@ -37551,7 +37656,7 @@ ] }, { - "id": 2340, + "id": 2345, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -37567,7 +37672,7 @@ ], "signatures": [ { - "id": 2341, + "id": 2346, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -37761,7 +37866,7 @@ ] }, { - "id": 2284, + "id": 2289, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -37775,7 +37880,7 @@ ], "signatures": [ { - "id": 2285, + "id": 2290, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -37785,7 +37890,7 @@ }, "parameters": [ { - "id": 2286, + "id": 2291, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -37797,7 +37902,7 @@ } }, { - "id": 2287, + "id": 2292, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -37808,7 +37913,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2288, + "id": 2293, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -37827,68 +37932,78 @@ } ], "groups": [ + { + "title": "References", + "kind": 16777216, + "children": [ + 1111, + 1110, + 1308, + 1307 + ] + }, { "title": "Enumerations", "kind": 4, "children": [ - 1650, - 1319, - 1305, - 1312, - 1466, - 1780, - 1646, - 1498, - 2125, - 2300, - 2135, - 1579, - 2334, - 2277, - 1457, - 2114, - 1482, - 2327 + 1655, + 1324, + 1309, + 1316, + 1471, + 1785, + 1651, + 1503, + 2130, + 2305, + 2140, + 1584, + 2339, + 2282, + 1462, + 2119, + 1487, + 2332 ] }, { "title": "Classes", "kind": 128, "children": [ - 1374, + 1379, 872, - 1051, - 1110, 528, 715, 212, - 55 + 55, + 1051, + 1112 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 2040, - 1321, + 2045, + 1326, + 2312, + 2186, + 2174, + 2164, + 1789, + 2124, + 1931, + 1483, + 2279, + 1997, + 1892, + 1837, + 1452, 1067, - 1257, - 2307, - 2181, - 2169, - 2159, - 1784, - 2119, - 1926, - 1478, - 2274, - 1992, - 1887, - 1832, - 1447, - 1454, - 2304, - 2172, + 1259, + 1459, + 2309, + 2177, 21, 25 ] @@ -37897,10 +38012,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2142, - 2146, - 2143, - 2154 + 2147, + 2151, + 2148, + 2159 ] }, { @@ -37916,9 +38031,9 @@ 1, 4, 7, - 2340, + 2345, 37, - 2284 + 2289 ] } ], From 191a5169aacb4802230fa29a275780248c4f8158 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 15 May 2025 11:54:33 +0530 Subject: [PATCH 15/29] deprecated msg fix --- src/embed/bodyless-conversation.ts | 32 +++++++++++++++++++++++++++++- src/embed/conversation.ts | 32 +++++++++++++++++++++++++++--- 2 files changed, 60 insertions(+), 4 deletions(-) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index 3a23bdbc..d82cf1ad 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -6,7 +6,6 @@ import { getQueryParamString } from '../utils'; /** * Configuration for bodyless conversation options. - * @deprecated Formally known as BodylessConversationViewConfig * @group Embed components */ export interface SpotterAgentEmbedViewConfig extends ViewConfig { @@ -16,6 +15,11 @@ export interface SpotterAgentEmbedViewConfig extends ViewConfig { worksheetId: string; } +/** + * Configuration for bodyless conversation options. + * @deprecated Formally known as BodylessConversationViewConfig + * @group Embed components + */ interface ConversationMessageViewConfig extends SpotterAgentEmbedViewConfig { sessionId: string; genNo: number; @@ -116,3 +120,29 @@ export class SpotterAgentEmbed { } } + +/** + * Create a conversation embed, which can be integrated inside + * chatbots or other conversational interfaces. + * @deprecated Renamed to SpotterAgentEmbed + * @example + * ```js + * import { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk'; + * + * const conversation = new SpotterAgentEmbed({ + * worksheetId: 'worksheetId', + * }); + * + * const { container, error } = await conversation.sendMessage('show me sales by region'); + * + * // append the container to the DOM + * document.body.appendChild(container); // or to any other element + * ``` + * @group Embed components + * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl + */ +export class BodylessConversation extends SpotterAgentEmbed { + constructor(container: HTMLElement, viewConfig: SpotterAgentEmbedViewConfig) { + super(viewConfig); + } +} diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index 4fc5f611..b1568381 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -16,7 +16,6 @@ export interface SearchOptions { /** * The configuration for the embedded spotterEmbed options. - * @deprecated Formally known as ConversationViewConfig * @group Embed components */ export interface SpotterEmbedViewConfig extends ViewConfig { @@ -95,9 +94,15 @@ export interface SpotterEmbedViewConfig extends ViewConfig { hideSampleQuestions?: boolean; } +/** + * The configuration for the embedded spotterEmbed options. + * @deprecated Renamed to SpotterEmbedViewConfig + * @group Embed components + */ +export interface ConversationViewConfig extends SpotterEmbedViewConfig {} + /** * Embed ThoughtSpot AI Conversation. - * @deprecated Formally known as ConversationEmbed * @group Embed components * @example * ```js @@ -109,7 +114,7 @@ export interface SpotterEmbedViewConfig extends ViewConfig { * }); * conversation.render(); * ``` - * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl + * @version SDK: 1.38.0 | ThoughtSpot: 10.10.0.cl */ export class SpotterEmbed extends TsEmbed { constructor(container: HTMLElement, protected viewConfig: SpotterEmbedViewConfig) { @@ -174,4 +179,25 @@ export class SpotterEmbed extends TsEmbed { } } +/** + * Embed ThoughtSpot AI Conversation. + * @deprecated Renamed to SpotterEmbed + * @group Embed components + * @example + * ```js + * const conversation = new ConversationEmbed('#tsEmbed', { + * worksheetId: 'worksheetId', + * searchOptions: { + * searchQuery: 'searchQuery', + * }, + * }); + * conversation.render(); + * ``` + * @version SDK: 1.38.0 | ThoughtSpot: 10.10.0.cl + */ +export class ConversationEmbed extends SpotterEmbed { + constructor(container: HTMLElement, viewConfig: SpotterEmbedViewConfig) { + super(container, viewConfig); + } +} From f6f5ba1dff92bb66cbf2bf55e7ed9eb8bd9a7ead Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 15 May 2025 12:14:30 +0530 Subject: [PATCH 16/29] type fix --- src/embed/bodyless-conversation.ts | 18 ++++++++++++++---- src/embed/conversation.ts | 3 ++- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index d82cf1ad..17cca6c2 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -17,10 +17,21 @@ export interface SpotterAgentEmbedViewConfig extends ViewConfig { /** * Configuration for bodyless conversation options. - * @deprecated Formally known as BodylessConversationViewConfig + * @deprecated Renamed to SpotterAgentEmbedViewConfig * @group Embed components */ -interface ConversationMessageViewConfig extends SpotterAgentEmbedViewConfig { +export interface BodylessConversationViewConfig extends ViewConfig { + /** + * The ID of the worksheet to use for the conversation. + */ + worksheetId: string; +} + +/** + * Configuration for bodyless conversation options. + * @group Embed components + */ +interface SpotterAgentMessageViewConfig extends SpotterAgentEmbedViewConfig { sessionId: string; genNo: number; acSessionId: string; @@ -28,7 +39,7 @@ interface ConversationMessageViewConfig extends SpotterAgentEmbedViewConfig { } class ConversationMessage extends TsEmbed { - constructor(container: HTMLElement, protected viewConfig: ConversationMessageViewConfig) { + constructor(container: HTMLElement, protected viewConfig: SpotterAgentMessageViewConfig) { viewConfig.embedComponentType = 'bodyless-conversation'; super(container, viewConfig); } @@ -72,7 +83,6 @@ class ConversationMessage extends TsEmbed { /** * Create a conversation embed, which can be integrated inside * chatbots or other conversational interfaces. - * @deprecated Formally known as BodylessConversation * @example * ```js * import { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk'; diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index b1568381..1d62b856 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -99,6 +99,7 @@ export interface SpotterEmbedViewConfig extends ViewConfig { * @deprecated Renamed to SpotterEmbedViewConfig * @group Embed components */ +// eslint-disable-next-line @typescript-eslint/no-empty-object-type export interface ConversationViewConfig extends SpotterEmbedViewConfig {} /** @@ -196,7 +197,7 @@ export class SpotterEmbed extends TsEmbed { * @version SDK: 1.38.0 | ThoughtSpot: 10.10.0.cl */ export class ConversationEmbed extends SpotterEmbed { - constructor(container: HTMLElement, viewConfig: SpotterEmbedViewConfig) { + constructor(container: HTMLElement, viewConfig: ConversationViewConfig) { super(container, viewConfig); } } From f1a8629b0ca42b24e8974b73afeb7bcc97d42fc5 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 15 May 2025 12:14:44 +0530 Subject: [PATCH 17/29] typedoc fix --- static/typedoc/typedoc.json | 94 +++++++++++++++---------------------- 1 file changed, 39 insertions(+), 55 deletions(-) diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index b1b52624..8660056d 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -9590,7 +9590,7 @@ "flags": {}, "comment": { "shortText": "AnswerService provides a simple way to work with ThoughtSpot Answers.", - "text": "This service allows you to interact with ThoughtSpot Answers programmatically,\nmaking it easy to customize visualizations, filter data, and extract insights\ndirectly from your application.\n\nYou can use this service to:\n- Add or remove columns from Answers (`addColumns`, `removeColumns`, `addColumnsByName`)\n- Apply filters to Answers (`addFilter`)\n- Get data from Answers in different formats (JSON, CSV, PNG) (`fetchData`, `fetchCSVBlob`, `fetchPNGBlob`)\n- Get data for specific points in visualizations (`getUnderlyingDataForPoint`)\n- Run custom queries (`executeQuery`)\n- Add visualizations to liveboards (`addDisplayedVizToLiveboard`)\n", + "text": "This service allows you to interact with ThoughtSpot Answers programmatically,\nmaking it easy to customize visualizations, filter data, and extract insights\ndirectly from your application.\n\nYou can use this service to:\n- Add or remove columns from Answers (`addColumns`, `removeColumns`,\n`addColumnsByName`) - Apply filters to Answers (`addFilter`)\n- Get data from Answers in different formats (JSON, CSV, PNG) (`fetchData`,\n`fetchCSVBlob`, `fetchPNGBlob`) - Get data for specific points in visualizations\n(`getUnderlyingDataForPoint`)\n- Run custom queries (`executeQuery`)\n- Add visualizations to liveboards (`addDisplayedVizToLiveboard`)\n", "tags": [ { "tag": "example", @@ -9623,7 +9623,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 87, + "line": 88, "character": 4 } ], @@ -9715,7 +9715,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 128, + "line": 129, "character": 17 } ], @@ -9771,7 +9771,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 152, + "line": 153, "character": 17 } ], @@ -9832,7 +9832,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 405, + "line": 406, "character": 17 } ], @@ -9880,7 +9880,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 165, + "line": 166, "character": 17 } ], @@ -9978,7 +9978,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 355, + "line": 356, "character": 17 } ], @@ -10047,7 +10047,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 234, + "line": 235, "character": 17 } ], @@ -10116,7 +10116,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 206, + "line": 207, "character": 17 } ], @@ -10223,7 +10223,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 250, + "line": 251, "character": 17 } ], @@ -10307,7 +10307,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 378, + "line": 379, "character": 17 } ], @@ -10342,7 +10342,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 268, + "line": 269, "character": 11 } ], @@ -10403,7 +10403,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 279, + "line": 280, "character": 11 } ], @@ -10478,7 +10478,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 192, + "line": 193, "character": 17 } ], @@ -10513,7 +10513,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 374, + "line": 375, "character": 11 } ], @@ -10547,7 +10547,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 101, + "line": 102, "character": 17 } ], @@ -10585,7 +10585,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 389, + "line": 390, "character": 17 } ], @@ -10620,7 +10620,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 300, + "line": 301, "character": 17 } ], @@ -10704,7 +10704,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 114, + "line": 115, "character": 17 } ], @@ -10760,7 +10760,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 417, + "line": 418, "character": 11 } ], @@ -10828,7 +10828,7 @@ "sources": [ { "fileName": "utils/graphql/answerService/answerService.ts", - "line": 75, + "line": 76, "character": 13 } ] @@ -17139,10 +17139,6 @@ "comment": { "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", "tags": [ - { - "tag": "deprecated", - "text": "Formally known as BodylessConversation" - }, { "tag": "example", "text": "\n```js\nimport { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new SpotterAgentEmbed({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" @@ -17167,7 +17163,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 91, + "line": 105, "character": 4 } ], @@ -17211,7 +17207,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 100, + "line": 114, "character": 17 } ], @@ -17383,7 +17379,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 88, + "line": 102, "character": 13 } ] @@ -17397,10 +17393,6 @@ "comment": { "shortText": "Embed ThoughtSpot AI Conversation.", "tags": [ - { - "tag": "deprecated", - "text": "Formally known as ConversationEmbed" - }, { "tag": "group", "text": "Embed components" @@ -17411,7 +17403,7 @@ }, { "tag": "version", - "text": "SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl\n" + "text": "SDK: 1.38.0 | ThoughtSpot: 10.10.0.cl\n" } ] }, @@ -17425,7 +17417,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 115, + "line": 121, "character": 4 } ], @@ -17605,7 +17597,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 120, + "line": 126, "character": 11 } ], @@ -18215,7 +18207,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 168, + "line": 174, "character": 17 } ], @@ -18597,7 +18589,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 114, + "line": 120, "character": 13 } ], @@ -33089,10 +33081,6 @@ "comment": { "shortText": "Configuration for bodyless conversation options.", "tags": [ - { - "tag": "deprecated", - "text": "Formally known as BodylessConversationViewConfig" - }, { "tag": "group", "text": "Embed components\n" @@ -34414,7 +34402,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 16, + "line": 15, "character": 4 } ], @@ -34468,7 +34456,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 12, + "line": 11, "character": 17 } ], @@ -34488,10 +34476,6 @@ "comment": { "shortText": "The configuration for the embedded spotterEmbed options.", "tags": [ - { - "tag": "deprecated", - "text": "Formally known as ConversationViewConfig" - }, { "tag": "group", "text": "Embed components\n" @@ -34723,7 +34707,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 68, + "line": 67, "character": 4 } ], @@ -34797,7 +34781,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 43, + "line": 42, "character": 4 } ], @@ -35388,7 +35372,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 95, + "line": 94, "character": 4 } ], @@ -35421,7 +35405,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 55, + "line": 54, "character": 4 } ], @@ -35790,7 +35774,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 30, + "line": 29, "character": 4 } ], @@ -35860,7 +35844,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 82, + "line": 81, "character": 4 } ], @@ -35968,7 +35952,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 26, + "line": 25, "character": 4 } ], @@ -36027,7 +36011,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 22, + "line": 21, "character": 17 } ], From 91cabd877b24b19e002c2d8dc5c6cd56b21a27f4 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 15 May 2025 12:23:39 +0530 Subject: [PATCH 18/29] removed deprecated tag from spotterembed --- src/react/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/react/index.tsx b/src/react/index.tsx index 8c1b3bf3..5fb1e6ee 100644 --- a/src/react/index.tsx +++ b/src/react/index.tsx @@ -338,7 +338,6 @@ interface SpotterEmbedProps extends EmbedProps, SpotterEmbedViewConfig { } /** * React component for LLM based conversation BI. - * @deprecated Formally known as ConversationEmbed * @example * ```tsx * function Sage() { From a1c0afa02a34e54eb122744c120edcd1457e0484 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 15 May 2025 13:26:03 +0530 Subject: [PATCH 19/29] fixes --- src/embed/bodyless-conversation.ts | 39 ++++++++++++++++++++--- src/embed/conversation.ts | 33 ++++++++++++++++++-- src/react/index.tsx | 6 ++-- static/typedoc/typedoc.json | 50 ++++++++++-------------------- 4 files changed, 85 insertions(+), 43 deletions(-) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index 6112edf0..bac7d5b4 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -6,7 +6,6 @@ import { getQueryParamString } from '../utils'; /** * Configuration for bodyless conversation options. - * @deprecated Formally known as BodylessConversationViewConfig * @group Embed components */ export interface SpotterAgentEmbedViewConfig extends ViewConfig { @@ -16,7 +15,15 @@ export interface SpotterAgentEmbedViewConfig extends ViewConfig { worksheetId: string; } -interface ConversationMessageViewConfig extends SpotterAgentEmbedViewConfig { +/** + * Configuration for conversation options. + * @deprecated Renamed to SpotterAgentEmbedViewConfig + * @group Embed components + */ +// eslint-disable-next-line @typescript-eslint/no-empty-object-type +export interface BodylessConversationViewConfig extends SpotterAgentEmbedViewConfig {} + +interface SpotterAgentMessageViewConfig extends SpotterAgentEmbedViewConfig { sessionId: string; genNo: number; acSessionId: string; @@ -24,7 +31,7 @@ interface ConversationMessageViewConfig extends SpotterAgentEmbedViewConfig { } class ConversationMessage extends TsEmbed { - constructor(container: HTMLElement, protected viewConfig: ConversationMessageViewConfig) { + constructor(container: HTMLElement, protected viewConfig: SpotterAgentMessageViewConfig) { viewConfig.embedComponentType = 'bodyless-conversation'; super(container, viewConfig); } @@ -67,7 +74,6 @@ class ConversationMessage extends TsEmbed { /** * Create a conversation embed, which can be integrated inside * chatbots or other conversational interfaces. - * @deprecated Formally known as BodylessConversation * @example * ```js * import { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk'; @@ -115,3 +121,28 @@ export class SpotterAgentEmbed { } } +/** + * Create a conversation embed, which can be integrated inside + * chatbots or other conversational interfaces. + * @deprecated Renamed to SpotterAgentEmbed + * @example + * ```js + * import { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk'; + * + * const conversation = new SpotterAgentEmbed({ + * worksheetId: 'worksheetId', + * }); + * + * const { container, error } = await conversation.sendMessage('show me sales by region'); + * + * // append the container to the DOM + * document.body.appendChild(container); // or to any other element + * ``` + * @group Embed components + * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl + */ +export class BodylessConversation extends SpotterAgentEmbed { + constructor(viewConfig: BodylessConversationViewConfig) { + super(viewConfig); + } +} diff --git a/src/embed/conversation.ts b/src/embed/conversation.ts index 4fc5f611..8d969090 100644 --- a/src/embed/conversation.ts +++ b/src/embed/conversation.ts @@ -16,7 +16,6 @@ export interface SearchOptions { /** * The configuration for the embedded spotterEmbed options. - * @deprecated Formally known as ConversationViewConfig * @group Embed components */ export interface SpotterEmbedViewConfig extends ViewConfig { @@ -95,9 +94,16 @@ export interface SpotterEmbedViewConfig extends ViewConfig { hideSampleQuestions?: boolean; } +/** + * The configuration for the embedded spotterEmbed options. + * @deprecated Renamed to SpotterEmbedViewConfig + * @group Embed components + */ +// eslint-disable-next-line @typescript-eslint/no-empty-object-type +export interface ConversationViewConfig extends SpotterEmbedViewConfig {} + /** * Embed ThoughtSpot AI Conversation. - * @deprecated Formally known as ConversationEmbed * @group Embed components * @example * ```js @@ -174,4 +180,25 @@ export class SpotterEmbed extends TsEmbed { } } - +/** + * Embed ThoughtSpot AI Conversation. + * @deprecated Renamed to SpotterEmbed + * @group Embed components + * @example + * ```js + * const conversation = new SpotterEmbed('#tsEmbed', { + * worksheetId: 'worksheetId', + * searchOptions: { + * searchQuery: 'searchQuery', + * }, + * }); + * conversation.render(); + * ``` + * @version SDK: 1.37.0 | ThoughtSpot: 10.9.0.cl + */ +export class ConversationEmbed extends SpotterEmbed { + constructor(container: HTMLElement, protected viewConfig: ConversationViewConfig) { + viewConfig.embedComponentType = 'conversation'; + super(container, viewConfig); + } +} diff --git a/src/react/index.tsx b/src/react/index.tsx index 8c1b3bf3..63248415 100644 --- a/src/react/index.tsx +++ b/src/react/index.tsx @@ -13,7 +13,7 @@ import { TsEmbed } from '../embed/ts-embed'; import { EmbedConfig, EmbedEvent, ViewConfig } from '../types'; import { EmbedProps, getViewPropsAndListeners } from './util'; -import { SpotterEmbed as _SpotterEmbed, SpotterEmbedViewConfig, SpotterEmbed as _ConversationEmbed, SpotterEmbedViewConfig as ConversationViewConfig } from '../embed/conversation'; +import { SpotterEmbed as _SpotterEmbed, SpotterEmbedViewConfig, ConversationEmbed as _ConversationEmbed, ConversationViewConfig as ConversationViewConfig } from '../embed/conversation'; import { init } from '../embed/base'; const componentFactory = ( @@ -335,10 +335,10 @@ export const PreRenderedSageEmbed = componentFactory< >(_SageEmbed, true); interface SpotterEmbedProps extends EmbedProps, SpotterEmbedViewConfig { } +interface ConversationEmbedProps extends EmbedProps, ConversationViewConfig { } /** * React component for LLM based conversation BI. - * @deprecated Formally known as ConversationEmbed * @example * ```tsx * function Sage() { @@ -377,7 +377,7 @@ export const SpotterEmbed = componentFactory< */ export const ConversationEmbed = componentFactory< typeof _ConversationEmbed, - ConversationViewConfig, + ConversationEmbedProps, ConversationViewConfig >(_ConversationEmbed); diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index afe2b196..65ec858a 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -16896,10 +16896,6 @@ "comment": { "shortText": "Create a conversation embed, which can be integrated inside\nchatbots or other conversational interfaces.", "tags": [ - { - "tag": "deprecated", - "text": "Formally known as BodylessConversation" - }, { "tag": "example", "text": "\n```js\nimport { SpotterAgentEmbed } from '@thoughtspot/visual-embed-sdk';\n\nconst conversation = new SpotterAgentEmbed({\n worksheetId: 'worksheetId',\n});\n\nconst { container, error } = await conversation.sendMessage('show me sales by region');\n\n// append the container to the DOM\ndocument.body.appendChild(container); // or to any other element\n```" @@ -16924,7 +16920,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 90, + "line": 96, "character": 4 } ], @@ -16968,7 +16964,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 99, + "line": 105, "character": 17 } ], @@ -17140,7 +17136,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 87, + "line": 93, "character": 13 } ] @@ -17154,10 +17150,6 @@ "comment": { "shortText": "Embed ThoughtSpot AI Conversation.", "tags": [ - { - "tag": "deprecated", - "text": "Formally known as ConversationEmbed" - }, { "tag": "group", "text": "Embed components" @@ -17182,7 +17174,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 115, + "line": 121, "character": 4 } ], @@ -17362,7 +17354,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 120, + "line": 126, "character": 11 } ], @@ -17972,7 +17964,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 168, + "line": 174, "character": 17 } ], @@ -18354,7 +18346,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 114, + "line": 120, "character": 13 } ], @@ -32494,10 +32486,6 @@ "comment": { "shortText": "Configuration for bodyless conversation options.", "tags": [ - { - "tag": "deprecated", - "text": "Formally known as BodylessConversationViewConfig" - }, { "tag": "group", "text": "Embed components\n" @@ -33782,7 +33770,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 16, + "line": 15, "character": 4 } ], @@ -33835,7 +33823,7 @@ "sources": [ { "fileName": "embed/bodyless-conversation.ts", - "line": 12, + "line": 11, "character": 17 } ], @@ -33855,10 +33843,6 @@ "comment": { "shortText": "The configuration for the embedded spotterEmbed options.", "tags": [ - { - "tag": "deprecated", - "text": "Formally known as ConversationViewConfig" - }, { "tag": "group", "text": "Embed components\n" @@ -34090,7 +34074,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 68, + "line": 67, "character": 4 } ], @@ -34164,7 +34148,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 43, + "line": 42, "character": 4 } ], @@ -34755,7 +34739,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 95, + "line": 94, "character": 4 } ], @@ -34788,7 +34772,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 55, + "line": 54, "character": 4 } ], @@ -35120,7 +35104,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 30, + "line": 29, "character": 4 } ], @@ -35190,7 +35174,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 82, + "line": 81, "character": 4 } ], @@ -35298,7 +35282,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 26, + "line": 25, "character": 4 } ], @@ -35356,7 +35340,7 @@ "sources": [ { "fileName": "embed/conversation.ts", - "line": 22, + "line": 21, "character": 17 } ], From 3c930ace877847400c1e505a5ff01cfc3410b635 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 15 May 2025 14:09:53 +0530 Subject: [PATCH 20/29] changed the deprecated text --- src/react/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/react/index.tsx b/src/react/index.tsx index 63248415..409b9507 100644 --- a/src/react/index.tsx +++ b/src/react/index.tsx @@ -361,7 +361,7 @@ export const SpotterEmbed = componentFactory< /** * React component for LLM based conversation BI. - * @deprecated This component is deprecated. Use {@link SpotterEmbed} instead. + * @deprecated This component is renamed to SpotterEmbed. Use {@link SpotterEmbed} instead. * @example * ```tsx * function Sage() { From c2e99b7716439fcdff0d14f07ee663c4f298101b Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Sun, 18 May 2025 21:17:55 +0530 Subject: [PATCH 21/29] renamed host event name --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 3b947792..36e0242f 100644 --- a/src/types.ts +++ b/src/types.ts @@ -3552,7 +3552,7 @@ export enum HostEvent { * data value modifications retrieved from the `EmbedEvent.TableVizRendered` * payload.For example, { columnDataLite: []}`. */ - AnswerChartSwitcher = 'AnswerChartSwitcher', + AnswerChartSwitcher = 'answerChartSwitcher', } /** From 90755cdb3aae7b994c08169f36cf72cb80b93408 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 12 Jun 2025 20:45:48 +0530 Subject: [PATCH 22/29] fixed changes --- .sfdx/indexes/lwc/custom-components.json | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .sfdx/indexes/lwc/custom-components.json diff --git a/.sfdx/indexes/lwc/custom-components.json b/.sfdx/indexes/lwc/custom-components.json deleted file mode 100644 index 0637a088..00000000 --- a/.sfdx/indexes/lwc/custom-components.json +++ /dev/null @@ -1 +0,0 @@ -[] \ No newline at end of file From 0e1230e99473f9f2f8620b31bd82ae0a96d43393 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Thu, 12 Jun 2025 21:14:25 +0530 Subject: [PATCH 23/29] host events and embed events --- src/types.ts | 147 +- static/typedoc/typedoc.json | 3540 +++++++++++++++++++---------------- 2 files changed, 2032 insertions(+), 1655 deletions(-) diff --git a/src/types.ts b/src/types.ts index 011d44e5..b887cf28 100644 --- a/src/types.ts +++ b/src/types.ts @@ -2468,6 +2468,36 @@ export enum EmbedEvent { * @version SDK : 1.40.0 | ThoughtSpot : 10.11.0.cl */ ExitPresentMode = 'exitPresentMode', + /** + * Emitted when spotter response is the text data + * + * ```js + * spotterEmbed.on(EmbedEvent.SpotterData, (payload) => { + * console.log('payload', payload); + * }) + *``` + */ + SpotterData = 'SpotterData', + /** + * Emitted when user opens up the worksheet preview modal in spotter embed. + */ + PreviewSpotterData = 'PreviewSpotterData', + /** + * Emitted when the spotter query is triggered in spotter embed. + */ + SpotterQueryTriggered = 'SpotterQueryTriggered', + /** + * Emitted when the last spotter query is edited in spotter embed. + */ + LastPromptEdited = 'LastPromptEdited', + /** + * Emitted when the last spotter query is deleted in spotter embed. + */ + LastPromptDeleted = 'LastPromptDeleted', + /** + * Emitted when the coversation is reset in spotter embed. + */ + ResetSpotterConversation = 'ResetSpotterConversation' } /** @@ -2758,6 +2788,7 @@ export enum HostEvent { * @param * `vizId`- GUID of the saved Answer or visualization to pin to a Liveboard. * Optional when pinning a new chart or table generated from a Search query. + * Required in Spotter Embed. * @param * `liveboardID` - GUID of the Liveboard to pin an Answer. If there is no Liveboard, * specify the `newLiveboardName` parameter to create a new Liveboard. @@ -2805,6 +2836,12 @@ export enum HostEvent { * ```js * appEmbed.trigger(HostEvent.Pin) * ``` + * @example + * ```js + * const pinResponse = await spotterEmbed.trigger(HostEvent.Pin, { + * vizId:'730496d6-6903-4601-937e-2c691821af3c' + * }); + * ``` * @version SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw */ Pin = 'pin', @@ -2898,6 +2935,12 @@ export enum HostEvent { * ```js * searchEmbed.trigger(HostEvent.MakeACopy) * ``` + * @example + * ```js + * const pinResponse = await spotterEmbed.trigger(HostEvent.MakeACopy, { + * vizId:'730496d6-6903-4601-937e-2c691821af3c' + * }); + * ``` * @version SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw */ MakeACopy = 'makeACopy', @@ -2970,6 +3013,7 @@ export enum HostEvent { * This event is not supported in visualization embed and search embed. * @param - object - To trigger the action for a specific visualization * in Liveboard embed, pass in `vizId` as a key. + * In Spotter embed, vizId is required. * @example * ```js * liveboardEmbed.trigger(HostEvent.Edit) @@ -2978,6 +3022,12 @@ export enum HostEvent { * liveboardEmbed.trigger(HostEvent.Edit, {vizId: * '730496d6-6903-4601-937e-2c691821af3c'}) * ``` + * @example + * ```js + * const pinResponse = await spotterEmbed.trigger(HostEvent.Edit, { + * vizId:'730496d6-6903-4601-937e-2c691821af3c' + * }); + * ``` * @version SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw */ Edit = 'edit', @@ -3112,7 +3162,12 @@ export enum HostEvent { * vizEmbed.trigger(HostEvent.DownloadAsPng) * * searchEmbed.trigger(HostEvent.DownloadAsPng) + * + * spotterEmbed.trigger(HostEvent.DownloadAsPng, { + * vizId:"730496d6-6903-4601-937e-2c691821af3c" + * }) * ``` + * * @version SDK: 1.21.0 | ThoughtSpot: 9.2.0.cl, 9.4.1.sw */ DownloadAsPng = 'downloadAsPng', @@ -3130,6 +3185,11 @@ export enum HostEvent { * ```js * searchEmbed.trigger(HostEvent.DownloadAsCsv) * ``` + * ```js + * spotterEmbed.trigger(HostEvent.DownloadAsCsv, { + * vizId:"730496d6-6903-4601-937e-2c691821af3c" + * }) + * ``` * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw */ DownloadAsCsv = 'downloadAsCSV', @@ -3147,6 +3207,11 @@ export enum HostEvent { * ```js * searchEmbed.trigger(HostEvent.DownloadAsXlsx) * ``` + * ```js + * spotterEmbed.trigger(HostEvent.downloadAsXLSX, { + * vizId:"730496d6-6903-4601-937e-2c691821af3c" + * }) + * ``` * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw */ DownloadAsXlsx = 'downloadAsXLSX', @@ -3166,6 +3231,7 @@ export enum HostEvent { /** * Trigger the **Save** action on a Liveboard or Answer. * Saves the changes. + * @param - `vizId` is required in Spotter Embed. * @example * ```js * liveboardEmbed.trigger(HostEvent.Save) @@ -3173,6 +3239,11 @@ export enum HostEvent { * ```js * searchEmbed.trigger(HostEvent.Save) * ``` + * ```js + * spotterEmbed.trigger(HostEvent.Save, { + * vizId:"730496d6-6903-4601-937e-2c691821af3c" + * }) + * ``` * @version SDK: 1.19.0 | ThoughtSpot: 9.0.0.cl, 9.0.1.sw */ Save = 'save', @@ -3542,58 +3613,62 @@ export enum HostEvent { * @version SDK: 1.37.0 | ThoughtSpot: 10.8.0.cl */ TransformTableVizData = 'TransformTableVizData', - /** - * Triggers the table visualization re-render with the updated data. - * Includes the following properties: - * @param - `columnDataLite` - an array of object containing the - * data value modifications retrieved from the `EmbedEvent.TableVizRendered` - * payload.For example, { columnDataLite: []}`. + * Triggers a search operation with the search tokens specified in + * the search query string in spotter embed. + * @param - `queryString`: Text string in Natural Language format + * @param - `executeSearch`: Boolean to execute search and update search query + * @example + * ```js + * spotterEmbed.trigger(HostEvent.SpotterSearch, { + * query: 'revenue per year', + * executeSearch: true, + * }) + * ``` */ SpotterSearch = 'SpotterSearch', - /** - * Triggers the table visualization re-render with the updated data. - * Includes the following properties: - * @param - `columnDataLite` - an array of object containing the - * data value modifications retrieved from the `EmbedEvent.TableVizRendered` - * payload.For example, { columnDataLite: []}`. + * Edits the last prompt in spotter embed. + * @param - `query`: Text string + * @example + * ```js + * spotterEmbed.trigger(HostEvent.EditLastPrompt, "revenue per year"); + * ``` */ EditLastPrompt = 'EditLastPrompt', - /** - * Triggers the table visualization re-render with the updated data. - * Includes the following properties: - * @param - `columnDataLite` - an array of object containing the - * data value modifications retrieved from the `EmbedEvent.TableVizRendered` - * payload.For example, { columnDataLite: []}`. + * Opens the Worksheet preview modal in Spotter Embed. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.PreviewSpotterData); + * ``` */ PreviewSpotterData = 'PreviewSpotterData', - /** - * Triggers the table visualization re-render with the updated data. - * Includes the following properties: - * @param - `columnDataLite` - an array of object containing the - * data value modifications retrieved from the `EmbedEvent.TableVizRendered` - * payload.For example, { columnDataLite: []}`. + * Resets the Spotter Embed Conversation. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.ResetSpotterConversation); + * ``` */ ResetSpotterConversation = 'ResetSpotterConversation', - /** - * Triggers the table visualization re-render with the updated data. - * Includes the following properties: - * @param - `columnDataLite` - an array of object containing the - * data value modifications retrieved from the `EmbedEvent.TableVizRendered` - * payload.For example, { columnDataLite: []}`. + * Deletes the last prompt in spotter embed. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.DeleteLastPrompt); + * ``` */ DeleteLastPrompt = 'DeleteLastPrompt', - /** - * Triggers the table visualization re-render with the updated data. - * Includes the following properties: - * @param - `columnDataLite` - an array of object containing the - * data value modifications retrieved from the `EmbedEvent.TableVizRendered` - * payload.For example, { columnDataLite: []}`. + * Toggle the visualization to chart or table view. + * @param - `vizId ` In Spotter Embed, vizId is required. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.AnswerChartSwitcher, { + * vizId:"'b535c760-8bbe-4e6f-bb26-af56b4129a1e'" + * }); + *``` */ AnswerChartSwitcher = 'answerChartSwitcher', /** diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index a31e699b..01cddefe 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 1902, + "id": 1914, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 2014, + "id": 2026, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4750, + "line": 4879, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 1922, + "id": 1934, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3907, + "line": 4036, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 1915, + "id": 1927, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3836, + "line": 3965, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 1914, + "id": 1926, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3825, + "line": 3954, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 1920, + "id": 1932, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3888, + "line": 4017, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 1921, + "id": 1933, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3897, + "line": 4026, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 1923, + "id": 1935, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3917, + "line": 4046, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 1997, + "id": 2009, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4555, + "line": 4684, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 1970, + "id": 1982, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4277, + "line": 4406, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 2011, + "id": 2023, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4717, + "line": 4846, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 1969, + "id": 1981, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4265, + "line": 4394, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1968, + "id": 1980, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4253, + "line": 4382, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 2010, + "id": 2022, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4706, + "line": 4835, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 1981, + "id": 1993, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4390, + "line": 4519, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 1984, + "id": 1996, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4424, + "line": 4553, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 1989, + "id": 2001, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4479, + "line": 4608, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 1983, + "id": 1995, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4413, + "line": 4542, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 1986, + "id": 1998, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4447, + "line": 4576, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 1990, + "id": 2002, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4489, + "line": 4618, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 1987, + "id": 1999, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4458, + "line": 4587, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 1992, + "id": 2004, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4511, + "line": 4640, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 1988, + "id": 2000, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4468, + "line": 4597, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 1985, + "id": 1997, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4435, + "line": 4564, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 1991, + "id": 2003, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4499, + "line": 4628, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 1982, + "id": 1994, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4401, + "line": 4530, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 2023, + "id": 2035, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4848, + "line": 4977, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 1919, + "id": 1931, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3879, + "line": 4008, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 1918, + "id": 1930, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3870, + "line": 3999, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 1917, + "id": 1929, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3858, + "line": 3987, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 2030, + "id": 2042, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4924, + "line": 5053, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 1916, + "id": 1928, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3847, + "line": 3976, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 1961, + "id": 1973, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4204, + "line": 4333, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 1909, + "id": 1921, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3784, + "line": 3913, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1960, + "id": 1972, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4203, + "line": 4332, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 2031, + "id": 2043, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4934, + "line": 5063, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 2008, + "id": 2020, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4681, + "line": 4810, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 1972, + "id": 1984, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4297, + "line": 4426, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1977, + "id": 1989, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4348, + "line": 4477, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 2028, + "id": 2040, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4905, + "line": 5034, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 2020, + "id": 2032, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4817, + "line": 4946, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 2022, + "id": 2034, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4836, + "line": 4965, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 1931, + "id": 1943, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3967, + "line": 4096, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1934, + "id": 1946, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4000, + "line": 4129, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1933, + "id": 1945, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3990, + "line": 4119, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1932, + "id": 1944, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3977, + "line": 4106, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1935, + "id": 1947, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4010, + "line": 4139, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1965, + "id": 1977, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4220, + "line": 4349, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 1959, + "id": 1971, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4193, + "line": 4322, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1958, + "id": 1970, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4184, + "line": 4313, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1943, + "id": 1955, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4086, + "line": 4215, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1908, + "id": 1920, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3775, + "line": 3904, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 1971, + "id": 1983, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4286, + "line": 4415, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 1963, + "id": 1975, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4209, + "line": 4338, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 2027, + "id": 2039, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4894, + "line": 5023, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 2000, + "id": 2012, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4588, + "line": 4717, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 2015, + "id": 2027, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4763, + "line": 4892, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 1940, + "id": 1952, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4054, + "line": 4183, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1944, + "id": 1956, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4094, + "line": 4223, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 2029, + "id": 2041, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4915, + "line": 5044, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 1998, + "id": 2010, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4565, + "line": 4694, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 1957, + "id": 1969, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1624,14 +1624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4173, + "line": 4302, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1937, + "id": 1949, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1649,14 +1649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4026, + "line": 4155, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1938, + "id": 1950, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1673,14 +1673,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4036, + "line": 4165, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2021, + "id": 2033, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4827, + "line": 4956, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 1951, + "id": 1963, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1725,14 +1725,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4135, + "line": 4264, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 2006, + "id": 2018, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1753,14 +1753,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4649, + "line": 4778, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 1907, + "id": 1919, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1777,14 +1777,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3766, + "line": 3895, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 2004, + "id": 2016, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1801,14 +1801,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4629, + "line": 4758, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1976, + "id": 1988, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1829,14 +1829,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4338, + "line": 4467, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 2019, + "id": 2031, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1857,14 +1857,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4806, + "line": 4935, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 1996, + "id": 2008, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4545, + "line": 4674, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 2002, + "id": 2014, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1912,14 +1912,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4609, + "line": 4738, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 2003, + "id": 2015, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1936,14 +1936,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4618, + "line": 4747, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 2013, + "id": 2025, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -1964,14 +1964,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4739, + "line": 4868, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 2016, + "id": 2028, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1992,14 +1992,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4774, + "line": 4903, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 2005, + "id": 2017, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4639, + "line": 4768, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 1954, + "id": 1966, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2044,14 +2044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4152, + "line": 4281, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1941, + "id": 1953, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2068,14 +2068,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4064, + "line": 4193, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 2024, + "id": 2036, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2096,14 +2096,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4860, + "line": 4989, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 1967, + "id": 1979, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2121,14 +2121,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4243, + "line": 4372, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 1945, + "id": 1957, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2145,14 +2145,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4104, + "line": 4233, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1980, + "id": 1992, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2173,14 +2173,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4379, + "line": 4508, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 2012, + "id": 2024, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2201,14 +2201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4728, + "line": 4857, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 1994, + "id": 2006, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4525, + "line": 4654, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 1973, + "id": 1985, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2260,14 +2260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4307, + "line": 4436, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 1966, + "id": 1978, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2284,14 +2284,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4229, + "line": 4358, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 1995, + "id": 2007, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2312,14 +2312,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4535, + "line": 4664, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 2025, + "id": 2037, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2340,14 +2340,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4872, + "line": 5001, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 2001, + "id": 2013, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2368,14 +2368,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4600, + "line": 4729, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 1903, + "id": 1915, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2392,14 +2392,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3735, + "line": 3864, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1906, + "id": 1918, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2416,14 +2416,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3753, + "line": 3882, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1911, + "id": 1923, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2440,14 +2440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3798, + "line": 3927, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1912, + "id": 1924, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2464,14 +2464,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3807, + "line": 3936, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1964, + "id": 1976, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2479,14 +2479,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4210, + "line": 4339, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 1913, + "id": 1925, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2503,14 +2503,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3816, + "line": 3945, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1928, + "id": 1940, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2521,14 +2521,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3942, + "line": 4071, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 1999, + "id": 2011, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2549,14 +2549,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4575, + "line": 4704, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 1930, + "id": 1942, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2573,14 +2573,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3957, + "line": 4086, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1925, + "id": 1937, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2597,14 +2597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3930, + "line": 4059, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 2026, + "id": 2038, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2625,14 +2625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4883, + "line": 5012, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 1956, + "id": 1968, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2649,14 +2649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4165, + "line": 4294, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1975, + "id": 1987, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2677,14 +2677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4328, + "line": 4457, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1974, + "id": 1986, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2705,14 +2705,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4317, + "line": 4446, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1978, + "id": 1990, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4358, + "line": 4487, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 1979, + "id": 1991, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4368, + "line": 4497, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 2007, + "id": 2019, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2793,14 +2793,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4668, + "line": 4797, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 1942, + "id": 1954, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -2817,14 +2817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4076, + "line": 4205, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 2018, + "id": 2030, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4796, + "line": 4925, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 1939, + "id": 1951, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -2869,14 +2869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4045, + "line": 4174, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 2009, + "id": 2021, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4692, + "line": 4821, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 2017, + "id": 2029, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2925,7 +2925,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4785, + "line": 4914, "character": 4 } ], @@ -2937,124 +2937,124 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2014, - 1922, - 1915, - 1914, - 1920, - 1921, - 1923, - 1997, - 1970, - 2011, - 1969, - 1968, - 2010, - 1981, - 1984, - 1989, - 1983, - 1986, - 1990, - 1987, - 1992, - 1988, - 1985, - 1991, + 2026, + 1934, + 1927, + 1926, + 1932, + 1933, + 1935, + 2009, 1982, 2023, - 1919, - 1918, - 1917, - 2030, - 1916, - 1961, - 1909, - 1960, - 2031, - 2008, - 1972, - 1977, - 2028, - 2020, + 1981, + 1980, 2022, + 1993, + 1996, + 2001, + 1995, + 1998, + 2002, + 1999, + 2004, + 2000, + 1997, + 2003, + 1994, + 2035, 1931, - 1934, - 1933, - 1932, - 1935, - 1965, - 1959, - 1958, + 1930, + 1929, + 2042, + 1928, + 1973, + 1921, + 1972, + 2043, + 2020, + 1984, + 1989, + 2040, + 2032, + 2034, 1943, - 1908, + 1946, + 1945, + 1944, + 1947, + 1977, 1971, - 1963, + 1970, + 1955, + 1920, + 1983, + 1975, + 2039, + 2012, 2027, - 2000, + 1952, + 1956, + 2041, + 2010, + 1969, + 1949, + 1950, + 2033, + 1963, + 2018, + 1919, + 2016, + 1988, + 2031, + 2008, + 2014, 2015, - 1940, - 1944, - 2029, - 1998, + 2025, + 2028, + 2017, + 1966, + 1953, + 2036, + 1979, 1957, - 1937, - 1938, - 2021, - 1951, - 2006, - 1907, - 2004, - 1976, - 2019, - 1996, - 2002, - 2003, - 2013, - 2016, - 2005, - 1954, - 1941, + 1992, 2024, - 1967, - 1945, - 1980, - 2012, - 1994, - 1973, - 1966, - 1995, - 2025, - 2001, - 1903, - 1906, - 1911, - 1912, - 1964, - 1913, - 1928, - 1999, - 1930, - 1925, - 2026, - 1956, - 1975, - 1974, + 2006, + 1985, 1978, - 1979, 2007, + 2037, + 2013, + 1915, + 1918, + 1923, + 1924, + 1976, + 1925, + 1940, + 2011, 1942, - 2018, - 1939, - 2009, - 2017 + 1937, + 2038, + 1968, + 1987, + 1986, + 1990, + 1991, + 2019, + 1954, + 2030, + 1951, + 2021, + 2029 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3726, + "line": 3855, "character": 12 } ] @@ -3609,7 +3609,7 @@ ] }, { - "id": 2032, + "id": 2044, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3619,7 +3619,7 @@ }, "children": [ { - "id": 2035, + "id": 2047, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3627,14 +3627,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4955, + "line": 5084, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2033, + "id": 2045, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3642,14 +3642,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4953, + "line": 5082, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2034, + "id": 2046, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3657,7 +3657,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4954, + "line": 5083, "character": 4 } ], @@ -3669,22 +3669,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2035, - 2033, - 2034 + 2047, + 2045, + 2046 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4952, + "line": 5081, "character": 12 } ] }, { - "id": 1898, + "id": 1910, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -3694,7 +3694,7 @@ }, "children": [ { - "id": 1900, + "id": 1912, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -3705,14 +3705,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3570, + "line": 3699, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 1901, + "id": 1913, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -3723,14 +3723,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3574, + "line": 3703, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 1899, + "id": 1911, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -3741,7 +3741,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3566, + "line": 3695, "character": 4 } ], @@ -3753,16 +3753,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1900, - 1901, - 1899 + 1912, + 1913, + 1911 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3562, + "line": 3691, "character": 12 } ] @@ -4995,6 +4995,42 @@ ], "defaultValue": "\"init\"" }, + { + "id": 1840, + "name": "LastPromptDeleted", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the last spotter query is deleted in spotter embed." + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2496, + "character": 4 + } + ], + "defaultValue": "\"LastPromptDeleted\"" + }, + { + "id": 1839, + "name": "LastPromptEdited", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the last spotter query is edited in spotter embed." + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2492, + "character": 4 + } + ], + "defaultValue": "\"LastPromptEdited\"" + }, { "id": 1804, "name": "LiveboardInfo", @@ -5264,6 +5300,24 @@ ], "defaultValue": "\"present\"" }, + { + "id": 1837, + "name": "PreviewSpotterData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when user opens up the worksheet preview modal in spotter embed." + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2484, + "character": 4 + } + ], + "defaultValue": "\"PreviewSpotterData\"" + }, { "id": 1759, "name": "QueryChanged", @@ -5356,6 +5410,24 @@ ], "defaultValue": "\"resetLiveboard\"" }, + { + "id": 1841, + "name": "ResetSpotterConversation", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the coversation is reset in spotter embed." + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2500, + "character": 4 + } + ], + "defaultValue": "\"ResetSpotterConversation\"" + }, { "id": 1775, "name": "RouteChange", @@ -5668,6 +5740,43 @@ ], "defaultValue": "\"spotIQAnalyze\"" }, + { + "id": 1836, + "name": "SpotterData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when spotter response is the text data", + "text": "```js\nspotterEmbed.on(EmbedEvent.SpotterData, (payload) => {\n console.log('payload', payload);\n})\n```\n" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2480, + "character": 4 + } + ], + "defaultValue": "\"SpotterData\"" + }, + { + "id": 1838, + "name": "SpotterQueryTriggered", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the spotter query is triggered in spotter embed." + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2488, + "character": 4 + } + ], + "defaultValue": "\"SpotterQueryTriggered\"" + }, { "id": 1832, "name": "TableVizRendered", @@ -5932,6 +6041,8 @@ 1818, 1774, 1755, + 1840, + 1839, 1804, 1781, 1757, @@ -5941,9 +6052,11 @@ 1831, 1790, 1809, + 1837, 1759, 1829, 1825, + 1841, 1775, 1819, 1820, @@ -5955,6 +6068,8 @@ 1792, 1801, 1791, + 1836, + 1838, 1832, 1821, 1823, @@ -5974,7 +6089,7 @@ ] }, { - "id": 2378, + "id": 2390, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -5984,7 +6099,7 @@ }, "children": [ { - "id": 2382, + "id": 2394, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6007,7 +6122,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2386, + "id": 2398, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6031,7 +6146,7 @@ "defaultValue": "\"create\"" }, { - "id": 2380, + "id": 2392, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6054,7 +6169,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2385, + "id": 2397, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6077,7 +6192,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2381, + "id": 2393, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6100,7 +6215,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2383, + "id": 2395, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6123,7 +6238,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2379, + "id": 2391, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6146,7 +6261,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2384, + "id": 2396, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6169,7 +6284,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2387, + "id": 2399, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6198,15 +6313,15 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2382, - 2386, - 2380, - 2385, - 2381, - 2383, - 2379, - 2384, - 2387 + 2394, + 2398, + 2392, + 2397, + 2393, + 2395, + 2391, + 2396, + 2399 ] } ], @@ -6219,7 +6334,7 @@ ] }, { - "id": 2559, + "id": 2571, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6235,7 +6350,7 @@ }, "children": [ { - "id": 2560, + "id": 2572, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6258,7 +6373,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2560 + 2572 ] } ], @@ -6271,14 +6386,14 @@ ] }, { - "id": 2553, + "id": 2565, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2555, + "id": 2567, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -6293,7 +6408,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2556, + "id": 2568, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -6308,7 +6423,7 @@ "defaultValue": "\"none\"" }, { - "id": 2554, + "id": 2566, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -6328,9 +6443,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2555, - 2556, - 2554 + 2567, + 2568, + 2566 ] } ], @@ -6343,7 +6458,7 @@ ] }, { - "id": 2388, + "id": 2400, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -6359,7 +6474,7 @@ }, "children": [ { - "id": 2391, + "id": 2403, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -6377,7 +6492,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2394, + "id": 2406, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -6395,7 +6510,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2392, + "id": 2404, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -6413,7 +6528,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2389, + "id": 2401, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -6431,7 +6546,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2393, + "id": 2405, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -6449,7 +6564,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2390, + "id": 2402, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -6472,12 +6587,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2391, - 2394, - 2392, - 2389, - 2393, - 2390 + 2403, + 2406, + 2404, + 2401, + 2405, + 2402 ] } ], @@ -6490,7 +6605,7 @@ ] }, { - "id": 1836, + "id": 1842, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -6519,7 +6634,7 @@ }, "children": [ { - "id": 1847, + "id": 1853, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -6545,14 +6660,43 @@ "sources": [ { "fileName": "types.ts", - "line": 2722, + "line": 2752, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 1887, + "id": 1908, + "name": "AnswerChartSwitcher", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Toggle the visualization to chart or table view.", + "tags": [ + { + "tag": "param", + "text": "`vizId ` In Spotter Embed, vizId is required.", + "param": "-" + }, + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.AnswerChartSwitcher, {\n vizId:\"'b535c760-8bbe-4e6f-bb26-af56b4129a1e'\"\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3673, + "character": 4 + } + ], + "defaultValue": "\"answerChartSwitcher\"" + }, + { + "id": 1893, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -6573,14 +6717,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3431, + "line": 3502, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 1864, + "id": 1870, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -6606,14 +6750,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3000, + "line": 3050, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1861, + "id": 1867, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -6643,14 +6787,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2944, + "line": 2987, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1868, + "id": 1874, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -6676,14 +6820,38 @@ "sources": [ { "fileName": "types.ts", - "line": 3067, + "line": 3117, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1870, + "id": 1907, + "name": "DeleteLastPrompt", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Deletes the last prompt in spotter embed.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.DeleteLastPrompt);\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3662, + "character": 4 + } + ], + "defaultValue": "\"DeleteLastPrompt\"" + }, + { + "id": 1876, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -6708,14 +6876,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3103, + "line": 3153, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1872, + "id": 1878, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -6725,7 +6893,7 @@ "tags": [ { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsCsv, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nvizEmbed.trigger(HostEvent.DownloadAsCsv)\n```\n```js\nsearchEmbed.trigger(HostEvent.DownloadAsCsv)\n```" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsCsv, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nvizEmbed.trigger(HostEvent.DownloadAsCsv)\n```\n```js\nsearchEmbed.trigger(HostEvent.DownloadAsCsv)\n```\n```js\nspotterEmbed.trigger(HostEvent.DownloadAsCsv, {\n vizId:\"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```" }, { "tag": "version", @@ -6736,14 +6904,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3135, + "line": 3195, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1857, + "id": 1863, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -6765,14 +6933,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2880, + "line": 2917, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1871, + "id": 1877, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -6782,7 +6950,7 @@ "tags": [ { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsPng,\n{vizId:'730496d6-6903-4601-937e-2c691821af3c'})\n\nvizEmbed.trigger(HostEvent.DownloadAsPng)\n\nsearchEmbed.trigger(HostEvent.DownloadAsPng)\n```" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsPng,\n{vizId:'730496d6-6903-4601-937e-2c691821af3c'})\n\nvizEmbed.trigger(HostEvent.DownloadAsPng)\n\nsearchEmbed.trigger(HostEvent.DownloadAsPng)\n\nspotterEmbed.trigger(HostEvent.DownloadAsPng, {\n vizId:\"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```\n" }, { "tag": "version", @@ -6793,14 +6961,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3118, + "line": 3173, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1873, + "id": 1879, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -6810,7 +6978,7 @@ "tags": [ { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsXlsx, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nvizEmbed.trigger(HostEvent.DownloadAsXlsx)\n```\n```js\nsearchEmbed.trigger(HostEvent.DownloadAsXlsx)\n```" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsXlsx, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nvizEmbed.trigger(HostEvent.DownloadAsXlsx)\n```\n```js\nsearchEmbed.trigger(HostEvent.DownloadAsXlsx)\n```\n```js\nspotterEmbed.trigger(HostEvent.downloadAsXLSX, {\n vizId:\"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```" }, { "tag": "version", @@ -6821,14 +6989,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3152, + "line": 3217, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1838, + "id": 1844, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -6873,14 +7041,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2597, + "line": 2627, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 1863, + "id": 1869, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -6891,13 +7059,17 @@ "tags": [ { "tag": "param", - "text": "object - To trigger the action for a specific visualization\nin Liveboard embed, pass in `vizId` as a key.", + "text": "object - To trigger the action for a specific visualization\nin Liveboard embed, pass in `vizId` as a key.\nIn Spotter embed, vizId is required.", "param": "-" }, { "tag": "example", "text": "\n```js\nliveboardEmbed.trigger(HostEvent.Edit)\n```\n```js\nliveboardEmbed.trigger(HostEvent.Edit, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```" }, + { + "tag": "example", + "text": "\n```js\nconst pinResponse = await spotterEmbed.trigger(HostEvent.Edit, {\n vizId:'730496d6-6903-4601-937e-2c691821af3c'\n });\n```" + }, { "tag": "version", "text": "SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw\n" @@ -6907,14 +7079,43 @@ "sources": [ { "fileName": "types.ts", - "line": 2983, + "line": 3033, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1855, + "id": 1904, + "name": "EditLastPrompt", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Edits the last prompt in spotter embed.", + "tags": [ + { + "tag": "param", + "text": "`query`: Text string", + "param": "-" + }, + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.EditLastPrompt, \"revenue per year\");\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3638, + "character": 4 + } + ], + "defaultValue": "\"EditLastPrompt\"" + }, + { + "id": 1861, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -6935,14 +7136,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2858, + "line": 2895, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1860, + "id": 1866, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -6968,14 +7169,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2927, + "line": 2970, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1854, + "id": 1860, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -6996,14 +7197,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2848, + "line": 2885, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1886, + "id": 1892, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -7029,14 +7230,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3421, + "line": 3492, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 1880, + "id": 1886, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -7057,14 +7258,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3248, + "line": 3319, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 1841, + "id": 1847, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -7085,14 +7286,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2619, + "line": 2649, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 1891, + "id": 1897, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", @@ -7109,14 +7310,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3480, + "line": 3551, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 1866, + "id": 1872, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -7141,14 +7342,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3031, + "line": 3081, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 1882, + "id": 1888, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -7169,14 +7370,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3351, + "line": 3422, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 1851, + "id": 1857, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -7197,14 +7398,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2820, + "line": 2857, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1858, + "id": 1864, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -7228,6 +7429,10 @@ "tag": "example", "text": "\n```js\nsearchEmbed.trigger(HostEvent.MakeACopy)\n```" }, + { + "tag": "example", + "text": "\n```js\nconst pinResponse = await spotterEmbed.trigger(HostEvent.MakeACopy, {\n vizId:'730496d6-6903-4601-937e-2c691821af3c'\n });\n```" + }, { "tag": "version", "text": "SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw\n" @@ -7237,14 +7442,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2903, + "line": 2946, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1862, + "id": 1868, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7278,14 +7483,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2965, + "line": 3008, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1878, + "id": 1884, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -7311,14 +7516,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3225, + "line": 3296, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1845, + "id": 1851, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -7344,14 +7549,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2692, + "line": 2722, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 1846, + "id": 1852, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -7381,14 +7586,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2712, + "line": 2742, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 1850, + "id": 1856, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -7398,7 +7603,7 @@ "tags": [ { "tag": "param", - "text": "\n`vizId`- GUID of the saved Answer or visualization to pin to a Liveboard.\n Optional when pinning a new chart or table generated from a Search query." + "text": "\n`vizId`- GUID of the saved Answer or visualization to pin to a Liveboard.\n Optional when pinning a new chart or table generated from a Search query.\n Required in Spotter Embed." }, { "tag": "param", @@ -7436,6 +7641,10 @@ "tag": "example", "text": "\n```js\nappEmbed.trigger(HostEvent.Pin)\n```" }, + { + "tag": "example", + "text": "\n```js\nconst pinResponse = await spotterEmbed.trigger(HostEvent.Pin, {\n vizId:'730496d6-6903-4601-937e-2c691821af3c'\n });\n```" + }, { "tag": "version", "text": "SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw\n" @@ -7445,14 +7654,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2810, + "line": 2847, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1865, + "id": 1871, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -7478,14 +7687,38 @@ "sources": [ { "fileName": "types.ts", - "line": 3017, + "line": 3067, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1859, + "id": 1905, + "name": "PreviewSpotterData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Opens the Worksheet preview modal in Spotter Embed.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.PreviewSpotterData);\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3646, + "character": 4 + } + ], + "defaultValue": "\"PreviewSpotterData\"" + }, + { + "id": 1865, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -7510,14 +7743,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2917, + "line": 2960, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1848, + "id": 1854, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -7543,14 +7776,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2732, + "line": 2762, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 1889, + "id": 1895, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -7571,14 +7804,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3456, + "line": 3527, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 1879, + "id": 1885, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -7599,14 +7832,38 @@ "sources": [ { "fileName": "types.ts", - "line": 3237, + "line": 3308, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 1875, + "id": 1906, + "name": "ResetSpotterConversation", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Resets the Spotter Embed Conversation.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.ResetSpotterConversation);\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3654, + "character": 4 + } + ], + "defaultValue": "\"ResetSpotterConversation\"" + }, + { + "id": 1881, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -7614,9 +7871,14 @@ "comment": { "shortText": "Trigger the **Save** action on a Liveboard or Answer.\nSaves the changes.", "tags": [ + { + "tag": "param", + "text": "`vizId` is required in Spotter Embed.", + "param": "-" + }, { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.Save)\n```\n```js\nsearchEmbed.trigger(HostEvent.Save)\n```" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.Save)\n```\n```js\nsearchEmbed.trigger(HostEvent.Save)\n```\n```js\nspotterEmbed.trigger(HostEvent.Save, {\n vizId:\"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```" }, { "tag": "version", @@ -7627,14 +7889,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3178, + "line": 3249, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1894, + "id": 1900, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -7660,14 +7922,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3519, + "line": 3590, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 1852, + "id": 1858, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -7688,14 +7950,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2829, + "line": 2866, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1853, + "id": 1859, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -7716,14 +7978,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2838, + "line": 2875, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1837, + "id": 1843, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7755,14 +8017,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2547, + "line": 2577, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 1843, + "id": 1849, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -7788,14 +8050,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2644, + "line": 2674, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 1884, + "id": 1890, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -7821,14 +8083,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3377, + "line": 3448, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 1883, + "id": 1889, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -7854,14 +8116,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3364, + "line": 3435, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 1842, + "id": 1848, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -7887,14 +8149,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2632, + "line": 2662, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 1874, + "id": 1880, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -7915,14 +8177,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3165, + "line": 3230, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1867, + "id": 1873, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -7948,14 +8210,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3050, + "line": 3100, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1869, + "id": 1875, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -7981,14 +8243,48 @@ "sources": [ { "fileName": "types.ts", - "line": 3087, + "line": 3137, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1877, + "id": 1903, + "name": "SpotterSearch", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers a search operation with the search tokens specified in\nthe search query string in spotter embed.", + "tags": [ + { + "tag": "param", + "text": "`queryString`: Text string in Natural Language format", + "param": "-" + }, + { + "tag": "param", + "text": "`executeSearch`: Boolean to execute search and update search query", + "param": "-" + }, + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.SpotterSearch, {\n query: 'revenue per year',\n executeSearch: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3629, + "character": 4 + } + ], + "defaultValue": "\"SpotterSearch\"" + }, + { + "id": 1883, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -8014,14 +8310,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3209, + "line": 3280, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1876, + "id": 1882, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -8047,14 +8343,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3193, + "line": 3264, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1896, + "id": 1902, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -8080,14 +8376,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3544, + "line": 3615, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 1888, + "id": 1894, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -8108,14 +8404,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3447, + "line": 3518, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 1881, + "id": 1887, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -8158,14 +8454,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3338, + "line": 3409, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 1890, + "id": 1896, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", @@ -8182,14 +8478,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3470, + "line": 3541, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 1892, + "id": 1898, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8206,14 +8502,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3488, + "line": 3559, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 1844, + "id": 1850, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -8244,14 +8540,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2680, + "line": 2710, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 1885, + "id": 1891, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -8282,14 +8578,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3391, + "line": 3462, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 1856, + "id": 1862, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -8310,14 +8606,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2867, + "line": 2904, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1849, + "id": 1855, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -8338,7 +8634,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2748, + "line": 2778, "character": 4 } ], @@ -8350,75 +8646,81 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1847, - 1887, - 1864, - 1861, - 1868, + 1853, + 1908, + 1893, 1870, - 1872, - 1857, - 1871, - 1873, - 1838, + 1867, + 1874, + 1907, + 1876, + 1878, 1863, - 1855, + 1877, + 1879, + 1844, + 1869, + 1904, + 1861, + 1866, 1860, - 1854, + 1892, 1886, - 1880, - 1841, - 1891, - 1866, - 1882, + 1847, + 1897, + 1872, + 1888, + 1857, + 1864, + 1868, + 1884, 1851, - 1858, - 1862, - 1878, - 1845, - 1846, - 1850, + 1852, + 1856, + 1871, + 1905, 1865, + 1854, + 1895, + 1885, + 1906, + 1881, + 1900, + 1858, 1859, - 1848, + 1843, + 1849, + 1890, 1889, - 1879, + 1848, + 1880, + 1873, 1875, - 1894, - 1852, - 1853, - 1837, - 1843, - 1884, + 1903, 1883, - 1842, - 1874, - 1867, - 1869, - 1877, - 1876, + 1882, + 1902, + 1894, + 1887, 1896, - 1888, - 1881, - 1890, - 1892, - 1844, - 1885, - 1856, - 1849 + 1898, + 1850, + 1891, + 1862, + 1855 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2527, + "line": 2557, "character": 12 } ] }, { - "id": 2591, + "id": 2603, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -8434,7 +8736,7 @@ }, "children": [ { - "id": 2594, + "id": 2606, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -8452,7 +8754,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2595, + "id": 2607, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -8470,7 +8772,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2592, + "id": 2604, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -8488,7 +8790,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2596, + "id": 2608, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8506,7 +8808,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2593, + "id": 2605, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -8529,11 +8831,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2594, - 2595, - 2592, - 2596, - 2593 + 2606, + 2607, + 2604, + 2608, + 2605 ] } ], @@ -8546,7 +8848,7 @@ ] }, { - "id": 2530, + "id": 2542, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -8556,7 +8858,7 @@ }, "children": [ { - "id": 2535, + "id": 2547, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -8577,14 +8879,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5077, + "line": 5206, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2532, + "id": 2544, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -8605,14 +8907,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5038, + "line": 5167, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2534, + "id": 2546, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -8633,14 +8935,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5063, + "line": 5192, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2531, + "id": 2543, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -8661,14 +8963,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5026, + "line": 5155, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2536, + "id": 2548, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -8689,14 +8991,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5089, + "line": 5218, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2533, + "id": 2545, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -8717,7 +9019,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5050, + "line": 5179, "character": 4 } ], @@ -8729,19 +9031,19 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2535, - 2532, - 2534, - 2531, - 2536, - 2533 + 2547, + 2544, + 2546, + 2543, + 2548, + 2545 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5013, + "line": 5142, "character": 12 } ] @@ -8907,14 +9209,14 @@ ] }, { - "id": 2367, + "id": 2379, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2368, + "id": 2380, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -8922,14 +9224,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4942, + "line": 5071, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2370, + "id": 2382, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8937,14 +9239,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4944, + "line": 5073, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2369, + "id": 2381, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8952,14 +9254,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4943, + "line": 5072, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2371, + "id": 2383, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -8967,7 +9269,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4945, + "line": 5074, "character": 4 } ], @@ -8979,23 +9281,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2368, - 2370, - 2369, - 2371 + 2380, + 2382, + 2381, + 2383 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4941, + "line": 5070, "character": 12 } ] }, { - "id": 2557, + "id": 2569, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -9011,7 +9313,7 @@ }, "children": [ { - "id": 2558, + "id": 2570, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -9034,7 +9336,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2558 + 2570 ] } ], @@ -9359,14 +9661,14 @@ ] }, { - "id": 2584, + "id": 2596, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2589, + "id": 2601, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -9381,7 +9683,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2588, + "id": 2600, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -9396,7 +9698,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2587, + "id": 2599, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -9411,7 +9713,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2590, + "id": 2602, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -9426,7 +9728,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2585, + "id": 2597, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -9441,7 +9743,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2586, + "id": 2598, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -9461,12 +9763,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2589, - 2588, - 2587, - 2590, - 2585, - 2586 + 2601, + 2600, + 2599, + 2602, + 2597, + 2598 ] } ], @@ -9586,7 +9888,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2561, + "id": 2573, "name": "VizPoint" } } @@ -10774,7 +11076,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2395, + "id": 2407, "name": "DOMSelector" } }, @@ -10786,7 +11088,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2293, + "id": 2305, "name": "AppViewConfig" } } @@ -11397,7 +11699,7 @@ }, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } } @@ -11476,7 +11778,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } }, @@ -11488,7 +11790,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2396, + "id": 2408, "name": "MessageOptions" }, "defaultValue": "..." @@ -11799,7 +12101,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1836, + "id": 1842, "name": "HostEvent" } }, @@ -11918,7 +12220,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2584, + "id": 2596, "name": "UIPassthroughEvent" } } @@ -12900,7 +13202,7 @@ }, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } } @@ -12984,7 +13286,7 @@ }, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } }, @@ -12999,7 +13301,7 @@ }, "type": { "type": "reference", - "id": 2396, + "id": 2408, "name": "MessageOptions" }, "defaultValue": "..." @@ -13332,7 +13634,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1836, + "id": 1842, "name": "HostEvent" } }, @@ -13453,7 +13755,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2584, + "id": 2596, "name": "UIPassthroughEvent" } } @@ -13599,7 +13901,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 433, + "line": 428, "character": 4 } ], @@ -13619,7 +13921,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2395, + "id": 2407, "name": "DOMSelector" } }, @@ -13631,7 +13933,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2179, + "id": 2191, "name": "LiveboardViewConfig" } } @@ -13817,7 +14119,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 720, + "line": 735, "character": 11 } ], @@ -14118,7 +14420,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 701, + "line": 716, "character": 11 } ], @@ -14233,7 +14535,7 @@ }, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } } @@ -14312,7 +14614,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } }, @@ -14324,7 +14626,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2396, + "id": 2408, "name": "MessageOptions" }, "defaultValue": "..." @@ -14472,7 +14774,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 691, + "line": 706, "character": 17 } ], @@ -14611,7 +14913,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 671, + "line": 686, "character": 11 } ], @@ -14635,7 +14937,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1836, + "id": 1842, "name": "HostEvent" } }, @@ -14754,7 +15056,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2584, + "id": 2596, "name": "UIPassthroughEvent" } } @@ -14859,7 +15161,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 427, + "line": 422, "character": 13 } ], @@ -14919,7 +15221,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2395, + "id": 2407, "name": "DOMSelector" } }, @@ -14931,7 +15233,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2245, + "id": 2257, "name": "SageViewConfig" } } @@ -15465,7 +15767,7 @@ }, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } } @@ -15544,7 +15846,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } }, @@ -15556,7 +15858,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2396, + "id": 2408, "name": "MessageOptions" }, "defaultValue": "..." @@ -15868,7 +16170,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1836, + "id": 1842, "name": "HostEvent" } }, @@ -15987,7 +16289,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2584, + "id": 2596, "name": "UIPassthroughEvent" } } @@ -16162,7 +16464,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2140, + "id": 2152, "name": "SearchBarViewConfig" } } @@ -16663,7 +16965,7 @@ }, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } } @@ -16745,7 +17047,7 @@ }, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } }, @@ -16760,7 +17062,7 @@ }, "type": { "type": "reference", - "id": 2396, + "id": 2408, "name": "MessageOptions" }, "defaultValue": "..." @@ -17084,7 +17386,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1836, + "id": 1842, "name": "HostEvent" } }, @@ -17203,7 +17505,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2584, + "id": 2596, "name": "UIPassthroughEvent" } } @@ -17362,7 +17664,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2395, + "id": 2407, "name": "DOMSelector" } }, @@ -17374,7 +17676,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2085, + "id": 2097, "name": "SearchViewConfig" } } @@ -17907,7 +18209,7 @@ }, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } } @@ -17989,7 +18291,7 @@ }, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } }, @@ -18004,7 +18306,7 @@ }, "type": { "type": "reference", - "id": 2396, + "id": 2408, "name": "MessageOptions" }, "defaultValue": "..." @@ -18328,7 +18630,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1836, + "id": 1842, "name": "HostEvent" } }, @@ -18447,7 +18749,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2584, + "id": 2596, "name": "UIPassthroughEvent" } } @@ -19388,7 +19690,7 @@ }, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } } @@ -19470,7 +19772,7 @@ }, "type": { "type": "reference", - "id": 2399, + "id": 2411, "name": "MessageCallback" } }, @@ -19485,7 +19787,7 @@ }, "type": { "type": "reference", - "id": 2396, + "id": 2408, "name": "MessageOptions" }, "defaultValue": "..." @@ -19806,7 +20108,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1836, + "id": 1842, "name": "HostEvent" } }, @@ -19925,7 +20227,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2584, + "id": 2596, "name": "UIPassthroughEvent" } } @@ -20047,7 +20349,7 @@ ] }, { - "id": 2293, + "id": 2305, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -20063,7 +20365,7 @@ }, "children": [ { - "id": 2328, + "id": 2340, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -20093,20 +20395,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2329, + "id": 2341, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2330, + "id": 2342, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2331, + "id": 2343, "name": "key", "kind": 32768, "flags": {}, @@ -20142,7 +20444,7 @@ } }, { - "id": 2364, + "id": 2376, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -20183,7 +20485,7 @@ } }, { - "id": 2317, + "id": 2329, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -20220,7 +20522,7 @@ } }, { - "id": 2343, + "id": 2355, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -20249,7 +20551,7 @@ ], "type": { "type": "reference", - "id": 2032, + "id": 2044, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -20258,7 +20560,7 @@ } }, { - "id": 2327, + "id": 2339, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -20287,7 +20589,7 @@ ], "type": { "type": "reference", - "id": 2412, + "id": 2424, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -20296,7 +20598,7 @@ } }, { - "id": 2318, + "id": 2330, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -20333,7 +20635,7 @@ } }, { - "id": 2365, + "id": 2377, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -20374,7 +20676,7 @@ } }, { - "id": 2296, + "id": 2308, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -20411,7 +20713,7 @@ } }, { - "id": 2346, + "id": 2358, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -20448,7 +20750,7 @@ } }, { - "id": 2337, + "id": 2349, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -20485,7 +20787,7 @@ } }, { - "id": 2336, + "id": 2348, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -20516,7 +20818,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -20526,7 +20828,7 @@ } }, { - "id": 2314, + "id": 2326, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -20563,7 +20865,7 @@ } }, { - "id": 2360, + "id": 2372, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -20604,7 +20906,7 @@ } }, { - "id": 2319, + "id": 2331, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -20641,7 +20943,7 @@ } }, { - "id": 2316, + "id": 2328, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -20674,7 +20976,7 @@ } }, { - "id": 2366, + "id": 2378, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -20715,7 +21017,7 @@ } }, { - "id": 2297, + "id": 2309, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -20751,7 +21053,7 @@ } }, { - "id": 2308, + "id": 2320, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -20788,7 +21090,7 @@ } }, { - "id": 2363, + "id": 2375, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -20825,7 +21127,7 @@ } }, { - "id": 2359, + "id": 2371, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -20863,7 +21165,7 @@ } }, { - "id": 2362, + "id": 2374, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -20901,7 +21203,7 @@ } }, { - "id": 2348, + "id": 2360, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -20938,7 +21240,7 @@ } }, { - "id": 2352, + "id": 2364, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -20967,7 +21269,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2384, "name": "FrameParams" }, "inheritedFrom": { @@ -20976,7 +21278,7 @@ } }, { - "id": 2309, + "id": 2321, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -21010,7 +21312,7 @@ } }, { - "id": 2338, + "id": 2350, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -21045,7 +21347,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -21055,7 +21357,7 @@ } }, { - "id": 2334, + "id": 2346, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -21086,7 +21388,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2378, + "id": 2390, "name": "HomeLeftNavItem" } }, @@ -21096,7 +21398,7 @@ } }, { - "id": 2332, + "id": 2344, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -21128,7 +21430,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2388, + "id": 2400, "name": "HomepageModule" } }, @@ -21138,7 +21440,7 @@ } }, { - "id": 2335, + "id": 2347, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -21170,7 +21472,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2591, + "id": 2603, "name": "ListPageColumns" } }, @@ -21180,7 +21482,7 @@ } }, { - "id": 2340, + "id": 2352, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -21220,7 +21522,7 @@ } }, { - "id": 2301, + "id": 2313, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -21258,7 +21560,7 @@ } }, { - "id": 2298, + "id": 2310, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -21295,7 +21597,7 @@ } }, { - "id": 2295, + "id": 2307, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -21333,7 +21635,7 @@ } }, { - "id": 2324, + "id": 2336, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -21370,7 +21672,7 @@ } }, { - "id": 2310, + "id": 2322, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -21407,7 +21709,7 @@ } }, { - "id": 2300, + "id": 2312, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -21444,7 +21746,7 @@ } }, { - "id": 2299, + "id": 2311, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -21481,7 +21783,7 @@ } }, { - "id": 2306, + "id": 2318, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -21517,7 +21819,7 @@ } }, { - "id": 2302, + "id": 2314, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -21555,7 +21857,7 @@ } }, { - "id": 2321, + "id": 2333, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -21580,12 +21882,12 @@ ], "type": { "type": "reference", - "id": 2553, + "id": 2565, "name": "HomePageSearchBarMode" } }, { - "id": 2357, + "id": 2369, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -21622,7 +21924,7 @@ } }, { - "id": 2322, + "id": 2334, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -21659,7 +21961,7 @@ } }, { - "id": 2315, + "id": 2327, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -21692,7 +21994,7 @@ } }, { - "id": 2320, + "id": 2332, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -21721,7 +22023,7 @@ } }, { - "id": 2326, + "id": 2338, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -21758,7 +22060,7 @@ } }, { - "id": 2344, + "id": 2356, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -21795,7 +22097,7 @@ } }, { - "id": 2342, + "id": 2354, "name": "locale", "kind": 1024, "kindString": "Property", @@ -21832,7 +22134,7 @@ } }, { - "id": 2313, + "id": 2325, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -21869,7 +22171,7 @@ } }, { - "id": 2347, + "id": 2359, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -21906,7 +22208,7 @@ } }, { - "id": 2304, + "id": 2316, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -21941,7 +22243,7 @@ } }, { - "id": 2303, + "id": 2315, "name": "path", "kind": 1024, "kindString": "Property", @@ -21975,7 +22277,7 @@ } }, { - "id": 2350, + "id": 2362, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -22012,7 +22314,7 @@ } }, { - "id": 2349, + "id": 2361, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -22049,7 +22351,7 @@ } }, { - "id": 2333, + "id": 2345, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -22081,7 +22383,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2388, + "id": 2400, "name": "HomepageModule" } }, @@ -22091,7 +22393,7 @@ } }, { - "id": 2355, + "id": 2367, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -22132,7 +22434,7 @@ } }, { - "id": 2356, + "id": 2368, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -22163,7 +22465,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2527, + "id": 2539, "name": "RuntimeParameter" } }, @@ -22173,7 +22475,7 @@ } }, { - "id": 2341, + "id": 2353, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -22210,7 +22512,7 @@ } }, { - "id": 2312, + "id": 2324, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -22247,7 +22549,7 @@ } }, { - "id": 2325, + "id": 2337, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -22284,7 +22586,7 @@ } }, { - "id": 2311, + "id": 2323, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -22321,7 +22623,7 @@ } }, { - "id": 2323, + "id": 2335, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -22358,7 +22660,7 @@ } }, { - "id": 2294, + "id": 2306, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -22395,7 +22697,7 @@ } }, { - "id": 2305, + "id": 2317, "name": "tag", "kind": 1024, "kindString": "Property", @@ -22428,7 +22730,7 @@ } }, { - "id": 2339, + "id": 2351, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -22464,7 +22766,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -22479,69 +22781,69 @@ "title": "Properties", "kind": 1024, "children": [ - 2328, - 2364, - 2317, - 2343, - 2327, - 2318, - 2365, - 2296, - 2346, - 2337, - 2336, - 2314, - 2360, - 2319, - 2316, - 2366, - 2297, + 2340, + 2376, + 2329, + 2355, + 2339, + 2330, + 2377, 2308, - 2363, - 2359, - 2362, + 2358, + 2349, 2348, - 2352, + 2326, + 2372, + 2331, + 2328, + 2378, 2309, - 2338, - 2334, - 2332, - 2335, - 2340, - 2301, - 2298, - 2295, - 2324, - 2310, - 2300, - 2299, - 2306, - 2302, - 2321, - 2357, - 2322, - 2315, 2320, - 2326, + 2375, + 2371, + 2374, + 2360, + 2364, + 2321, + 2350, + 2346, 2344, - 2342, - 2313, 2347, - 2304, - 2303, - 2350, - 2349, + 2352, + 2313, + 2310, + 2307, + 2336, + 2322, + 2312, + 2311, + 2318, + 2314, 2333, - 2355, + 2369, + 2334, + 2327, + 2332, + 2338, 2356, - 2341, - 2312, + 2354, 2325, - 2311, + 2359, + 2316, + 2315, + 2362, + 2361, + 2345, + 2367, + 2368, + 2353, + 2324, + 2337, 2323, - 2294, - 2305, - 2339 + 2335, + 2306, + 2317, + 2351 ] } ], @@ -23477,7 +23779,7 @@ ], "type": { "type": "reference", - "id": 2032, + "id": 2044, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -23516,7 +23818,7 @@ ], "type": { "type": "reference", - "id": 2412, + "id": 2424, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -23675,7 +23977,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -23953,7 +24255,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2384, "name": "FrameParams" }, "inheritedFrom": { @@ -23998,7 +24300,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -24040,7 +24342,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2378, + "id": 2390, "name": "HomeLeftNavItem" } }, @@ -24083,7 +24385,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2388, + "id": 2400, "name": "HomepageModule" } }, @@ -24126,7 +24428,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2591, + "id": 2603, "name": "ListPageColumns" } }, @@ -24438,7 +24740,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2388, + "id": 2400, "name": "HomepageModule" } }, @@ -24522,7 +24824,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2527, + "id": 2539, "name": "RuntimeParameter" } }, @@ -24607,7 +24909,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -24915,7 +25217,7 @@ ], "type": { "type": "reference", - "id": 2032, + "id": 2044, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -24954,7 +25256,7 @@ ], "type": { "type": "reference", - "id": 2412, + "id": 2424, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -25151,7 +25453,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -25429,7 +25731,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2384, "name": "FrameParams" }, "inheritedFrom": { @@ -25474,7 +25776,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -25516,7 +25818,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2378, + "id": 2390, "name": "HomeLeftNavItem" } }, @@ -25559,7 +25861,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2388, + "id": 2400, "name": "HomepageModule" } }, @@ -25602,7 +25904,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2591, + "id": 2603, "name": "ListPageColumns" } }, @@ -25990,7 +26292,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2388, + "id": 2400, "name": "HomepageModule" } }, @@ -26074,7 +26376,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2527, + "id": 2539, "name": "RuntimeParameter" } }, @@ -26225,7 +26527,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -26366,7 +26668,7 @@ ] }, { - "id": 2564, + "id": 2576, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -26381,7 +26683,7 @@ }, "children": [ { - "id": 2565, + "id": 2577, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -26391,21 +26693,21 @@ "sources": [ { "fileName": "types.ts", - "line": 4986, + "line": 5115, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2566, + "id": 2578, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2567, + "id": 2579, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -26413,18 +26715,18 @@ "sources": [ { "fileName": "types.ts", - "line": 4987, + "line": 5116, "character": 8 } ], "type": { "type": "reference", - "id": 2561, + "id": 2573, "name": "VizPoint" } }, { - "id": 2568, + "id": 2580, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -26432,7 +26734,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4988, + "line": 5117, "character": 8 } ], @@ -26440,7 +26742,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2561, + "id": 2573, "name": "VizPoint" } } @@ -26451,8 +26753,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2567, - 2568 + 2579, + 2580 ] } ] @@ -26460,7 +26762,7 @@ } }, { - "id": 2569, + "id": 2581, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -26468,21 +26770,21 @@ "sources": [ { "fileName": "types.ts", - "line": 4990, + "line": 5119, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2570, + "id": 2582, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2578, + "id": 2590, "name": "columns", "kind": 1024, "kindString": "Property", @@ -26490,7 +26792,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4998, + "line": 5127, "character": 8 } ], @@ -26503,7 +26805,7 @@ } }, { - "id": 2579, + "id": 2591, "name": "data", "kind": 1024, "kindString": "Property", @@ -26511,7 +26813,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4999, + "line": 5128, "character": 8 } ], @@ -26524,7 +26826,7 @@ } }, { - "id": 2572, + "id": 2584, "name": "id", "kind": 1024, "kindString": "Property", @@ -26532,7 +26834,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4992, + "line": 5121, "character": 8 } ], @@ -26542,7 +26844,7 @@ } }, { - "id": 2571, + "id": 2583, "name": "name", "kind": 1024, "kindString": "Property", @@ -26550,7 +26852,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4991, + "line": 5120, "character": 8 } ], @@ -26560,7 +26862,7 @@ } }, { - "id": 2573, + "id": 2585, "name": "sources", "kind": 1024, "kindString": "Property", @@ -26568,21 +26870,21 @@ "sources": [ { "fileName": "types.ts", - "line": 4993, + "line": 5122, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2574, + "id": 2586, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2575, + "id": 2587, "name": "header", "kind": 1024, "kindString": "Property", @@ -26590,21 +26892,21 @@ "sources": [ { "fileName": "types.ts", - "line": 4994, + "line": 5123, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2576, + "id": 2588, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2577, + "id": 2589, "name": "guid", "kind": 1024, "kindString": "Property", @@ -26612,7 +26914,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4995, + "line": 5124, "character": 16 } ], @@ -26627,7 +26929,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2577 + 2589 ] } ] @@ -26640,7 +26942,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2575 + 2587 ] } ] @@ -26653,23 +26955,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2578, - 2579, - 2572, - 2571, - 2573 + 2590, + 2591, + 2584, + 2583, + 2585 ] } ], "indexSignature": { - "id": 2580, + "id": 2592, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2581, + "id": 2593, "name": "key", "kind": 32768, "flags": {}, @@ -26688,7 +26990,7 @@ } }, { - "id": 2582, + "id": 2594, "name": "session", "kind": 1024, "kindString": "Property", @@ -26696,7 +26998,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5002, + "line": 5131, "character": 4 } ], @@ -26707,7 +27009,7 @@ } }, { - "id": 2583, + "id": 2595, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -26717,7 +27019,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5003, + "line": 5132, "character": 4 } ], @@ -26732,23 +27034,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2565, - 2569, - 2582, - 2583 + 2577, + 2581, + 2594, + 2595 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4985, + "line": 5114, "character": 17 } ] }, { - "id": 2434, + "id": 2446, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -26758,7 +27060,7 @@ }, "children": [ { - "id": 2488, + "id": 2500, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -26781,7 +27083,7 @@ } }, { - "id": 2487, + "id": 2499, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -26804,7 +27106,7 @@ } }, { - "id": 2457, + "id": 2469, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -26827,7 +27129,7 @@ } }, { - "id": 2458, + "id": 2470, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -26850,7 +27152,7 @@ } }, { - "id": 2460, + "id": 2472, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -26873,7 +27175,7 @@ } }, { - "id": 2459, + "id": 2471, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -26896,7 +27198,7 @@ } }, { - "id": 2439, + "id": 2451, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -26919,7 +27221,7 @@ } }, { - "id": 2500, + "id": 2512, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -26942,7 +27244,7 @@ } }, { - "id": 2501, + "id": 2513, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -26965,7 +27267,7 @@ } }, { - "id": 2498, + "id": 2510, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -26988,7 +27290,7 @@ } }, { - "id": 2499, + "id": 2511, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -27011,7 +27313,7 @@ } }, { - "id": 2462, + "id": 2474, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -27034,7 +27336,7 @@ } }, { - "id": 2467, + "id": 2479, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -27057,7 +27359,7 @@ } }, { - "id": 2464, + "id": 2476, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -27080,7 +27382,7 @@ } }, { - "id": 2466, + "id": 2478, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -27103,7 +27405,7 @@ } }, { - "id": 2465, + "id": 2477, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -27126,7 +27428,7 @@ } }, { - "id": 2463, + "id": 2475, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -27149,7 +27451,7 @@ } }, { - "id": 2472, + "id": 2484, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -27172,7 +27474,7 @@ } }, { - "id": 2469, + "id": 2481, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -27195,7 +27497,7 @@ } }, { - "id": 2471, + "id": 2483, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -27218,7 +27520,7 @@ } }, { - "id": 2470, + "id": 2482, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -27241,7 +27543,7 @@ } }, { - "id": 2468, + "id": 2480, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -27264,7 +27566,7 @@ } }, { - "id": 2476, + "id": 2488, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -27287,7 +27589,7 @@ } }, { - "id": 2475, + "id": 2487, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -27310,7 +27612,7 @@ } }, { - "id": 2474, + "id": 2486, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -27333,7 +27635,7 @@ } }, { - "id": 2473, + "id": 2485, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -27356,7 +27658,7 @@ } }, { - "id": 2461, + "id": 2473, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -27379,7 +27681,7 @@ } }, { - "id": 2523, + "id": 2535, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -27402,7 +27704,7 @@ } }, { - "id": 2526, + "id": 2538, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -27425,7 +27727,7 @@ } }, { - "id": 2521, + "id": 2533, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -27448,7 +27750,7 @@ } }, { - "id": 2524, + "id": 2536, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -27471,7 +27773,7 @@ } }, { - "id": 2525, + "id": 2537, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -27494,7 +27796,7 @@ } }, { - "id": 2520, + "id": 2532, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -27517,7 +27819,7 @@ } }, { - "id": 2522, + "id": 2534, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -27540,7 +27842,7 @@ } }, { - "id": 2493, + "id": 2505, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -27563,7 +27865,7 @@ } }, { - "id": 2492, + "id": 2504, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -27586,7 +27888,7 @@ } }, { - "id": 2495, + "id": 2507, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -27609,7 +27911,7 @@ } }, { - "id": 2494, + "id": 2506, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -27632,7 +27934,7 @@ } }, { - "id": 2491, + "id": 2503, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -27655,7 +27957,7 @@ } }, { - "id": 2489, + "id": 2501, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -27678,7 +27980,7 @@ } }, { - "id": 2490, + "id": 2502, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -27701,7 +28003,7 @@ } }, { - "id": 2496, + "id": 2508, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -27724,7 +28026,7 @@ } }, { - "id": 2497, + "id": 2509, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -27747,7 +28049,7 @@ } }, { - "id": 2508, + "id": 2520, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -27770,7 +28072,7 @@ } }, { - "id": 2509, + "id": 2521, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -27793,7 +28095,7 @@ } }, { - "id": 2512, + "id": 2524, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -27816,7 +28118,7 @@ } }, { - "id": 2510, + "id": 2522, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -27839,7 +28141,7 @@ } }, { - "id": 2511, + "id": 2523, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -27862,7 +28164,7 @@ } }, { - "id": 2519, + "id": 2531, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -27885,7 +28187,7 @@ } }, { - "id": 2518, + "id": 2530, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -27908,7 +28210,7 @@ } }, { - "id": 2517, + "id": 2529, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -27931,7 +28233,7 @@ } }, { - "id": 2516, + "id": 2528, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -27954,7 +28256,7 @@ } }, { - "id": 2514, + "id": 2526, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -27977,7 +28279,7 @@ } }, { - "id": 2513, + "id": 2525, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -28000,7 +28302,7 @@ } }, { - "id": 2506, + "id": 2518, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -28023,7 +28325,7 @@ } }, { - "id": 2503, + "id": 2515, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -28046,7 +28348,7 @@ } }, { - "id": 2502, + "id": 2514, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -28069,7 +28371,7 @@ } }, { - "id": 2504, + "id": 2516, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -28092,7 +28394,7 @@ } }, { - "id": 2507, + "id": 2519, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -28115,7 +28417,7 @@ } }, { - "id": 2505, + "id": 2517, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -28138,7 +28440,7 @@ } }, { - "id": 2440, + "id": 2452, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -28161,7 +28463,7 @@ } }, { - "id": 2441, + "id": 2453, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -28184,7 +28486,7 @@ } }, { - "id": 2435, + "id": 2447, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -28207,7 +28509,7 @@ } }, { - "id": 2436, + "id": 2448, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -28230,7 +28532,7 @@ } }, { - "id": 2437, + "id": 2449, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -28253,7 +28555,7 @@ } }, { - "id": 2438, + "id": 2450, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -28276,7 +28578,7 @@ } }, { - "id": 2449, + "id": 2461, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -28299,7 +28601,7 @@ } }, { - "id": 2453, + "id": 2465, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -28322,7 +28624,7 @@ } }, { - "id": 2454, + "id": 2466, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -28345,7 +28647,7 @@ } }, { - "id": 2452, + "id": 2464, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -28368,7 +28670,7 @@ } }, { - "id": 2448, + "id": 2460, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -28391,7 +28693,7 @@ } }, { - "id": 2451, + "id": 2463, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -28414,7 +28716,7 @@ } }, { - "id": 2445, + "id": 2457, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -28437,7 +28739,7 @@ } }, { - "id": 2446, + "id": 2458, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -28460,7 +28762,7 @@ } }, { - "id": 2447, + "id": 2459, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -28483,7 +28785,7 @@ } }, { - "id": 2442, + "id": 2454, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -28506,7 +28808,7 @@ } }, { - "id": 2443, + "id": 2455, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -28529,7 +28831,7 @@ } }, { - "id": 2444, + "id": 2456, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -28552,7 +28854,7 @@ } }, { - "id": 2450, + "id": 2462, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -28575,7 +28877,7 @@ } }, { - "id": 2515, + "id": 2527, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -28598,7 +28900,7 @@ } }, { - "id": 2455, + "id": 2467, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -28621,7 +28923,7 @@ } }, { - "id": 2456, + "id": 2468, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -28644,7 +28946,7 @@ } }, { - "id": 2485, + "id": 2497, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -28667,7 +28969,7 @@ } }, { - "id": 2483, + "id": 2495, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -28690,7 +28992,7 @@ } }, { - "id": 2484, + "id": 2496, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -28713,7 +29015,7 @@ } }, { - "id": 2480, + "id": 2492, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -28736,7 +29038,7 @@ } }, { - "id": 2481, + "id": 2493, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -28759,7 +29061,7 @@ } }, { - "id": 2482, + "id": 2494, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -28782,7 +29084,7 @@ } }, { - "id": 2486, + "id": 2498, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -28805,7 +29107,7 @@ } }, { - "id": 2477, + "id": 2489, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -28828,7 +29130,7 @@ } }, { - "id": 2478, + "id": 2490, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -28851,7 +29153,7 @@ } }, { - "id": 2479, + "id": 2491, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -28879,98 +29181,98 @@ "title": "Properties", "kind": 1024, "children": [ - 2488, - 2487, - 2457, - 2458, - 2460, - 2459, - 2439, 2500, - 2501, - 2498, 2499, - 2462, - 2467, - 2464, - 2466, - 2465, - 2463, - 2472, 2469, - 2471, 2470, - 2468, + 2472, + 2471, + 2451, + 2512, + 2513, + 2510, + 2511, + 2474, + 2479, 2476, + 2478, + 2477, 2475, - 2474, + 2484, + 2481, + 2483, + 2482, + 2480, + 2488, + 2487, + 2486, + 2485, 2473, - 2461, - 2523, - 2526, + 2535, + 2538, + 2533, + 2536, + 2537, + 2532, + 2534, + 2505, + 2504, + 2507, + 2506, + 2503, + 2501, + 2502, + 2508, + 2509, + 2520, 2521, 2524, - 2525, - 2520, 2522, - 2493, - 2492, - 2495, - 2494, - 2491, - 2489, - 2490, - 2496, - 2497, - 2508, - 2509, - 2512, - 2510, - 2511, - 2519, + 2523, + 2531, + 2530, + 2529, + 2528, + 2526, + 2525, 2518, - 2517, - 2516, + 2515, 2514, - 2513, - 2506, - 2503, - 2502, - 2504, - 2507, - 2505, - 2440, - 2441, - 2435, - 2436, - 2437, - 2438, - 2449, - 2453, - 2454, + 2516, + 2519, + 2517, 2452, - 2448, - 2451, - 2445, - 2446, + 2453, 2447, - 2442, - 2443, - 2444, + 2448, + 2449, 2450, - 2515, + 2461, + 2465, + 2466, + 2464, + 2460, + 2463, + 2457, + 2458, + 2459, + 2454, 2455, 2456, - 2485, - 2483, - 2484, - 2480, - 2481, - 2482, - 2486, - 2477, - 2478, - 2479 + 2462, + 2527, + 2467, + 2468, + 2497, + 2495, + 2496, + 2492, + 2493, + 2494, + 2498, + 2489, + 2490, + 2491 ] } ], @@ -28983,7 +29285,7 @@ ] }, { - "id": 2422, + "id": 2434, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -28993,7 +29295,7 @@ }, "children": [ { - "id": 2424, + "id": 2436, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -29009,12 +29311,12 @@ ], "type": { "type": "reference", - "id": 2425, + "id": 2437, "name": "customCssInterface" } }, { - "id": 2423, + "id": 2435, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -29039,8 +29341,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2424, - 2423 + 2436, + 2435 ] } ], @@ -29053,7 +29355,7 @@ ] }, { - "id": 2412, + "id": 2424, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -29069,7 +29371,7 @@ }, "children": [ { - "id": 2414, + "id": 2426, "name": "content", "kind": 1024, "kindString": "Property", @@ -29086,14 +29388,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2415, + "id": 2427, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2417, + "id": 2429, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -29123,7 +29425,7 @@ } }, { - "id": 2418, + "id": 2430, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -29143,7 +29445,7 @@ } }, { - "id": 2416, + "id": 2428, "name": "strings", "kind": 1024, "kindString": "Property", @@ -29186,21 +29488,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2417, - 2418, - 2416 + 2429, + 2430, + 2428 ] } ], "indexSignature": { - "id": 2419, + "id": 2431, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2420, + "id": 2432, "name": "key", "kind": 32768, "flags": {}, @@ -29219,7 +29521,7 @@ } }, { - "id": 2421, + "id": 2433, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -29239,7 +29541,7 @@ } }, { - "id": 2413, + "id": 2425, "name": "style", "kind": 1024, "kindString": "Property", @@ -29255,7 +29557,7 @@ ], "type": { "type": "reference", - "id": 2422, + "id": 2434, "name": "CustomStyles" } } @@ -29265,9 +29567,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2414, - 2421, - 2413 + 2426, + 2433, + 2425 ] } ], @@ -29280,7 +29582,7 @@ ] }, { - "id": 2036, + "id": 2048, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -29296,7 +29598,7 @@ }, "children": [ { - "id": 2078, + "id": 2090, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -29326,20 +29628,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2079, + "id": 2091, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2080, + "id": 2092, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2081, + "id": 2093, "name": "key", "kind": 32768, "flags": {}, @@ -29371,7 +29673,7 @@ } }, { - "id": 2039, + "id": 2051, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -29394,7 +29696,7 @@ } }, { - "id": 2060, + "id": 2072, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -29436,7 +29738,7 @@ } }, { - "id": 2062, + "id": 2074, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -29465,7 +29767,7 @@ } }, { - "id": 2038, + "id": 2050, "name": "authType", "kind": 1024, "kindString": "Property", @@ -29487,7 +29789,7 @@ } }, { - "id": 2051, + "id": 2063, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -29516,7 +29818,7 @@ } }, { - "id": 2063, + "id": 2075, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -29549,7 +29851,7 @@ } }, { - "id": 2054, + "id": 2066, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -29578,7 +29880,7 @@ } }, { - "id": 2075, + "id": 2087, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -29607,7 +29909,7 @@ } }, { - "id": 2082, + "id": 2094, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -29650,7 +29952,7 @@ } }, { - "id": 2059, + "id": 2071, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -29675,12 +29977,12 @@ ], "type": { "type": "reference", - "id": 2412, + "id": 2424, "name": "CustomisationsInterface" } }, { - "id": 2073, + "id": 2085, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -29709,7 +30011,7 @@ } }, { - "id": 2056, + "id": 2068, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -29739,7 +30041,7 @@ } }, { - "id": 2084, + "id": 2096, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -29776,7 +30078,7 @@ } }, { - "id": 2077, + "id": 2089, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -29805,7 +30107,7 @@ } }, { - "id": 2052, + "id": 2064, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -29838,7 +30140,7 @@ } }, { - "id": 2083, + "id": 2095, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -29858,7 +30160,7 @@ } }, { - "id": 2072, + "id": 2084, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -29887,7 +30189,7 @@ } }, { - "id": 2050, + "id": 2062, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -29916,7 +30218,7 @@ } }, { - "id": 2045, + "id": 2057, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -29950,7 +30252,7 @@ } }, { - "id": 2071, + "id": 2083, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -29983,12 +30285,12 @@ ], "type": { "type": "reference", - "id": 2530, + "id": 2542, "name": "LogLevel" } }, { - "id": 2053, + "id": 2065, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -30017,7 +30319,7 @@ } }, { - "id": 2044, + "id": 2056, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -30050,7 +30352,7 @@ } }, { - "id": 2074, + "id": 2086, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -30079,7 +30381,7 @@ } }, { - "id": 2043, + "id": 2055, "name": "password", "kind": 1024, "kindString": "Property", @@ -30103,7 +30405,7 @@ } }, { - "id": 2069, + "id": 2081, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -30132,7 +30434,7 @@ } }, { - "id": 2055, + "id": 2067, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -30165,7 +30467,7 @@ } }, { - "id": 2046, + "id": 2058, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -30195,7 +30497,7 @@ } }, { - "id": 2048, + "id": 2060, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -30224,7 +30526,7 @@ } }, { - "id": 2070, + "id": 2082, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -30253,7 +30555,7 @@ } }, { - "id": 2049, + "id": 2061, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -30282,7 +30584,7 @@ } }, { - "id": 2058, + "id": 2070, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -30305,7 +30607,7 @@ } }, { - "id": 2057, + "id": 2069, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -30334,7 +30636,7 @@ } }, { - "id": 2037, + "id": 2049, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -30355,7 +30657,7 @@ } }, { - "id": 2061, + "id": 2073, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -30378,7 +30680,7 @@ } }, { - "id": 2042, + "id": 2054, "name": "username", "kind": 1024, "kindString": "Property", @@ -30401,7 +30703,7 @@ } }, { - "id": 2040, + "id": 2052, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -30417,7 +30719,7 @@ ], "signatures": [ { - "id": 2041, + "id": 2053, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -30445,49 +30747,49 @@ "title": "Properties", "kind": 1024, "children": [ - 2078, - 2039, - 2060, - 2062, - 2038, + 2090, 2051, + 2072, + 2074, + 2050, 2063, - 2054, 2075, - 2082, - 2059, - 2073, - 2056, + 2066, + 2087, + 2094, + 2071, + 2085, + 2068, + 2096, + 2089, + 2064, + 2095, 2084, - 2077, - 2052, + 2062, + 2057, 2083, - 2072, - 2050, - 2045, - 2071, - 2053, - 2044, - 2074, - 2043, - 2069, + 2065, + 2056, + 2086, 2055, - 2046, - 2048, - 2070, - 2049, + 2081, + 2067, 2058, - 2057, - 2037, + 2060, + 2082, 2061, - 2042 + 2070, + 2069, + 2049, + 2073, + 2054 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2040 + 2052 ] } ], @@ -30500,7 +30802,7 @@ ] }, { - "id": 2372, + "id": 2384, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -30516,7 +30818,7 @@ }, "children": [ { - "id": 2374, + "id": 2386, "name": "height", "kind": 1024, "kindString": "Property", @@ -30548,7 +30850,7 @@ } }, { - "id": 2375, + "id": 2387, "name": "loading", "kind": 1024, "kindString": "Property", @@ -30584,7 +30886,7 @@ } }, { - "id": 2373, + "id": 2385, "name": "width", "kind": 1024, "kindString": "Property", @@ -30621,9 +30923,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2374, - 2375, - 2373 + 2386, + 2387, + 2385 ] } ], @@ -30635,7 +30937,7 @@ } ], "indexSignature": { - "id": 2376, + "id": 2388, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -30645,7 +30947,7 @@ }, "parameters": [ { - "id": 2377, + "id": 2389, "name": "key", "kind": 32768, "flags": {}, @@ -30679,7 +30981,7 @@ } }, { - "id": 2179, + "id": 2191, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -30695,7 +30997,7 @@ }, "children": [ { - "id": 2190, + "id": 2202, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -30718,7 +31020,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 181, + "line": 176, "character": 4 } ], @@ -30728,7 +31030,7 @@ } }, { - "id": 2208, + "id": 2220, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -30758,20 +31060,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2209, + "id": 2221, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2210, + "id": 2222, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2211, + "id": 2223, "name": "key", "kind": 32768, "flags": {}, @@ -30807,7 +31109,7 @@ } }, { - "id": 2242, + "id": 2254, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -30848,7 +31150,7 @@ } }, { - "id": 2221, + "id": 2233, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -30877,7 +31179,7 @@ ], "type": { "type": "reference", - "id": 2032, + "id": 2044, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -30886,7 +31188,7 @@ } }, { - "id": 2206, + "id": 2218, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -30913,7 +31215,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 409, + "line": 404, "character": 4 } ], @@ -30923,7 +31225,7 @@ } }, { - "id": 2207, + "id": 2219, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -30952,7 +31254,7 @@ ], "type": { "type": "reference", - "id": 2412, + "id": 2424, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -30961,7 +31263,7 @@ } }, { - "id": 2243, + "id": 2255, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -31002,7 +31304,7 @@ } }, { - "id": 2181, + "id": 2193, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -31029,7 +31331,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 80, + "line": 75, "character": 4 } ], @@ -31039,7 +31341,7 @@ } }, { - "id": 2224, + "id": 2236, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -31076,7 +31378,7 @@ } }, { - "id": 2214, + "id": 2226, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -31113,7 +31415,7 @@ } }, { - "id": 2213, + "id": 2225, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -31144,7 +31446,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -31154,7 +31456,7 @@ } }, { - "id": 2238, + "id": 2250, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -31195,7 +31497,7 @@ } }, { - "id": 2197, + "id": 2209, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -31222,7 +31524,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 273, + "line": 268, "character": 4 } ], @@ -31232,7 +31534,7 @@ } }, { - "id": 2196, + "id": 2208, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -31259,7 +31561,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 259, + "line": 254, "character": 4 } ], @@ -31269,7 +31571,7 @@ } }, { - "id": 2244, + "id": 2256, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -31310,7 +31612,7 @@ } }, { - "id": 2241, + "id": 2253, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -31347,7 +31649,7 @@ } }, { - "id": 2182, + "id": 2194, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -31373,7 +31675,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 92, + "line": 87, "character": 4 } ], @@ -31383,7 +31685,7 @@ } }, { - "id": 2237, + "id": 2249, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -31421,7 +31723,7 @@ } }, { - "id": 2240, + "id": 2252, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -31459,7 +31761,7 @@ } }, { - "id": 2226, + "id": 2238, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -31496,7 +31798,7 @@ } }, { - "id": 2230, + "id": 2242, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -31525,7 +31827,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2384, "name": "FrameParams" }, "inheritedFrom": { @@ -31534,7 +31836,7 @@ } }, { - "id": 2180, + "id": 2192, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -31558,7 +31860,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 64, + "line": 59, "character": 4 } ], @@ -31568,7 +31870,7 @@ } }, { - "id": 2215, + "id": 2227, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -31603,7 +31905,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -31613,7 +31915,7 @@ } }, { - "id": 2212, + "id": 2224, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -31645,7 +31947,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2591, + "id": 2603, "name": "ListPageColumns" } }, @@ -31655,7 +31957,7 @@ } }, { - "id": 2217, + "id": 2229, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -31695,7 +31997,7 @@ } }, { - "id": 2202, + "id": 2214, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -31722,7 +32024,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 354, + "line": 349, "character": 4 } ], @@ -31732,7 +32034,7 @@ } }, { - "id": 2192, + "id": 2204, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -31759,7 +32061,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 206, + "line": 201, "character": 4 } ], @@ -31769,7 +32071,7 @@ } }, { - "id": 2191, + "id": 2203, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -31792,7 +32094,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 193, + "line": 188, "character": 4 } ], @@ -31802,7 +32104,7 @@ } }, { - "id": 2235, + "id": 2247, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -31839,7 +32141,7 @@ } }, { - "id": 2199, + "id": 2211, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -31866,7 +32168,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 311, + "line": 306, "character": 4 } ], @@ -31876,7 +32178,7 @@ } }, { - "id": 2195, + "id": 2207, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -31899,7 +32201,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 246, + "line": 241, "character": 4 } ], @@ -31909,7 +32211,7 @@ } }, { - "id": 2222, + "id": 2234, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -31946,7 +32248,7 @@ } }, { - "id": 2183, + "id": 2195, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -31969,7 +32271,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 104, + "line": 99, "character": 4 } ], @@ -31979,7 +32281,7 @@ } }, { - "id": 2189, + "id": 2201, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -32002,7 +32304,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 168, + "line": 163, "character": 4 } ], @@ -32012,7 +32314,7 @@ } }, { - "id": 2220, + "id": 2232, "name": "locale", "kind": 1024, "kindString": "Property", @@ -32049,7 +32351,7 @@ } }, { - "id": 2225, + "id": 2237, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -32086,7 +32388,7 @@ } }, { - "id": 2228, + "id": 2240, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -32123,7 +32425,7 @@ } }, { - "id": 2186, + "id": 2198, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -32146,7 +32448,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 134, + "line": 129, "character": 4 } ], @@ -32156,7 +32458,7 @@ } }, { - "id": 2227, + "id": 2239, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -32193,7 +32495,7 @@ } }, { - "id": 2233, + "id": 2245, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -32234,7 +32536,7 @@ } }, { - "id": 2234, + "id": 2246, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -32265,7 +32567,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2527, + "id": 2539, "name": "RuntimeParameter" } }, @@ -32275,7 +32577,7 @@ } }, { - "id": 2219, + "id": 2231, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -32312,7 +32614,7 @@ } }, { - "id": 2194, + "id": 2206, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -32339,7 +32641,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 232, + "line": 227, "character": 4 } ], @@ -32349,7 +32651,7 @@ } }, { - "id": 2201, + "id": 2213, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -32376,7 +32678,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 340, + "line": 335, "character": 4 } ], @@ -32386,7 +32688,7 @@ } }, { - "id": 2193, + "id": 2205, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -32413,7 +32715,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 219, + "line": 214, "character": 4 } ], @@ -32423,7 +32725,7 @@ } }, { - "id": 2200, + "id": 2212, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -32450,7 +32752,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 325, + "line": 320, "character": 4 } ], @@ -32460,7 +32762,7 @@ } }, { - "id": 2198, + "id": 2210, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -32484,7 +32786,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 294, + "line": 289, "character": 4 } ], @@ -32494,7 +32796,7 @@ } }, { - "id": 2216, + "id": 2228, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -32530,7 +32832,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -32540,7 +32842,7 @@ } }, { - "id": 2218, + "id": 2230, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -32581,7 +32883,7 @@ } }, { - "id": 2187, + "id": 2199, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -32604,7 +32906,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 150, + "line": 145, "character": 4 } ], @@ -32617,7 +32919,7 @@ } }, { - "id": 2185, + "id": 2197, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -32640,7 +32942,7 @@ "sources": [ { "fileName": "embed/liveboard.ts", - "line": 121, + "line": 116, "character": 4 } ], @@ -32655,64 +32957,64 @@ "title": "Properties", "kind": 1024, "children": [ - 2190, + 2202, + 2220, + 2254, + 2233, + 2218, + 2219, + 2255, + 2193, + 2236, + 2226, + 2225, + 2250, + 2209, 2208, + 2256, + 2253, + 2194, + 2249, + 2252, + 2238, 2242, - 2221, - 2206, - 2207, - 2243, - 2181, + 2192, + 2227, 2224, + 2229, 2214, - 2213, - 2238, - 2197, - 2196, - 2244, - 2241, - 2182, + 2204, + 2203, + 2247, + 2211, + 2207, + 2234, + 2195, + 2201, + 2232, 2237, 2240, - 2226, - 2230, - 2180, - 2215, + 2198, + 2239, + 2245, + 2246, + 2231, + 2206, + 2213, + 2205, 2212, - 2217, - 2202, - 2192, - 2191, - 2235, - 2199, - 2195, - 2222, - 2183, - 2189, - 2220, - 2225, + 2210, 2228, - 2186, - 2227, - 2233, - 2234, - 2219, - 2194, - 2201, - 2193, - 2200, - 2198, - 2216, - 2218, - 2187, - 2185 + 2230, + 2199, + 2197 ] } ], "sources": [ { "fileName": "embed/liveboard.ts", - "line": 39, + "line": 34, "character": 17 } ], @@ -32861,7 +33163,7 @@ ] }, { - "id": 2527, + "id": 2539, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -32871,7 +33173,7 @@ }, "children": [ { - "id": 2528, + "id": 2540, "name": "name", "kind": 1024, "kindString": "Property", @@ -32892,7 +33194,7 @@ } }, { - "id": 2529, + "id": 2541, "name": "value", "kind": 1024, "kindString": "Property", @@ -32931,8 +33233,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2528, - 2529 + 2540, + 2541 ] } ], @@ -32945,7 +33247,7 @@ ] }, { - "id": 2245, + "id": 2257, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -32965,7 +33267,7 @@ }, "children": [ { - "id": 2258, + "id": 2270, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32995,20 +33297,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2259, + "id": 2271, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2260, + "id": 2272, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2261, + "id": 2273, "name": "key", "kind": 32768, "flags": {}, @@ -33044,7 +33346,7 @@ } }, { - "id": 2290, + "id": 2302, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33085,7 +33387,7 @@ } }, { - "id": 2269, + "id": 2281, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33114,7 +33416,7 @@ ], "type": { "type": "reference", - "id": 2032, + "id": 2044, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33123,7 +33425,7 @@ } }, { - "id": 2257, + "id": 2269, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33152,7 +33454,7 @@ ], "type": { "type": "reference", - "id": 2412, + "id": 2424, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33161,7 +33463,7 @@ } }, { - "id": 2291, + "id": 2303, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -33202,7 +33504,7 @@ } }, { - "id": 2255, + "id": 2267, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -33225,7 +33527,7 @@ } }, { - "id": 2272, + "id": 2284, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -33262,7 +33564,7 @@ } }, { - "id": 2250, + "id": 2262, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -33291,7 +33593,7 @@ } }, { - "id": 2264, + "id": 2276, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -33328,7 +33630,7 @@ } }, { - "id": 2263, + "id": 2275, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -33359,7 +33661,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -33369,7 +33671,7 @@ } }, { - "id": 2286, + "id": 2298, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -33410,7 +33712,7 @@ } }, { - "id": 2292, + "id": 2304, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -33451,7 +33753,7 @@ } }, { - "id": 2289, + "id": 2301, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -33488,7 +33790,7 @@ } }, { - "id": 2285, + "id": 2297, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -33526,7 +33828,7 @@ } }, { - "id": 2288, + "id": 2300, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -33564,7 +33866,7 @@ } }, { - "id": 2274, + "id": 2286, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -33601,7 +33903,7 @@ } }, { - "id": 2278, + "id": 2290, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -33630,7 +33932,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2384, "name": "FrameParams" }, "inheritedFrom": { @@ -33639,7 +33941,7 @@ } }, { - "id": 2265, + "id": 2277, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -33674,7 +33976,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -33684,7 +33986,7 @@ } }, { - "id": 2262, + "id": 2274, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -33716,7 +34018,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2591, + "id": 2603, "name": "ListPageColumns" } }, @@ -33726,7 +34028,7 @@ } }, { - "id": 2252, + "id": 2264, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -33755,7 +34057,7 @@ } }, { - "id": 2249, + "id": 2261, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -33784,7 +34086,7 @@ } }, { - "id": 2254, + "id": 2266, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -33813,7 +34115,7 @@ } }, { - "id": 2248, + "id": 2260, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -33846,7 +34148,7 @@ } }, { - "id": 2251, + "id": 2263, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -33875,7 +34177,7 @@ } }, { - "id": 2283, + "id": 2295, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -33912,7 +34214,7 @@ } }, { - "id": 2270, + "id": 2282, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -33949,7 +34251,7 @@ } }, { - "id": 2268, + "id": 2280, "name": "locale", "kind": 1024, "kindString": "Property", @@ -33986,7 +34288,7 @@ } }, { - "id": 2273, + "id": 2285, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -34023,7 +34325,7 @@ } }, { - "id": 2276, + "id": 2288, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -34060,7 +34362,7 @@ } }, { - "id": 2275, + "id": 2287, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -34097,7 +34399,7 @@ } }, { - "id": 2281, + "id": 2293, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -34138,7 +34440,7 @@ } }, { - "id": 2282, + "id": 2294, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -34169,7 +34471,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2527, + "id": 2539, "name": "RuntimeParameter" } }, @@ -34179,7 +34481,7 @@ } }, { - "id": 2256, + "id": 2268, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -34213,7 +34515,7 @@ } }, { - "id": 2267, + "id": 2279, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -34250,7 +34552,7 @@ } }, { - "id": 2246, + "id": 2258, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -34279,7 +34581,7 @@ } }, { - "id": 2253, + "id": 2265, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -34308,7 +34610,7 @@ } }, { - "id": 2266, + "id": 2278, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -34344,7 +34646,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -34359,43 +34661,43 @@ "title": "Properties", "kind": 1024, "children": [ - 2258, - 2290, + 2270, + 2302, + 2281, 2269, - 2257, - 2291, - 2255, - 2272, - 2250, + 2303, + 2267, + 2284, + 2262, + 2276, + 2275, + 2298, + 2304, + 2301, + 2297, + 2300, + 2286, + 2290, + 2277, + 2274, 2264, + 2261, + 2266, + 2260, 2263, - 2286, - 2292, - 2289, + 2295, + 2282, + 2280, 2285, 2288, - 2274, - 2278, - 2265, - 2262, - 2252, - 2249, - 2254, - 2248, - 2251, - 2283, - 2270, + 2287, + 2293, + 2294, 2268, - 2273, - 2276, - 2275, - 2281, - 2282, - 2256, - 2267, - 2246, - 2253, - 2266 + 2279, + 2258, + 2265, + 2278 ] } ], @@ -34445,7 +34747,7 @@ ] }, { - "id": 2140, + "id": 2152, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -34460,7 +34762,7 @@ }, "children": [ { - "id": 2147, + "id": 2159, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -34490,20 +34792,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2148, + "id": 2160, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2149, + "id": 2161, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2150, + "id": 2162, "name": "key", "kind": 32768, "flags": {}, @@ -34539,7 +34841,7 @@ } }, { - "id": 2177, + "id": 2189, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -34580,7 +34882,7 @@ } }, { - "id": 2157, + "id": 2169, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -34609,7 +34911,7 @@ ], "type": { "type": "reference", - "id": 2032, + "id": 2044, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -34618,7 +34920,7 @@ } }, { - "id": 2146, + "id": 2158, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -34647,7 +34949,7 @@ ], "type": { "type": "reference", - "id": 2412, + "id": 2424, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -34656,7 +34958,7 @@ } }, { - "id": 2142, + "id": 2154, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -34689,7 +34991,7 @@ } }, { - "id": 2141, + "id": 2153, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -34729,7 +35031,7 @@ } }, { - "id": 2160, + "id": 2172, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34766,7 +35068,7 @@ } }, { - "id": 2153, + "id": 2165, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34803,7 +35105,7 @@ } }, { - "id": 2152, + "id": 2164, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34834,7 +35136,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -34844,7 +35146,7 @@ } }, { - "id": 2173, + "id": 2185, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34885,7 +35187,7 @@ } }, { - "id": 2178, + "id": 2190, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34926,7 +35228,7 @@ } }, { - "id": 2176, + "id": 2188, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34963,7 +35265,7 @@ } }, { - "id": 2172, + "id": 2184, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -35001,7 +35303,7 @@ } }, { - "id": 2175, + "id": 2187, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -35039,7 +35341,7 @@ } }, { - "id": 2145, + "id": 2157, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -35072,7 +35374,7 @@ } }, { - "id": 2162, + "id": 2174, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -35109,7 +35411,7 @@ } }, { - "id": 2166, + "id": 2178, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -35138,7 +35440,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2384, "name": "FrameParams" }, "inheritedFrom": { @@ -35147,7 +35449,7 @@ } }, { - "id": 2154, + "id": 2166, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -35182,7 +35484,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -35192,7 +35494,7 @@ } }, { - "id": 2151, + "id": 2163, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -35224,7 +35526,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2591, + "id": 2603, "name": "ListPageColumns" } }, @@ -35234,7 +35536,7 @@ } }, { - "id": 2170, + "id": 2182, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -35271,7 +35573,7 @@ } }, { - "id": 2158, + "id": 2170, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -35308,7 +35610,7 @@ } }, { - "id": 2156, + "id": 2168, "name": "locale", "kind": 1024, "kindString": "Property", @@ -35345,7 +35647,7 @@ } }, { - "id": 2161, + "id": 2173, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -35382,7 +35684,7 @@ } }, { - "id": 2164, + "id": 2176, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -35419,7 +35721,7 @@ } }, { - "id": 2163, + "id": 2175, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35456,7 +35758,7 @@ } }, { - "id": 2169, + "id": 2181, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35487,7 +35789,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2527, + "id": 2539, "name": "RuntimeParameter" } }, @@ -35497,7 +35799,7 @@ } }, { - "id": 2144, + "id": 2156, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -35531,7 +35833,7 @@ } }, { - "id": 2143, + "id": 2155, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -35564,7 +35866,7 @@ } }, { - "id": 2155, + "id": 2167, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35600,7 +35902,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -35615,35 +35917,35 @@ "title": "Properties", "kind": 1024, "children": [ - 2147, - 2177, - 2157, - 2146, - 2142, - 2141, - 2160, + 2159, + 2189, + 2169, + 2158, + 2154, 2153, - 2152, - 2173, - 2178, - 2176, 2172, - 2175, - 2145, - 2162, + 2165, + 2164, + 2185, + 2190, + 2188, + 2184, + 2187, + 2157, + 2174, + 2178, 2166, - 2154, - 2151, + 2163, + 2182, 2170, - 2158, + 2168, + 2173, + 2176, + 2175, + 2181, 2156, - 2161, - 2164, - 2163, - 2169, - 2144, - 2143, - 2155 + 2155, + 2167 ] } ], @@ -35705,7 +36007,7 @@ ] }, { - "id": 2085, + "id": 2097, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -35721,7 +36023,7 @@ }, "children": [ { - "id": 2105, + "id": 2117, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -35751,20 +36053,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2106, + "id": 2118, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2107, + "id": 2119, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2108, + "id": 2120, "name": "key", "kind": 32768, "flags": {}, @@ -35800,7 +36102,7 @@ } }, { - "id": 2097, + "id": 2109, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -35833,7 +36135,7 @@ } }, { - "id": 2087, + "id": 2099, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -35866,7 +36168,7 @@ } }, { - "id": 2086, + "id": 2098, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -35899,7 +36201,7 @@ } }, { - "id": 2137, + "id": 2149, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -35940,7 +36242,7 @@ } }, { - "id": 2100, + "id": 2112, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -35977,7 +36279,7 @@ } }, { - "id": 2116, + "id": 2128, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -36006,7 +36308,7 @@ ], "type": { "type": "reference", - "id": 2032, + "id": 2044, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -36015,7 +36317,7 @@ } }, { - "id": 2104, + "id": 2116, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -36044,7 +36346,7 @@ ], "type": { "type": "reference", - "id": 2412, + "id": 2424, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -36053,7 +36355,7 @@ } }, { - "id": 2102, + "id": 2114, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -36090,7 +36392,7 @@ } }, { - "id": 2138, + "id": 2150, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -36131,7 +36433,7 @@ } }, { - "id": 2093, + "id": 2105, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -36164,7 +36466,7 @@ } }, { - "id": 2092, + "id": 2104, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -36200,7 +36502,7 @@ } }, { - "id": 2119, + "id": 2131, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -36237,7 +36539,7 @@ } }, { - "id": 2111, + "id": 2123, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -36274,7 +36576,7 @@ } }, { - "id": 2110, + "id": 2122, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -36305,7 +36607,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -36315,7 +36617,7 @@ } }, { - "id": 2133, + "id": 2145, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -36356,7 +36658,7 @@ } }, { - "id": 2139, + "id": 2151, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36397,7 +36699,7 @@ } }, { - "id": 2090, + "id": 2102, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -36430,7 +36732,7 @@ } }, { - "id": 2136, + "id": 2148, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36467,7 +36769,7 @@ } }, { - "id": 2132, + "id": 2144, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -36505,7 +36807,7 @@ } }, { - "id": 2135, + "id": 2147, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -36543,7 +36845,7 @@ } }, { - "id": 2096, + "id": 2108, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -36576,7 +36878,7 @@ } }, { - "id": 2121, + "id": 2133, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -36613,7 +36915,7 @@ } }, { - "id": 2103, + "id": 2115, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -36650,7 +36952,7 @@ } }, { - "id": 2091, + "id": 2103, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -36683,7 +36985,7 @@ } }, { - "id": 2125, + "id": 2137, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -36712,7 +37014,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2384, "name": "FrameParams" }, "inheritedFrom": { @@ -36721,7 +37023,7 @@ } }, { - "id": 2112, + "id": 2124, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -36756,7 +37058,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -36766,7 +37068,7 @@ } }, { - "id": 2109, + "id": 2121, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -36798,7 +37100,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2591, + "id": 2603, "name": "ListPageColumns" } }, @@ -36808,7 +37110,7 @@ } }, { - "id": 2088, + "id": 2100, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -36841,7 +37143,7 @@ } }, { - "id": 2089, + "id": 2101, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -36874,7 +37176,7 @@ } }, { - "id": 2098, + "id": 2110, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -36907,7 +37209,7 @@ } }, { - "id": 2130, + "id": 2142, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -36944,7 +37246,7 @@ } }, { - "id": 2101, + "id": 2113, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -36973,7 +37275,7 @@ } }, { - "id": 2117, + "id": 2129, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -37010,7 +37312,7 @@ } }, { - "id": 2115, + "id": 2127, "name": "locale", "kind": 1024, "kindString": "Property", @@ -37047,7 +37349,7 @@ } }, { - "id": 2120, + "id": 2132, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -37084,7 +37386,7 @@ } }, { - "id": 2123, + "id": 2135, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -37121,7 +37423,7 @@ } }, { - "id": 2122, + "id": 2134, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -37158,7 +37460,7 @@ } }, { - "id": 2128, + "id": 2140, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -37199,7 +37501,7 @@ } }, { - "id": 2129, + "id": 2141, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -37230,7 +37532,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2527, + "id": 2539, "name": "RuntimeParameter" } }, @@ -37240,7 +37542,7 @@ } }, { - "id": 2095, + "id": 2107, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -37270,7 +37572,7 @@ } }, { - "id": 2094, + "id": 2106, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -37299,7 +37601,7 @@ } }, { - "id": 2114, + "id": 2126, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -37336,7 +37638,7 @@ } }, { - "id": 2099, + "id": 2111, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -37365,7 +37667,7 @@ } }, { - "id": 2113, + "id": 2125, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -37401,7 +37703,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -37416,51 +37718,51 @@ "title": "Properties", "kind": 1024, "children": [ - 2105, - 2097, - 2087, - 2086, - 2137, - 2100, + 2117, + 2109, + 2099, + 2098, + 2149, + 2112, + 2128, 2116, + 2114, + 2150, + 2105, 2104, + 2131, + 2123, + 2122, + 2145, + 2151, 2102, - 2138, - 2093, - 2092, - 2119, - 2111, - 2110, + 2148, + 2144, + 2147, + 2108, 2133, - 2139, - 2090, - 2136, - 2132, - 2135, - 2096, - 2121, + 2115, 2103, - 2091, - 2125, - 2112, - 2109, - 2088, - 2089, - 2098, - 2130, + 2137, + 2124, + 2121, + 2100, 2101, - 2117, - 2115, - 2120, - 2123, - 2122, - 2128, + 2110, + 2142, + 2113, 2129, - 2095, - 2094, - 2114, - 2099, - 2113 + 2127, + 2132, + 2135, + 2134, + 2140, + 2141, + 2107, + 2106, + 2126, + 2111, + 2125 ] } ], @@ -37833,7 +38135,7 @@ ], "type": { "type": "reference", - "id": 2032, + "id": 2044, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -37871,7 +38173,7 @@ ], "type": { "type": "reference", - "id": 2412, + "id": 2424, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38026,7 +38328,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -38297,7 +38599,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2384, "name": "FrameParams" }, "inheritedFrom": { @@ -38341,7 +38643,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -38382,7 +38684,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2378, + "id": 2390, "name": "HomeLeftNavItem" } }, @@ -38424,7 +38726,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2388, + "id": 2400, "name": "HomepageModule" } }, @@ -38466,7 +38768,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2591, + "id": 2603, "name": "ListPageColumns" } }, @@ -38770,7 +39072,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2388, + "id": 2400, "name": "HomepageModule" } }, @@ -38852,7 +39154,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2527, + "id": 2539, "name": "RuntimeParameter" } }, @@ -38935,7 +39237,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -39236,7 +39538,7 @@ ], "type": { "type": "reference", - "id": 2032, + "id": 2044, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -39274,7 +39576,7 @@ ], "type": { "type": "reference", - "id": 2412, + "id": 2424, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -39462,7 +39764,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -39733,7 +40035,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2384, "name": "FrameParams" }, "inheritedFrom": { @@ -39777,7 +40079,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -39818,7 +40120,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2378, + "id": 2390, "name": "HomeLeftNavItem" } }, @@ -39860,7 +40162,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2388, + "id": 2400, "name": "HomepageModule" } }, @@ -39902,7 +40204,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2591, + "id": 2603, "name": "ListPageColumns" } }, @@ -40272,7 +40574,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2388, + "id": 2400, "name": "HomepageModule" } }, @@ -40354,7 +40656,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2527, + "id": 2539, "name": "RuntimeParameter" } }, @@ -40493,7 +40795,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1902, + "id": 1914, "name": "Action" } }, @@ -40695,14 +40997,14 @@ ] }, { - "id": 2561, + "id": 2573, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2562, + "id": 2574, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -40710,7 +41012,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4978, + "line": 5107, "character": 4 } ], @@ -40723,7 +41025,7 @@ } }, { - "id": 2563, + "id": 2575, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -40731,7 +41033,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4979, + "line": 5108, "character": 4 } ], @@ -40749,21 +41051,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2562, - 2563 + 2574, + 2575 ] } ], "sources": [ { "fileName": "types.ts", - "line": 4977, + "line": 5106, "character": 17 } ] }, { - "id": 2425, + "id": 2437, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -40773,7 +41075,7 @@ }, "children": [ { - "id": 2427, + "id": 2439, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -40803,20 +41105,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2428, + "id": 2440, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2429, + "id": 2441, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2430, + "id": 2442, "name": "selector", "kind": 32768, "flags": {}, @@ -40829,7 +41131,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2431, + "id": 2443, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -40842,14 +41144,14 @@ } ], "indexSignature": { - "id": 2432, + "id": 2444, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2433, + "id": 2445, "name": "declaration", "kind": 32768, "flags": {}, @@ -40871,7 +41173,7 @@ } }, { - "id": 2426, + "id": 2438, "name": "variables", "kind": 1024, "kindString": "Property", @@ -40890,7 +41192,7 @@ ], "type": { "type": "reference", - "id": 2434, + "id": 2446, "name": "CustomCssVariables" } } @@ -40900,8 +41202,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2427, - 2426 + 2439, + 2438 ] } ], @@ -41206,7 +41508,7 @@ ] }, { - "id": 2395, + "id": 2407, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -41233,7 +41535,7 @@ } }, { - "id": 2399, + "id": 2411, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -41248,7 +41550,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2400, + "id": 2412, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -41271,7 +41573,7 @@ ], "signatures": [ { - "id": 2401, + "id": 2413, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -41281,19 +41583,19 @@ }, "parameters": [ { - "id": 2402, + "id": 2414, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2407, + "id": 2419, "name": "MessagePayload" } }, { - "id": 2403, + "id": 2415, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -41303,7 +41605,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2404, + "id": 2416, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -41317,7 +41619,7 @@ ], "signatures": [ { - "id": 2405, + "id": 2417, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -41327,7 +41629,7 @@ }, "parameters": [ { - "id": 2406, + "id": 2418, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -41358,7 +41660,7 @@ } }, { - "id": 2396, + "id": 2408, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -41382,14 +41684,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2397, + "id": 2409, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2398, + "id": 2410, "name": "start", "kind": 1024, "kindString": "Property", @@ -41417,7 +41719,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2398 + 2410 ] } ], @@ -41432,7 +41734,7 @@ } }, { - "id": 2407, + "id": 2419, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -41456,14 +41758,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2408, + "id": 2420, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2410, + "id": 2422, "name": "data", "kind": 1024, "kindString": "Property", @@ -41481,7 +41783,7 @@ } }, { - "id": 2411, + "id": 2423, "name": "status", "kind": 1024, "kindString": "Property", @@ -41501,7 +41803,7 @@ } }, { - "id": 2409, + "id": 2421, "name": "type", "kind": 1024, "kindString": "Property", @@ -41524,9 +41826,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2410, - 2411, - 2409 + 2422, + 2423, + 2421 ] } ], @@ -41931,7 +42233,7 @@ }, "type": { "type": "reference", - "id": 2036, + "id": 2048, "name": "EmbedConfig" } } @@ -42031,7 +42333,7 @@ }, "type": { "type": "reference", - "id": 2036, + "id": 2048, "name": "EmbedConfig" } } @@ -42178,7 +42480,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2367, + "id": 2379, "name": "PrefetchFeatures" } } @@ -42250,7 +42552,7 @@ ] }, { - "id": 2597, + "id": 2609, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -42266,7 +42568,7 @@ ], "signatures": [ { - "id": 2598, + "id": 2610, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -42460,7 +42762,7 @@ ] }, { - "id": 2537, + "id": 2549, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -42474,7 +42776,7 @@ ], "signatures": [ { - "id": 2538, + "id": 2550, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -42484,7 +42786,7 @@ }, "parameters": [ { - "id": 2539, + "id": 2551, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -42496,7 +42798,7 @@ } }, { - "id": 2540, + "id": 2552, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -42507,7 +42809,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2541, + "id": 2553, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -42530,26 +42832,26 @@ "title": "Enumerations", "kind": 4, "children": [ - 1902, + 1914, 1575, 1560, 1567, 1722, - 2032, - 1898, + 2044, + 1910, 1754, - 2378, - 2559, - 2553, - 2388, - 1836, - 2591, - 2530, + 2390, + 2571, + 2565, + 2400, + 1842, + 2603, + 2542, 1713, - 2367, - 2557, + 2379, + 2569, 1738, - 2584 + 2596 ] }, { @@ -42572,28 +42874,28 @@ "title": "Interfaces", "kind": 256, "children": [ - 2293, + 2305, 1577, 1111, 1365, - 2564, + 2576, + 2446, 2434, - 2422, - 2412, - 2036, - 2372, - 2179, + 2424, + 2048, + 2384, + 2191, 1734, - 2527, - 2245, - 2140, - 2085, + 2539, + 2257, + 2152, + 2097, 1703, 1067, 1317, 1710, - 2561, - 2425, + 2573, + 2437, 21, 25 ] @@ -42602,10 +42904,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2395, - 2399, - 2396, - 2407 + 2407, + 2411, + 2408, + 2419 ] }, { @@ -42621,9 +42923,9 @@ 1, 4, 7, - 2597, + 2609, 37, - 2537 + 2549 ] } ], From 313789b3a4ed45ae15bea31dbaebe67fbbf74070 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Tue, 15 Jul 2025 23:28:07 +0530 Subject: [PATCH 24/29] Added more data --- src/embed/bodyless-conversation.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/embed/bodyless-conversation.ts b/src/embed/bodyless-conversation.ts index b2cd9669..8e081c7b 100644 --- a/src/embed/bodyless-conversation.ts +++ b/src/embed/bodyless-conversation.ts @@ -29,6 +29,8 @@ export interface SpotterAgentMessageViewConfig extends SpotterAgentEmbedViewConf genNo: number; acSessionId: string; acGenNo: number; + convId: string; + messageId: string; } export class ConversationMessage extends TsEmbed { @@ -43,6 +45,8 @@ export class ConversationMessage extends TsEmbed { genNo, acSessionId, acGenNo, + convId, + messageId, } = this.viewConfig; const path = 'conv-assist-answer'; const queryParams = this.getBaseQueryParams(); @@ -59,6 +63,8 @@ export class ConversationMessage extends TsEmbed { genNo, acSessionId, acGenNo, + convId, + messageId, }); return `${this.getEmbedBasePath(query)}/embed/${path}${tsPostHashParams}`; @@ -114,6 +120,8 @@ export class SpotterAgentEmbed { const embed = new ConversationMessage(container, { ...this.viewConfig, + convId: data.convId, + messageId: data.messageId, sessionId: data.sessionId, genNo: data.genNo, acSessionId: data.stateKey.transactionId, @@ -135,6 +143,8 @@ export class SpotterAgentEmbed { return { error }; } return { data: { + convId: data.convId, + messageId: data.messageId, sessionId: data.sessionId, genNo: data.genNo, acSessionId: data.stateKey.transactionId, From fdcbed1b3c716c6a600929c45f992e76dbf1acd8 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Wed, 16 Jul 2025 12:16:12 +0530 Subject: [PATCH 25/29] fixed tests --- src/react/index.spec.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/react/index.spec.tsx b/src/react/index.spec.tsx index 97230bd6..93c803a2 100644 --- a/src/react/index.spec.tsx +++ b/src/react/index.spec.tsx @@ -241,7 +241,9 @@ describe('React Components', () => { genNo: 1, acSessionId: "acSession123", acGenNo: 2, - worksheetId: "worksheet123" + worksheetId: "worksheet123", + convId: "conv123", + messageId: "message123" }; it('Should render the SpotterMessage component with required props', async () => { From e5e56d9d1e230f1d78c2d22459a8b9fe0f0d5315 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Wed, 16 Jul 2025 12:36:43 +0530 Subject: [PATCH 26/29] added new events --- src/types.ts | 36 +- static/typedoc/typedoc.json | 3486 +++++++++++++++++++---------------- 2 files changed, 1954 insertions(+), 1568 deletions(-) diff --git a/src/types.ts b/src/types.ts index e6f98874..7cc4b30b 100644 --- a/src/types.ts +++ b/src/types.ts @@ -2716,7 +2716,11 @@ export enum EmbedEvent { /** * Emitted when the coversation is reset in spotter embed. */ - ResetSpotterConversation = 'ResetSpotterConversation' + ResetSpotterConversation = 'ResetSpotterConversation', + /** + * Emitted when the *Spotter* is initialized. + */ + SpotterInit = 'SpotterInit' } /** @@ -3294,6 +3298,16 @@ export enum HostEvent { * ); * }) * ``` + * @example + * ```js + * spotterEmbed.trigger(HostEvent.GetTML, { + * vizId: '730496d6-6903-4601-937e-2c691821af3c' + * }).then((tml) => { + * console.log( + * tml.answer.search_query // TML representation of the search query + * ); + * }) + * ``` * @version SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1.sw * @important */ @@ -3746,7 +3760,7 @@ export enum HostEvent { ResetLiveboardPersonalisedView = 'ResetLiveboardPersonalisedView', /** * Triggers an action to update Parameter values on embedded - * Answers and Liveboard. + * Answers, Liveboard and Spotter answer in Edit mode. * * @example * ```js @@ -3765,6 +3779,13 @@ export enum HostEvent { * console.log('parameters', parameter); * }); *``` + *```js + * spotterEmbed.trigger(HostEvent.GetParameters, { + * vizId: '730496d6-6903-4601-937e-2c691821af3c' + * }).then((parameter) => { + * console.log('parameters', parameter); + * }); + *``` * @version SDK: 1.29.0 | ThoughtSpot: 10.1.0.cl, 10.1.0.sw */ GetParameters = 'GetParameters', @@ -3900,6 +3921,17 @@ export enum HostEvent { * @version SDK: 1.40.0 | ThoughtSpot: 10.11.0.cl */ ExitPresentMode = 'exitPresentMode', + + /** + * Trigger the *Ask Sage* action for visualizations + * @example + * ```js + * liveboardEmbed.trigger(HostEvent.AskSpotter, + * {containerId:'730496d6-6903-4601-937e-2c691821af3c'}) + * ``` + * @version SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl + */ + AskSpotter = 'askSpotter', } /** diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index cb9bce13..55d30fcb 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 1866, + "id": 1880, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 1978, + "id": 1992, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4971, + "line": 5132, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 1886, + "id": 1900, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4128, + "line": 4289, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 1879, + "id": 1893, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4057, + "line": 4218, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 1878, + "id": 1892, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4046, + "line": 4207, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 1884, + "id": 1898, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4109, + "line": 4270, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 1885, + "id": 1899, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4118, + "line": 4279, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 1887, + "id": 1901, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4138, + "line": 4299, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 1961, + "id": 1975, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4776, + "line": 4937, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 1934, + "id": 1948, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4498, + "line": 4659, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1975, + "id": 1989, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4938, + "line": 5099, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 1933, + "id": 1947, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4486, + "line": 4647, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1932, + "id": 1946, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4474, + "line": 4635, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1974, + "id": 1988, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4927, + "line": 5088, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 1945, + "id": 1959, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4611, + "line": 4772, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 1948, + "id": 1962, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4645, + "line": 4806, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 1953, + "id": 1967, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4700, + "line": 4861, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 1947, + "id": 1961, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4634, + "line": 4795, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 1950, + "id": 1964, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4668, + "line": 4829, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 1954, + "id": 1968, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4710, + "line": 4871, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 1951, + "id": 1965, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4679, + "line": 4840, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 1956, + "id": 1970, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4732, + "line": 4893, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 1952, + "id": 1966, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4689, + "line": 4850, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 1949, + "id": 1963, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4656, + "line": 4817, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 1955, + "id": 1969, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4720, + "line": 4881, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 1946, + "id": 1960, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4622, + "line": 4783, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 1987, + "id": 2001, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5069, + "line": 5230, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 1883, + "id": 1897, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4100, + "line": 4261, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 1882, + "id": 1896, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4091, + "line": 4252, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 1881, + "id": 1895, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4079, + "line": 4240, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 1994, + "id": 2008, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5145, + "line": 5306, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 1880, + "id": 1894, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4068, + "line": 4229, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 1925, + "id": 1939, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4425, + "line": 4586, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 1873, + "id": 1887, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4005, + "line": 4166, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1924, + "id": 1938, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4424, + "line": 4585, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1995, + "id": 2009, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5155, + "line": 5316, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 1972, + "id": 1986, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4902, + "line": 5063, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 1936, + "id": 1950, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4518, + "line": 4679, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1941, + "id": 1955, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4569, + "line": 4730, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 1992, + "id": 2006, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5126, + "line": 5287, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 1984, + "id": 1998, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5038, + "line": 5199, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 1986, + "id": 2000, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5057, + "line": 5218, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 1895, + "id": 1909, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4188, + "line": 4349, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1898, + "id": 1912, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4221, + "line": 4382, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1897, + "id": 1911, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4211, + "line": 4372, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1896, + "id": 1910, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4198, + "line": 4359, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1899, + "id": 1913, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4231, + "line": 4392, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1929, + "id": 1943, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4441, + "line": 4602, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 1923, + "id": 1937, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4414, + "line": 4575, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1922, + "id": 1936, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4405, + "line": 4566, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1907, + "id": 1921, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4307, + "line": 4468, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1872, + "id": 1886, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3996, + "line": 4157, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 1935, + "id": 1949, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4507, + "line": 4668, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 1927, + "id": 1941, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4430, + "line": 4591, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 1991, + "id": 2005, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5115, + "line": 5276, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 1964, + "id": 1978, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4809, + "line": 4970, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 1979, + "id": 1993, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4984, + "line": 5145, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 1904, + "id": 1918, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4275, + "line": 4436, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1908, + "id": 1922, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4315, + "line": 4476, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 1993, + "id": 2007, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5136, + "line": 5297, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 1962, + "id": 1976, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4786, + "line": 4947, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 1921, + "id": 1935, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1624,14 +1624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4394, + "line": 4555, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1901, + "id": 1915, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1649,14 +1649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4247, + "line": 4408, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1902, + "id": 1916, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1673,14 +1673,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4257, + "line": 4418, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 1996, + "id": 2010, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5171, + "line": 5332, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 1985, + "id": 1999, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1729,14 +1729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5048, + "line": 5209, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 1915, + "id": 1929, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1753,14 +1753,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4356, + "line": 4517, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1970, + "id": 1984, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1781,14 +1781,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4870, + "line": 5031, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 1871, + "id": 1885, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1805,14 +1805,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3987, + "line": 4148, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1968, + "id": 1982, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1829,14 +1829,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4850, + "line": 5011, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1940, + "id": 1954, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1857,14 +1857,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4559, + "line": 4720, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1983, + "id": 1997, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5027, + "line": 5188, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 1960, + "id": 1974, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1913,14 +1913,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4766, + "line": 4927, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 1966, + "id": 1980, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1940,14 +1940,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4830, + "line": 4991, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 1967, + "id": 1981, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1964,14 +1964,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4839, + "line": 5000, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 1977, + "id": 1991, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -1992,14 +1992,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4960, + "line": 5121, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 1980, + "id": 1994, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4995, + "line": 5156, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 1969, + "id": 1983, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2048,14 +2048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4860, + "line": 5021, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 1918, + "id": 1932, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2072,14 +2072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4373, + "line": 4534, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1905, + "id": 1919, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2096,14 +2096,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4285, + "line": 4446, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1988, + "id": 2002, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2124,14 +2124,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5081, + "line": 5242, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 1931, + "id": 1945, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2149,14 +2149,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4464, + "line": 4625, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 1909, + "id": 1923, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2173,14 +2173,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4325, + "line": 4486, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1944, + "id": 1958, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2201,14 +2201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4600, + "line": 4761, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 1976, + "id": 1990, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4949, + "line": 5110, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 1958, + "id": 1972, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2257,14 +2257,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4746, + "line": 4907, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 1937, + "id": 1951, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2288,14 +2288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4528, + "line": 4689, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 1930, + "id": 1944, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2312,14 +2312,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4450, + "line": 4611, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 1959, + "id": 1973, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2340,14 +2340,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4756, + "line": 4917, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 1989, + "id": 2003, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2368,14 +2368,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5093, + "line": 5254, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 1965, + "id": 1979, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2396,14 +2396,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4821, + "line": 4982, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 1867, + "id": 1881, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2420,14 +2420,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3956, + "line": 4117, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1870, + "id": 1884, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2444,14 +2444,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3974, + "line": 4135, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1875, + "id": 1889, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2468,14 +2468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4019, + "line": 4180, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1876, + "id": 1890, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2492,14 +2492,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4028, + "line": 4189, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1928, + "id": 1942, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2507,14 +2507,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4431, + "line": 4592, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 1877, + "id": 1891, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2531,14 +2531,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4037, + "line": 4198, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1892, + "id": 1906, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2549,14 +2549,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4163, + "line": 4324, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 1963, + "id": 1977, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2577,14 +2577,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4796, + "line": 4957, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 1894, + "id": 1908, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2601,14 +2601,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4178, + "line": 4339, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1889, + "id": 1903, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2625,14 +2625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4151, + "line": 4312, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1990, + "id": 2004, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2653,14 +2653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5104, + "line": 5265, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 1920, + "id": 1934, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2677,14 +2677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4386, + "line": 4547, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1939, + "id": 1953, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2705,14 +2705,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4549, + "line": 4710, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1938, + "id": 1952, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4538, + "line": 4699, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1942, + "id": 1956, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4579, + "line": 4740, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 1943, + "id": 1957, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2789,14 +2789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4589, + "line": 4750, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 1971, + "id": 1985, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2821,14 +2821,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4889, + "line": 5050, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 1906, + "id": 1920, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4297, + "line": 4458, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 1982, + "id": 1996, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2873,14 +2873,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5017, + "line": 5178, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 1903, + "id": 1917, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4266, + "line": 4427, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1973, + "id": 1987, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -2925,14 +2925,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4913, + "line": 5074, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 1981, + "id": 1995, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2953,7 +2953,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5006, + "line": 5167, "character": 4 } ], @@ -2965,125 +2965,125 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1978, - 1886, - 1879, - 1878, - 1884, - 1885, - 1887, - 1961, - 1934, + 1992, + 1900, + 1893, + 1892, + 1898, + 1899, + 1901, 1975, - 1933, - 1932, - 1974, - 1945, 1948, - 1953, + 1989, 1947, + 1946, + 1988, + 1959, + 1962, + 1967, + 1961, + 1964, + 1968, + 1965, + 1970, + 1966, + 1963, + 1969, + 1960, + 2001, + 1897, + 1896, + 1895, + 2008, + 1894, + 1939, + 1887, + 1938, + 2009, + 1986, 1950, - 1954, - 1951, - 1956, - 1952, - 1949, 1955, - 1946, - 1987, - 1883, - 1882, - 1881, - 1994, - 1880, - 1925, - 1873, - 1924, - 1995, - 1972, + 2006, + 1998, + 2000, + 1909, + 1912, + 1911, + 1910, + 1913, + 1943, + 1937, 1936, + 1921, + 1886, + 1949, 1941, - 1992, - 1984, - 1986, - 1895, - 1898, - 1897, - 1896, - 1899, - 1929, - 1923, + 2005, + 1978, + 1993, + 1918, 1922, - 1907, - 1872, + 2007, + 1976, 1935, - 1927, - 1991, - 1964, - 1979, - 1904, - 1908, - 1993, - 1962, - 1921, - 1901, - 1902, - 1996, - 1985, 1915, - 1970, - 1871, - 1968, - 1940, - 1983, - 1960, - 1966, - 1967, - 1977, + 1916, + 2010, + 1999, + 1929, + 1984, + 1885, + 1982, + 1954, + 1997, + 1974, 1980, - 1969, - 1918, - 1905, - 1988, - 1931, - 1909, - 1944, - 1976, + 1981, + 1991, + 1994, + 1983, + 1932, + 1919, + 2002, + 1945, + 1923, 1958, - 1937, - 1930, - 1959, - 1989, - 1965, - 1867, - 1870, - 1875, - 1876, - 1928, - 1877, - 1892, - 1963, - 1894, - 1889, 1990, - 1920, - 1939, - 1938, + 1972, + 1951, + 1944, + 1973, + 2003, + 1979, + 1881, + 1884, + 1889, + 1890, 1942, - 1943, - 1971, + 1891, 1906, - 1982, + 1977, + 1908, 1903, - 1973, - 1981 + 2004, + 1934, + 1953, + 1952, + 1956, + 1957, + 1985, + 1920, + 1996, + 1917, + 1987, + 1995 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3947, + "line": 4108, "character": 12 } ] @@ -3638,7 +3638,7 @@ ] }, { - "id": 1997, + "id": 2011, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3648,7 +3648,7 @@ }, "children": [ { - "id": 2000, + "id": 2014, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3656,14 +3656,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5192, + "line": 5353, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 1998, + "id": 2012, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3671,14 +3671,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5190, + "line": 5351, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 1999, + "id": 2013, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3686,7 +3686,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5191, + "line": 5352, "character": 4 } ], @@ -3698,22 +3698,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2000, - 1998, - 1999 + 2014, + 2012, + 2013 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5189, + "line": 5350, "character": 12 } ] }, { - "id": 2557, + "id": 2571, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -3723,7 +3723,7 @@ }, "children": [ { - "id": 2559, + "id": 2573, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -3741,7 +3741,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2558, + "id": 2572, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -3759,7 +3759,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2560, + "id": 2574, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -3782,9 +3782,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2559, - 2558, - 2560 + 2573, + 2572, + 2574 ] } ], @@ -3797,7 +3797,7 @@ ] }, { - "id": 1862, + "id": 1876, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -3807,7 +3807,7 @@ }, "children": [ { - "id": 1864, + "id": 1878, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -3818,14 +3818,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3789, + "line": 3950, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 1865, + "id": 1879, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -3836,14 +3836,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3793, + "line": 3954, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 1863, + "id": 1877, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -3854,7 +3854,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3785, + "line": 3946, "character": 4 } ], @@ -3866,16 +3866,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1864, - 1865, - 1863 + 1878, + 1879, + 1877 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3781, + "line": 3942, "character": 12 } ] @@ -5108,6 +5108,42 @@ ], "defaultValue": "\"init\"" }, + { + "id": 1804, + "name": "LastPromptDeleted", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the last spotter query is deleted in spotter embed." + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2715, + "character": 4 + } + ], + "defaultValue": "\"LastPromptDeleted\"" + }, + { + "id": 1803, + "name": "LastPromptEdited", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the last spotter query is edited in spotter embed." + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2711, + "character": 4 + } + ], + "defaultValue": "\"LastPromptEdited\"" + }, { "id": 1768, "name": "LiveboardInfo", @@ -5377,6 +5413,24 @@ ], "defaultValue": "\"present\"" }, + { + "id": 1801, + "name": "PreviewSpotterData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when user opens up the worksheet preview modal in spotter embed." + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2703, + "character": 4 + } + ], + "defaultValue": "\"PreviewSpotterData\"" + }, { "id": 1723, "name": "QueryChanged", @@ -5469,6 +5523,24 @@ ], "defaultValue": "\"resetLiveboard\"" }, + { + "id": 1805, + "name": "ResetSpotterConversation", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the coversation is reset in spotter embed." + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2719, + "character": 4 + } + ], + "defaultValue": "\"ResetSpotterConversation\"" + }, { "id": 1739, "name": "RouteChange", @@ -5781,6 +5853,61 @@ ], "defaultValue": "\"spotIQAnalyze\"" }, + { + "id": 1800, + "name": "SpotterData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when spotter response is the text data", + "text": "```js\nspotterEmbed.on(EmbedEvent.SpotterData, (payload) => {\n console.log('payload', payload);\n})\n```\n" + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2699, + "character": 4 + } + ], + "defaultValue": "\"SpotterData\"" + }, + { + "id": 1806, + "name": "SpotterInit", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the *Spotter* is initialized." + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2723, + "character": 4 + } + ], + "defaultValue": "\"SpotterInit\"" + }, + { + "id": 1802, + "name": "SpotterQueryTriggered", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Emitted when the spotter query is triggered in spotter embed." + }, + "sources": [ + { + "fileName": "types.ts", + "line": 2707, + "character": 4 + } + ], + "defaultValue": "\"SpotterQueryTriggered\"" + }, { "id": 1796, "name": "TableVizRendered", @@ -6045,6 +6172,8 @@ 1782, 1738, 1719, + 1804, + 1803, 1768, 1745, 1721, @@ -6054,9 +6183,11 @@ 1795, 1754, 1773, + 1801, 1723, 1793, 1789, + 1805, 1739, 1783, 1784, @@ -6068,6 +6199,9 @@ 1756, 1765, 1755, + 1800, + 1806, + 1802, 1796, 1785, 1787, @@ -6087,7 +6221,7 @@ ] }, { - "id": 2338, + "id": 2352, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6097,7 +6231,7 @@ }, "children": [ { - "id": 2342, + "id": 2356, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6120,7 +6254,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2346, + "id": 2360, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6144,7 +6278,7 @@ "defaultValue": "\"create\"" }, { - "id": 2340, + "id": 2354, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6167,7 +6301,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2345, + "id": 2359, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6190,7 +6324,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2341, + "id": 2355, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6213,7 +6347,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2343, + "id": 2357, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6236,7 +6370,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2339, + "id": 2353, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6259,7 +6393,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2344, + "id": 2358, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6282,7 +6416,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2347, + "id": 2361, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6311,15 +6445,15 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2342, - 2346, - 2340, - 2345, - 2341, - 2343, - 2339, - 2344, - 2347 + 2356, + 2360, + 2354, + 2359, + 2355, + 2357, + 2353, + 2358, + 2361 ] } ], @@ -6332,7 +6466,7 @@ ] }, { - "id": 2519, + "id": 2533, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6348,7 +6482,7 @@ }, "children": [ { - "id": 2520, + "id": 2534, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6371,7 +6505,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2520 + 2534 ] } ], @@ -6384,14 +6518,14 @@ ] }, { - "id": 2513, + "id": 2527, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2515, + "id": 2529, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -6406,7 +6540,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2516, + "id": 2530, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -6421,7 +6555,7 @@ "defaultValue": "\"none\"" }, { - "id": 2514, + "id": 2528, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -6441,9 +6575,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2515, - 2516, - 2514 + 2529, + 2530, + 2528 ] } ], @@ -6456,7 +6590,7 @@ ] }, { - "id": 2348, + "id": 2362, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -6472,7 +6606,7 @@ }, "children": [ { - "id": 2351, + "id": 2365, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -6490,7 +6624,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2354, + "id": 2368, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -6508,7 +6642,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2352, + "id": 2366, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -6526,7 +6660,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2349, + "id": 2363, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -6544,7 +6678,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2353, + "id": 2367, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -6562,7 +6696,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2350, + "id": 2364, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -6585,12 +6719,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2351, - 2354, - 2352, - 2349, - 2353, - 2350 + 2365, + 2368, + 2366, + 2363, + 2367, + 2364 ] } ], @@ -6603,7 +6737,7 @@ ] }, { - "id": 1800, + "id": 1807, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -6632,7 +6766,7 @@ }, "children": [ { - "id": 1811, + "id": 1818, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -6658,14 +6792,43 @@ "sources": [ { "fileName": "types.ts", - "line": 2941, + "line": 2975, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 1851, + "id": 1873, + "name": "AnswerChartSwitcher", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Toggle the visualization to chart or table view.", + "tags": [ + { + "tag": "param", + "text": "`vizId ` In Spotter Embed, vizId is required.", + "param": "-" + }, + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.AnswerChartSwitcher, {\n vizId:\"'b535c760-8bbe-4e6f-bb26-af56b4129a1e'\"\n});\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3913, + "character": 4 + } + ], + "defaultValue": "\"answerChartSwitcher\"" + }, + { + "id": 1858, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -6686,14 +6849,42 @@ "sources": [ { "fileName": "types.ts", - "line": 3650, + "line": 3735, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 1828, + "id": 1875, + "name": "AskSpotter", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Trigger the *Ask Sage* action for visualizations", + "tags": [ + { + "tag": "example", + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.AskSpotter,\n{containerId:'730496d6-6903-4601-937e-2c691821af3c'})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3934, + "character": 4 + } + ], + "defaultValue": "\"askSpotter\"" + }, + { + "id": 1835, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -6719,14 +6910,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3219, + "line": 3273, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1825, + "id": 1832, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -6756,14 +6947,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3163, + "line": 3210, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1832, + "id": 1839, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -6789,14 +6980,38 @@ "sources": [ { "fileName": "types.ts", - "line": 3286, + "line": 3350, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1834, + "id": 1872, + "name": "DeleteLastPrompt", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Deletes the last prompt in spotter embed.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.DeleteLastPrompt);\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3902, + "character": 4 + } + ], + "defaultValue": "\"DeleteLastPrompt\"" + }, + { + "id": 1841, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -6821,14 +7036,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3322, + "line": 3386, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1836, + "id": 1843, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -6838,7 +7053,7 @@ "tags": [ { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsCsv, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nvizEmbed.trigger(HostEvent.DownloadAsCsv)\n```\n```js\nsearchEmbed.trigger(HostEvent.DownloadAsCsv)\n```" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsCsv, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nvizEmbed.trigger(HostEvent.DownloadAsCsv)\n```\n```js\nsearchEmbed.trigger(HostEvent.DownloadAsCsv)\n```\n```js\nspotterEmbed.trigger(HostEvent.DownloadAsCsv, {\n vizId:\"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```" }, { "tag": "version", @@ -6849,14 +7064,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3354, + "line": 3428, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1821, + "id": 1828, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -6878,14 +7093,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3099, + "line": 3140, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1835, + "id": 1842, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -6895,7 +7110,7 @@ "tags": [ { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsPng,\n{vizId:'730496d6-6903-4601-937e-2c691821af3c'})\n\nvizEmbed.trigger(HostEvent.DownloadAsPng)\n\nsearchEmbed.trigger(HostEvent.DownloadAsPng)\n```" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsPng,\n{vizId:'730496d6-6903-4601-937e-2c691821af3c'})\n\nvizEmbed.trigger(HostEvent.DownloadAsPng)\n\nsearchEmbed.trigger(HostEvent.DownloadAsPng)\n\nspotterEmbed.trigger(HostEvent.DownloadAsPng, {\n vizId:\"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```\n" }, { "tag": "version", @@ -6906,14 +7121,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3337, + "line": 3406, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1837, + "id": 1844, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -6923,7 +7138,7 @@ "tags": [ { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsXlsx, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nvizEmbed.trigger(HostEvent.DownloadAsXlsx)\n```\n```js\nsearchEmbed.trigger(HostEvent.DownloadAsXlsx)\n```" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.DownloadAsXlsx, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```\n```js\nvizEmbed.trigger(HostEvent.DownloadAsXlsx)\n```\n```js\nsearchEmbed.trigger(HostEvent.DownloadAsXlsx)\n```\n```js\nspotterEmbed.trigger(HostEvent.downloadAsXLSX, {\n vizId:\"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```" }, { "tag": "version", @@ -6934,14 +7149,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3371, + "line": 3450, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1802, + "id": 1809, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -6986,14 +7201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2816, + "line": 2850, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 1827, + "id": 1834, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7004,13 +7219,17 @@ "tags": [ { "tag": "param", - "text": "object - To trigger the action for a specific visualization\nin Liveboard embed, pass in `vizId` as a key.", + "text": "object - To trigger the action for a specific visualization\nin Liveboard embed, pass in `vizId` as a key.\nIn Spotter embed, vizId is required.", "param": "-" }, { "tag": "example", "text": "\n```js\nliveboardEmbed.trigger(HostEvent.Edit)\n```\n```js\nliveboardEmbed.trigger(HostEvent.Edit, {vizId:\n'730496d6-6903-4601-937e-2c691821af3c'})\n```" }, + { + "tag": "example", + "text": "\n```js\nconst pinResponse = await spotterEmbed.trigger(HostEvent.Edit, {\n vizId:'730496d6-6903-4601-937e-2c691821af3c'\n });\n```" + }, { "tag": "version", "text": "SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw\n" @@ -7020,14 +7239,43 @@ "sources": [ { "fileName": "types.ts", - "line": 3202, + "line": 3256, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1819, + "id": 1869, + "name": "EditLastPrompt", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Edits the last prompt in spotter embed.", + "tags": [ + { + "tag": "param", + "text": "`query`: Text string", + "param": "-" + }, + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.EditLastPrompt, \"revenue per year\");\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3878, + "character": 4 + } + ], + "defaultValue": "\"EditLastPrompt\"" + }, + { + "id": 1826, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7048,14 +7296,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3077, + "line": 3118, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1824, + "id": 1831, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7081,14 +7329,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3146, + "line": 3193, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1818, + "id": 1825, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7109,14 +7357,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3067, + "line": 3108, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1850, + "id": 1857, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -7142,14 +7390,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3640, + "line": 3725, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 1844, + "id": 1851, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -7170,14 +7418,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3467, + "line": 3552, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 1805, + "id": 1812, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -7198,20 +7446,20 @@ "sources": [ { "fileName": "types.ts", - "line": 2838, + "line": 2872, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 1855, + "id": 1862, "name": "GetParameters", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Triggers GetParameters to fetch the runtime Parameters.\n```js\nliveboardEmbed.trigger(HostEvent.GetParameters).then((parameter) => {\n console.log('parameters', parameter);\n});\n```", + "shortText": "Triggers GetParameters to fetch the runtime Parameters.\n```js\nliveboardEmbed.trigger(HostEvent.GetParameters).then((parameter) => {\n console.log('parameters', parameter);\n});\n```\n```js\nspotterEmbed.trigger(HostEvent.GetParameters, {\n vizId: '730496d6-6903-4601-937e-2c691821af3c'\n}).then((parameter) => {\n console.log('parameters', parameter);\n});\n```", "tags": [ { "tag": "version", @@ -7222,14 +7470,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3699, + "line": 3791, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 1830, + "id": 1837, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -7241,6 +7489,10 @@ "tag": "example", "text": "\n```js\nsearchEmbed.trigger(HostEvent.GetTML).then((tml) => {\n console.log(\n tml.answer.search_query // TML representation of the search query\n );\n})\n```" }, + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.GetTML, {\n vizId: '730496d6-6903-4601-937e-2c691821af3c'\n}).then((tml) => {\n console.log(\n tml.answer.search_query // TML representation of the search query\n );\n})\n```" + }, { "tag": "version", "text": "SDK: 1.18.0 | ThoughtSpot: 8.10.0.cl, 9.0.1.sw" @@ -7254,14 +7506,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3250, + "line": 3314, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 1846, + "id": 1853, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -7282,14 +7534,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3570, + "line": 3655, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 1815, + "id": 1822, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -7310,14 +7562,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3039, + "line": 3080, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1822, + "id": 1829, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -7341,6 +7593,10 @@ "tag": "example", "text": "\n```js\nsearchEmbed.trigger(HostEvent.MakeACopy)\n```" }, + { + "tag": "example", + "text": "\n```js\nconst pinResponse = await spotterEmbed.trigger(HostEvent.MakeACopy, {\n vizId:'730496d6-6903-4601-937e-2c691821af3c'\n });\n```" + }, { "tag": "version", "text": "SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw\n" @@ -7350,14 +7606,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3122, + "line": 3169, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1826, + "id": 1833, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7391,14 +7647,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3184, + "line": 3231, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1842, + "id": 1849, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -7424,14 +7680,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3444, + "line": 3529, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1809, + "id": 1816, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -7457,14 +7713,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2911, + "line": 2945, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 1810, + "id": 1817, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -7494,14 +7750,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2931, + "line": 2965, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 1814, + "id": 1821, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -7511,7 +7767,7 @@ "tags": [ { "tag": "param", - "text": "\n`vizId`- GUID of the saved Answer or visualization to pin to a Liveboard.\n Optional when pinning a new chart or table generated from a Search query." + "text": "\n`vizId`- GUID of the saved Answer or visualization to pin to a Liveboard.\n Optional when pinning a new chart or table generated from a Search query.\n Required in Spotter Embed." }, { "tag": "param", @@ -7549,6 +7805,10 @@ "tag": "example", "text": "\n```js\nappEmbed.trigger(HostEvent.Pin)\n```" }, + { + "tag": "example", + "text": "\n```js\nconst pinResponse = await spotterEmbed.trigger(HostEvent.Pin, {\n vizId:'730496d6-6903-4601-937e-2c691821af3c'\n });\n```" + }, { "tag": "version", "text": "SDK: 1.15.0 | ThoughtSpot: 8.7.0.cl, 8.8.1.sw\n" @@ -7558,14 +7818,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3029, + "line": 3070, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1829, + "id": 1836, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -7591,14 +7851,38 @@ "sources": [ { "fileName": "types.ts", - "line": 3236, + "line": 3290, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1823, + "id": 1870, + "name": "PreviewSpotterData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Opens the Worksheet preview modal in Spotter Embed.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.PreviewSpotterData);\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3886, + "character": 4 + } + ], + "defaultValue": "\"PreviewSpotterData\"" + }, + { + "id": 1830, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -7623,14 +7907,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3136, + "line": 3183, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1812, + "id": 1819, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -7656,14 +7940,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2951, + "line": 2985, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 1853, + "id": 1860, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -7684,14 +7968,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3675, + "line": 3760, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 1843, + "id": 1850, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -7712,14 +7996,38 @@ "sources": [ { "fileName": "types.ts", - "line": 3456, + "line": 3541, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 1839, + "id": 1871, + "name": "ResetSpotterConversation", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Resets the Spotter Embed Conversation.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.ResetSpotterConversation);\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3894, + "character": 4 + } + ], + "defaultValue": "\"ResetSpotterConversation\"" + }, + { + "id": 1846, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -7727,9 +8035,14 @@ "comment": { "shortText": "Trigger the **Save** action on a Liveboard or Answer.\nSaves the changes.", "tags": [ + { + "tag": "param", + "text": "`vizId` is required in Spotter Embed.", + "param": "-" + }, { "tag": "example", - "text": "\n```js\nliveboardEmbed.trigger(HostEvent.Save)\n```\n```js\nsearchEmbed.trigger(HostEvent.Save)\n```" + "text": "\n```js\nliveboardEmbed.trigger(HostEvent.Save)\n```\n```js\nsearchEmbed.trigger(HostEvent.Save)\n```\n```js\nspotterEmbed.trigger(HostEvent.Save, {\n vizId:\"730496d6-6903-4601-937e-2c691821af3c\"\n})\n```" }, { "tag": "version", @@ -7740,14 +8053,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3397, + "line": 3482, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1858, + "id": 1865, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -7773,14 +8086,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3738, + "line": 3830, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 1816, + "id": 1823, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -7801,14 +8114,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3048, + "line": 3089, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1817, + "id": 1824, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -7829,14 +8142,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3057, + "line": 3098, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1801, + "id": 1808, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7868,14 +8181,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2766, + "line": 2800, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 1807, + "id": 1814, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -7901,14 +8214,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2863, + "line": 2897, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 1848, + "id": 1855, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -7934,14 +8247,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3596, + "line": 3681, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 1847, + "id": 1854, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -7967,14 +8280,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3583, + "line": 3668, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 1806, + "id": 1813, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -8000,14 +8313,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2851, + "line": 2885, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 1838, + "id": 1845, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8028,14 +8341,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3384, + "line": 3463, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1831, + "id": 1838, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -8061,14 +8374,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3269, + "line": 3333, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1833, + "id": 1840, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -8094,14 +8407,48 @@ "sources": [ { "fileName": "types.ts", - "line": 3306, + "line": 3370, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1841, + "id": 1868, + "name": "SpotterSearch", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "shortText": "Triggers a search operation with the search tokens specified in\nthe search query string in spotter embed.", + "tags": [ + { + "tag": "param", + "text": "`queryString`: Text string in Natural Language format", + "param": "-" + }, + { + "tag": "param", + "text": "`executeSearch`: Boolean to execute search and update search query", + "param": "-" + }, + { + "tag": "example", + "text": "\n```js\nspotterEmbed.trigger(HostEvent.SpotterSearch, {\n query: 'revenue per year',\n executeSearch: true,\n})\n```\n" + } + ] + }, + "sources": [ + { + "fileName": "types.ts", + "line": 3869, + "character": 4 + } + ], + "defaultValue": "\"SpotterSearch\"" + }, + { + "id": 1848, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -8127,14 +8474,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3428, + "line": 3513, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1840, + "id": 1847, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -8160,14 +8507,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3412, + "line": 3497, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1860, + "id": 1867, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -8193,14 +8540,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3763, + "line": 3855, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 1852, + "id": 1859, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -8221,14 +8568,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3666, + "line": 3751, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 1845, + "id": 1852, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -8271,20 +8618,20 @@ "sources": [ { "fileName": "types.ts", - "line": 3557, + "line": 3642, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 1854, + "id": 1861, "name": "UpdateParameters", "kind": 16, "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Triggers an action to update Parameter values on embedded\nAnswers and Liveboard.", + "shortText": "Triggers an action to update Parameter values on embedded\nAnswers, Liveboard and Spotter answer in Edit mode.", "tags": [ { "tag": "example", @@ -8295,14 +8642,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3689, + "line": 3774, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 1856, + "id": 1863, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8319,14 +8666,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3707, + "line": 3799, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 1808, + "id": 1815, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -8357,14 +8704,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2899, + "line": 2933, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 1849, + "id": 1856, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -8395,14 +8742,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3610, + "line": 3695, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 1820, + "id": 1827, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -8423,14 +8770,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3086, + "line": 3127, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1813, + "id": 1820, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -8451,7 +8798,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2967, + "line": 3001, "character": 4 } ], @@ -8463,75 +8810,82 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1811, - 1851, - 1828, - 1825, - 1832, - 1834, - 1836, - 1821, - 1835, - 1837, - 1802, - 1827, - 1819, - 1824, 1818, - 1850, - 1844, - 1805, - 1855, - 1830, - 1846, - 1815, - 1822, - 1826, + 1873, + 1858, + 1875, + 1835, + 1832, + 1839, + 1872, + 1841, + 1843, + 1828, 1842, + 1844, 1809, - 1810, - 1814, - 1829, - 1823, + 1834, + 1869, + 1826, + 1831, + 1825, + 1857, + 1851, 1812, + 1862, + 1837, 1853, - 1843, - 1839, - 1858, + 1822, + 1829, + 1833, + 1849, 1816, 1817, - 1801, - 1807, - 1848, - 1847, - 1806, + 1821, + 1836, + 1870, + 1830, + 1819, + 1860, + 1850, + 1871, + 1846, + 1865, + 1823, + 1824, + 1808, + 1814, + 1855, + 1854, + 1813, + 1845, 1838, - 1831, - 1833, - 1841, 1840, - 1860, + 1868, + 1848, + 1847, + 1867, + 1859, 1852, - 1845, - 1854, + 1861, + 1863, + 1815, 1856, - 1808, - 1849, - 1820, - 1813 + 1827, + 1820 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2746, + "line": 2780, "character": 12 } ] }, { - "id": 2551, + "id": 2565, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -8547,7 +8901,7 @@ }, "children": [ { - "id": 2554, + "id": 2568, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -8565,7 +8919,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2555, + "id": 2569, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -8583,7 +8937,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2552, + "id": 2566, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -8601,7 +8955,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2556, + "id": 2570, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8619,7 +8973,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2553, + "id": 2567, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -8642,11 +8996,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2554, - 2555, - 2552, - 2556, - 2553 + 2568, + 2569, + 2566, + 2570, + 2567 ] } ], @@ -8659,7 +9013,7 @@ ] }, { - "id": 2490, + "id": 2504, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -8669,7 +9023,7 @@ }, "children": [ { - "id": 2495, + "id": 2509, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -8690,14 +9044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5314, + "line": 5475, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2492, + "id": 2506, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -8718,14 +9072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5275, + "line": 5436, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2494, + "id": 2508, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -8746,14 +9100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5300, + "line": 5461, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2491, + "id": 2505, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -8774,14 +9128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5263, + "line": 5424, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2496, + "id": 2510, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -8802,14 +9156,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5326, + "line": 5487, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2493, + "id": 2507, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -8830,7 +9184,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5287, + "line": 5448, "character": 4 } ], @@ -8842,19 +9196,19 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2495, - 2492, - 2494, - 2491, - 2496, - 2493 + 2509, + 2506, + 2508, + 2505, + 2510, + 2507 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5250, + "line": 5411, "character": 12 } ] @@ -9020,14 +9374,14 @@ ] }, { - "id": 2327, + "id": 2341, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2328, + "id": 2342, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -9035,14 +9389,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5179, + "line": 5340, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2330, + "id": 2344, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -9050,14 +9404,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5181, + "line": 5342, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2329, + "id": 2343, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -9065,14 +9419,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5180, + "line": 5341, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2331, + "id": 2345, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -9080,7 +9434,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5182, + "line": 5343, "character": 4 } ], @@ -9092,23 +9446,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2328, - 2330, - 2329, - 2331 + 2342, + 2344, + 2343, + 2345 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5178, + "line": 5339, "character": 12 } ] }, { - "id": 2517, + "id": 2531, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -9124,7 +9478,7 @@ }, "children": [ { - "id": 2518, + "id": 2532, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -9147,7 +9501,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2518 + 2532 ] } ], @@ -9472,14 +9826,14 @@ ] }, { - "id": 2544, + "id": 2558, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2549, + "id": 2563, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -9494,7 +9848,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2548, + "id": 2562, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -9509,7 +9863,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2547, + "id": 2561, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -9524,7 +9878,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2550, + "id": 2564, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -9539,7 +9893,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2545, + "id": 2559, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -9554,7 +9908,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2546, + "id": 2560, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -9574,12 +9928,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2549, - 2548, - 2547, - 2550, - 2545, - 2546 + 2563, + 2562, + 2561, + 2564, + 2559, + 2560 ] } ], @@ -9699,7 +10053,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2521, + "id": 2535, "name": "VizPoint" } } @@ -10887,7 +11241,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2355, + "id": 2369, "name": "DOMSelector" } }, @@ -10899,7 +11253,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2252, + "id": 2266, "name": "AppViewConfig" } } @@ -11510,7 +11864,7 @@ }, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } } @@ -11589,7 +11943,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } }, @@ -11601,7 +11955,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2356, + "id": 2370, "name": "MessageOptions" }, "defaultValue": "..." @@ -11912,7 +12266,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1800, + "id": 1807, "name": "HostEvent" } }, @@ -12031,7 +12385,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2558, "name": "UIPassthroughEvent" } } @@ -13238,7 +13592,7 @@ }, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } } @@ -13322,7 +13676,7 @@ }, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } }, @@ -13337,7 +13691,7 @@ }, "type": { "type": "reference", - "id": 2356, + "id": 2370, "name": "MessageOptions" }, "defaultValue": "..." @@ -13670,7 +14024,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1800, + "id": 1807, "name": "HostEvent" } }, @@ -13791,7 +14145,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2558, "name": "UIPassthroughEvent" } } @@ -13957,7 +14311,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2355, + "id": 2369, "name": "DOMSelector" } }, @@ -13969,7 +14323,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2142, + "id": 2156, "name": "LiveboardViewConfig" } } @@ -14571,7 +14925,7 @@ }, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } } @@ -14650,7 +15004,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } }, @@ -14662,7 +15016,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2356, + "id": 2370, "name": "MessageOptions" }, "defaultValue": "..." @@ -14973,7 +15327,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1800, + "id": 1807, "name": "HostEvent" } }, @@ -15092,7 +15446,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2558, "name": "UIPassthroughEvent" } } @@ -15257,7 +15611,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2355, + "id": 2369, "name": "DOMSelector" } }, @@ -15269,7 +15623,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2207, + "id": 2221, "name": "SageViewConfig" } } @@ -15803,7 +16157,7 @@ }, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } } @@ -15882,7 +16236,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } }, @@ -15894,7 +16248,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2356, + "id": 2370, "name": "MessageOptions" }, "defaultValue": "..." @@ -16206,7 +16560,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1800, + "id": 1807, "name": "HostEvent" } }, @@ -16325,7 +16679,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2558, "name": "UIPassthroughEvent" } } @@ -16500,7 +16854,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2102, + "id": 2116, "name": "SearchBarViewConfig" } } @@ -17001,7 +17355,7 @@ }, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } } @@ -17083,7 +17437,7 @@ }, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } }, @@ -17098,7 +17452,7 @@ }, "type": { "type": "reference", - "id": 2356, + "id": 2370, "name": "MessageOptions" }, "defaultValue": "..." @@ -17422,7 +17776,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1800, + "id": 1807, "name": "HostEvent" } }, @@ -17541,7 +17895,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2558, "name": "UIPassthroughEvent" } } @@ -17700,7 +18054,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2355, + "id": 2369, "name": "DOMSelector" } }, @@ -17712,7 +18066,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2050, + "id": 2064, "name": "SearchViewConfig" } } @@ -18245,7 +18599,7 @@ }, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } } @@ -18327,7 +18681,7 @@ }, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } }, @@ -18342,7 +18696,7 @@ }, "type": { "type": "reference", - "id": 2356, + "id": 2370, "name": "MessageOptions" }, "defaultValue": "..." @@ -18666,7 +19020,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1800, + "id": 1807, "name": "HostEvent" } }, @@ -18785,7 +19139,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2558, "name": "UIPassthroughEvent" } } @@ -19941,7 +20295,7 @@ }, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } } @@ -20023,7 +20377,7 @@ }, "type": { "type": "reference", - "id": 2359, + "id": 2373, "name": "MessageCallback" } }, @@ -20038,7 +20392,7 @@ }, "type": { "type": "reference", - "id": 2356, + "id": 2370, "name": "MessageOptions" }, "defaultValue": "..." @@ -20359,7 +20713,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1800, + "id": 1807, "name": "HostEvent" } }, @@ -20478,7 +20832,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2544, + "id": 2558, "name": "UIPassthroughEvent" } } @@ -20600,7 +20954,7 @@ ] }, { - "id": 2252, + "id": 2266, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -20616,7 +20970,7 @@ }, "children": [ { - "id": 2287, + "id": 2301, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -20647,20 +21001,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2288, + "id": 2302, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2289, + "id": 2303, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2290, + "id": 2304, "name": "key", "kind": 32768, "flags": {}, @@ -20696,7 +21050,7 @@ } }, { - "id": 2309, + "id": 2323, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -20738,7 +21092,7 @@ } }, { - "id": 2271, + "id": 2285, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -20775,7 +21129,7 @@ } }, { - "id": 2306, + "id": 2320, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -20805,7 +21159,7 @@ ], "type": { "type": "reference", - "id": 1997, + "id": 2011, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -20814,7 +21168,7 @@ } }, { - "id": 2326, + "id": 2340, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -20852,7 +21206,7 @@ } }, { - "id": 2291, + "id": 2305, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -20881,7 +21235,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2386, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -20890,7 +21244,7 @@ } }, { - "id": 2272, + "id": 2286, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -20924,12 +21278,12 @@ ], "type": { "type": "reference", - "id": 2557, + "id": 2571, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2310, + "id": 2324, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -20971,7 +21325,7 @@ } }, { - "id": 2255, + "id": 2269, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -21009,7 +21363,7 @@ } }, { - "id": 2299, + "id": 2313, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -21047,7 +21401,7 @@ } }, { - "id": 2283, + "id": 2297, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -21085,7 +21439,7 @@ } }, { - "id": 2282, + "id": 2296, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -21117,7 +21471,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -21127,7 +21481,7 @@ } }, { - "id": 2270, + "id": 2284, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -21165,7 +21519,7 @@ } }, { - "id": 2295, + "id": 2309, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -21206,7 +21560,7 @@ } }, { - "id": 2320, + "id": 2334, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -21248,7 +21602,7 @@ } }, { - "id": 2325, + "id": 2339, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -21290,7 +21644,7 @@ } }, { - "id": 2311, + "id": 2325, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -21332,7 +21686,7 @@ } }, { - "id": 2256, + "id": 2270, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -21368,7 +21722,7 @@ } }, { - "id": 2267, + "id": 2281, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -21406,7 +21760,7 @@ } }, { - "id": 2296, + "id": 2310, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -21444,7 +21798,7 @@ } }, { - "id": 2307, + "id": 2321, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -21482,7 +21836,7 @@ } }, { - "id": 2308, + "id": 2322, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -21520,7 +21874,7 @@ } }, { - "id": 2298, + "id": 2312, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -21557,7 +21911,7 @@ } }, { - "id": 2279, + "id": 2293, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -21587,7 +21941,7 @@ ], "type": { "type": "reference", - "id": 2332, + "id": 2346, "name": "FrameParams" }, "inheritedFrom": { @@ -21596,7 +21950,7 @@ } }, { - "id": 2268, + "id": 2282, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -21630,7 +21984,7 @@ } }, { - "id": 2284, + "id": 2298, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -21666,7 +22020,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -21676,7 +22030,7 @@ } }, { - "id": 2315, + "id": 2329, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -21708,7 +22062,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2338, + "id": 2352, "name": "HomeLeftNavItem" } }, @@ -21718,7 +22072,7 @@ } }, { - "id": 2313, + "id": 2327, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -21750,7 +22104,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2348, + "id": 2362, "name": "HomepageModule" } }, @@ -21760,7 +22114,7 @@ } }, { - "id": 2312, + "id": 2326, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -21792,7 +22146,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2551, + "id": 2565, "name": "ListPageColumns" } }, @@ -21802,7 +22156,7 @@ } }, { - "id": 2260, + "id": 2274, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -21840,7 +22194,7 @@ } }, { - "id": 2257, + "id": 2271, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -21878,7 +22232,7 @@ } }, { - "id": 2254, + "id": 2268, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -21916,7 +22270,7 @@ } }, { - "id": 2323, + "id": 2337, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -21958,7 +22312,7 @@ } }, { - "id": 2316, + "id": 2330, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -22000,7 +22354,7 @@ } }, { - "id": 2259, + "id": 2273, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -22038,7 +22392,7 @@ } }, { - "id": 2258, + "id": 2272, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -22076,7 +22430,7 @@ } }, { - "id": 2265, + "id": 2279, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -22113,7 +22467,7 @@ } }, { - "id": 2261, + "id": 2275, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -22151,7 +22505,7 @@ } }, { - "id": 2274, + "id": 2288, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -22177,12 +22531,12 @@ ], "type": { "type": "reference", - "id": 2513, + "id": 2527, "name": "HomePageSearchBarMode" } }, { - "id": 2292, + "id": 2306, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -22220,7 +22574,7 @@ } }, { - "id": 2321, + "id": 2335, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -22262,7 +22616,7 @@ } }, { - "id": 2319, + "id": 2333, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -22300,7 +22654,7 @@ } }, { - "id": 2277, + "id": 2291, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -22334,7 +22688,7 @@ } }, { - "id": 2273, + "id": 2287, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -22363,7 +22717,7 @@ } }, { - "id": 2275, + "id": 2289, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -22401,7 +22755,7 @@ } }, { - "id": 2301, + "id": 2315, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -22439,7 +22793,7 @@ } }, { - "id": 2286, + "id": 2300, "name": "locale", "kind": 1024, "kindString": "Property", @@ -22477,7 +22831,7 @@ } }, { - "id": 2269, + "id": 2283, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -22515,7 +22869,7 @@ } }, { - "id": 2300, + "id": 2314, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -22553,7 +22907,7 @@ } }, { - "id": 2263, + "id": 2277, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -22588,7 +22942,7 @@ } }, { - "id": 2262, + "id": 2276, "name": "path", "kind": 1024, "kindString": "Property", @@ -22622,7 +22976,7 @@ } }, { - "id": 2294, + "id": 2308, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -22660,7 +23014,7 @@ } }, { - "id": 2302, + "id": 2316, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -22698,7 +23052,7 @@ } }, { - "id": 2314, + "id": 2328, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -22730,7 +23084,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2348, + "id": 2362, "name": "HomepageModule" } }, @@ -22740,7 +23094,7 @@ } }, { - "id": 2304, + "id": 2318, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -22782,7 +23136,7 @@ } }, { - "id": 2305, + "id": 2319, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -22814,7 +23168,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2487, + "id": 2501, "name": "RuntimeParameter" } }, @@ -22824,7 +23178,7 @@ } }, { - "id": 2276, + "id": 2290, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -22858,7 +23212,7 @@ } }, { - "id": 2318, + "id": 2332, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -22900,7 +23254,7 @@ } }, { - "id": 2324, + "id": 2338, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -22942,7 +23296,7 @@ } }, { - "id": 2317, + "id": 2331, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -22984,7 +23338,7 @@ } }, { - "id": 2322, + "id": 2336, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -23026,7 +23380,7 @@ } }, { - "id": 2253, + "id": 2267, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -23064,7 +23418,7 @@ } }, { - "id": 2264, + "id": 2278, "name": "tag", "kind": 1024, "kindString": "Property", @@ -23098,7 +23452,7 @@ } }, { - "id": 2285, + "id": 2299, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -23134,7 +23488,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -23149,70 +23503,70 @@ "title": "Properties", "kind": 1024, "children": [ - 2287, - 2309, - 2271, - 2306, - 2326, - 2291, - 2272, - 2310, - 2255, - 2299, - 2283, - 2282, - 2270, - 2295, + 2301, + 2323, + 2285, 2320, - 2325, - 2311, - 2256, - 2267, + 2340, + 2305, + 2286, + 2324, + 2269, + 2313, + 2297, 2296, - 2307, - 2308, - 2298, - 2279, - 2268, 2284, - 2315, - 2313, + 2309, + 2334, + 2339, + 2325, + 2270, + 2281, + 2310, + 2321, + 2322, 2312, - 2260, - 2257, - 2254, - 2323, - 2316, - 2259, - 2258, - 2265, - 2261, + 2293, + 2282, + 2298, + 2329, + 2327, + 2326, 2274, - 2292, - 2321, - 2319, - 2277, + 2271, + 2268, + 2337, + 2330, 2273, + 2272, + 2279, 2275, - 2301, - 2286, - 2269, + 2288, + 2306, + 2335, + 2333, + 2291, + 2287, + 2289, + 2315, 2300, - 2263, - 2262, - 2294, - 2302, + 2283, 2314, - 2304, - 2305, + 2277, 2276, + 2308, + 2316, + 2328, 2318, - 2324, - 2317, - 2322, - 2253, - 2264, - 2285 + 2319, + 2290, + 2332, + 2338, + 2331, + 2336, + 2267, + 2278, + 2299 ] } ], @@ -24069,7 +24423,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2386, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -24189,7 +24543,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -24349,7 +24703,7 @@ ], "type": { "type": "reference", - "id": 2332, + "id": 2346, "name": "FrameParams" }, "inheritedFrom": { @@ -24395,7 +24749,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -24637,7 +24991,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -24845,7 +25199,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2386, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -25047,7 +25401,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -25207,7 +25561,7 @@ ], "type": { "type": "reference", - "id": 2332, + "id": 2346, "name": "FrameParams" }, "inheritedFrom": { @@ -25253,7 +25607,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -25640,7 +25994,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -25724,7 +26078,7 @@ ] }, { - "id": 2524, + "id": 2538, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -25739,7 +26093,7 @@ }, "children": [ { - "id": 2525, + "id": 2539, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -25749,21 +26103,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5223, + "line": 5384, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2526, + "id": 2540, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2527, + "id": 2541, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -25771,18 +26125,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5224, + "line": 5385, "character": 8 } ], "type": { "type": "reference", - "id": 2521, + "id": 2535, "name": "VizPoint" } }, { - "id": 2528, + "id": 2542, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -25790,7 +26144,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5225, + "line": 5386, "character": 8 } ], @@ -25798,7 +26152,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2521, + "id": 2535, "name": "VizPoint" } } @@ -25809,8 +26163,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2527, - 2528 + 2541, + 2542 ] } ] @@ -25818,7 +26172,7 @@ } }, { - "id": 2529, + "id": 2543, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -25826,21 +26180,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5227, + "line": 5388, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2530, + "id": 2544, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2538, + "id": 2552, "name": "columns", "kind": 1024, "kindString": "Property", @@ -25848,7 +26202,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5235, + "line": 5396, "character": 8 } ], @@ -25861,7 +26215,7 @@ } }, { - "id": 2539, + "id": 2553, "name": "data", "kind": 1024, "kindString": "Property", @@ -25869,7 +26223,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5236, + "line": 5397, "character": 8 } ], @@ -25882,7 +26236,7 @@ } }, { - "id": 2532, + "id": 2546, "name": "id", "kind": 1024, "kindString": "Property", @@ -25890,7 +26244,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5229, + "line": 5390, "character": 8 } ], @@ -25900,7 +26254,7 @@ } }, { - "id": 2531, + "id": 2545, "name": "name", "kind": 1024, "kindString": "Property", @@ -25908,7 +26262,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5228, + "line": 5389, "character": 8 } ], @@ -25918,7 +26272,7 @@ } }, { - "id": 2533, + "id": 2547, "name": "sources", "kind": 1024, "kindString": "Property", @@ -25926,21 +26280,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5230, + "line": 5391, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2534, + "id": 2548, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2535, + "id": 2549, "name": "header", "kind": 1024, "kindString": "Property", @@ -25948,21 +26302,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5231, + "line": 5392, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2536, + "id": 2550, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2537, + "id": 2551, "name": "guid", "kind": 1024, "kindString": "Property", @@ -25970,7 +26324,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5232, + "line": 5393, "character": 16 } ], @@ -25985,7 +26339,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2537 + 2551 ] } ] @@ -25998,7 +26352,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2535 + 2549 ] } ] @@ -26011,23 +26365,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2538, - 2539, - 2532, - 2531, - 2533 + 2552, + 2553, + 2546, + 2545, + 2547 ] } ], "indexSignature": { - "id": 2540, + "id": 2554, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2541, + "id": 2555, "name": "key", "kind": 32768, "flags": {}, @@ -26046,7 +26400,7 @@ } }, { - "id": 2542, + "id": 2556, "name": "session", "kind": 1024, "kindString": "Property", @@ -26054,7 +26408,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5239, + "line": 5400, "character": 4 } ], @@ -26065,7 +26419,7 @@ } }, { - "id": 2543, + "id": 2557, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -26075,7 +26429,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5240, + "line": 5401, "character": 4 } ], @@ -26090,23 +26444,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2525, - 2529, - 2542, - 2543 + 2539, + 2543, + 2556, + 2557 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5222, + "line": 5383, "character": 17 } ] }, { - "id": 2394, + "id": 2408, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -26116,7 +26470,7 @@ }, "children": [ { - "id": 2448, + "id": 2462, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -26139,7 +26493,7 @@ } }, { - "id": 2447, + "id": 2461, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -26162,7 +26516,7 @@ } }, { - "id": 2417, + "id": 2431, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -26185,7 +26539,7 @@ } }, { - "id": 2418, + "id": 2432, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -26208,7 +26562,7 @@ } }, { - "id": 2420, + "id": 2434, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -26231,7 +26585,7 @@ } }, { - "id": 2419, + "id": 2433, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -26254,7 +26608,7 @@ } }, { - "id": 2399, + "id": 2413, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -26277,7 +26631,7 @@ } }, { - "id": 2460, + "id": 2474, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -26300,7 +26654,7 @@ } }, { - "id": 2461, + "id": 2475, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -26323,7 +26677,7 @@ } }, { - "id": 2458, + "id": 2472, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -26346,7 +26700,7 @@ } }, { - "id": 2459, + "id": 2473, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -26369,7 +26723,7 @@ } }, { - "id": 2422, + "id": 2436, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -26392,7 +26746,7 @@ } }, { - "id": 2427, + "id": 2441, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -26415,7 +26769,7 @@ } }, { - "id": 2424, + "id": 2438, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -26438,7 +26792,7 @@ } }, { - "id": 2426, + "id": 2440, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -26461,7 +26815,7 @@ } }, { - "id": 2425, + "id": 2439, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -26484,7 +26838,7 @@ } }, { - "id": 2423, + "id": 2437, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -26507,7 +26861,7 @@ } }, { - "id": 2432, + "id": 2446, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -26530,7 +26884,7 @@ } }, { - "id": 2429, + "id": 2443, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -26553,7 +26907,7 @@ } }, { - "id": 2431, + "id": 2445, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -26576,7 +26930,7 @@ } }, { - "id": 2430, + "id": 2444, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -26599,7 +26953,7 @@ } }, { - "id": 2428, + "id": 2442, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -26622,7 +26976,7 @@ } }, { - "id": 2436, + "id": 2450, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -26645,7 +26999,7 @@ } }, { - "id": 2435, + "id": 2449, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -26668,7 +27022,7 @@ } }, { - "id": 2434, + "id": 2448, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -26691,7 +27045,7 @@ } }, { - "id": 2433, + "id": 2447, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -26714,7 +27068,7 @@ } }, { - "id": 2421, + "id": 2435, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -26737,7 +27091,7 @@ } }, { - "id": 2483, + "id": 2497, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -26760,7 +27114,7 @@ } }, { - "id": 2486, + "id": 2500, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -26783,7 +27137,7 @@ } }, { - "id": 2481, + "id": 2495, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -26806,7 +27160,7 @@ } }, { - "id": 2484, + "id": 2498, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -26829,7 +27183,7 @@ } }, { - "id": 2485, + "id": 2499, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -26852,7 +27206,7 @@ } }, { - "id": 2480, + "id": 2494, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -26875,7 +27229,7 @@ } }, { - "id": 2482, + "id": 2496, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -26898,7 +27252,7 @@ } }, { - "id": 2453, + "id": 2467, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -26921,7 +27275,7 @@ } }, { - "id": 2452, + "id": 2466, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -26944,7 +27298,7 @@ } }, { - "id": 2455, + "id": 2469, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -26967,7 +27321,7 @@ } }, { - "id": 2454, + "id": 2468, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -26990,7 +27344,7 @@ } }, { - "id": 2451, + "id": 2465, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -27013,7 +27367,7 @@ } }, { - "id": 2449, + "id": 2463, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -27036,7 +27390,7 @@ } }, { - "id": 2450, + "id": 2464, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -27059,7 +27413,7 @@ } }, { - "id": 2456, + "id": 2470, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -27082,7 +27436,7 @@ } }, { - "id": 2457, + "id": 2471, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -27105,7 +27459,7 @@ } }, { - "id": 2468, + "id": 2482, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -27128,7 +27482,7 @@ } }, { - "id": 2469, + "id": 2483, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -27151,7 +27505,7 @@ } }, { - "id": 2472, + "id": 2486, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -27174,7 +27528,7 @@ } }, { - "id": 2470, + "id": 2484, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -27197,7 +27551,7 @@ } }, { - "id": 2471, + "id": 2485, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -27220,7 +27574,7 @@ } }, { - "id": 2479, + "id": 2493, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -27243,7 +27597,7 @@ } }, { - "id": 2478, + "id": 2492, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -27266,7 +27620,7 @@ } }, { - "id": 2477, + "id": 2491, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -27289,7 +27643,7 @@ } }, { - "id": 2476, + "id": 2490, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -27312,7 +27666,7 @@ } }, { - "id": 2474, + "id": 2488, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -27335,7 +27689,7 @@ } }, { - "id": 2473, + "id": 2487, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -27358,7 +27712,7 @@ } }, { - "id": 2466, + "id": 2480, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -27381,7 +27735,7 @@ } }, { - "id": 2463, + "id": 2477, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -27404,7 +27758,7 @@ } }, { - "id": 2462, + "id": 2476, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -27427,7 +27781,7 @@ } }, { - "id": 2464, + "id": 2478, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -27450,7 +27804,7 @@ } }, { - "id": 2467, + "id": 2481, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -27473,7 +27827,7 @@ } }, { - "id": 2465, + "id": 2479, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -27496,7 +27850,7 @@ } }, { - "id": 2400, + "id": 2414, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -27519,7 +27873,7 @@ } }, { - "id": 2401, + "id": 2415, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -27542,7 +27896,7 @@ } }, { - "id": 2395, + "id": 2409, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -27565,7 +27919,7 @@ } }, { - "id": 2396, + "id": 2410, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -27588,7 +27942,7 @@ } }, { - "id": 2397, + "id": 2411, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -27611,7 +27965,7 @@ } }, { - "id": 2398, + "id": 2412, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -27634,7 +27988,7 @@ } }, { - "id": 2409, + "id": 2423, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -27657,7 +28011,7 @@ } }, { - "id": 2413, + "id": 2427, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -27680,7 +28034,7 @@ } }, { - "id": 2414, + "id": 2428, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -27703,7 +28057,7 @@ } }, { - "id": 2412, + "id": 2426, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -27726,7 +28080,7 @@ } }, { - "id": 2408, + "id": 2422, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -27749,7 +28103,7 @@ } }, { - "id": 2411, + "id": 2425, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -27772,7 +28126,7 @@ } }, { - "id": 2405, + "id": 2419, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -27795,7 +28149,7 @@ } }, { - "id": 2406, + "id": 2420, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -27818,7 +28172,7 @@ } }, { - "id": 2407, + "id": 2421, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -27841,7 +28195,7 @@ } }, { - "id": 2402, + "id": 2416, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -27864,7 +28218,7 @@ } }, { - "id": 2403, + "id": 2417, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -27887,7 +28241,7 @@ } }, { - "id": 2404, + "id": 2418, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -27910,7 +28264,7 @@ } }, { - "id": 2410, + "id": 2424, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -27933,7 +28287,7 @@ } }, { - "id": 2475, + "id": 2489, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -27956,7 +28310,7 @@ } }, { - "id": 2415, + "id": 2429, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -27979,7 +28333,7 @@ } }, { - "id": 2416, + "id": 2430, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -28002,7 +28356,7 @@ } }, { - "id": 2445, + "id": 2459, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -28025,7 +28379,7 @@ } }, { - "id": 2443, + "id": 2457, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -28048,7 +28402,7 @@ } }, { - "id": 2444, + "id": 2458, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -28071,7 +28425,7 @@ } }, { - "id": 2440, + "id": 2454, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -28094,7 +28448,7 @@ } }, { - "id": 2441, + "id": 2455, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -28117,7 +28471,7 @@ } }, { - "id": 2442, + "id": 2456, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -28140,7 +28494,7 @@ } }, { - "id": 2446, + "id": 2460, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -28163,7 +28517,7 @@ } }, { - "id": 2437, + "id": 2451, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -28186,7 +28540,7 @@ } }, { - "id": 2438, + "id": 2452, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -28209,7 +28563,7 @@ } }, { - "id": 2439, + "id": 2453, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -28237,98 +28591,98 @@ "title": "Properties", "kind": 1024, "children": [ - 2448, - 2447, - 2417, - 2418, - 2420, - 2419, - 2399, - 2460, + 2462, 2461, - 2458, - 2459, - 2422, - 2427, - 2424, - 2426, - 2425, - 2423, - 2432, - 2429, 2431, - 2430, - 2428, - 2436, - 2435, + 2432, 2434, 2433, - 2421, + 2413, + 2474, + 2475, + 2472, + 2473, + 2436, + 2441, + 2438, + 2440, + 2439, + 2437, + 2446, + 2443, + 2445, + 2444, + 2442, + 2450, + 2449, + 2448, + 2447, + 2435, + 2497, + 2500, + 2495, + 2498, + 2499, + 2494, + 2496, + 2467, + 2466, + 2469, + 2468, + 2465, + 2463, + 2464, + 2470, + 2471, + 2482, 2483, 2486, - 2481, 2484, 2485, + 2493, + 2492, + 2491, + 2490, + 2488, + 2487, 2480, - 2482, - 2453, - 2452, - 2455, - 2454, - 2451, - 2449, - 2450, - 2456, - 2457, - 2468, - 2469, - 2472, - 2470, - 2471, - 2479, - 2478, 2477, 2476, - 2474, - 2473, - 2466, - 2463, - 2462, - 2464, - 2467, - 2465, - 2400, - 2401, - 2395, - 2396, - 2397, - 2398, - 2409, - 2413, + 2478, + 2481, + 2479, 2414, - 2412, - 2408, - 2411, - 2405, - 2406, - 2407, - 2402, - 2403, - 2404, - 2410, - 2475, 2415, + 2409, + 2410, + 2411, + 2412, + 2423, + 2427, + 2428, + 2426, + 2422, + 2425, + 2419, + 2420, + 2421, 2416, - 2445, - 2443, - 2444, - 2440, - 2441, - 2442, - 2446, - 2437, - 2438, - 2439 + 2417, + 2418, + 2424, + 2489, + 2429, + 2430, + 2459, + 2457, + 2458, + 2454, + 2455, + 2456, + 2460, + 2451, + 2452, + 2453 ] } ], @@ -28341,7 +28695,7 @@ ] }, { - "id": 2382, + "id": 2396, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -28351,7 +28705,7 @@ }, "children": [ { - "id": 2384, + "id": 2398, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -28367,12 +28721,12 @@ ], "type": { "type": "reference", - "id": 2385, + "id": 2399, "name": "customCssInterface" } }, { - "id": 2383, + "id": 2397, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -28397,8 +28751,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2384, - 2383 + 2398, + 2397 ] } ], @@ -28411,7 +28765,7 @@ ] }, { - "id": 2372, + "id": 2386, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -28427,7 +28781,7 @@ }, "children": [ { - "id": 2374, + "id": 2388, "name": "content", "kind": 1024, "kindString": "Property", @@ -28444,14 +28798,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2375, + "id": 2389, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2377, + "id": 2391, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -28481,7 +28835,7 @@ } }, { - "id": 2378, + "id": 2392, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -28501,7 +28855,7 @@ } }, { - "id": 2376, + "id": 2390, "name": "strings", "kind": 1024, "kindString": "Property", @@ -28544,21 +28898,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2377, - 2378, - 2376 + 2391, + 2392, + 2390 ] } ], "indexSignature": { - "id": 2379, + "id": 2393, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2380, + "id": 2394, "name": "key", "kind": 32768, "flags": {}, @@ -28577,7 +28931,7 @@ } }, { - "id": 2381, + "id": 2395, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -28597,7 +28951,7 @@ } }, { - "id": 2373, + "id": 2387, "name": "style", "kind": 1024, "kindString": "Property", @@ -28613,7 +28967,7 @@ ], "type": { "type": "reference", - "id": 2382, + "id": 2396, "name": "CustomStyles" } } @@ -28623,9 +28977,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2374, - 2381, - 2373 + 2388, + 2395, + 2387 ] } ], @@ -28638,7 +28992,7 @@ ] }, { - "id": 2001, + "id": 2015, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -28654,7 +29008,7 @@ }, "children": [ { - "id": 2043, + "id": 2057, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -28684,20 +29038,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2044, + "id": 2058, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2045, + "id": 2059, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2046, + "id": 2060, "name": "key", "kind": 32768, "flags": {}, @@ -28729,7 +29083,7 @@ } }, { - "id": 2004, + "id": 2018, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -28752,7 +29106,7 @@ } }, { - "id": 2025, + "id": 2039, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -28794,7 +29148,7 @@ } }, { - "id": 2027, + "id": 2041, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -28823,7 +29177,7 @@ } }, { - "id": 2003, + "id": 2017, "name": "authType", "kind": 1024, "kindString": "Property", @@ -28845,7 +29199,7 @@ } }, { - "id": 2016, + "id": 2030, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -28874,7 +29228,7 @@ } }, { - "id": 2028, + "id": 2042, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -28907,7 +29261,7 @@ } }, { - "id": 2019, + "id": 2033, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -28936,7 +29290,7 @@ } }, { - "id": 2040, + "id": 2054, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -28965,7 +29319,7 @@ } }, { - "id": 2047, + "id": 2061, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -29008,7 +29362,7 @@ } }, { - "id": 2024, + "id": 2038, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -29033,12 +29387,12 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2386, "name": "CustomisationsInterface" } }, { - "id": 2038, + "id": 2052, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -29067,7 +29421,7 @@ } }, { - "id": 2021, + "id": 2035, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -29097,7 +29451,7 @@ } }, { - "id": 2049, + "id": 2063, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -29134,7 +29488,7 @@ } }, { - "id": 2042, + "id": 2056, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -29163,7 +29517,7 @@ } }, { - "id": 2017, + "id": 2031, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -29196,7 +29550,7 @@ } }, { - "id": 2048, + "id": 2062, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -29216,7 +29570,7 @@ } }, { - "id": 2037, + "id": 2051, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -29245,7 +29599,7 @@ } }, { - "id": 2015, + "id": 2029, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -29274,7 +29628,7 @@ } }, { - "id": 2010, + "id": 2024, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -29308,7 +29662,7 @@ } }, { - "id": 2036, + "id": 2050, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -29341,12 +29695,12 @@ ], "type": { "type": "reference", - "id": 2490, + "id": 2504, "name": "LogLevel" } }, { - "id": 2018, + "id": 2032, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -29375,7 +29729,7 @@ } }, { - "id": 2009, + "id": 2023, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -29408,7 +29762,7 @@ } }, { - "id": 2039, + "id": 2053, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -29437,7 +29791,7 @@ } }, { - "id": 2008, + "id": 2022, "name": "password", "kind": 1024, "kindString": "Property", @@ -29461,7 +29815,7 @@ } }, { - "id": 2034, + "id": 2048, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -29490,7 +29844,7 @@ } }, { - "id": 2020, + "id": 2034, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -29523,7 +29877,7 @@ } }, { - "id": 2011, + "id": 2025, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -29553,7 +29907,7 @@ } }, { - "id": 2013, + "id": 2027, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -29582,7 +29936,7 @@ } }, { - "id": 2035, + "id": 2049, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -29611,7 +29965,7 @@ } }, { - "id": 2014, + "id": 2028, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -29640,7 +29994,7 @@ } }, { - "id": 2023, + "id": 2037, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -29663,7 +30017,7 @@ } }, { - "id": 2022, + "id": 2036, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -29692,7 +30046,7 @@ } }, { - "id": 2002, + "id": 2016, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -29713,7 +30067,7 @@ } }, { - "id": 2026, + "id": 2040, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -29736,7 +30090,7 @@ } }, { - "id": 2007, + "id": 2021, "name": "username", "kind": 1024, "kindString": "Property", @@ -29759,7 +30113,7 @@ } }, { - "id": 2005, + "id": 2019, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -29775,7 +30129,7 @@ ], "signatures": [ { - "id": 2006, + "id": 2020, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -29803,49 +30157,49 @@ "title": "Properties", "kind": 1024, "children": [ - 2043, - 2004, - 2025, - 2027, - 2003, - 2016, - 2028, - 2019, - 2040, - 2047, - 2024, - 2038, - 2021, - 2049, - 2042, - 2017, - 2048, - 2037, - 2015, - 2010, - 2036, + 2057, 2018, - 2009, 2039, - 2008, - 2034, - 2020, - 2011, - 2013, + 2041, + 2017, + 2030, + 2042, + 2033, + 2054, + 2061, + 2038, + 2052, 2035, - 2014, + 2063, + 2056, + 2031, + 2062, + 2051, + 2029, + 2024, + 2050, + 2032, 2023, + 2053, 2022, - 2002, - 2026, - 2007 + 2048, + 2034, + 2025, + 2027, + 2049, + 2028, + 2037, + 2036, + 2016, + 2040, + 2021 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2005 + 2019 ] } ], @@ -29858,7 +30212,7 @@ ] }, { - "id": 2332, + "id": 2346, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -29874,7 +30228,7 @@ }, "children": [ { - "id": 2334, + "id": 2348, "name": "height", "kind": 1024, "kindString": "Property", @@ -29906,7 +30260,7 @@ } }, { - "id": 2335, + "id": 2349, "name": "loading", "kind": 1024, "kindString": "Property", @@ -29942,7 +30296,7 @@ } }, { - "id": 2333, + "id": 2347, "name": "width", "kind": 1024, "kindString": "Property", @@ -29979,9 +30333,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2334, - 2335, - 2333 + 2348, + 2349, + 2347 ] } ], @@ -29993,7 +30347,7 @@ } ], "indexSignature": { - "id": 2336, + "id": 2350, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -30003,7 +30357,7 @@ }, "parameters": [ { - "id": 2337, + "id": 2351, "name": "key", "kind": 32768, "flags": {}, @@ -30037,7 +30391,7 @@ } }, { - "id": 2142, + "id": 2156, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -30053,7 +30407,7 @@ }, "children": [ { - "id": 2153, + "id": 2167, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -30087,7 +30441,7 @@ } }, { - "id": 2171, + "id": 2185, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -30118,20 +30472,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2172, + "id": 2186, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2173, + "id": 2187, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2174, + "id": 2188, "name": "key", "kind": 32768, "flags": {}, @@ -30167,7 +30521,7 @@ } }, { - "id": 2193, + "id": 2207, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -30209,7 +30563,7 @@ } }, { - "id": 2190, + "id": 2204, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -30239,7 +30593,7 @@ ], "type": { "type": "reference", - "id": 1997, + "id": 2011, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -30248,7 +30602,7 @@ } }, { - "id": 2206, + "id": 2220, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -30286,7 +30640,7 @@ } }, { - "id": 2175, + "id": 2189, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -30315,7 +30669,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2386, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -30324,7 +30678,7 @@ } }, { - "id": 2194, + "id": 2208, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -30366,7 +30720,7 @@ } }, { - "id": 2144, + "id": 2158, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -30404,7 +30758,7 @@ } }, { - "id": 2183, + "id": 2197, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -30442,7 +30796,7 @@ } }, { - "id": 2167, + "id": 2181, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -30480,7 +30834,7 @@ } }, { - "id": 2166, + "id": 2180, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -30512,7 +30866,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -30522,7 +30876,7 @@ } }, { - "id": 2179, + "id": 2193, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -30563,7 +30917,7 @@ } }, { - "id": 2200, + "id": 2214, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -30605,7 +30959,7 @@ } }, { - "id": 2205, + "id": 2219, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -30647,7 +31001,7 @@ } }, { - "id": 2195, + "id": 2209, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -30689,7 +31043,7 @@ } }, { - "id": 2180, + "id": 2194, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -30727,7 +31081,7 @@ } }, { - "id": 2145, + "id": 2159, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -30763,7 +31117,7 @@ } }, { - "id": 2191, + "id": 2205, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -30801,7 +31155,7 @@ } }, { - "id": 2192, + "id": 2206, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -30839,7 +31193,7 @@ } }, { - "id": 2182, + "id": 2196, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -30876,7 +31230,7 @@ } }, { - "id": 2163, + "id": 2177, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -30906,7 +31260,7 @@ ], "type": { "type": "reference", - "id": 2332, + "id": 2346, "name": "FrameParams" }, "inheritedFrom": { @@ -30915,7 +31269,7 @@ } }, { - "id": 2143, + "id": 2157, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -30949,7 +31303,7 @@ } }, { - "id": 2168, + "id": 2182, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -30985,7 +31339,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -30995,7 +31349,7 @@ } }, { - "id": 2159, + "id": 2173, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -31032,7 +31386,7 @@ } }, { - "id": 2203, + "id": 2217, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -31074,7 +31428,7 @@ } }, { - "id": 2196, + "id": 2210, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -31116,7 +31470,7 @@ } }, { - "id": 2154, + "id": 2168, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -31150,7 +31504,7 @@ } }, { - "id": 2176, + "id": 2190, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -31188,7 +31542,7 @@ } }, { - "id": 2201, + "id": 2215, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -31230,7 +31584,7 @@ } }, { - "id": 2199, + "id": 2213, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -31268,7 +31622,7 @@ } }, { - "id": 2161, + "id": 2175, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -31302,7 +31656,7 @@ } }, { - "id": 2185, + "id": 2199, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -31340,7 +31694,7 @@ } }, { - "id": 2146, + "id": 2160, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -31374,7 +31728,7 @@ } }, { - "id": 2152, + "id": 2166, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -31408,7 +31762,7 @@ } }, { - "id": 2170, + "id": 2184, "name": "locale", "kind": 1024, "kindString": "Property", @@ -31446,7 +31800,7 @@ } }, { - "id": 2184, + "id": 2198, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -31484,7 +31838,7 @@ } }, { - "id": 2178, + "id": 2192, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -31522,7 +31876,7 @@ } }, { - "id": 2149, + "id": 2163, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -31556,7 +31910,7 @@ } }, { - "id": 2186, + "id": 2200, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -31594,7 +31948,7 @@ } }, { - "id": 2188, + "id": 2202, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -31636,7 +31990,7 @@ } }, { - "id": 2189, + "id": 2203, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -31668,7 +32022,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2487, + "id": 2501, "name": "RuntimeParameter" } }, @@ -31678,7 +32032,7 @@ } }, { - "id": 2198, + "id": 2212, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -31720,7 +32074,7 @@ } }, { - "id": 2204, + "id": 2218, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -31762,7 +32116,7 @@ } }, { - "id": 2197, + "id": 2211, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -31804,7 +32158,7 @@ } }, { - "id": 2202, + "id": 2216, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -31846,7 +32200,7 @@ } }, { - "id": 2155, + "id": 2169, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -31880,7 +32234,7 @@ } }, { - "id": 2169, + "id": 2183, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -31916,7 +32270,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -31926,7 +32280,7 @@ } }, { - "id": 2160, + "id": 2174, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -31963,7 +32317,7 @@ } }, { - "id": 2150, + "id": 2164, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -32000,7 +32354,7 @@ } }, { - "id": 2148, + "id": 2162, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -32039,56 +32393,56 @@ "title": "Properties", "kind": 1024, "children": [ - 2153, - 2171, + 2167, + 2185, + 2207, + 2204, + 2220, + 2189, + 2208, + 2158, + 2197, + 2181, + 2180, 2193, - 2190, - 2206, - 2175, + 2214, + 2219, + 2209, 2194, - 2144, - 2183, - 2167, - 2166, - 2179, - 2200, + 2159, 2205, - 2195, - 2180, - 2145, - 2191, - 2192, + 2206, + 2196, + 2177, + 2157, 2182, - 2163, - 2143, + 2173, + 2217, + 2210, 2168, - 2159, - 2203, - 2196, - 2154, - 2176, - 2201, + 2190, + 2215, + 2213, + 2175, 2199, - 2161, - 2185, - 2146, - 2152, - 2170, + 2160, + 2166, 2184, - 2178, - 2149, - 2186, - 2188, - 2189, 2198, - 2204, - 2197, + 2192, + 2163, + 2200, 2202, - 2155, + 2203, + 2212, + 2218, + 2211, + 2216, 2169, - 2160, - 2150, - 2148 + 2183, + 2174, + 2164, + 2162 ] } ], @@ -32229,7 +32583,7 @@ ] }, { - "id": 2487, + "id": 2501, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -32239,7 +32593,7 @@ }, "children": [ { - "id": 2488, + "id": 2502, "name": "name", "kind": 1024, "kindString": "Property", @@ -32260,7 +32614,7 @@ } }, { - "id": 2489, + "id": 2503, "name": "value", "kind": 1024, "kindString": "Property", @@ -32299,8 +32653,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2488, - 2489 + 2502, + 2503 ] } ], @@ -32313,7 +32667,7 @@ ] }, { - "id": 2207, + "id": 2221, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -32333,7 +32687,7 @@ }, "children": [ { - "id": 2236, + "id": 2250, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32364,20 +32718,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2237, + "id": 2251, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2238, + "id": 2252, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2239, + "id": 2253, "name": "key", "kind": 32768, "flags": {}, @@ -32413,7 +32767,7 @@ } }, { - "id": 2224, + "id": 2238, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -32455,7 +32809,7 @@ } }, { - "id": 2221, + "id": 2235, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -32485,7 +32839,7 @@ ], "type": { "type": "reference", - "id": 1997, + "id": 2011, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -32494,7 +32848,7 @@ } }, { - "id": 2240, + "id": 2254, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32523,7 +32877,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2386, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -32532,7 +32886,7 @@ } }, { - "id": 2225, + "id": 2239, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -32574,7 +32928,7 @@ } }, { - "id": 2217, + "id": 2231, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -32597,7 +32951,7 @@ } }, { - "id": 2248, + "id": 2262, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -32635,7 +32989,7 @@ } }, { - "id": 2212, + "id": 2226, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -32664,7 +33018,7 @@ } }, { - "id": 2232, + "id": 2246, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -32702,7 +33056,7 @@ } }, { - "id": 2231, + "id": 2245, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -32734,7 +33088,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -32744,7 +33098,7 @@ } }, { - "id": 2244, + "id": 2258, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -32785,7 +33139,7 @@ } }, { - "id": 2226, + "id": 2240, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -32827,7 +33181,7 @@ } }, { - "id": 2245, + "id": 2259, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -32865,7 +33219,7 @@ } }, { - "id": 2222, + "id": 2236, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -32903,7 +33257,7 @@ } }, { - "id": 2223, + "id": 2237, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -32941,7 +33295,7 @@ } }, { - "id": 2247, + "id": 2261, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -32978,7 +33332,7 @@ } }, { - "id": 2228, + "id": 2242, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -33008,7 +33362,7 @@ ], "type": { "type": "reference", - "id": 2332, + "id": 2346, "name": "FrameParams" }, "inheritedFrom": { @@ -33017,7 +33371,7 @@ } }, { - "id": 2233, + "id": 2247, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -33053,7 +33407,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -33063,7 +33417,7 @@ } }, { - "id": 2214, + "id": 2228, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -33092,7 +33446,7 @@ } }, { - "id": 2211, + "id": 2225, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -33121,7 +33475,7 @@ } }, { - "id": 2216, + "id": 2230, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -33155,7 +33509,7 @@ } }, { - "id": 2210, + "id": 2224, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -33188,7 +33542,7 @@ } }, { - "id": 2213, + "id": 2227, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -33217,7 +33571,7 @@ } }, { - "id": 2241, + "id": 2255, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -33255,7 +33609,7 @@ } }, { - "id": 2250, + "id": 2264, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -33293,7 +33647,7 @@ } }, { - "id": 2235, + "id": 2249, "name": "locale", "kind": 1024, "kindString": "Property", @@ -33331,7 +33685,7 @@ } }, { - "id": 2249, + "id": 2263, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -33369,7 +33723,7 @@ } }, { - "id": 2243, + "id": 2257, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -33407,7 +33761,7 @@ } }, { - "id": 2219, + "id": 2233, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -33449,7 +33803,7 @@ } }, { - "id": 2220, + "id": 2234, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -33481,7 +33835,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2487, + "id": 2501, "name": "RuntimeParameter" } }, @@ -33491,7 +33845,7 @@ } }, { - "id": 2218, + "id": 2232, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -33525,7 +33879,7 @@ } }, { - "id": 2208, + "id": 2222, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -33554,7 +33908,7 @@ } }, { - "id": 2215, + "id": 2229, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -33583,7 +33937,7 @@ } }, { - "id": 2234, + "id": 2248, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -33619,7 +33973,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -33634,40 +33988,40 @@ "title": "Properties", "kind": 1024, "children": [ - 2236, - 2224, - 2221, - 2240, - 2225, - 2217, - 2248, - 2212, - 2232, + 2250, + 2238, + 2235, + 2254, + 2239, 2231, - 2244, + 2262, 2226, + 2246, 2245, - 2222, - 2223, + 2258, + 2240, + 2259, + 2236, + 2237, + 2261, + 2242, 2247, 2228, - 2233, - 2214, - 2211, - 2216, - 2210, - 2213, - 2241, - 2250, - 2235, + 2225, + 2230, + 2224, + 2227, + 2255, + 2264, 2249, - 2243, - 2219, - 2220, - 2218, - 2208, - 2215, - 2234 + 2263, + 2257, + 2233, + 2234, + 2232, + 2222, + 2229, + 2248 ] } ], @@ -33721,7 +34075,7 @@ ] }, { - "id": 2102, + "id": 2116, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -33736,7 +34090,7 @@ }, "children": [ { - "id": 2117, + "id": 2131, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -33767,20 +34121,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2118, + "id": 2132, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2119, + "id": 2133, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2120, + "id": 2134, "name": "key", "kind": 32768, "flags": {}, @@ -33816,7 +34170,7 @@ } }, { - "id": 2139, + "id": 2153, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -33858,7 +34212,7 @@ } }, { - "id": 2136, + "id": 2150, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -33888,7 +34242,7 @@ ], "type": { "type": "reference", - "id": 1997, + "id": 2011, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -33897,7 +34251,7 @@ } }, { - "id": 2121, + "id": 2135, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -33926,7 +34280,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2386, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -33935,7 +34289,7 @@ } }, { - "id": 2140, + "id": 2154, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -33977,7 +34331,7 @@ } }, { - "id": 2104, + "id": 2118, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -34011,7 +34365,7 @@ } }, { - "id": 2103, + "id": 2117, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -34052,7 +34406,7 @@ } }, { - "id": 2129, + "id": 2143, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34090,7 +34444,7 @@ } }, { - "id": 2113, + "id": 2127, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34128,7 +34482,7 @@ } }, { - "id": 2112, + "id": 2126, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34160,7 +34514,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -34170,7 +34524,7 @@ } }, { - "id": 2125, + "id": 2139, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34211,7 +34565,7 @@ } }, { - "id": 2141, + "id": 2155, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34253,7 +34607,7 @@ } }, { - "id": 2126, + "id": 2140, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34291,7 +34645,7 @@ } }, { - "id": 2137, + "id": 2151, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34329,7 +34683,7 @@ } }, { - "id": 2138, + "id": 2152, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34367,7 +34721,7 @@ } }, { - "id": 2107, + "id": 2121, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -34401,7 +34755,7 @@ } }, { - "id": 2128, + "id": 2142, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34438,7 +34792,7 @@ } }, { - "id": 2109, + "id": 2123, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34468,7 +34822,7 @@ ], "type": { "type": "reference", - "id": 2332, + "id": 2346, "name": "FrameParams" }, "inheritedFrom": { @@ -34477,7 +34831,7 @@ } }, { - "id": 2114, + "id": 2128, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34513,7 +34867,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -34523,7 +34877,7 @@ } }, { - "id": 2122, + "id": 2136, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34561,7 +34915,7 @@ } }, { - "id": 2131, + "id": 2145, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -34599,7 +34953,7 @@ } }, { - "id": 2116, + "id": 2130, "name": "locale", "kind": 1024, "kindString": "Property", @@ -34637,7 +34991,7 @@ } }, { - "id": 2130, + "id": 2144, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -34675,7 +35029,7 @@ } }, { - "id": 2124, + "id": 2138, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -34713,7 +35067,7 @@ } }, { - "id": 2132, + "id": 2146, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -34751,7 +35105,7 @@ } }, { - "id": 2134, + "id": 2148, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -34793,7 +35147,7 @@ } }, { - "id": 2135, + "id": 2149, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -34825,7 +35179,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2487, + "id": 2501, "name": "RuntimeParameter" } }, @@ -34835,7 +35189,7 @@ } }, { - "id": 2106, + "id": 2120, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -34869,7 +35223,7 @@ } }, { - "id": 2105, + "id": 2119, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -34903,7 +35257,7 @@ } }, { - "id": 2115, + "id": 2129, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -34939,7 +35293,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -34954,36 +35308,36 @@ "title": "Properties", "kind": 1024, "children": [ + 2131, + 2153, + 2150, + 2135, + 2154, + 2118, 2117, + 2143, + 2127, + 2126, 2139, - 2136, - 2121, + 2155, 2140, - 2104, - 2103, - 2129, - 2113, - 2112, - 2125, - 2141, - 2126, - 2137, - 2138, - 2107, + 2151, + 2152, + 2121, + 2142, + 2123, 2128, - 2109, - 2114, - 2122, - 2131, - 2116, + 2136, + 2145, 2130, - 2124, - 2132, - 2134, - 2135, - 2106, - 2105, - 2115 + 2144, + 2138, + 2146, + 2148, + 2149, + 2120, + 2119, + 2129 ] } ], @@ -35006,7 +35360,7 @@ ] }, { - "id": 2050, + "id": 2064, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -35022,7 +35376,7 @@ }, "children": [ { - "id": 2086, + "id": 2100, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -35053,20 +35407,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2087, + "id": 2101, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2088, + "id": 2102, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2089, + "id": 2103, "name": "key", "kind": 32768, "flags": {}, @@ -35102,7 +35456,7 @@ } }, { - "id": 2062, + "id": 2076, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -35136,7 +35490,7 @@ } }, { - "id": 2052, + "id": 2066, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -35170,7 +35524,7 @@ } }, { - "id": 2051, + "id": 2065, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -35204,7 +35558,7 @@ } }, { - "id": 2074, + "id": 2088, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -35246,7 +35600,7 @@ } }, { - "id": 2065, + "id": 2079, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -35283,7 +35637,7 @@ } }, { - "id": 2071, + "id": 2085, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -35313,7 +35667,7 @@ ], "type": { "type": "reference", - "id": 1997, + "id": 2011, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -35322,7 +35676,7 @@ } }, { - "id": 2090, + "id": 2104, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -35351,7 +35705,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2386, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -35360,7 +35714,7 @@ } }, { - "id": 2067, + "id": 2081, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -35398,7 +35752,7 @@ } }, { - "id": 2075, + "id": 2089, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -35440,7 +35794,7 @@ } }, { - "id": 2058, + "id": 2072, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -35474,7 +35828,7 @@ } }, { - "id": 2057, + "id": 2071, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -35510,7 +35864,7 @@ } }, { - "id": 2098, + "id": 2112, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -35548,7 +35902,7 @@ } }, { - "id": 2082, + "id": 2096, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -35586,7 +35940,7 @@ } }, { - "id": 2081, + "id": 2095, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -35618,7 +35972,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -35628,7 +35982,7 @@ } }, { - "id": 2094, + "id": 2108, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -35669,7 +36023,7 @@ } }, { - "id": 2076, + "id": 2090, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -35711,7 +36065,7 @@ } }, { - "id": 2055, + "id": 2069, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -35745,7 +36099,7 @@ } }, { - "id": 2095, + "id": 2109, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -35783,7 +36137,7 @@ } }, { - "id": 2072, + "id": 2086, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -35821,7 +36175,7 @@ } }, { - "id": 2073, + "id": 2087, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -35859,7 +36213,7 @@ } }, { - "id": 2061, + "id": 2075, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -35893,7 +36247,7 @@ } }, { - "id": 2097, + "id": 2111, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -35930,7 +36284,7 @@ } }, { - "id": 2068, + "id": 2082, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -35968,7 +36322,7 @@ } }, { - "id": 2056, + "id": 2070, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -36002,7 +36356,7 @@ } }, { - "id": 2078, + "id": 2092, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -36032,7 +36386,7 @@ ], "type": { "type": "reference", - "id": 2332, + "id": 2346, "name": "FrameParams" }, "inheritedFrom": { @@ -36041,7 +36395,7 @@ } }, { - "id": 2083, + "id": 2097, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -36077,7 +36431,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -36087,7 +36441,7 @@ } }, { - "id": 2053, + "id": 2067, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -36121,7 +36475,7 @@ } }, { - "id": 2054, + "id": 2068, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -36155,7 +36509,7 @@ } }, { - "id": 2063, + "id": 2077, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -36189,7 +36543,7 @@ } }, { - "id": 2091, + "id": 2105, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -36227,7 +36581,7 @@ } }, { - "id": 2066, + "id": 2080, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -36257,7 +36611,7 @@ } }, { - "id": 2100, + "id": 2114, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -36295,7 +36649,7 @@ } }, { - "id": 2085, + "id": 2099, "name": "locale", "kind": 1024, "kindString": "Property", @@ -36333,7 +36687,7 @@ } }, { - "id": 2099, + "id": 2113, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -36371,7 +36725,7 @@ } }, { - "id": 2093, + "id": 2107, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -36409,7 +36763,7 @@ } }, { - "id": 2069, + "id": 2083, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -36451,7 +36805,7 @@ } }, { - "id": 2070, + "id": 2084, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -36483,7 +36837,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2487, + "id": 2501, "name": "RuntimeParameter" } }, @@ -36493,7 +36847,7 @@ } }, { - "id": 2060, + "id": 2074, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -36523,7 +36877,7 @@ } }, { - "id": 2059, + "id": 2073, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -36552,7 +36906,7 @@ } }, { - "id": 2064, + "id": 2078, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -36582,7 +36936,7 @@ } }, { - "id": 2084, + "id": 2098, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -36618,7 +36972,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -36633,48 +36987,48 @@ "title": "Properties", "kind": 1024, "children": [ - 2086, - 2062, - 2052, - 2051, - 2074, + 2100, + 2076, + 2066, 2065, + 2088, + 2079, + 2085, + 2104, + 2081, + 2089, + 2072, 2071, + 2112, + 2096, + 2095, + 2108, 2090, - 2067, + 2069, + 2109, + 2086, + 2087, 2075, - 2058, - 2057, - 2098, + 2111, 2082, - 2081, - 2094, - 2076, - 2055, - 2095, - 2072, - 2073, - 2061, + 2070, + 2092, 2097, + 2067, 2068, - 2056, - 2078, - 2083, - 2053, - 2054, - 2063, - 2091, - 2066, - 2100, - 2085, + 2077, + 2105, + 2080, + 2114, 2099, - 2093, - 2069, - 2070, - 2060, - 2059, - 2064, - 2084 + 2113, + 2107, + 2083, + 2084, + 2074, + 2073, + 2078, + 2098 ] } ], @@ -36967,7 +37321,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2386, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -37084,7 +37438,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -37240,7 +37594,7 @@ ], "type": { "type": "reference", - "id": 2332, + "id": 2346, "name": "FrameParams" }, "inheritedFrom": { @@ -37285,7 +37639,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -37521,7 +37875,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -37734,7 +38088,7 @@ ], "type": { "type": "reference", - "id": 2372, + "id": 2386, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -37923,7 +38277,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -38079,7 +38433,7 @@ ], "type": { "type": "reference", - "id": 2332, + "id": 2346, "name": "FrameParams" }, "inheritedFrom": { @@ -38124,7 +38478,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -38485,7 +38839,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1866, + "id": 1880, "name": "Action" } }, @@ -38641,14 +38995,14 @@ ] }, { - "id": 2521, + "id": 2535, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2522, + "id": 2536, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -38656,7 +39010,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5215, + "line": 5376, "character": 4 } ], @@ -38669,7 +39023,7 @@ } }, { - "id": 2523, + "id": 2537, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -38677,7 +39031,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5216, + "line": 5377, "character": 4 } ], @@ -38695,21 +39049,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2522, - 2523 + 2536, + 2537 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5214, + "line": 5375, "character": 17 } ] }, { - "id": 2385, + "id": 2399, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -38719,7 +39073,7 @@ }, "children": [ { - "id": 2387, + "id": 2401, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -38749,20 +39103,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2388, + "id": 2402, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2389, + "id": 2403, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2390, + "id": 2404, "name": "selector", "kind": 32768, "flags": {}, @@ -38775,7 +39129,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2391, + "id": 2405, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -38788,14 +39142,14 @@ } ], "indexSignature": { - "id": 2392, + "id": 2406, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2393, + "id": 2407, "name": "declaration", "kind": 32768, "flags": {}, @@ -38817,7 +39171,7 @@ } }, { - "id": 2386, + "id": 2400, "name": "variables", "kind": 1024, "kindString": "Property", @@ -38836,7 +39190,7 @@ ], "type": { "type": "reference", - "id": 2394, + "id": 2408, "name": "CustomCssVariables" } } @@ -38846,8 +39200,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2387, - 2386 + 2401, + 2400 ] } ], @@ -39152,7 +39506,7 @@ ] }, { - "id": 2355, + "id": 2369, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -39179,7 +39533,7 @@ } }, { - "id": 2359, + "id": 2373, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -39194,7 +39548,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2360, + "id": 2374, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -39217,7 +39571,7 @@ ], "signatures": [ { - "id": 2361, + "id": 2375, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -39227,19 +39581,19 @@ }, "parameters": [ { - "id": 2362, + "id": 2376, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2367, + "id": 2381, "name": "MessagePayload" } }, { - "id": 2363, + "id": 2377, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -39249,7 +39603,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2364, + "id": 2378, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -39263,7 +39617,7 @@ ], "signatures": [ { - "id": 2365, + "id": 2379, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -39273,7 +39627,7 @@ }, "parameters": [ { - "id": 2366, + "id": 2380, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -39304,7 +39658,7 @@ } }, { - "id": 2356, + "id": 2370, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -39328,14 +39682,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2357, + "id": 2371, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2358, + "id": 2372, "name": "start", "kind": 1024, "kindString": "Property", @@ -39363,7 +39717,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2358 + 2372 ] } ], @@ -39378,7 +39732,7 @@ } }, { - "id": 2367, + "id": 2381, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -39402,14 +39756,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2368, + "id": 2382, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2370, + "id": 2384, "name": "data", "kind": 1024, "kindString": "Property", @@ -39427,7 +39781,7 @@ } }, { - "id": 2371, + "id": 2385, "name": "status", "kind": 1024, "kindString": "Property", @@ -39447,7 +39801,7 @@ } }, { - "id": 2369, + "id": 2383, "name": "type", "kind": 1024, "kindString": "Property", @@ -39470,9 +39824,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2370, - 2371, - 2369 + 2384, + 2385, + 2383 ] } ], @@ -39885,7 +40239,7 @@ }, "type": { "type": "reference", - "id": 2001, + "id": 2015, "name": "EmbedConfig" } } @@ -39985,7 +40339,7 @@ }, "type": { "type": "reference", - "id": 2001, + "id": 2015, "name": "EmbedConfig" } } @@ -40132,7 +40486,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2327, + "id": 2341, "name": "PrefetchFeatures" } } @@ -40204,7 +40558,7 @@ ] }, { - "id": 2561, + "id": 2575, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -40220,7 +40574,7 @@ ], "signatures": [ { - "id": 2562, + "id": 2576, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -40414,7 +40768,7 @@ ] }, { - "id": 2497, + "id": 2511, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -40428,7 +40782,7 @@ ], "signatures": [ { - "id": 2498, + "id": 2512, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -40438,7 +40792,7 @@ }, "parameters": [ { - "id": 2499, + "id": 2513, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -40450,7 +40804,7 @@ } }, { - "id": 2500, + "id": 2514, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -40461,7 +40815,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2501, + "id": 2515, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -40484,27 +40838,27 @@ "title": "Enumerations", "kind": 4, "children": [ - 1866, + 1880, 1539, 1524, 1531, 1686, - 1997, - 2557, - 1862, + 2011, + 2571, + 1876, 1718, - 2338, - 2519, - 2513, - 2348, - 1800, - 2551, - 2490, + 2352, + 2533, + 2527, + 2362, + 1807, + 2565, + 2504, 1677, - 2327, - 2517, + 2341, + 2531, 1702, - 2544 + 2558 ] }, { @@ -40527,28 +40881,28 @@ "title": "Interfaces", "kind": 256, "children": [ - 2252, + 2266, 1541, 1108, 1344, - 2524, - 2394, - 2382, - 2372, - 2001, - 2332, - 2142, + 2538, + 2408, + 2396, + 2386, + 2015, + 2346, + 2156, 1698, - 2487, - 2207, - 2102, - 2050, + 2501, + 2221, + 2116, + 2064, 1667, 1081, 1311, 1674, - 2521, - 2385, + 2535, + 2399, 21, 25 ] @@ -40557,10 +40911,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2355, - 2359, - 2356, - 2367 + 2369, + 2373, + 2370, + 2381 ] }, { @@ -40576,9 +40930,9 @@ 1, 4, 7, - 2561, + 2575, 37, - 2497 + 2511 ] } ], From 81becbb70bbc9bc09b4391d636472b2fe31fb1b2 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Wed, 16 Jul 2025 12:41:53 +0530 Subject: [PATCH 27/29] Added examples --- src/types.ts | 50 +++- static/typedoc/typedoc.json | 527 ++++++++++++++++++++---------------- 2 files changed, 342 insertions(+), 235 deletions(-) diff --git a/src/types.ts b/src/types.ts index 7cc4b30b..c71d0b8c 100644 --- a/src/types.ts +++ b/src/types.ts @@ -2688,37 +2688,79 @@ export enum EmbedEvent { */ ExitPresentMode = 'exitPresentMode', /** - * Emitted when spotter response is the text data - * + * Emitted when spotter response is text data + * @example * ```js * spotterEmbed.on(EmbedEvent.SpotterData, (payload) => { * console.log('payload', payload); * }) *``` + * @version SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl */ SpotterData = 'SpotterData', /** * Emitted when user opens up the worksheet preview modal in spotter embed. + * @example + * ```js + * spotterEmbed.on(EmbedEvent.PreviewSpotterData, (payload) => { + * console.log('payload', payload); + * }) + *``` + * @version SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl */ PreviewSpotterData = 'PreviewSpotterData', /** * Emitted when the spotter query is triggered in spotter embed. + * @example + * ```js + * spotterEmbed.on(EmbedEvent.SpotterQueryTriggered, (payload) => { + * console.log('payload', payload); + * }) + *``` + * @version SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl */ SpotterQueryTriggered = 'SpotterQueryTriggered', /** * Emitted when the last spotter query is edited in spotter embed. + * @example + * ```js + * spotterEmbed.on(EmbedEvent.LastPromptEdited, (payload) => { + * console.log('payload', payload); + * }) + *``` + * @version SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl */ LastPromptEdited = 'LastPromptEdited', /** * Emitted when the last spotter query is deleted in spotter embed. + * @example + * ```js + * spotterEmbed.on(EmbedEvent.LastPromptDeleted, (payload) => { + * console.log('payload', payload); + * }) + *``` */ LastPromptDeleted = 'LastPromptDeleted', /** * Emitted when the coversation is reset in spotter embed. + * @example + * ```js + * spotterEmbed.on(EmbedEvent.ResetSpotterConversation, (payload) => { + * console.log('payload', payload); + * }) + *``` + * @version SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl */ ResetSpotterConversation = 'ResetSpotterConversation', /** * Emitted when the *Spotter* is initialized. + * @example + * ```js + * spotterEmbed.on(EmbedEvent.SpotterInit, (payload) => { + * console.log('payload', payload); + * }) + *``` + * @version SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl */ SpotterInit = 'SpotterInit' } @@ -3011,7 +3053,7 @@ export enum HostEvent { * @param * `vizId`- GUID of the saved Answer or visualization to pin to a Liveboard. * Optional when pinning a new chart or table generated from a Search query. - * Required in Spotter Embed. + * **Required** in Spotter Embed. * @param * `liveboardID` - GUID of the Liveboard to pin an Answer. If there is no Liveboard, * specify the `newLiveboardName` parameter to create a new Liveboard. @@ -3236,7 +3278,7 @@ export enum HostEvent { * This event is not supported in visualization embed and search embed. * @param - object - To trigger the action for a specific visualization * in Liveboard embed, pass in `vizId` as a key. - * In Spotter embed, vizId is required. + * **Required** in Spotter embed. * @example * ```js * liveboardEmbed.trigger(HostEvent.Edit) diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 55d30fcb..bdc2e5de 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -48,7 +48,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5132, + "line": 5174, "character": 4 } ], @@ -76,7 +76,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4289, + "line": 4331, "character": 4 } ], @@ -104,7 +104,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4218, + "line": 4260, "character": 4 } ], @@ -128,7 +128,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4207, + "line": 4249, "character": 4 } ], @@ -152,7 +152,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4270, + "line": 4312, "character": 4 } ], @@ -176,7 +176,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4279, + "line": 4321, "character": 4 } ], @@ -204,7 +204,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4299, + "line": 4341, "character": 4 } ], @@ -232,7 +232,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4937, + "line": 4979, "character": 4 } ], @@ -260,7 +260,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4659, + "line": 4701, "character": 4 } ], @@ -288,7 +288,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5099, + "line": 5141, "character": 4 } ], @@ -316,7 +316,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4647, + "line": 4689, "character": 4 } ], @@ -344,7 +344,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4635, + "line": 4677, "character": 4 } ], @@ -373,7 +373,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5088, + "line": 5130, "character": 4 } ], @@ -401,7 +401,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4772, + "line": 4814, "character": 4 } ], @@ -429,7 +429,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4806, + "line": 4848, "character": 4 } ], @@ -457,7 +457,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4861, + "line": 4903, "character": 4 } ], @@ -485,7 +485,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4795, + "line": 4837, "character": 4 } ], @@ -513,7 +513,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4829, + "line": 4871, "character": 4 } ], @@ -541,7 +541,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4871, + "line": 4913, "character": 4 } ], @@ -569,7 +569,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4840, + "line": 4882, "character": 4 } ], @@ -597,7 +597,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4893, + "line": 4935, "character": 4 } ], @@ -625,7 +625,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4850, + "line": 4892, "character": 4 } ], @@ -653,7 +653,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4817, + "line": 4859, "character": 4 } ], @@ -681,7 +681,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4881, + "line": 4923, "character": 4 } ], @@ -709,7 +709,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4783, + "line": 4825, "character": 4 } ], @@ -737,7 +737,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5230, + "line": 5272, "character": 4 } ], @@ -761,7 +761,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4261, + "line": 4303, "character": 4 } ], @@ -789,7 +789,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4252, + "line": 4294, "character": 4 } ], @@ -817,7 +817,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4240, + "line": 4282, "character": 4 } ], @@ -845,7 +845,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5306, + "line": 5348, "character": 4 } ], @@ -869,7 +869,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4229, + "line": 4271, "character": 4 } ], @@ -884,7 +884,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4586, + "line": 4628, "character": 4 } ], @@ -908,7 +908,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4166, + "line": 4208, "character": 4 } ], @@ -932,7 +932,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4585, + "line": 4627, "character": 4 } ], @@ -960,7 +960,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5316, + "line": 5358, "character": 4 } ], @@ -988,7 +988,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5063, + "line": 5105, "character": 4 } ], @@ -1016,7 +1016,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4679, + "line": 4721, "character": 4 } ], @@ -1044,7 +1044,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4730, + "line": 4772, "character": 4 } ], @@ -1072,7 +1072,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5287, + "line": 5329, "character": 4 } ], @@ -1100,7 +1100,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5199, + "line": 5241, "character": 4 } ], @@ -1128,7 +1128,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5218, + "line": 5260, "character": 4 } ], @@ -1152,7 +1152,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4349, + "line": 4391, "character": 4 } ], @@ -1176,7 +1176,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4382, + "line": 4424, "character": 4 } ], @@ -1201,7 +1201,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4372, + "line": 4414, "character": 4 } ], @@ -1225,7 +1225,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4359, + "line": 4401, "character": 4 } ], @@ -1249,7 +1249,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4392, + "line": 4434, "character": 4 } ], @@ -1273,7 +1273,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4602, + "line": 4644, "character": 4 } ], @@ -1297,7 +1297,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4575, + "line": 4617, "character": 4 } ], @@ -1321,7 +1321,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4566, + "line": 4608, "character": 4 } ], @@ -1345,7 +1345,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4468, + "line": 4510, "character": 4 } ], @@ -1369,7 +1369,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4157, + "line": 4199, "character": 4 } ], @@ -1397,7 +1397,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4668, + "line": 4710, "character": 4 } ], @@ -1412,7 +1412,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4591, + "line": 4633, "character": 4 } ], @@ -1440,7 +1440,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5276, + "line": 5318, "character": 4 } ], @@ -1468,7 +1468,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4970, + "line": 5012, "character": 4 } ], @@ -1496,7 +1496,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5145, + "line": 5187, "character": 4 } ], @@ -1520,7 +1520,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4436, + "line": 4478, "character": 4 } ], @@ -1544,7 +1544,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4476, + "line": 4518, "character": 4 } ], @@ -1572,7 +1572,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5297, + "line": 5339, "character": 4 } ], @@ -1600,7 +1600,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4947, + "line": 4989, "character": 4 } ], @@ -1624,7 +1624,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4555, + "line": 4597, "character": 4 } ], @@ -1649,7 +1649,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4408, + "line": 4450, "character": 4 } ], @@ -1673,7 +1673,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4418, + "line": 4460, "character": 4 } ], @@ -1701,7 +1701,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5332, + "line": 5374, "character": 4 } ], @@ -1729,7 +1729,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5209, + "line": 5251, "character": 4 } ], @@ -1753,7 +1753,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4517, + "line": 4559, "character": 4 } ], @@ -1781,7 +1781,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5031, + "line": 5073, "character": 4 } ], @@ -1805,7 +1805,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4148, + "line": 4190, "character": 4 } ], @@ -1829,7 +1829,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5011, + "line": 5053, "character": 4 } ], @@ -1857,7 +1857,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4720, + "line": 4762, "character": 4 } ], @@ -1885,7 +1885,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5188, + "line": 5230, "character": 4 } ], @@ -1913,7 +1913,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4927, + "line": 4969, "character": 4 } ], @@ -1940,7 +1940,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4991, + "line": 5033, "character": 4 } ], @@ -1964,7 +1964,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5000, + "line": 5042, "character": 4 } ], @@ -1992,7 +1992,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5121, + "line": 5163, "character": 4 } ], @@ -2020,7 +2020,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5156, + "line": 5198, "character": 4 } ], @@ -2048,7 +2048,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5021, + "line": 5063, "character": 4 } ], @@ -2072,7 +2072,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4534, + "line": 4576, "character": 4 } ], @@ -2096,7 +2096,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4446, + "line": 4488, "character": 4 } ], @@ -2124,7 +2124,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5242, + "line": 5284, "character": 4 } ], @@ -2149,7 +2149,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4625, + "line": 4667, "character": 4 } ], @@ -2173,7 +2173,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4486, + "line": 4528, "character": 4 } ], @@ -2201,7 +2201,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4761, + "line": 4803, "character": 4 } ], @@ -2229,7 +2229,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5110, + "line": 5152, "character": 4 } ], @@ -2257,7 +2257,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4907, + "line": 4949, "character": 4 } ], @@ -2288,7 +2288,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4689, + "line": 4731, "character": 4 } ], @@ -2312,7 +2312,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4611, + "line": 4653, "character": 4 } ], @@ -2340,7 +2340,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4917, + "line": 4959, "character": 4 } ], @@ -2368,7 +2368,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5254, + "line": 5296, "character": 4 } ], @@ -2396,7 +2396,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4982, + "line": 5024, "character": 4 } ], @@ -2420,7 +2420,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4117, + "line": 4159, "character": 4 } ], @@ -2444,7 +2444,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4135, + "line": 4177, "character": 4 } ], @@ -2468,7 +2468,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4180, + "line": 4222, "character": 4 } ], @@ -2492,7 +2492,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4189, + "line": 4231, "character": 4 } ], @@ -2507,7 +2507,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4592, + "line": 4634, "character": 4 } ], @@ -2531,7 +2531,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4198, + "line": 4240, "character": 4 } ], @@ -2549,7 +2549,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4324, + "line": 4366, "character": 4 } ], @@ -2577,7 +2577,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4957, + "line": 4999, "character": 4 } ], @@ -2601,7 +2601,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4339, + "line": 4381, "character": 4 } ], @@ -2625,7 +2625,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4312, + "line": 4354, "character": 4 } ], @@ -2653,7 +2653,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5265, + "line": 5307, "character": 4 } ], @@ -2677,7 +2677,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4547, + "line": 4589, "character": 4 } ], @@ -2705,7 +2705,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4710, + "line": 4752, "character": 4 } ], @@ -2733,7 +2733,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4699, + "line": 4741, "character": 4 } ], @@ -2761,7 +2761,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4740, + "line": 4782, "character": 4 } ], @@ -2789,7 +2789,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4750, + "line": 4792, "character": 4 } ], @@ -2821,7 +2821,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5050, + "line": 5092, "character": 4 } ], @@ -2845,7 +2845,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4458, + "line": 4500, "character": 4 } ], @@ -2873,7 +2873,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5178, + "line": 5220, "character": 4 } ], @@ -2897,7 +2897,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4427, + "line": 4469, "character": 4 } ], @@ -2925,7 +2925,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5074, + "line": 5116, "character": 4 } ], @@ -2953,7 +2953,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5167, + "line": 5209, "character": 4 } ], @@ -3083,7 +3083,7 @@ "sources": [ { "fileName": "types.ts", - "line": 4108, + "line": 4150, "character": 12 } ] @@ -3656,7 +3656,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5353, + "line": 5395, "character": 4 } ], @@ -3671,7 +3671,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5351, + "line": 5393, "character": 4 } ], @@ -3686,7 +3686,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5352, + "line": 5394, "character": 4 } ], @@ -3707,7 +3707,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5350, + "line": 5392, "character": 12 } ] @@ -3818,7 +3818,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3950, + "line": 3992, "character": 4 } ], @@ -3836,7 +3836,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3954, + "line": 3996, "character": 4 } ], @@ -3854,7 +3854,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3946, + "line": 3988, "character": 4 } ], @@ -3875,7 +3875,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3942, + "line": 3984, "character": 12 } ] @@ -5115,12 +5115,18 @@ "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Emitted when the last spotter query is deleted in spotter embed." + "shortText": "Emitted when the last spotter query is deleted in spotter embed.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.LastPromptDeleted, (payload) => {\n console.log('payload', payload);\n})\n```\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 2715, + "line": 2743, "character": 4 } ], @@ -5133,12 +5139,22 @@ "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Emitted when the last spotter query is edited in spotter embed." + "shortText": "Emitted when the last spotter query is edited in spotter embed.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.LastPromptEdited, (payload) => {\n console.log('payload', payload);\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 2711, + "line": 2733, "character": 4 } ], @@ -5420,12 +5436,22 @@ "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Emitted when user opens up the worksheet preview modal in spotter embed." + "shortText": "Emitted when user opens up the worksheet preview modal in spotter embed.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.PreviewSpotterData, (payload) => {\n console.log('payload', payload);\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 2703, + "line": 2711, "character": 4 } ], @@ -5530,12 +5556,22 @@ "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Emitted when the coversation is reset in spotter embed." + "shortText": "Emitted when the coversation is reset in spotter embed.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.ResetSpotterConversation, (payload) => {\n console.log('payload', payload);\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 2719, + "line": 2754, "character": 4 } ], @@ -5860,13 +5896,22 @@ "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Emitted when spotter response is the text data", - "text": "```js\nspotterEmbed.on(EmbedEvent.SpotterData, (payload) => {\n console.log('payload', payload);\n})\n```\n" + "shortText": "Emitted when spotter response is text data", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterData, (payload) => {\n console.log('payload', payload);\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 2699, + "line": 2700, "character": 4 } ], @@ -5879,12 +5924,22 @@ "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Emitted when the *Spotter* is initialized." + "shortText": "Emitted when the *Spotter* is initialized.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterInit, (payload) => {\n console.log('payload', payload);\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 2723, + "line": 2765, "character": 4 } ], @@ -5897,12 +5952,22 @@ "kindString": "Enumeration member", "flags": {}, "comment": { - "shortText": "Emitted when the spotter query is triggered in spotter embed." + "shortText": "Emitted when the spotter query is triggered in spotter embed.", + "tags": [ + { + "tag": "example", + "text": "\n```js\nspotterEmbed.on(EmbedEvent.SpotterQueryTriggered, (payload) => {\n console.log('payload', payload);\n})\n```" + }, + { + "tag": "version", + "text": "SDK: 1.39.0 | ThoughtSpot: 10.10.0.cl\n" + } + ] }, "sources": [ { "fileName": "types.ts", - "line": 2707, + "line": 2722, "character": 4 } ], @@ -6792,7 +6857,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2975, + "line": 3017, "character": 4 } ], @@ -6821,7 +6886,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3913, + "line": 3955, "character": 4 } ], @@ -6849,7 +6914,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3735, + "line": 3777, "character": 4 } ], @@ -6877,7 +6942,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3934, + "line": 3976, "character": 4 } ], @@ -6910,7 +6975,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3273, + "line": 3315, "character": 4 } ], @@ -6947,7 +7012,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3210, + "line": 3252, "character": 4 } ], @@ -6980,7 +7045,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3350, + "line": 3392, "character": 4 } ], @@ -7004,7 +7069,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3902, + "line": 3944, "character": 4 } ], @@ -7036,7 +7101,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3386, + "line": 3428, "character": 4 } ], @@ -7064,7 +7129,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3428, + "line": 3470, "character": 4 } ], @@ -7093,7 +7158,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3140, + "line": 3182, "character": 4 } ], @@ -7121,7 +7186,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3406, + "line": 3448, "character": 4 } ], @@ -7149,7 +7214,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3450, + "line": 3492, "character": 4 } ], @@ -7201,7 +7266,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2850, + "line": 2892, "character": 4 } ], @@ -7219,7 +7284,7 @@ "tags": [ { "tag": "param", - "text": "object - To trigger the action for a specific visualization\nin Liveboard embed, pass in `vizId` as a key.\nIn Spotter embed, vizId is required.", + "text": "object - To trigger the action for a specific visualization\nin Liveboard embed, pass in `vizId` as a key.\n**Required** in Spotter embed.", "param": "-" }, { @@ -7239,7 +7304,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3256, + "line": 3298, "character": 4 } ], @@ -7268,7 +7333,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3878, + "line": 3920, "character": 4 } ], @@ -7296,7 +7361,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3118, + "line": 3160, "character": 4 } ], @@ -7329,7 +7394,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3193, + "line": 3235, "character": 4 } ], @@ -7357,7 +7422,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3108, + "line": 3150, "character": 4 } ], @@ -7390,7 +7455,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3725, + "line": 3767, "character": 4 } ], @@ -7418,7 +7483,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3552, + "line": 3594, "character": 4 } ], @@ -7446,7 +7511,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2872, + "line": 2914, "character": 4 } ], @@ -7470,7 +7535,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3791, + "line": 3833, "character": 4 } ], @@ -7506,7 +7571,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3314, + "line": 3356, "character": 4 } ], @@ -7534,7 +7599,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3655, + "line": 3697, "character": 4 } ], @@ -7562,7 +7627,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3080, + "line": 3122, "character": 4 } ], @@ -7606,7 +7671,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3169, + "line": 3211, "character": 4 } ], @@ -7647,7 +7712,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3231, + "line": 3273, "character": 4 } ], @@ -7680,7 +7745,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3529, + "line": 3571, "character": 4 } ], @@ -7713,7 +7778,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2945, + "line": 2987, "character": 4 } ], @@ -7750,7 +7815,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2965, + "line": 3007, "character": 4 } ], @@ -7767,7 +7832,7 @@ "tags": [ { "tag": "param", - "text": "\n`vizId`- GUID of the saved Answer or visualization to pin to a Liveboard.\n Optional when pinning a new chart or table generated from a Search query.\n Required in Spotter Embed." + "text": "\n`vizId`- GUID of the saved Answer or visualization to pin to a Liveboard.\n Optional when pinning a new chart or table generated from a Search query.\n **Required** in Spotter Embed." }, { "tag": "param", @@ -7818,7 +7883,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3070, + "line": 3112, "character": 4 } ], @@ -7851,7 +7916,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3290, + "line": 3332, "character": 4 } ], @@ -7875,7 +7940,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3886, + "line": 3928, "character": 4 } ], @@ -7907,7 +7972,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3183, + "line": 3225, "character": 4 } ], @@ -7940,7 +8005,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2985, + "line": 3027, "character": 4 } ], @@ -7968,7 +8033,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3760, + "line": 3802, "character": 4 } ], @@ -7996,7 +8061,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3541, + "line": 3583, "character": 4 } ], @@ -8020,7 +8085,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3894, + "line": 3936, "character": 4 } ], @@ -8053,7 +8118,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3482, + "line": 3524, "character": 4 } ], @@ -8086,7 +8151,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3830, + "line": 3872, "character": 4 } ], @@ -8114,7 +8179,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3089, + "line": 3131, "character": 4 } ], @@ -8142,7 +8207,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3098, + "line": 3140, "character": 4 } ], @@ -8181,7 +8246,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2800, + "line": 2842, "character": 4 } ], @@ -8214,7 +8279,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2897, + "line": 2939, "character": 4 } ], @@ -8247,7 +8312,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3681, + "line": 3723, "character": 4 } ], @@ -8280,7 +8345,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3668, + "line": 3710, "character": 4 } ], @@ -8313,7 +8378,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2885, + "line": 2927, "character": 4 } ], @@ -8341,7 +8406,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3463, + "line": 3505, "character": 4 } ], @@ -8374,7 +8439,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3333, + "line": 3375, "character": 4 } ], @@ -8407,7 +8472,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3370, + "line": 3412, "character": 4 } ], @@ -8441,7 +8506,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3869, + "line": 3911, "character": 4 } ], @@ -8474,7 +8539,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3513, + "line": 3555, "character": 4 } ], @@ -8507,7 +8572,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3497, + "line": 3539, "character": 4 } ], @@ -8540,7 +8605,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3855, + "line": 3897, "character": 4 } ], @@ -8568,7 +8633,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3751, + "line": 3793, "character": 4 } ], @@ -8618,7 +8683,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3642, + "line": 3684, "character": 4 } ], @@ -8642,7 +8707,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3774, + "line": 3816, "character": 4 } ], @@ -8666,7 +8731,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3799, + "line": 3841, "character": 4 } ], @@ -8704,7 +8769,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2933, + "line": 2975, "character": 4 } ], @@ -8742,7 +8807,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3695, + "line": 3737, "character": 4 } ], @@ -8770,7 +8835,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3127, + "line": 3169, "character": 4 } ], @@ -8798,7 +8863,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3001, + "line": 3043, "character": 4 } ], @@ -8879,7 +8944,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2780, + "line": 2822, "character": 12 } ] @@ -9044,7 +9109,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5475, + "line": 5517, "character": 4 } ], @@ -9072,7 +9137,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5436, + "line": 5478, "character": 4 } ], @@ -9100,7 +9165,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5461, + "line": 5503, "character": 4 } ], @@ -9128,7 +9193,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5424, + "line": 5466, "character": 4 } ], @@ -9156,7 +9221,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5487, + "line": 5529, "character": 4 } ], @@ -9184,7 +9249,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5448, + "line": 5490, "character": 4 } ], @@ -9208,7 +9273,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5411, + "line": 5453, "character": 12 } ] @@ -9389,7 +9454,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5340, + "line": 5382, "character": 4 } ], @@ -9404,7 +9469,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5342, + "line": 5384, "character": 4 } ], @@ -9419,7 +9484,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5341, + "line": 5383, "character": 4 } ], @@ -9434,7 +9499,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5343, + "line": 5385, "character": 4 } ], @@ -9456,7 +9521,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5339, + "line": 5381, "character": 12 } ] @@ -26103,7 +26168,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5384, + "line": 5426, "character": 4 } ], @@ -26125,7 +26190,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5385, + "line": 5427, "character": 8 } ], @@ -26144,7 +26209,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5386, + "line": 5428, "character": 8 } ], @@ -26180,7 +26245,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5388, + "line": 5430, "character": 4 } ], @@ -26202,7 +26267,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5396, + "line": 5438, "character": 8 } ], @@ -26223,7 +26288,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5397, + "line": 5439, "character": 8 } ], @@ -26244,7 +26309,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5390, + "line": 5432, "character": 8 } ], @@ -26262,7 +26327,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5389, + "line": 5431, "character": 8 } ], @@ -26280,7 +26345,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5391, + "line": 5433, "character": 8 } ], @@ -26302,7 +26367,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5392, + "line": 5434, "character": 12 } ], @@ -26324,7 +26389,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5393, + "line": 5435, "character": 16 } ], @@ -26408,7 +26473,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5400, + "line": 5442, "character": 4 } ], @@ -26429,7 +26494,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5401, + "line": 5443, "character": 4 } ], @@ -26454,7 +26519,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5383, + "line": 5425, "character": 17 } ] @@ -39010,7 +39075,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5376, + "line": 5418, "character": 4 } ], @@ -39031,7 +39096,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5377, + "line": 5419, "character": 4 } ], @@ -39057,7 +39122,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5375, + "line": 5417, "character": 17 } ] From aa54d90c6258adbe8efeeb968f65a87890cbbf77 Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Wed, 16 Jul 2025 13:33:14 +0530 Subject: [PATCH 28/29] fixed payload --- src/utils/graphql/nlsService/conversation-service.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/utils/graphql/nlsService/conversation-service.ts b/src/utils/graphql/nlsService/conversation-service.ts index c4ea554a..a7c47dec 100644 --- a/src/utils/graphql/nlsService/conversation-service.ts +++ b/src/utils/graphql/nlsService/conversation-service.ts @@ -62,10 +62,13 @@ export class Conversation { }, }, ); - const data = responses[0].data; - return { + const data = { + ...responses[0].data, convId: this.conversationId, messageId: responses[0].msgId, + }; + + return { data: data.asstRespData.nlsAnsData.sageQuerySuggestions[0], error: null, }; From 411ab422bafc9050a7fc5e46a9f186d410475c0a Mon Sep 17 00:00:00 2001 From: Ruchi Anand Date: Wed, 16 Jul 2025 13:40:30 +0530 Subject: [PATCH 29/29] fixed data --- .../graphql/nlsService/conversation-service.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/utils/graphql/nlsService/conversation-service.ts b/src/utils/graphql/nlsService/conversation-service.ts index a7c47dec..474ff5d6 100644 --- a/src/utils/graphql/nlsService/conversation-service.ts +++ b/src/utils/graphql/nlsService/conversation-service.ts @@ -62,14 +62,15 @@ export class Conversation { }, }, ); - const data = { - ...responses[0].data, + const data = responses[0].data; + return { convId: this.conversationId, messageId: responses[0].msgId, - }; - - return { - data: data.asstRespData.nlsAnsData.sageQuerySuggestions[0], + data: { + ...data.asstRespData.nlsAnsData.sageQuerySuggestions[0], + convId: this.conversationId, + messageId: responses[0].msgId, + }, error: null, }; } catch (error) {