diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/.DS_Store differ 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, 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 () => { diff --git a/src/types.ts b/src/types.ts index 02b00daa..f351ad53 100644 --- a/src/types.ts +++ b/src/types.ts @@ -2707,6 +2707,82 @@ export enum EmbedEvent { * @version SDK : 1.40.0 | ThoughtSpot: 10.11.0.cl */ ExitPresentMode = 'exitPresentMode', + /** + * 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' } /** @@ -2997,6 +3073,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. @@ -3044,6 +3121,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', @@ -3137,6 +3220,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', @@ -3209,6 +3298,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. + * **Required** in Spotter embed. * @example * ```js * liveboardEmbed.trigger(HostEvent.Edit) @@ -3217,6 +3307,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', @@ -3264,6 +3360,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 */ @@ -3351,7 +3457,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', @@ -3369,6 +3480,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', @@ -3386,6 +3502,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', @@ -3405,6 +3526,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) @@ -3412,6 +3534,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', @@ -3695,7 +3822,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 @@ -3714,6 +3841,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', @@ -3781,6 +3915,64 @@ export enum HostEvent { * @version SDK: 1.37.0 | ThoughtSpot: 10.8.0.cl */ TransformTableVizData = 'TransformTableVizData', + /** + * 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', + /** + * Edits the last prompt in spotter embed. + * @param - `query`: Text string + * @example + * ```js + * spotterEmbed.trigger(HostEvent.EditLastPrompt, "revenue per year"); + * ``` + */ + EditLastPrompt = 'EditLastPrompt', + /** + * Opens the Worksheet preview modal in Spotter Embed. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.PreviewSpotterData); + * ``` + */ + PreviewSpotterData = 'PreviewSpotterData', + /** + * Resets the Spotter Embed Conversation. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.ResetSpotterConversation); + * ``` + */ + ResetSpotterConversation = 'ResetSpotterConversation', + /** + * Deletes the last prompt in spotter embed. + * @example + * ```js + * spotterEmbed.trigger(HostEvent.DeleteLastPrompt); + * ``` + */ + DeleteLastPrompt = 'DeleteLastPrompt', + /** + * 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', /** * @hidden * Trigger exit from presentation mode when user exits fullscreen. @@ -3791,6 +3983,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/src/utils/graphql/nlsService/conversation-service.ts b/src/utils/graphql/nlsService/conversation-service.ts index c4ea554a..474ff5d6 100644 --- a/src/utils/graphql/nlsService/conversation-service.ts +++ b/src/utils/graphql/nlsService/conversation-service.ts @@ -66,7 +66,11 @@ export class Conversation { return { convId: this.conversationId, messageId: responses[0].msgId, - data: data.asstRespData.nlsAnsData.sageQuerySuggestions[0], + data: { + ...data.asstRespData.nlsAnsData.sageQuerySuggestions[0], + convId: this.conversationId, + messageId: responses[0].msgId, + }, error: null, }; } catch (error) { diff --git a/static/typedoc/typedoc.json b/static/typedoc/typedoc.json index 2f738705..4d487d2c 100644 --- a/static/typedoc/typedoc.json +++ b/static/typedoc/typedoc.json @@ -7,7 +7,7 @@ "originalName": "", "children": [ { - "id": 1870, + "id": 1884, "name": "Action", "kind": 4, "kindString": "Enumeration", @@ -27,7 +27,7 @@ }, "children": [ { - "id": 1982, + "id": 1996, "name": "AIHighlights", "kind": 16, "kindString": "Enumeration member", @@ -48,14 +48,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4992, + "line": 5195, "character": 4 } ], "defaultValue": "\"AIHighlights\"" }, { - "id": 1890, + "id": 1904, "name": "AddColumnSet", "kind": 16, "kindString": "Enumeration member", @@ -76,14 +76,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4149, + "line": 4352, "character": 4 } ], "defaultValue": "\"addSimpleCohort\"" }, { - "id": 1883, + "id": 1897, "name": "AddDataPanelObjects", "kind": 16, "kindString": "Enumeration member", @@ -104,14 +104,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4078, + "line": 4281, "character": 4 } ], "defaultValue": "\"addDataPanelObjects\"" }, { - "id": 1882, + "id": 1896, "name": "AddFilter", "kind": 16, "kindString": "Enumeration member", @@ -128,14 +128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4067, + "line": 4270, "character": 4 } ], "defaultValue": "\"addFilter\"" }, { - "id": 1888, + "id": 1902, "name": "AddFormula", "kind": 16, "kindString": "Enumeration member", @@ -152,14 +152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4130, + "line": 4333, "character": 4 } ], "defaultValue": "\"addFormula\"" }, { - "id": 1889, + "id": 1903, "name": "AddParameter", "kind": 16, "kindString": "Enumeration member", @@ -176,14 +176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4139, + "line": 4342, "character": 4 } ], "defaultValue": "\"addParameter\"" }, { - "id": 1891, + "id": 1905, "name": "AddQuerySet", "kind": 16, "kindString": "Enumeration member", @@ -204,14 +204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4159, + "line": 4362, "character": 4 } ], "defaultValue": "\"addAdvancedCohort\"" }, { - "id": 1965, + "id": 1979, "name": "AddTab", "kind": 16, "kindString": "Enumeration member", @@ -232,14 +232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4797, + "line": 5000, "character": 4 } ], "defaultValue": "\"addTab\"" }, { - "id": 1938, + "id": 1952, "name": "AddToFavorites", "kind": 16, "kindString": "Enumeration member", @@ -260,14 +260,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4519, + "line": 4722, "character": 4 } ], "defaultValue": "\"addToFavorites\"" }, { - "id": 1979, + "id": 1993, "name": "AddToWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -288,14 +288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4959, + "line": 5162, "character": 4 } ], "defaultValue": "\"addToWatchlist\"" }, { - "id": 1937, + "id": 1951, "name": "AnswerChartSwitcher", "kind": 16, "kindString": "Enumeration member", @@ -316,14 +316,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4507, + "line": 4710, "character": 4 } ], "defaultValue": "\"answerChartSwitcher\"" }, { - "id": 1936, + "id": 1950, "name": "AnswerDelete", "kind": 16, "kindString": "Enumeration member", @@ -344,14 +344,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4495, + "line": 4698, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1978, + "id": 1992, "name": "AskAi", "kind": 16, "kindString": "Enumeration member", @@ -373,14 +373,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4948, + "line": 5151, "character": 4 } ], "defaultValue": "\"AskAi\"" }, { - "id": 1949, + "id": 1963, "name": "AxisMenuAggregate", "kind": 16, "kindString": "Enumeration member", @@ -401,14 +401,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4632, + "line": 4835, "character": 4 } ], "defaultValue": "\"axisMenuAggregate\"" }, { - "id": 1952, + "id": 1966, "name": "AxisMenuConditionalFormat", "kind": 16, "kindString": "Enumeration member", @@ -429,14 +429,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4666, + "line": 4869, "character": 4 } ], "defaultValue": "\"axisMenuConditionalFormat\"" }, { - "id": 1957, + "id": 1971, "name": "AxisMenuEdit", "kind": 16, "kindString": "Enumeration member", @@ -457,14 +457,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4721, + "line": 4924, "character": 4 } ], "defaultValue": "\"axisMenuEdit\"" }, { - "id": 1951, + "id": 1965, "name": "AxisMenuFilter", "kind": 16, "kindString": "Enumeration member", @@ -485,14 +485,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4655, + "line": 4858, "character": 4 } ], "defaultValue": "\"axisMenuFilter\"" }, { - "id": 1954, + "id": 1968, "name": "AxisMenuGroup", "kind": 16, "kindString": "Enumeration member", @@ -513,14 +513,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4689, + "line": 4892, "character": 4 } ], "defaultValue": "\"axisMenuGroup\"" }, { - "id": 1958, + "id": 1972, "name": "AxisMenuNumberFormat", "kind": 16, "kindString": "Enumeration member", @@ -541,14 +541,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4731, + "line": 4934, "character": 4 } ], "defaultValue": "\"axisMenuNumberFormat\"" }, { - "id": 1955, + "id": 1969, "name": "AxisMenuPosition", "kind": 16, "kindString": "Enumeration member", @@ -569,14 +569,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4700, + "line": 4903, "character": 4 } ], "defaultValue": "\"axisMenuPosition\"" }, { - "id": 1960, + "id": 1974, "name": "AxisMenuRemove", "kind": 16, "kindString": "Enumeration member", @@ -597,14 +597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4753, + "line": 4956, "character": 4 } ], "defaultValue": "\"axisMenuRemove\"" }, { - "id": 1956, + "id": 1970, "name": "AxisMenuRename", "kind": 16, "kindString": "Enumeration member", @@ -625,14 +625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4710, + "line": 4913, "character": 4 } ], "defaultValue": "\"axisMenuRename\"" }, { - "id": 1953, + "id": 1967, "name": "AxisMenuSort", "kind": 16, "kindString": "Enumeration member", @@ -653,14 +653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4677, + "line": 4880, "character": 4 } ], "defaultValue": "\"axisMenuSort\"" }, { - "id": 1959, + "id": 1973, "name": "AxisMenuTextWrapping", "kind": 16, "kindString": "Enumeration member", @@ -681,14 +681,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4741, + "line": 4944, "character": 4 } ], "defaultValue": "\"axisMenuTextWrapping\"" }, { - "id": 1950, + "id": 1964, "name": "AxisMenuTimeBucket", "kind": 16, "kindString": "Enumeration member", @@ -709,14 +709,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4643, + "line": 4846, "character": 4 } ], "defaultValue": "\"axisMenuTimeBucket\"" }, { - "id": 1991, + "id": 2005, "name": "ChangeFilterVisibilityInTab", "kind": 16, "kindString": "Enumeration member", @@ -737,14 +737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5090, + "line": 5293, "character": 4 } ], "defaultValue": "\"changeFilterVisibilityInTab\"" }, { - "id": 1887, + "id": 1901, "name": "ChooseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -761,14 +761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4121, + "line": 4324, "character": 4 } ], "defaultValue": "\"chooseDataSources\"" }, { - "id": 1886, + "id": 1900, "name": "CollapseDataPanel", "kind": 16, "kindString": "Enumeration member", @@ -789,14 +789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4112, + "line": 4315, "character": 4 } ], "defaultValue": "\"collapseDataPanel\"" }, { - "id": 1885, + "id": 1899, "name": "CollapseDataSources", "kind": 16, "kindString": "Enumeration member", @@ -817,14 +817,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4100, + "line": 4303, "character": 4 } ], "defaultValue": "\"collapseDataSources\"" }, { - "id": 1998, + "id": 2012, "name": "ColumnRename", "kind": 16, "kindString": "Enumeration member", @@ -845,14 +845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5166, + "line": 5369, "character": 4 } ], "defaultValue": "\"columnRename\"" }, { - "id": 1884, + "id": 1898, "name": "ConfigureFilter", "kind": 16, "kindString": "Enumeration member", @@ -869,14 +869,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4089, + "line": 4292, "character": 4 } ], "defaultValue": "\"configureFilter\"" }, { - "id": 1929, + "id": 1943, "name": "CopyAndEdit", "kind": 16, "kindString": "Enumeration member", @@ -884,14 +884,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4446, + "line": 4649, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-and-edit\"" }, { - "id": 1877, + "id": 1891, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -908,14 +908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4026, + "line": 4229, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1928, + "id": 1942, "name": "CopyToClipboard", "kind": 16, "kindString": "Enumeration member", @@ -932,14 +932,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4445, + "line": 4648, "character": 4 } ], "defaultValue": "\"context-menu-item-copy-to-clipboard\"" }, { - "id": 1999, + "id": 2013, "name": "CoverAndFilterOptionInPDF", "kind": 16, "kindString": "Enumeration member", @@ -960,14 +960,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5176, + "line": 5379, "character": 4 } ], "defaultValue": "\"coverAndFilterOptionInPDF\"" }, { - "id": 1976, + "id": 1990, "name": "CreateLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -988,14 +988,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4923, + "line": 5126, "character": 4 } ], "defaultValue": "\"createLiveboard\"" }, { - "id": 1940, + "id": 1954, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1016,14 +1016,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4539, + "line": 4742, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1945, + "id": 1959, "name": "CrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -1044,14 +1044,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4590, + "line": 4793, "character": 4 } ], "defaultValue": "\"context-menu-item-cross-filter\"" }, { - "id": 1996, + "id": 2010, "name": "DeletePreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1072,14 +1072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5147, + "line": 5350, "character": 4 } ], "defaultValue": "\"deletePreviousPrompt\"" }, { - "id": 1988, + "id": 2002, "name": "DeleteScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1100,14 +1100,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5059, + "line": 5262, "character": 4 } ], "defaultValue": "\"deleteScheduleHomepage\"" }, { - "id": 1990, + "id": 2004, "name": "DisableChipReorder", "kind": 16, "kindString": "Enumeration member", @@ -1128,14 +1128,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5078, + "line": 5281, "character": 4 } ], "defaultValue": "\"disableChipReorder\"" }, { - "id": 1899, + "id": 1913, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -1152,14 +1152,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4209, + "line": 4412, "character": 4 } ], "defaultValue": "\"download\"" }, { - "id": 1902, + "id": 1916, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -1176,14 +1176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4242, + "line": 4445, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1901, + "id": 1915, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -1201,14 +1201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4232, + "line": 4435, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1900, + "id": 1914, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -1225,14 +1225,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4219, + "line": 4422, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1903, + "id": 1917, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -1249,14 +1249,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4252, + "line": 4455, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1933, + "id": 1947, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -1273,14 +1273,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4462, + "line": 4665, "character": 4 } ], "defaultValue": "\"DRILL\"" }, { - "id": 1927, + "id": 1941, "name": "DrillExclude", "kind": 16, "kindString": "Enumeration member", @@ -1297,14 +1297,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4435, + "line": 4638, "character": 4 } ], "defaultValue": "\"context-menu-item-exclude\"" }, { - "id": 1926, + "id": 1940, "name": "DrillInclude", "kind": 16, "kindString": "Enumeration member", @@ -1321,14 +1321,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4426, + "line": 4629, "character": 4 } ], "defaultValue": "\"context-menu-item-include\"" }, { - "id": 1911, + "id": 1925, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -1345,14 +1345,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4328, + "line": 4531, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1876, + "id": 1890, "name": "EditACopy", "kind": 16, "kindString": "Enumeration member", @@ -1369,14 +1369,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4017, + "line": 4220, "character": 4 } ], "defaultValue": "\"editACopy\"" }, { - "id": 1939, + "id": 1953, "name": "EditDetails", "kind": 16, "kindString": "Enumeration member", @@ -1397,14 +1397,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4528, + "line": 4731, "character": 4 } ], "defaultValue": "\"editDetails\"" }, { - "id": 1931, + "id": 1945, "name": "EditMeasure", "kind": 16, "kindString": "Enumeration member", @@ -1412,14 +1412,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4451, + "line": 4654, "character": 4 } ], "defaultValue": "\"context-menu-item-edit-measure\"" }, { - "id": 1995, + "id": 2009, "name": "EditPreviousPrompt", "kind": 16, "kindString": "Enumeration member", @@ -1440,14 +1440,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5136, + "line": 5339, "character": 4 } ], "defaultValue": "\"editPreviousPrompt\"" }, { - "id": 1968, + "id": 1982, "name": "EditSageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1468,14 +1468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4830, + "line": 5033, "character": 4 } ], "defaultValue": "\"editSageAnswer\"" }, { - "id": 1983, + "id": 1997, "name": "EditScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -1496,14 +1496,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5005, + "line": 5208, "character": 4 } ], "defaultValue": "\"editScheduleHomepage\"" }, { - "id": 1908, + "id": 1922, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -1520,14 +1520,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4296, + "line": 4499, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1912, + "id": 1926, "name": "EditTitle", "kind": 16, "kindString": "Enumeration member", @@ -1544,14 +1544,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4336, + "line": 4539, "character": 4 } ], "defaultValue": "\"editTitle\"" }, { - "id": 1997, + "id": 2011, "name": "EditTokens", "kind": 16, "kindString": "Enumeration member", @@ -1572,14 +1572,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5157, + "line": 5360, "character": 4 } ], "defaultValue": "\"editTokens\"" }, { - "id": 1966, + "id": 1980, "name": "EnableContextualChangeAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -1600,14 +1600,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4807, + "line": 5010, "character": 4 } ], "defaultValue": "\"enableContextualChangeAnalysis\"" }, { - "id": 1925, + "id": 1939, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -1624,14 +1624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4415, + "line": 4618, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1905, + "id": 1919, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -1649,14 +1649,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4268, + "line": 4471, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1906, + "id": 1920, "name": "ImportTML", "kind": 16, "kindString": "Enumeration member", @@ -1673,14 +1673,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4278, + "line": 4481, "character": 4 } ], "defaultValue": "\"importTSL\"" }, { - "id": 2000, + "id": 2014, "name": "InConversationTraining", "kind": 16, "kindString": "Enumeration member", @@ -1701,14 +1701,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5192, + "line": 5395, "character": 4 } ], "defaultValue": "\"InConversationTraining\"" }, { - "id": 1989, + "id": 2003, "name": "KPIAnalysisCTA", "kind": 16, "kindString": "Enumeration member", @@ -1729,14 +1729,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5069, + "line": 5272, "character": 4 } ], "defaultValue": "\"kpiAnalysisCTA\"" }, { - "id": 1919, + "id": 1933, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -1753,14 +1753,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4377, + "line": 4580, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1974, + "id": 1988, "name": "LiveboardUsers", "kind": 16, "kindString": "Enumeration member", @@ -1781,14 +1781,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4891, + "line": 5094, "character": 4 } ], "defaultValue": "\"liveboardUsers\"" }, { - "id": 1875, + "id": 1889, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -1805,14 +1805,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4008, + "line": 4211, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1972, + "id": 1986, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -1829,14 +1829,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4871, + "line": 5074, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1944, + "id": 1958, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -1857,14 +1857,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4580, + "line": 4783, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1987, + "id": 2001, "name": "ManageTags", "kind": 16, "kindString": "Enumeration member", @@ -1885,14 +1885,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5048, + "line": 5251, "character": 4 } ], "defaultValue": "\"manageTags\"" }, { - "id": 1964, + "id": 1978, "name": "MarkAsVerified", "kind": 16, "kindString": "Enumeration member", @@ -1913,14 +1913,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4787, + "line": 4990, "character": 4 } ], "defaultValue": "\"markAsVerified\"" }, { - "id": 1970, + "id": 1984, "name": "ModifySageAnswer", "kind": 16, "kindString": "Enumeration member", @@ -1940,14 +1940,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4851, + "line": 5054, "character": 4 } ], "defaultValue": "\"modifySageAnswer\"" }, { - "id": 1971, + "id": 1985, "name": "MoveToTab", "kind": 16, "kindString": "Enumeration member", @@ -1964,14 +1964,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4860, + "line": 5063, "character": 4 } ], "defaultValue": "\"onContainerMove\"" }, { - "id": 1981, + "id": 1995, "name": "OrganiseFavourites", "kind": 16, "kindString": "Enumeration member", @@ -1992,14 +1992,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4981, + "line": 5184, "character": 4 } ], "defaultValue": "\"organiseFavourites\"" }, { - "id": 1984, + "id": 1998, "name": "PauseScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2020,14 +2020,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5016, + "line": 5219, "character": 4 } ], "defaultValue": "\"pauseScheduleHomepage\"" }, { - "id": 1973, + "id": 1987, "name": "PersonalisedViewsDropdown", "kind": 16, "kindString": "Enumeration member", @@ -2048,14 +2048,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4881, + "line": 5084, "character": 4 } ], "defaultValue": "\"personalisedViewsDropdown\"" }, { - "id": 1922, + "id": 1936, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -2072,14 +2072,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4394, + "line": 4597, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1909, + "id": 1923, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -2096,14 +2096,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4306, + "line": 4509, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1992, + "id": 2006, "name": "PreviewDataSpotter", "kind": 16, "kindString": "Enumeration member", @@ -2124,14 +2124,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5102, + "line": 5305, "character": 4 } ], "defaultValue": "\"previewDataSpotter\"" }, { - "id": 1935, + "id": 1949, "name": "QueryDetailsButtons", "kind": 16, "kindString": "Enumeration member", @@ -2149,14 +2149,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4485, + "line": 4688, "character": 4 } ], "defaultValue": "\"queryDetailsButtons\"" }, { - "id": 1913, + "id": 1927, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -2173,14 +2173,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4346, + "line": 4549, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1948, + "id": 1962, "name": "RemoveCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -2201,14 +2201,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4621, + "line": 4824, "character": 4 } ], "defaultValue": "\"context-menu-item-remove-cross-filter\"" }, { - "id": 1980, + "id": 1994, "name": "RemoveFromWatchlist", "kind": 16, "kindString": "Enumeration member", @@ -2229,14 +2229,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4970, + "line": 5173, "character": 4 } ], "defaultValue": "\"removeFromWatchlist\"" }, { - "id": 1962, + "id": 1976, "name": "RenameModalTitleDescription", "kind": 16, "kindString": "Enumeration member", @@ -2257,14 +2257,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4767, + "line": 4970, "character": 4 } ], "defaultValue": "\"renameModalTitleDescription\"" }, { - "id": 1941, + "id": 1955, "name": "ReportError", "kind": 16, "kindString": "Enumeration member", @@ -2288,14 +2288,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4549, + "line": 4752, "character": 4 } ], "defaultValue": "\"reportError\"" }, { - "id": 1934, + "id": 1948, "name": "RequestAccess", "kind": 16, "kindString": "Enumeration member", @@ -2312,14 +2312,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4471, + "line": 4674, "character": 4 } ], "defaultValue": "\"requestAccess\"" }, { - "id": 1963, + "id": 1977, "name": "RequestVerification", "kind": 16, "kindString": "Enumeration member", @@ -2340,14 +2340,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4777, + "line": 4980, "character": 4 } ], "defaultValue": "\"requestVerification\"" }, { - "id": 1993, + "id": 2007, "name": "ResetSpotterChat", "kind": 16, "kindString": "Enumeration member", @@ -2368,14 +2368,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5114, + "line": 5317, "character": 4 } ], "defaultValue": "\"resetSpotterChat\"" }, { - "id": 1969, + "id": 1983, "name": "SageAnswerFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2396,14 +2396,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4842, + "line": 5045, "character": 4 } ], "defaultValue": "\"sageAnswerFeedback\"" }, { - "id": 1871, + "id": 1885, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -2420,14 +2420,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3977, + "line": 4180, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1874, + "id": 1888, "name": "SaveAsView", "kind": 16, "kindString": "Enumeration member", @@ -2444,14 +2444,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3995, + "line": 4198, "character": 4 } ], "defaultValue": "\"saveAsView\"" }, { - "id": 1879, + "id": 1893, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -2468,14 +2468,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4040, + "line": 4243, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1880, + "id": 1894, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -2492,14 +2492,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4049, + "line": 4252, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1932, + "id": 1946, "name": "Separator", "kind": 16, "kindString": "Enumeration member", @@ -2507,14 +2507,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4452, + "line": 4655, "character": 4 } ], "defaultValue": "\"context-menu-item-separator\"" }, { - "id": 1881, + "id": 1895, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -2531,14 +2531,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4058, + "line": 4261, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1896, + "id": 1910, "name": "ShareViz", "kind": 16, "kindString": "Enumeration member", @@ -2549,14 +2549,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4184, + "line": 4387, "character": 4 } ], "defaultValue": "\"shareViz\"" }, { - "id": 1967, + "id": 1981, "name": "ShowSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -2577,14 +2577,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4817, + "line": 5020, "character": 4 } ], "defaultValue": "\"showSageQuery\"" }, { - "id": 1898, + "id": 1912, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -2601,14 +2601,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4199, + "line": 4402, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1893, + "id": 1907, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -2625,14 +2625,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4172, + "line": 4375, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1994, + "id": 2008, "name": "SpotterFeedback", "kind": 16, "kindString": "Enumeration member", @@ -2653,14 +2653,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5125, + "line": 5328, "character": 4 } ], "defaultValue": "\"spotterFeedback\"" }, { - "id": 1924, + "id": 1938, "name": "Subscription", "kind": 16, "kindString": "Enumeration member", @@ -2677,14 +2677,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4407, + "line": 4610, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1943, + "id": 1957, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -2705,14 +2705,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4570, + "line": 4773, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1942, + "id": 1956, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -2733,14 +2733,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4559, + "line": 4762, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1946, + "id": 1960, "name": "SyncToSlack", "kind": 16, "kindString": "Enumeration member", @@ -2761,14 +2761,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4600, + "line": 4803, "character": 4 } ], "defaultValue": "\"syncToSlack\"" }, { - "id": 1947, + "id": 1961, "name": "SyncToTeams", "kind": 16, "kindString": "Enumeration member", @@ -2789,14 +2789,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4610, + "line": 4813, "character": 4 } ], "defaultValue": "\"syncToTeams\"" }, { - "id": 1975, + "id": 1989, "name": "TML", "kind": 16, "kindString": "Enumeration member", @@ -2821,14 +2821,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4910, + "line": 5113, "character": 4 } ], "defaultValue": "\"tml\"" }, { - "id": 1910, + "id": 1924, "name": "ToggleSize", "kind": 16, "kindString": "Enumeration member", @@ -2845,14 +2845,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4318, + "line": 4521, "character": 4 } ], "defaultValue": "\"toggleSize\"" }, { - "id": 1986, + "id": 2000, "name": "UnsubscribeScheduleHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2873,14 +2873,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5038, + "line": 5241, "character": 4 } ], "defaultValue": "\"unsubscribeScheduleHomepage\"" }, { - "id": 1907, + "id": 1921, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -2897,14 +2897,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4287, + "line": 4490, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1977, + "id": 1991, "name": "VerifiedLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -2925,14 +2925,14 @@ "sources": [ { "fileName": "types.ts", - "line": 4934, + "line": 5137, "character": 4 } ], "defaultValue": "\"verifiedLiveboard\"" }, { - "id": 1985, + "id": 1999, "name": "ViewScheduleRunHomepage", "kind": 16, "kindString": "Enumeration member", @@ -2953,7 +2953,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5027, + "line": 5230, "character": 4 } ], @@ -2965,125 +2965,125 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1982, - 1890, - 1883, - 1882, - 1888, - 1889, - 1891, - 1965, - 1938, + 1996, + 1904, + 1897, + 1896, + 1902, + 1903, + 1905, 1979, - 1937, - 1936, - 1978, - 1949, 1952, - 1957, + 1993, 1951, + 1950, + 1992, + 1963, + 1966, + 1971, + 1965, + 1968, + 1972, + 1969, + 1974, + 1970, + 1967, + 1973, + 1964, + 2005, + 1901, + 1900, + 1899, + 2012, + 1898, + 1943, + 1891, + 1942, + 2013, + 1990, 1954, - 1958, - 1955, - 1960, - 1956, - 1953, 1959, - 1950, - 1991, - 1887, - 1886, - 1885, - 1998, - 1884, - 1929, - 1877, - 1928, - 1999, - 1976, + 2010, + 2002, + 2004, + 1913, + 1916, + 1915, + 1914, + 1917, + 1947, + 1941, 1940, + 1925, + 1890, + 1953, 1945, - 1996, - 1988, - 1990, - 1899, - 1902, - 1901, - 1900, - 1903, - 1933, - 1927, + 2009, + 1982, + 1997, + 1922, 1926, - 1911, - 1876, + 2011, + 1980, 1939, - 1931, - 1995, - 1968, - 1983, - 1908, - 1912, - 1997, - 1966, - 1925, - 1905, - 1906, - 2000, - 1989, 1919, - 1974, - 1875, - 1972, - 1944, - 1987, - 1964, - 1970, - 1971, - 1981, + 1920, + 2014, + 2003, + 1933, + 1988, + 1889, + 1986, + 1958, + 2001, + 1978, 1984, - 1973, - 1922, - 1909, - 1992, - 1935, - 1913, - 1948, - 1980, + 1985, + 1995, + 1998, + 1987, + 1936, + 1923, + 2006, + 1949, + 1927, 1962, - 1941, - 1934, - 1963, - 1993, - 1969, - 1871, - 1874, - 1879, - 1880, - 1932, - 1881, - 1896, - 1967, - 1898, - 1893, 1994, - 1924, - 1943, - 1942, + 1976, + 1955, + 1948, + 1977, + 2007, + 1983, + 1885, + 1888, + 1893, + 1894, 1946, - 1947, - 1975, + 1895, 1910, - 1986, + 1981, + 1912, 1907, - 1977, - 1985 + 2008, + 1938, + 1957, + 1956, + 1960, + 1961, + 1989, + 1924, + 2000, + 1921, + 1991, + 1999 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3968, + "line": 4171, "character": 12 } ] @@ -3638,7 +3638,7 @@ ] }, { - "id": 2001, + "id": 2015, "name": "ContextMenuTriggerOptions", "kind": 4, "kindString": "Enumeration", @@ -3648,7 +3648,7 @@ }, "children": [ { - "id": 2004, + "id": 2018, "name": "BOTH_CLICKS", "kind": 16, "kindString": "Enumeration member", @@ -3656,14 +3656,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5213, + "line": 5416, "character": 4 } ], "defaultValue": "\"both-clicks\"" }, { - "id": 2002, + "id": 2016, "name": "LEFT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3671,14 +3671,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5211, + "line": 5414, "character": 4 } ], "defaultValue": "\"left-click\"" }, { - "id": 2003, + "id": 2017, "name": "RIGHT_CLICK", "kind": 16, "kindString": "Enumeration member", @@ -3686,7 +3686,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5212, + "line": 5415, "character": 4 } ], @@ -3698,22 +3698,22 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2004, - 2002, - 2003 + 2018, + 2016, + 2017 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5210, + "line": 5413, "character": 12 } ] }, { - "id": 2569, + "id": 2583, "name": "DataPanelCustomColumnGroupsAccordionState", "kind": 4, "kindString": "Enumeration", @@ -3723,7 +3723,7 @@ }, "children": [ { - "id": 2571, + "id": 2585, "name": "COLLAPSE_ALL", "kind": 16, "kindString": "Enumeration member", @@ -3741,7 +3741,7 @@ "defaultValue": "\"COLLAPSE_ALL\"" }, { - "id": 2570, + "id": 2584, "name": "EXPAND_ALL", "kind": 16, "kindString": "Enumeration member", @@ -3759,7 +3759,7 @@ "defaultValue": "\"EXPAND_ALL\"" }, { - "id": 2572, + "id": 2586, "name": "EXPAND_FIRST", "kind": 16, "kindString": "Enumeration member", @@ -3782,9 +3782,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2571, - 2570, - 2572 + 2585, + 2584, + 2586 ] } ], @@ -3797,7 +3797,7 @@ ] }, { - "id": 1866, + "id": 1880, "name": "DataSourceVisualMode", "kind": 4, "kindString": "Enumeration", @@ -3807,7 +3807,7 @@ }, "children": [ { - "id": 1868, + "id": 1882, "name": "Collapsed", "kind": 16, "kindString": "Enumeration member", @@ -3818,14 +3818,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3809, + "line": 4012, "character": 4 } ], "defaultValue": "\"collapse\"" }, { - "id": 1869, + "id": 1883, "name": "Expanded", "kind": 16, "kindString": "Enumeration member", @@ -3836,14 +3836,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3813, + "line": 4016, "character": 4 } ], "defaultValue": "\"expand\"" }, { - "id": 1867, + "id": 1881, "name": "Hidden", "kind": 16, "kindString": "Enumeration member", @@ -3854,7 +3854,7 @@ "sources": [ { "fileName": "types.ts", - "line": 3805, + "line": 4008, "character": 4 } ], @@ -3866,16 +3866,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1868, - 1869, - 1867 + 1882, + 1883, + 1881 ] } ], "sources": [ { "fileName": "types.ts", - "line": 3801, + "line": 4004, "character": 12 } ] @@ -5108,6 +5108,58 @@ ], "defaultValue": "\"init\"" }, + { + "id": 1808, + "name": "LastPromptDeleted", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "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": 2763, + "character": 4 + } + ], + "defaultValue": "\"LastPromptDeleted\"" + }, + { + "id": 1807, + "name": "LastPromptEdited", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "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": 2753, + "character": 4 + } + ], + "defaultValue": "\"LastPromptEdited\"" + }, { "id": 1772, "name": "LiveboardInfo", @@ -5377,6 +5429,34 @@ ], "defaultValue": "\"present\"" }, + { + "id": 1805, + "name": "PreviewSpotterData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "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": 2731, + "character": 4 + } + ], + "defaultValue": "\"PreviewSpotterData\"" + }, { "id": 1727, "name": "QueryChanged", @@ -5469,6 +5549,34 @@ ], "defaultValue": "\"resetLiveboard\"" }, + { + "id": 1809, + "name": "ResetSpotterConversation", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "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": 2774, + "character": 4 + } + ], + "defaultValue": "\"ResetSpotterConversation\"" + }, { "id": 1743, "name": "RouteChange", @@ -5781,6 +5889,90 @@ ], "defaultValue": "\"spotIQAnalyze\"" }, + { + "id": 1804, + "name": "SpotterData", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "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": 2720, + "character": 4 + } + ], + "defaultValue": "\"SpotterData\"" + }, + { + "id": 1810, + "name": "SpotterInit", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "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": 2785, + "character": 4 + } + ], + "defaultValue": "\"SpotterInit\"" + }, + { + "id": 1806, + "name": "SpotterQueryTriggered", + "kind": 16, + "kindString": "Enumeration member", + "flags": {}, + "comment": { + "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": 2742, + "character": 4 + } + ], + "defaultValue": "\"SpotterQueryTriggered\"" + }, { "id": 1800, "name": "TableVizRendered", @@ -6045,6 +6237,8 @@ 1786, 1742, 1723, + 1808, + 1807, 1772, 1749, 1725, @@ -6054,9 +6248,11 @@ 1799, 1758, 1777, + 1805, 1727, 1797, 1793, + 1809, 1743, 1787, 1788, @@ -6068,6 +6264,9 @@ 1760, 1769, 1759, + 1804, + 1810, + 1806, 1800, 1789, 1791, @@ -6087,7 +6286,7 @@ ] }, { - "id": 2346, + "id": 2360, "name": "HomeLeftNavItem", "kind": 4, "kindString": "Enumeration", @@ -6097,7 +6296,7 @@ }, "children": [ { - "id": 2350, + "id": 2364, "name": "Answers", "kind": 16, "kindString": "Enumeration member", @@ -6120,7 +6319,7 @@ "defaultValue": "\"answers\"" }, { - "id": 2354, + "id": 2368, "name": "Create", "kind": 16, "kindString": "Enumeration member", @@ -6144,7 +6343,7 @@ "defaultValue": "\"create\"" }, { - "id": 2356, + "id": 2370, "name": "Favorites", "kind": 16, "kindString": "Enumeration member", @@ -6168,7 +6367,7 @@ "defaultValue": "\"favorites\"" }, { - "id": 2348, + "id": 2362, "name": "Home", "kind": 16, "kindString": "Enumeration member", @@ -6191,7 +6390,7 @@ "defaultValue": "\"insights-home\"" }, { - "id": 2353, + "id": 2367, "name": "LiveboardSchedules", "kind": 16, "kindString": "Enumeration member", @@ -6214,7 +6413,7 @@ "defaultValue": "\"liveboard-schedules\"" }, { - "id": 2349, + "id": 2363, "name": "Liveboards", "kind": 16, "kindString": "Enumeration member", @@ -6237,7 +6436,7 @@ "defaultValue": "\"liveboards\"" }, { - "id": 2351, + "id": 2365, "name": "MonitorSubscription", "kind": 16, "kindString": "Enumeration member", @@ -6260,7 +6459,7 @@ "defaultValue": "\"monitor-alerts\"" }, { - "id": 2347, + "id": 2361, "name": "SearchData", "kind": 16, "kindString": "Enumeration member", @@ -6283,7 +6482,7 @@ "defaultValue": "\"search-data\"" }, { - "id": 2352, + "id": 2366, "name": "SpotIQAnalysis", "kind": 16, "kindString": "Enumeration member", @@ -6306,7 +6505,7 @@ "defaultValue": "\"spotiq-analysis\"" }, { - "id": 2355, + "id": 2369, "name": "Spotter", "kind": 16, "kindString": "Enumeration member", @@ -6335,16 +6534,16 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2350, - 2354, - 2356, - 2348, - 2353, - 2349, - 2351, - 2347, - 2352, - 2355 + 2364, + 2368, + 2370, + 2362, + 2367, + 2363, + 2365, + 2361, + 2366, + 2369 ] } ], @@ -6357,7 +6556,7 @@ ] }, { - "id": 2528, + "id": 2542, "name": "HomePage", "kind": 4, "kindString": "Enumeration", @@ -6373,7 +6572,7 @@ }, "children": [ { - "id": 2529, + "id": 2543, "name": "Modular", "kind": 16, "kindString": "Enumeration member", @@ -6396,7 +6595,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2529 + 2543 ] } ], @@ -6409,14 +6608,14 @@ ] }, { - "id": 2522, + "id": 2536, "name": "HomePageSearchBarMode", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2524, + "id": 2538, "name": "AI_ANSWER", "kind": 16, "kindString": "Enumeration member", @@ -6431,7 +6630,7 @@ "defaultValue": "\"aiAnswer\"" }, { - "id": 2525, + "id": 2539, "name": "NONE", "kind": 16, "kindString": "Enumeration member", @@ -6446,7 +6645,7 @@ "defaultValue": "\"none\"" }, { - "id": 2523, + "id": 2537, "name": "OBJECT_SEARCH", "kind": 16, "kindString": "Enumeration member", @@ -6466,9 +6665,9 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2524, - 2525, - 2523 + 2538, + 2539, + 2537 ] } ], @@ -6481,7 +6680,7 @@ ] }, { - "id": 2357, + "id": 2371, "name": "HomepageModule", "kind": 4, "kindString": "Enumeration", @@ -6497,7 +6696,7 @@ }, "children": [ { - "id": 2360, + "id": 2374, "name": "Favorite", "kind": 16, "kindString": "Enumeration member", @@ -6515,7 +6714,7 @@ "defaultValue": "\"FAVORITE\"" }, { - "id": 2363, + "id": 2377, "name": "Learning", "kind": 16, "kindString": "Enumeration member", @@ -6533,7 +6732,7 @@ "defaultValue": "\"LEARNING\"" }, { - "id": 2361, + "id": 2375, "name": "MyLibrary", "kind": 16, "kindString": "Enumeration member", @@ -6551,7 +6750,7 @@ "defaultValue": "\"MY_LIBRARY\"" }, { - "id": 2358, + "id": 2372, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -6569,7 +6768,7 @@ "defaultValue": "\"SEARCH\"" }, { - "id": 2362, + "id": 2376, "name": "Trending", "kind": 16, "kindString": "Enumeration member", @@ -6587,7 +6786,7 @@ "defaultValue": "\"TRENDING\"" }, { - "id": 2359, + "id": 2373, "name": "Watchlist", "kind": 16, "kindString": "Enumeration member", @@ -6610,12 +6809,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2360, - 2363, - 2361, - 2358, - 2362, - 2359 + 2374, + 2377, + 2375, + 2372, + 2376, + 2373 ] } ], @@ -6628,7 +6827,7 @@ ] }, { - "id": 1804, + "id": 1811, "name": "HostEvent", "kind": 4, "kindString": "Enumeration", @@ -6657,7 +6856,7 @@ }, "children": [ { - "id": 1815, + "id": 1822, "name": "AddColumns", "kind": 16, "kindString": "Enumeration member", @@ -6683,14 +6882,43 @@ "sources": [ { "fileName": "types.ts", - "line": 2961, + "line": 3037, "character": 4 } ], "defaultValue": "\"addColumns\"" }, { - "id": 1855, + "id": 1877, + "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": 3975, + "character": 4 + } + ], + "defaultValue": "\"answerChartSwitcher\"" + }, + { + "id": 1862, "name": "AskSage", "kind": 16, "kindString": "Enumeration member", @@ -6711,14 +6939,42 @@ "sources": [ { "fileName": "types.ts", - "line": 3670, + "line": 3797, "character": 4 } ], "defaultValue": "\"AskSage\"" }, { - "id": 1832, + "id": 1879, + "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": 3996, + "character": 4 + } + ], + "defaultValue": "\"askSpotter\"" + }, + { + "id": 1839, "name": "CopyLink", "kind": 16, "kindString": "Enumeration member", @@ -6744,14 +7000,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3239, + "line": 3335, "character": 4 } ], "defaultValue": "\"embedDocument\"" }, { - "id": 1829, + "id": 1836, "name": "CreateMonitor", "kind": 16, "kindString": "Enumeration member", @@ -6781,14 +7037,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3183, + "line": 3272, "character": 4 } ], "defaultValue": "\"createMonitor\"" }, { - "id": 1836, + "id": 1843, "name": "Delete", "kind": 16, "kindString": "Enumeration member", @@ -6814,14 +7070,38 @@ "sources": [ { "fileName": "types.ts", - "line": 3306, + "line": 3412, "character": 4 } ], "defaultValue": "\"onDeleteAnswer\"" }, { - "id": 1838, + "id": 1876, + "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": 3964, + "character": 4 + } + ], + "defaultValue": "\"DeleteLastPrompt\"" + }, + { + "id": 1845, "name": "Download", "kind": 16, "kindString": "Enumeration member", @@ -6846,14 +7126,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3342, + "line": 3448, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1840, + "id": 1847, "name": "DownloadAsCsv", "kind": 16, "kindString": "Enumeration member", @@ -6863,7 +7143,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", @@ -6874,14 +7154,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3374, + "line": 3490, "character": 4 } ], "defaultValue": "\"downloadAsCSV\"" }, { - "id": 1825, + "id": 1832, "name": "DownloadAsPdf", "kind": 16, "kindString": "Enumeration member", @@ -6903,14 +7183,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3119, + "line": 3202, "character": 4 } ], "defaultValue": "\"downloadAsPdf\"" }, { - "id": 1839, + "id": 1846, "name": "DownloadAsPng", "kind": 16, "kindString": "Enumeration member", @@ -6920,7 +7200,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", @@ -6931,14 +7211,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3357, + "line": 3468, "character": 4 } ], "defaultValue": "\"downloadAsPng\"" }, { - "id": 1841, + "id": 1848, "name": "DownloadAsXlsx", "kind": 16, "kindString": "Enumeration member", @@ -6948,7 +7228,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", @@ -6959,14 +7239,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3391, + "line": 3512, "character": 4 } ], "defaultValue": "\"downloadAsXLSX\"" }, { - "id": 1806, + "id": 1813, "name": "DrillDown", "kind": 16, "kindString": "Enumeration member", @@ -7011,14 +7291,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2836, + "line": 2912, "character": 4 } ], "defaultValue": "\"triggerDrillDown\"" }, { - "id": 1831, + "id": 1838, "name": "Edit", "kind": 16, "kindString": "Enumeration member", @@ -7029,13 +7309,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.\n**Required** in Spotter embed.", "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" @@ -7045,14 +7329,43 @@ "sources": [ { "fileName": "types.ts", - "line": 3222, + "line": 3318, "character": 4 } ], "defaultValue": "\"edit\"" }, { - "id": 1823, + "id": 1873, + "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": 3940, + "character": 4 + } + ], + "defaultValue": "\"EditLastPrompt\"" + }, + { + "id": 1830, "name": "EditTML", "kind": 16, "kindString": "Enumeration member", @@ -7073,14 +7386,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3097, + "line": 3180, "character": 4 } ], "defaultValue": "\"editTSL\"" }, { - "id": 1828, + "id": 1835, "name": "Explore", "kind": 16, "kindString": "Enumeration member", @@ -7106,14 +7419,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3166, + "line": 3255, "character": 4 } ], "defaultValue": "\"explore\"" }, { - "id": 1822, + "id": 1829, "name": "ExportTML", "kind": 16, "kindString": "Enumeration member", @@ -7134,14 +7447,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3087, + "line": 3170, "character": 4 } ], "defaultValue": "\"exportTSL\"" }, { - "id": 1854, + "id": 1861, "name": "GetAnswerSession", "kind": 16, "kindString": "Enumeration member", @@ -7167,14 +7480,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3660, + "line": 3787, "character": 4 } ], "defaultValue": "\"getAnswerSession\"" }, { - "id": 1848, + "id": 1855, "name": "GetFilters", "kind": 16, "kindString": "Enumeration member", @@ -7195,14 +7508,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3487, + "line": 3614, "character": 4 } ], "defaultValue": "\"getFilters\"" }, { - "id": 1809, + "id": 1816, "name": "GetIframeUrl", "kind": 16, "kindString": "Enumeration member", @@ -7223,20 +7536,20 @@ "sources": [ { "fileName": "types.ts", - "line": 2858, + "line": 2934, "character": 4 } ], "defaultValue": "\"GetIframeUrl\"" }, { - "id": 1859, + "id": 1866, "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", @@ -7247,14 +7560,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3719, + "line": 3853, "character": 4 } ], "defaultValue": "\"GetParameters\"" }, { - "id": 1834, + "id": 1841, "name": "GetTML", "kind": 16, "kindString": "Enumeration member", @@ -7266,6 +7579,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" @@ -7279,14 +7596,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3270, + "line": 3376, "character": 4 } ], "defaultValue": "\"getTML\"" }, { - "id": 1850, + "id": 1857, "name": "GetTabs", "kind": 16, "kindString": "Enumeration member", @@ -7307,14 +7624,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3590, + "line": 3717, "character": 4 } ], "defaultValue": "\"getTabs\"" }, { - "id": 1819, + "id": 1826, "name": "LiveboardInfo", "kind": 16, "kindString": "Enumeration member", @@ -7335,14 +7652,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3059, + "line": 3142, "character": 4 } ], "defaultValue": "\"pinboardInfo\"" }, { - "id": 1826, + "id": 1833, "name": "MakeACopy", "kind": 16, "kindString": "Enumeration member", @@ -7366,6 +7683,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" @@ -7375,14 +7696,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3142, + "line": 3231, "character": 4 } ], "defaultValue": "\"makeACopy\"" }, { - "id": 1830, + "id": 1837, "name": "ManageMonitor", "kind": 16, "kindString": "Enumeration member", @@ -7416,14 +7737,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3204, + "line": 3293, "character": 4 } ], "defaultValue": "\"manageMonitor\"" }, { - "id": 1846, + "id": 1853, "name": "ManagePipelines", "kind": 16, "kindString": "Enumeration member", @@ -7449,14 +7770,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3464, + "line": 3591, "character": 4 } ], "defaultValue": "\"manage-pipeline\"" }, { - "id": 1813, + "id": 1820, "name": "Navigate", "kind": 16, "kindString": "Enumeration member", @@ -7482,14 +7803,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2931, + "line": 3007, "character": 4 } ], "defaultValue": "\"Navigate\"" }, { - "id": 1814, + "id": 1821, "name": "OpenFilter", "kind": 16, "kindString": "Enumeration member", @@ -7519,14 +7840,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2951, + "line": 3027, "character": 4 } ], "defaultValue": "\"openFilter\"" }, { - "id": 1818, + "id": 1825, "name": "Pin", "kind": 16, "kindString": "Enumeration member", @@ -7536,7 +7857,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", @@ -7574,6 +7895,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" @@ -7583,14 +7908,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3049, + "line": 3132, "character": 4 } ], "defaultValue": "\"pin\"" }, { - "id": 1833, + "id": 1840, "name": "Present", "kind": 16, "kindString": "Enumeration member", @@ -7616,14 +7941,38 @@ "sources": [ { "fileName": "types.ts", - "line": 3256, + "line": 3352, "character": 4 } ], "defaultValue": "\"present\"" }, { - "id": 1827, + "id": 1874, + "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": 3948, + "character": 4 + } + ], + "defaultValue": "\"PreviewSpotterData\"" + }, + { + "id": 1834, "name": "Remove", "kind": 16, "kindString": "Enumeration member", @@ -7648,14 +7997,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3156, + "line": 3245, "character": 4 } ], "defaultValue": "\"delete\"" }, { - "id": 1816, + "id": 1823, "name": "RemoveColumn", "kind": 16, "kindString": "Enumeration member", @@ -7681,14 +8030,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2971, + "line": 3047, "character": 4 } ], "defaultValue": "\"removeColumn\"" }, { - "id": 1857, + "id": 1864, "name": "ResetLiveboardPersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -7709,14 +8058,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3695, + "line": 3822, "character": 4 } ], "defaultValue": "\"ResetLiveboardPersonalisedView\"" }, { - "id": 1847, + "id": 1854, "name": "ResetSearch", "kind": 16, "kindString": "Enumeration member", @@ -7737,14 +8086,38 @@ "sources": [ { "fileName": "types.ts", - "line": 3476, + "line": 3603, "character": 4 } ], "defaultValue": "\"resetSearch\"" }, { - "id": 1843, + "id": 1875, + "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": 3956, + "character": 4 + } + ], + "defaultValue": "\"ResetSpotterConversation\"" + }, + { + "id": 1850, "name": "Save", "kind": 16, "kindString": "Enumeration member", @@ -7752,9 +8125,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", @@ -7765,14 +8143,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3417, + "line": 3544, "character": 4 } ], "defaultValue": "\"save\"" }, { - "id": 1862, + "id": 1869, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -7798,14 +8176,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3758, + "line": 3892, "character": 4 } ], "defaultValue": "\"saveAnswer\"" }, { - "id": 1820, + "id": 1827, "name": "Schedule", "kind": 16, "kindString": "Enumeration member", @@ -7826,14 +8204,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3068, + "line": 3151, "character": 4 } ], "defaultValue": "\"subscription\"" }, { - "id": 1821, + "id": 1828, "name": "SchedulesList", "kind": 16, "kindString": "Enumeration member", @@ -7854,14 +8232,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3077, + "line": 3160, "character": 4 } ], "defaultValue": "\"schedule-list\"" }, { - "id": 1805, + "id": 1812, "name": "Search", "kind": 16, "kindString": "Enumeration member", @@ -7893,14 +8271,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2786, + "line": 2862, "character": 4 } ], "defaultValue": "\"search\"" }, { - "id": 1811, + "id": 1818, "name": "SetActiveTab", "kind": 16, "kindString": "Enumeration member", @@ -7926,14 +8304,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2883, + "line": 2959, "character": 4 } ], "defaultValue": "\"SetActiveTab\"" }, { - "id": 1852, + "id": 1859, "name": "SetHiddenTabs", "kind": 16, "kindString": "Enumeration member", @@ -7959,14 +8337,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3616, + "line": 3743, "character": 4 } ], "defaultValue": "\"SetPinboardHiddenTabs\"" }, { - "id": 1851, + "id": 1858, "name": "SetVisibleTabs", "kind": 16, "kindString": "Enumeration member", @@ -7992,14 +8370,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3603, + "line": 3730, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleTabs\"" }, { - "id": 1810, + "id": 1817, "name": "SetVisibleVizs", "kind": 16, "kindString": "Enumeration member", @@ -8025,14 +8403,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2871, + "line": 2947, "character": 4 } ], "defaultValue": "\"SetPinboardVisibleVizs\"" }, { - "id": 1842, + "id": 1849, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8053,14 +8431,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3404, + "line": 3525, "character": 4 } ], "defaultValue": "\"share\"" }, { - "id": 1835, + "id": 1842, "name": "ShowUnderlyingData", "kind": 16, "kindString": "Enumeration member", @@ -8086,14 +8464,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3289, + "line": 3395, "character": 4 } ], "defaultValue": "\"showUnderlyingData\"" }, { - "id": 1837, + "id": 1844, "name": "SpotIQAnalyze", "kind": 16, "kindString": "Enumeration member", @@ -8119,14 +8497,48 @@ "sources": [ { "fileName": "types.ts", - "line": 3326, + "line": 3432, "character": 4 } ], "defaultValue": "\"spotIQAnalyze\"" }, { - "id": 1845, + "id": 1872, + "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": 3931, + "character": 4 + } + ], + "defaultValue": "\"SpotterSearch\"" + }, + { + "id": 1852, "name": "SyncToOtherApps", "kind": 16, "kindString": "Enumeration member", @@ -8152,14 +8564,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3448, + "line": 3575, "character": 4 } ], "defaultValue": "\"sync-to-other-apps\"" }, { - "id": 1844, + "id": 1851, "name": "SyncToSheets", "kind": 16, "kindString": "Enumeration member", @@ -8185,14 +8597,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3432, + "line": 3559, "character": 4 } ], "defaultValue": "\"sync-to-sheets\"" }, { - "id": 1864, + "id": 1871, "name": "TransformTableVizData", "kind": 16, "kindString": "Enumeration member", @@ -8218,14 +8630,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3783, + "line": 3917, "character": 4 } ], "defaultValue": "\"TransformTableVizData\"" }, { - "id": 1856, + "id": 1863, "name": "UpdateCrossFilter", "kind": 16, "kindString": "Enumeration member", @@ -8246,14 +8658,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3686, + "line": 3813, "character": 4 } ], "defaultValue": "\"UpdateCrossFilter\"" }, { - "id": 1849, + "id": 1856, "name": "UpdateFilters", "kind": 16, "kindString": "Enumeration member", @@ -8296,20 +8708,20 @@ "sources": [ { "fileName": "types.ts", - "line": 3577, + "line": 3704, "character": 4 } ], "defaultValue": "\"updateFilters\"" }, { - "id": 1858, + "id": 1865, "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", @@ -8320,14 +8732,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3709, + "line": 3836, "character": 4 } ], "defaultValue": "\"UpdateParameters\"" }, { - "id": 1860, + "id": 1867, "name": "UpdatePersonalisedView", "kind": 16, "kindString": "Enumeration member", @@ -8344,14 +8756,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3727, + "line": 3861, "character": 4 } ], "defaultValue": "\"UpdatePersonalisedView\"" }, { - "id": 1812, + "id": 1819, "name": "UpdateRuntimeFilters", "kind": 16, "kindString": "Enumeration member", @@ -8382,14 +8794,14 @@ "sources": [ { "fileName": "types.ts", - "line": 2919, + "line": 2995, "character": 4 } ], "defaultValue": "\"UpdateRuntimeFilters\"" }, { - "id": 1853, + "id": 1860, "name": "UpdateSageQuery", "kind": 16, "kindString": "Enumeration member", @@ -8420,14 +8832,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3630, + "line": 3757, "character": 4 } ], "defaultValue": "\"updateSageQuery\"" }, { - "id": 1824, + "id": 1831, "name": "UpdateTML", "kind": 16, "kindString": "Enumeration member", @@ -8448,14 +8860,14 @@ "sources": [ { "fileName": "types.ts", - "line": 3106, + "line": 3189, "character": 4 } ], "defaultValue": "\"updateTSL\"" }, { - "id": 1817, + "id": 1824, "name": "getExportRequestForCurrentPinboard", "kind": 16, "kindString": "Enumeration member", @@ -8476,7 +8888,7 @@ "sources": [ { "fileName": "types.ts", - "line": 2987, + "line": 3063, "character": 4 } ], @@ -8488,75 +8900,82 @@ "title": "Enumeration members", "kind": 16, "children": [ - 1815, - 1855, - 1832, - 1829, - 1836, - 1838, - 1840, - 1825, - 1839, - 1841, - 1806, - 1831, - 1823, - 1828, 1822, - 1854, - 1848, - 1809, - 1859, - 1834, - 1850, - 1819, - 1826, - 1830, + 1877, + 1862, + 1879, + 1839, + 1836, + 1843, + 1876, + 1845, + 1847, + 1832, 1846, + 1848, 1813, - 1814, - 1818, - 1833, - 1827, + 1838, + 1873, + 1830, + 1835, + 1829, + 1861, + 1855, 1816, + 1866, + 1841, 1857, - 1847, - 1843, - 1862, + 1826, + 1833, + 1837, + 1853, 1820, 1821, - 1805, - 1811, - 1852, - 1851, - 1810, + 1825, + 1840, + 1874, + 1834, + 1823, + 1864, + 1854, + 1875, + 1850, + 1869, + 1827, + 1828, + 1812, + 1818, + 1859, + 1858, + 1817, + 1849, 1842, - 1835, - 1837, - 1845, 1844, - 1864, + 1872, + 1852, + 1851, + 1871, + 1863, 1856, - 1849, - 1858, + 1865, + 1867, + 1819, 1860, - 1812, - 1853, - 1824, - 1817 + 1831, + 1824 ] } ], "sources": [ { "fileName": "types.ts", - "line": 2766, + "line": 2842, "character": 12 } ] }, { - "id": 2530, + "id": 2544, "name": "ListPage", "kind": 4, "kindString": "Enumeration", @@ -8572,7 +8991,7 @@ }, "children": [ { - "id": 2531, + "id": 2545, "name": "List", "kind": 16, "kindString": "Enumeration member", @@ -8590,7 +9009,7 @@ "defaultValue": "\"v2\"" }, { - "id": 2532, + "id": 2546, "name": "ListWithUXChanges", "kind": 16, "kindString": "Enumeration member", @@ -8613,8 +9032,8 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2531, - 2532 + 2545, + 2546 ] } ], @@ -8627,7 +9046,7 @@ ] }, { - "id": 2563, + "id": 2577, "name": "ListPageColumns", "kind": 4, "kindString": "Enumeration", @@ -8643,7 +9062,7 @@ }, "children": [ { - "id": 2566, + "id": 2580, "name": "Author", "kind": 16, "kindString": "Enumeration member", @@ -8661,7 +9080,7 @@ "defaultValue": "\"AUTHOR\"" }, { - "id": 2567, + "id": 2581, "name": "DateSort", "kind": 16, "kindString": "Enumeration member", @@ -8679,7 +9098,7 @@ "defaultValue": "\"DATE_SORT\"" }, { - "id": 2564, + "id": 2578, "name": "Favourite", "kind": 16, "kindString": "Enumeration member", @@ -8697,7 +9116,7 @@ "defaultValue": "\"FAVOURITE\"" }, { - "id": 2568, + "id": 2582, "name": "Share", "kind": 16, "kindString": "Enumeration member", @@ -8715,7 +9134,7 @@ "defaultValue": "\"SHARE\"" }, { - "id": 2565, + "id": 2579, "name": "Tags", "kind": 16, "kindString": "Enumeration member", @@ -8738,11 +9157,11 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2566, - 2567, - 2564, - 2568, - 2565 + 2580, + 2581, + 2578, + 2582, + 2579 ] } ], @@ -8755,7 +9174,7 @@ ] }, { - "id": 2499, + "id": 2513, "name": "LogLevel", "kind": 4, "kindString": "Enumeration", @@ -8765,7 +9184,7 @@ }, "children": [ { - "id": 2504, + "id": 2518, "name": "DEBUG", "kind": 16, "kindString": "Enumeration member", @@ -8786,14 +9205,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5335, + "line": 5538, "character": 4 } ], "defaultValue": "\"DEBUG\"" }, { - "id": 2501, + "id": 2515, "name": "ERROR", "kind": 16, "kindString": "Enumeration member", @@ -8814,14 +9233,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5296, + "line": 5499, "character": 4 } ], "defaultValue": "\"ERROR\"" }, { - "id": 2503, + "id": 2517, "name": "INFO", "kind": 16, "kindString": "Enumeration member", @@ -8842,14 +9261,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5321, + "line": 5524, "character": 4 } ], "defaultValue": "\"INFO\"" }, { - "id": 2500, + "id": 2514, "name": "SILENT", "kind": 16, "kindString": "Enumeration member", @@ -8870,14 +9289,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5284, + "line": 5487, "character": 4 } ], "defaultValue": "\"SILENT\"" }, { - "id": 2505, + "id": 2519, "name": "TRACE", "kind": 16, "kindString": "Enumeration member", @@ -8898,14 +9317,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5347, + "line": 5550, "character": 4 } ], "defaultValue": "\"TRACE\"" }, { - "id": 2502, + "id": 2516, "name": "WARN", "kind": 16, "kindString": "Enumeration member", @@ -8926,7 +9345,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5308, + "line": 5511, "character": 4 } ], @@ -8938,19 +9357,19 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2504, - 2501, - 2503, - 2500, - 2505, - 2502 + 2518, + 2515, + 2517, + 2514, + 2519, + 2516 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5271, + "line": 5474, "character": 12 } ] @@ -9116,14 +9535,14 @@ ] }, { - "id": 2335, + "id": 2349, "name": "PrefetchFeatures", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2336, + "id": 2350, "name": "FullApp", "kind": 16, "kindString": "Enumeration member", @@ -9131,14 +9550,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5200, + "line": 5403, "character": 4 } ], "defaultValue": "\"FullApp\"" }, { - "id": 2338, + "id": 2352, "name": "LiveboardEmbed", "kind": 16, "kindString": "Enumeration member", @@ -9146,14 +9565,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5202, + "line": 5405, "character": 4 } ], "defaultValue": "\"LiveboardEmbed\"" }, { - "id": 2337, + "id": 2351, "name": "SearchEmbed", "kind": 16, "kindString": "Enumeration member", @@ -9161,14 +9580,14 @@ "sources": [ { "fileName": "types.ts", - "line": 5201, + "line": 5404, "character": 4 } ], "defaultValue": "\"SearchEmbed\"" }, { - "id": 2339, + "id": 2353, "name": "VizEmbed", "kind": 16, "kindString": "Enumeration member", @@ -9176,7 +9595,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5203, + "line": 5406, "character": 4 } ], @@ -9188,23 +9607,23 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2336, - 2338, - 2337, - 2339 + 2350, + 2352, + 2351, + 2353 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5199, + "line": 5402, "character": 12 } ] }, { - "id": 2526, + "id": 2540, "name": "PrimaryNavbarVersion", "kind": 4, "kindString": "Enumeration", @@ -9220,7 +9639,7 @@ }, "children": [ { - "id": 2527, + "id": 2541, "name": "Sliding", "kind": 16, "kindString": "Enumeration member", @@ -9243,7 +9662,7 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2527 + 2541 ] } ], @@ -9568,14 +9987,14 @@ ] }, { - "id": 2556, + "id": 2570, "name": "UIPassthroughEvent", "kind": 4, "kindString": "Enumeration", "flags": {}, "children": [ { - "id": 2561, + "id": 2575, "name": "GetAnswerConfig", "kind": 16, "kindString": "Enumeration member", @@ -9590,7 +10009,7 @@ "defaultValue": "\"getAnswerPageConfig\"" }, { - "id": 2560, + "id": 2574, "name": "GetAvailableUIPassthroughs", "kind": 16, "kindString": "Enumeration member", @@ -9605,7 +10024,7 @@ "defaultValue": "\"getAvailableUiPassthroughs\"" }, { - "id": 2559, + "id": 2573, "name": "GetDiscoverabilityStatus", "kind": 16, "kindString": "Enumeration member", @@ -9620,7 +10039,7 @@ "defaultValue": "\"getDiscoverabilityStatus\"" }, { - "id": 2562, + "id": 2576, "name": "GetLiveboardConfig", "kind": 16, "kindString": "Enumeration member", @@ -9635,7 +10054,7 @@ "defaultValue": "\"getPinboardPageConfig\"" }, { - "id": 2557, + "id": 2571, "name": "PinAnswerToLiveboard", "kind": 16, "kindString": "Enumeration member", @@ -9650,7 +10069,7 @@ "defaultValue": "\"addVizToPinboard\"" }, { - "id": 2558, + "id": 2572, "name": "SaveAnswer", "kind": 16, "kindString": "Enumeration member", @@ -9670,12 +10089,12 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2561, - 2560, - 2559, - 2562, - 2557, - 2558 + 2575, + 2574, + 2573, + 2576, + 2571, + 2572 ] } ], @@ -9795,7 +10214,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2533, + "id": 2547, "name": "VizPoint" } } @@ -10983,7 +11402,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2364, + "id": 2378, "name": "DOMSelector" } }, @@ -10995,7 +11414,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2260, + "id": 2274, "name": "AppViewConfig" } } @@ -11606,7 +12025,7 @@ }, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } } @@ -11685,7 +12104,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } }, @@ -11697,7 +12116,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2365, + "id": 2379, "name": "MessageOptions" }, "defaultValue": "..." @@ -12008,7 +12427,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1804, + "id": 1811, "name": "HostEvent" } }, @@ -12127,7 +12546,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2556, + "id": 2570, "name": "UIPassthroughEvent" } } @@ -13334,7 +13753,7 @@ }, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } } @@ -13418,7 +13837,7 @@ }, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } }, @@ -13433,7 +13852,7 @@ }, "type": { "type": "reference", - "id": 2365, + "id": 2379, "name": "MessageOptions" }, "defaultValue": "..." @@ -13766,7 +14185,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1804, + "id": 1811, "name": "HostEvent" } }, @@ -13887,7 +14306,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2556, + "id": 2570, "name": "UIPassthroughEvent" } } @@ -14053,7 +14472,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2364, + "id": 2378, "name": "DOMSelector" } }, @@ -14065,7 +14484,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2148, + "id": 2162, "name": "LiveboardViewConfig" } } @@ -14667,7 +15086,7 @@ }, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } } @@ -14746,7 +15165,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } }, @@ -14758,7 +15177,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2365, + "id": 2379, "name": "MessageOptions" }, "defaultValue": "..." @@ -15069,7 +15488,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1804, + "id": 1811, "name": "HostEvent" } }, @@ -15188,7 +15607,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2556, + "id": 2570, "name": "UIPassthroughEvent" } } @@ -15353,7 +15772,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2364, + "id": 2378, "name": "DOMSelector" } }, @@ -15365,7 +15784,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2214, + "id": 2228, "name": "SageViewConfig" } } @@ -15899,7 +16318,7 @@ }, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } } @@ -15978,7 +16397,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } }, @@ -15990,7 +16409,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2365, + "id": 2379, "name": "MessageOptions" }, "defaultValue": "..." @@ -16302,7 +16721,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1804, + "id": 1811, "name": "HostEvent" } }, @@ -16421,7 +16840,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2556, + "id": 2570, "name": "UIPassthroughEvent" } } @@ -16596,7 +17015,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2107, + "id": 2121, "name": "SearchBarViewConfig" } } @@ -17097,7 +17516,7 @@ }, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } } @@ -17179,7 +17598,7 @@ }, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } }, @@ -17194,7 +17613,7 @@ }, "type": { "type": "reference", - "id": 2365, + "id": 2379, "name": "MessageOptions" }, "defaultValue": "..." @@ -17518,7 +17937,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1804, + "id": 1811, "name": "HostEvent" } }, @@ -17637,7 +18056,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2556, + "id": 2570, "name": "UIPassthroughEvent" } } @@ -17796,7 +18215,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2364, + "id": 2378, "name": "DOMSelector" } }, @@ -17808,7 +18227,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2054, + "id": 2068, "name": "SearchViewConfig" } } @@ -18341,7 +18760,7 @@ }, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } } @@ -18423,7 +18842,7 @@ }, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } }, @@ -18438,7 +18857,7 @@ }, "type": { "type": "reference", - "id": 2365, + "id": 2379, "name": "MessageOptions" }, "defaultValue": "..." @@ -18762,7 +19181,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1804, + "id": 1811, "name": "HostEvent" } }, @@ -18881,7 +19300,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2556, + "id": 2570, "name": "UIPassthroughEvent" } } @@ -20037,7 +20456,7 @@ }, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } } @@ -20119,7 +20538,7 @@ }, "type": { "type": "reference", - "id": 2368, + "id": 2382, "name": "MessageCallback" } }, @@ -20134,7 +20553,7 @@ }, "type": { "type": "reference", - "id": 2365, + "id": 2379, "name": "MessageOptions" }, "defaultValue": "..." @@ -20455,7 +20874,7 @@ "flags": {}, "type": { "type": "reference", - "id": 1804, + "id": 1811, "name": "HostEvent" } }, @@ -20574,7 +20993,7 @@ "flags": {}, "type": { "type": "reference", - "id": 2556, + "id": 2570, "name": "UIPassthroughEvent" } } @@ -20696,7 +21115,7 @@ ] }, { - "id": 2260, + "id": 2274, "name": "AppViewConfig", "kind": 256, "kindString": "Interface", @@ -20712,7 +21131,7 @@ }, "children": [ { - "id": 2294, + "id": 2308, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -20743,20 +21162,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2295, + "id": 2309, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2296, + "id": 2310, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2297, + "id": 2311, "name": "key", "kind": 32768, "flags": {}, @@ -20792,7 +21211,7 @@ } }, { - "id": 2317, + "id": 2331, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -20834,7 +21253,7 @@ } }, { - "id": 2279, + "id": 2293, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -20871,7 +21290,7 @@ } }, { - "id": 2314, + "id": 2328, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -20901,7 +21320,7 @@ ], "type": { "type": "reference", - "id": 2001, + "id": 2015, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -20910,7 +21329,7 @@ } }, { - "id": 2334, + "id": 2348, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -20948,7 +21367,7 @@ } }, { - "id": 2298, + "id": 2312, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -20977,7 +21396,7 @@ ], "type": { "type": "reference", - "id": 2381, + "id": 2395, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -20986,7 +21405,7 @@ } }, { - "id": 2280, + "id": 2294, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -21020,12 +21439,12 @@ ], "type": { "type": "reference", - "id": 2569, + "id": 2583, "name": "DataPanelCustomColumnGroupsAccordionState" } }, { - "id": 2318, + "id": 2332, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -21067,7 +21486,7 @@ } }, { - "id": 2263, + "id": 2277, "name": "disableProfileAndHelp", "kind": 1024, "kindString": "Property", @@ -21105,7 +21524,7 @@ } }, { - "id": 2306, + "id": 2320, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -21143,7 +21562,7 @@ } }, { - "id": 2290, + "id": 2304, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -21181,7 +21600,7 @@ } }, { - "id": 2289, + "id": 2303, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -21213,7 +21632,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -21223,7 +21642,7 @@ } }, { - "id": 2278, + "id": 2292, "name": "discoveryExperience", "kind": 1024, "kindString": "Property", @@ -21261,7 +21680,7 @@ } }, { - "id": 2302, + "id": 2316, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -21302,7 +21721,7 @@ } }, { - "id": 2328, + "id": 2342, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -21344,7 +21763,7 @@ } }, { - "id": 2333, + "id": 2347, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -21386,7 +21805,7 @@ } }, { - "id": 2319, + "id": 2333, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -21428,7 +21847,7 @@ } }, { - "id": 2264, + "id": 2278, "name": "enablePendoHelp", "kind": 1024, "kindString": "Property", @@ -21464,7 +21883,7 @@ } }, { - "id": 2275, + "id": 2289, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -21502,7 +21921,7 @@ } }, { - "id": 2303, + "id": 2317, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -21540,7 +21959,7 @@ } }, { - "id": 2315, + "id": 2329, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -21578,7 +21997,7 @@ } }, { - "id": 2316, + "id": 2330, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -21616,7 +22035,7 @@ } }, { - "id": 2305, + "id": 2319, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -21653,7 +22072,7 @@ } }, { - "id": 2286, + "id": 2300, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -21683,7 +22102,7 @@ ], "type": { "type": "reference", - "id": 2340, + "id": 2354, "name": "FrameParams" }, "inheritedFrom": { @@ -21692,7 +22111,7 @@ } }, { - "id": 2276, + "id": 2290, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -21726,7 +22145,7 @@ } }, { - "id": 2291, + "id": 2305, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -21762,7 +22181,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -21772,7 +22191,7 @@ } }, { - "id": 2323, + "id": 2337, "name": "hiddenHomeLeftNavItems", "kind": 1024, "kindString": "Property", @@ -21804,7 +22223,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2346, + "id": 2360, "name": "HomeLeftNavItem" } }, @@ -21814,7 +22233,7 @@ } }, { - "id": 2321, + "id": 2335, "name": "hiddenHomepageModules", "kind": 1024, "kindString": "Property", @@ -21846,7 +22265,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2357, + "id": 2371, "name": "HomepageModule" } }, @@ -21856,7 +22275,7 @@ } }, { - "id": 2320, + "id": 2334, "name": "hiddenListColumns", "kind": 1024, "kindString": "Property", @@ -21888,7 +22307,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2563, + "id": 2577, "name": "ListPageColumns" } }, @@ -21898,7 +22317,7 @@ } }, { - "id": 2268, + "id": 2282, "name": "hideApplicationSwitcher", "kind": 1024, "kindString": "Property", @@ -21936,7 +22355,7 @@ } }, { - "id": 2265, + "id": 2279, "name": "hideHamburger", "kind": 1024, "kindString": "Property", @@ -21974,7 +22393,7 @@ } }, { - "id": 2262, + "id": 2276, "name": "hideHomepageLeftNav", "kind": 1024, "kindString": "Property", @@ -22012,7 +22431,7 @@ } }, { - "id": 2331, + "id": 2345, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -22054,7 +22473,7 @@ } }, { - "id": 2324, + "id": 2338, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -22096,7 +22515,7 @@ } }, { - "id": 2267, + "id": 2281, "name": "hideNotification", "kind": 1024, "kindString": "Property", @@ -22134,7 +22553,7 @@ } }, { - "id": 2266, + "id": 2280, "name": "hideObjectSearch", "kind": 1024, "kindString": "Property", @@ -22172,7 +22591,7 @@ } }, { - "id": 2273, + "id": 2287, "name": "hideObjects", "kind": 1024, "kindString": "Property", @@ -22209,7 +22628,7 @@ } }, { - "id": 2269, + "id": 2283, "name": "hideOrgSwitcher", "kind": 1024, "kindString": "Property", @@ -22247,7 +22666,7 @@ } }, { - "id": 2282, + "id": 2296, "name": "homePageSearchBarMode", "kind": 1024, "kindString": "Property", @@ -22273,12 +22692,12 @@ ], "type": { "type": "reference", - "id": 2522, + "id": 2536, "name": "HomePageSearchBarMode" } }, { - "id": 2299, + "id": 2313, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -22316,7 +22735,7 @@ } }, { - "id": 2329, + "id": 2343, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -22358,7 +22777,7 @@ } }, { - "id": 2327, + "id": 2341, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -22396,7 +22815,7 @@ } }, { - "id": 2284, + "id": 2298, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -22430,7 +22849,7 @@ } }, { - "id": 2281, + "id": 2295, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -22459,7 +22878,7 @@ } }, { - "id": 2283, + "id": 2297, "name": "isUnifiedSearchExperienceEnabled", "kind": 1024, "kindString": "Property", @@ -22497,7 +22916,7 @@ } }, { - "id": 2308, + "id": 2322, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -22535,7 +22954,7 @@ } }, { - "id": 2293, + "id": 2307, "name": "locale", "kind": 1024, "kindString": "Property", @@ -22573,7 +22992,7 @@ } }, { - "id": 2277, + "id": 2291, "name": "modularHomeExperience", "kind": 1024, "kindString": "Property", @@ -22611,7 +23030,7 @@ } }, { - "id": 2307, + "id": 2321, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -22649,7 +23068,7 @@ } }, { - "id": 2271, + "id": 2285, "name": "pageId", "kind": 1024, "kindString": "Property", @@ -22684,7 +23103,7 @@ } }, { - "id": 2270, + "id": 2284, "name": "path", "kind": 1024, "kindString": "Property", @@ -22718,7 +23137,7 @@ } }, { - "id": 2301, + "id": 2315, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -22756,7 +23175,7 @@ } }, { - "id": 2309, + "id": 2323, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -22794,7 +23213,7 @@ } }, { - "id": 2322, + "id": 2336, "name": "reorderedHomepageModules", "kind": 1024, "kindString": "Property", @@ -22826,7 +23245,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2357, + "id": 2371, "name": "HomepageModule" } }, @@ -22836,7 +23255,7 @@ } }, { - "id": 2312, + "id": 2326, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -22878,7 +23297,7 @@ } }, { - "id": 2313, + "id": 2327, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -22910,7 +23329,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2496, + "id": 2510, "name": "RuntimeParameter" } }, @@ -22920,7 +23339,7 @@ } }, { - "id": 2311, + "id": 2325, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -22957,7 +23376,7 @@ } }, { - "id": 2326, + "id": 2340, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -22999,7 +23418,7 @@ } }, { - "id": 2332, + "id": 2346, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -23041,7 +23460,7 @@ } }, { - "id": 2325, + "id": 2339, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -23083,7 +23502,7 @@ } }, { - "id": 2330, + "id": 2344, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -23125,7 +23544,7 @@ } }, { - "id": 2261, + "id": 2275, "name": "showPrimaryNavbar", "kind": 1024, "kindString": "Property", @@ -23163,7 +23582,7 @@ } }, { - "id": 2272, + "id": 2286, "name": "tag", "kind": 1024, "kindString": "Property", @@ -23197,7 +23616,7 @@ } }, { - "id": 2292, + "id": 2306, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -23233,7 +23652,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -23248,70 +23667,70 @@ "title": "Properties", "kind": 1024, "children": [ - 2294, - 2317, - 2279, - 2314, - 2334, - 2298, - 2280, - 2318, - 2263, - 2306, - 2290, - 2289, - 2278, - 2302, + 2308, + 2331, + 2293, 2328, - 2333, - 2319, - 2264, - 2275, + 2348, + 2312, + 2294, + 2332, + 2277, + 2320, + 2304, 2303, - 2315, + 2292, 2316, + 2342, + 2347, + 2333, + 2278, + 2289, + 2317, + 2329, + 2330, + 2319, + 2300, + 2290, 2305, - 2286, - 2276, - 2291, - 2323, - 2321, - 2320, - 2268, - 2265, - 2262, - 2331, - 2324, - 2267, - 2266, - 2273, - 2269, + 2337, + 2335, + 2334, 2282, - 2299, - 2329, - 2327, - 2284, + 2279, + 2276, + 2345, + 2338, 2281, + 2280, + 2287, 2283, - 2308, - 2293, - 2277, - 2307, - 2271, - 2270, - 2301, - 2309, - 2322, - 2312, + 2296, 2313, - 2311, + 2343, + 2341, + 2298, + 2295, + 2297, + 2322, + 2307, + 2291, + 2321, + 2285, + 2284, + 2315, + 2323, + 2336, 2326, - 2332, + 2327, 2325, - 2330, - 2261, - 2272, - 2292 + 2340, + 2346, + 2339, + 2344, + 2275, + 2286, + 2306 ] } ], @@ -24168,7 +24587,7 @@ ], "type": { "type": "reference", - "id": 2381, + "id": 2395, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -24288,7 +24707,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -24448,7 +24867,7 @@ ], "type": { "type": "reference", - "id": 2340, + "id": 2354, "name": "FrameParams" }, "inheritedFrom": { @@ -24494,7 +24913,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -24774,7 +25193,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -24983,7 +25402,7 @@ ], "type": { "type": "reference", - "id": 2381, + "id": 2395, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -25185,7 +25604,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -25345,7 +25764,7 @@ ], "type": { "type": "reference", - "id": 2340, + "id": 2354, "name": "FrameParams" }, "inheritedFrom": { @@ -25391,7 +25810,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -25816,7 +26235,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -25901,7 +26320,7 @@ ] }, { - "id": 2536, + "id": 2550, "name": "CustomActionPayload", "kind": 256, "kindString": "Interface", @@ -25916,7 +26335,7 @@ }, "children": [ { - "id": 2537, + "id": 2551, "name": "contextMenuPoints", "kind": 1024, "kindString": "Property", @@ -25926,21 +26345,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5244, + "line": 5447, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2538, + "id": 2552, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2539, + "id": 2553, "name": "clickedPoint", "kind": 1024, "kindString": "Property", @@ -25948,18 +26367,18 @@ "sources": [ { "fileName": "types.ts", - "line": 5245, + "line": 5448, "character": 8 } ], "type": { "type": "reference", - "id": 2533, + "id": 2547, "name": "VizPoint" } }, { - "id": 2540, + "id": 2554, "name": "selectedPoints", "kind": 1024, "kindString": "Property", @@ -25967,7 +26386,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5246, + "line": 5449, "character": 8 } ], @@ -25975,7 +26394,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2533, + "id": 2547, "name": "VizPoint" } } @@ -25986,8 +26405,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2539, - 2540 + 2553, + 2554 ] } ] @@ -25995,7 +26414,7 @@ } }, { - "id": 2541, + "id": 2555, "name": "embedAnswerData", "kind": 1024, "kindString": "Property", @@ -26003,21 +26422,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5248, + "line": 5451, "character": 4 } ], "type": { "type": "reflection", "declaration": { - "id": 2542, + "id": 2556, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2550, + "id": 2564, "name": "columns", "kind": 1024, "kindString": "Property", @@ -26025,7 +26444,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5256, + "line": 5459, "character": 8 } ], @@ -26038,7 +26457,7 @@ } }, { - "id": 2551, + "id": 2565, "name": "data", "kind": 1024, "kindString": "Property", @@ -26046,7 +26465,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5257, + "line": 5460, "character": 8 } ], @@ -26059,7 +26478,7 @@ } }, { - "id": 2544, + "id": 2558, "name": "id", "kind": 1024, "kindString": "Property", @@ -26067,7 +26486,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5250, + "line": 5453, "character": 8 } ], @@ -26077,7 +26496,7 @@ } }, { - "id": 2543, + "id": 2557, "name": "name", "kind": 1024, "kindString": "Property", @@ -26085,7 +26504,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5249, + "line": 5452, "character": 8 } ], @@ -26095,7 +26514,7 @@ } }, { - "id": 2545, + "id": 2559, "name": "sources", "kind": 1024, "kindString": "Property", @@ -26103,21 +26522,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5251, + "line": 5454, "character": 8 } ], "type": { "type": "reflection", "declaration": { - "id": 2546, + "id": 2560, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2547, + "id": 2561, "name": "header", "kind": 1024, "kindString": "Property", @@ -26125,21 +26544,21 @@ "sources": [ { "fileName": "types.ts", - "line": 5252, + "line": 5455, "character": 12 } ], "type": { "type": "reflection", "declaration": { - "id": 2548, + "id": 2562, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2549, + "id": 2563, "name": "guid", "kind": 1024, "kindString": "Property", @@ -26147,7 +26566,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5253, + "line": 5456, "character": 16 } ], @@ -26162,7 +26581,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2549 + 2563 ] } ] @@ -26175,7 +26594,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2547 + 2561 ] } ] @@ -26188,23 +26607,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2550, - 2551, - 2544, - 2543, - 2545 + 2564, + 2565, + 2558, + 2557, + 2559 ] } ], "indexSignature": { - "id": 2552, + "id": 2566, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2553, + "id": 2567, "name": "key", "kind": 32768, "flags": {}, @@ -26223,7 +26642,7 @@ } }, { - "id": 2554, + "id": 2568, "name": "session", "kind": 1024, "kindString": "Property", @@ -26231,7 +26650,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5260, + "line": 5463, "character": 4 } ], @@ -26242,7 +26661,7 @@ } }, { - "id": 2555, + "id": 2569, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -26252,7 +26671,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5261, + "line": 5464, "character": 4 } ], @@ -26267,23 +26686,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2537, - 2541, - 2554, - 2555 + 2551, + 2555, + 2568, + 2569 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5243, + "line": 5446, "character": 17 } ] }, { - "id": 2403, + "id": 2417, "name": "CustomCssVariables", "kind": 256, "kindString": "Interface", @@ -26293,7 +26712,7 @@ }, "children": [ { - "id": 2457, + "id": 2471, "name": "--ts-var-answer-chart-hover-background", "kind": 1024, "kindString": "Property", @@ -26316,7 +26735,7 @@ } }, { - "id": 2456, + "id": 2470, "name": "--ts-var-answer-chart-select-background", "kind": 1024, "kindString": "Property", @@ -26339,7 +26758,7 @@ } }, { - "id": 2426, + "id": 2440, "name": "--ts-var-answer-data-panel-background-color", "kind": 1024, "kindString": "Property", @@ -26362,7 +26781,7 @@ } }, { - "id": 2427, + "id": 2441, "name": "--ts-var-answer-edit-panel-background-color", "kind": 1024, "kindString": "Property", @@ -26385,7 +26804,7 @@ } }, { - "id": 2429, + "id": 2443, "name": "--ts-var-answer-view-table-chart-switcher-active-background", "kind": 1024, "kindString": "Property", @@ -26408,7 +26827,7 @@ } }, { - "id": 2428, + "id": 2442, "name": "--ts-var-answer-view-table-chart-switcher-background", "kind": 1024, "kindString": "Property", @@ -26431,7 +26850,7 @@ } }, { - "id": 2408, + "id": 2422, "name": "--ts-var-application-color", "kind": 1024, "kindString": "Property", @@ -26454,7 +26873,7 @@ } }, { - "id": 2469, + "id": 2483, "name": "--ts-var-axis-data-label-color", "kind": 1024, "kindString": "Property", @@ -26477,7 +26896,7 @@ } }, { - "id": 2470, + "id": 2484, "name": "--ts-var-axis-data-label-font-family", "kind": 1024, "kindString": "Property", @@ -26500,7 +26919,7 @@ } }, { - "id": 2467, + "id": 2481, "name": "--ts-var-axis-title-color", "kind": 1024, "kindString": "Property", @@ -26523,7 +26942,7 @@ } }, { - "id": 2468, + "id": 2482, "name": "--ts-var-axis-title-font-family", "kind": 1024, "kindString": "Property", @@ -26546,7 +26965,7 @@ } }, { - "id": 2431, + "id": 2445, "name": "--ts-var-button--icon-border-radius", "kind": 1024, "kindString": "Property", @@ -26569,7 +26988,7 @@ } }, { - "id": 2436, + "id": 2450, "name": "--ts-var-button--primary--active-background", "kind": 1024, "kindString": "Property", @@ -26592,7 +27011,7 @@ } }, { - "id": 2433, + "id": 2447, "name": "--ts-var-button--primary--font-family", "kind": 1024, "kindString": "Property", @@ -26615,7 +27034,7 @@ } }, { - "id": 2435, + "id": 2449, "name": "--ts-var-button--primary--hover-background", "kind": 1024, "kindString": "Property", @@ -26638,7 +27057,7 @@ } }, { - "id": 2434, + "id": 2448, "name": "--ts-var-button--primary-background", "kind": 1024, "kindString": "Property", @@ -26661,7 +27080,7 @@ } }, { - "id": 2432, + "id": 2446, "name": "--ts-var-button--primary-color", "kind": 1024, "kindString": "Property", @@ -26684,7 +27103,7 @@ } }, { - "id": 2441, + "id": 2455, "name": "--ts-var-button--secondary--active-background", "kind": 1024, "kindString": "Property", @@ -26707,7 +27126,7 @@ } }, { - "id": 2438, + "id": 2452, "name": "--ts-var-button--secondary--font-family", "kind": 1024, "kindString": "Property", @@ -26730,7 +27149,7 @@ } }, { - "id": 2440, + "id": 2454, "name": "--ts-var-button--secondary--hover-background", "kind": 1024, "kindString": "Property", @@ -26753,7 +27172,7 @@ } }, { - "id": 2439, + "id": 2453, "name": "--ts-var-button--secondary-background", "kind": 1024, "kindString": "Property", @@ -26776,7 +27195,7 @@ } }, { - "id": 2437, + "id": 2451, "name": "--ts-var-button--secondary-color", "kind": 1024, "kindString": "Property", @@ -26799,7 +27218,7 @@ } }, { - "id": 2445, + "id": 2459, "name": "--ts-var-button--tertiary--active-background", "kind": 1024, "kindString": "Property", @@ -26822,7 +27241,7 @@ } }, { - "id": 2444, + "id": 2458, "name": "--ts-var-button--tertiary--hover-background", "kind": 1024, "kindString": "Property", @@ -26845,7 +27264,7 @@ } }, { - "id": 2443, + "id": 2457, "name": "--ts-var-button--tertiary-background", "kind": 1024, "kindString": "Property", @@ -26868,7 +27287,7 @@ } }, { - "id": 2442, + "id": 2456, "name": "--ts-var-button--tertiary-color", "kind": 1024, "kindString": "Property", @@ -26891,7 +27310,7 @@ } }, { - "id": 2430, + "id": 2444, "name": "--ts-var-button-border-radius", "kind": 1024, "kindString": "Property", @@ -26914,7 +27333,7 @@ } }, { - "id": 2492, + "id": 2506, "name": "--ts-var-checkbox-active-color", "kind": 1024, "kindString": "Property", @@ -26937,7 +27356,7 @@ } }, { - "id": 2495, + "id": 2509, "name": "--ts-var-checkbox-background-color", "kind": 1024, "kindString": "Property", @@ -26960,7 +27379,7 @@ } }, { - "id": 2490, + "id": 2504, "name": "--ts-var-checkbox-border-color", "kind": 1024, "kindString": "Property", @@ -26983,7 +27402,7 @@ } }, { - "id": 2493, + "id": 2507, "name": "--ts-var-checkbox-checked-color", "kind": 1024, "kindString": "Property", @@ -27006,7 +27425,7 @@ } }, { - "id": 2494, + "id": 2508, "name": "--ts-var-checkbox-checked-disabled", "kind": 1024, "kindString": "Property", @@ -27029,7 +27448,7 @@ } }, { - "id": 2489, + "id": 2503, "name": "--ts-var-checkbox-error-border", "kind": 1024, "kindString": "Property", @@ -27052,7 +27471,7 @@ } }, { - "id": 2491, + "id": 2505, "name": "--ts-var-checkbox-hover-border", "kind": 1024, "kindString": "Property", @@ -27075,7 +27494,7 @@ } }, { - "id": 2462, + "id": 2476, "name": "--ts-var-chip--active-background", "kind": 1024, "kindString": "Property", @@ -27098,7 +27517,7 @@ } }, { - "id": 2461, + "id": 2475, "name": "--ts-var-chip--active-color", "kind": 1024, "kindString": "Property", @@ -27121,7 +27540,7 @@ } }, { - "id": 2464, + "id": 2478, "name": "--ts-var-chip--hover-background", "kind": 1024, "kindString": "Property", @@ -27144,7 +27563,7 @@ } }, { - "id": 2463, + "id": 2477, "name": "--ts-var-chip--hover-color", "kind": 1024, "kindString": "Property", @@ -27167,7 +27586,7 @@ } }, { - "id": 2460, + "id": 2474, "name": "--ts-var-chip-background", "kind": 1024, "kindString": "Property", @@ -27190,7 +27609,7 @@ } }, { - "id": 2458, + "id": 2472, "name": "--ts-var-chip-border-radius", "kind": 1024, "kindString": "Property", @@ -27213,7 +27632,7 @@ } }, { - "id": 2459, + "id": 2473, "name": "--ts-var-chip-box-shadow", "kind": 1024, "kindString": "Property", @@ -27236,7 +27655,7 @@ } }, { - "id": 2465, + "id": 2479, "name": "--ts-var-chip-color", "kind": 1024, "kindString": "Property", @@ -27259,7 +27678,7 @@ } }, { - "id": 2466, + "id": 2480, "name": "--ts-var-chip-title-font-family", "kind": 1024, "kindString": "Property", @@ -27282,7 +27701,7 @@ } }, { - "id": 2477, + "id": 2491, "name": "--ts-var-dialog-body-background", "kind": 1024, "kindString": "Property", @@ -27305,7 +27724,7 @@ } }, { - "id": 2478, + "id": 2492, "name": "--ts-var-dialog-body-color", "kind": 1024, "kindString": "Property", @@ -27328,7 +27747,7 @@ } }, { - "id": 2481, + "id": 2495, "name": "--ts-var-dialog-footer-background", "kind": 1024, "kindString": "Property", @@ -27351,7 +27770,7 @@ } }, { - "id": 2479, + "id": 2493, "name": "--ts-var-dialog-header-background", "kind": 1024, "kindString": "Property", @@ -27374,7 +27793,7 @@ } }, { - "id": 2480, + "id": 2494, "name": "--ts-var-dialog-header-color", "kind": 1024, "kindString": "Property", @@ -27397,7 +27816,7 @@ } }, { - "id": 2488, + "id": 2502, "name": "--ts-var-home-favorite-suggestion-card-background", "kind": 1024, "kindString": "Property", @@ -27420,7 +27839,7 @@ } }, { - "id": 2487, + "id": 2501, "name": "--ts-var-home-favorite-suggestion-card-icon-color", "kind": 1024, "kindString": "Property", @@ -27443,7 +27862,7 @@ } }, { - "id": 2486, + "id": 2500, "name": "--ts-var-home-favorite-suggestion-card-text-color", "kind": 1024, "kindString": "Property", @@ -27466,7 +27885,7 @@ } }, { - "id": 2485, + "id": 2499, "name": "--ts-var-home-watchlist-selected-text-color", "kind": 1024, "kindString": "Property", @@ -27489,7 +27908,7 @@ } }, { - "id": 2483, + "id": 2497, "name": "--ts-var-list-hover-background", "kind": 1024, "kindString": "Property", @@ -27512,7 +27931,7 @@ } }, { - "id": 2482, + "id": 2496, "name": "--ts-var-list-selected-background", "kind": 1024, "kindString": "Property", @@ -27535,7 +27954,7 @@ } }, { - "id": 2475, + "id": 2489, "name": "--ts-var-menu--hover-background", "kind": 1024, "kindString": "Property", @@ -27558,7 +27977,7 @@ } }, { - "id": 2472, + "id": 2486, "name": "--ts-var-menu-background", "kind": 1024, "kindString": "Property", @@ -27581,7 +28000,7 @@ } }, { - "id": 2471, + "id": 2485, "name": "--ts-var-menu-color", "kind": 1024, "kindString": "Property", @@ -27604,7 +28023,7 @@ } }, { - "id": 2473, + "id": 2487, "name": "--ts-var-menu-font-family", "kind": 1024, "kindString": "Property", @@ -27627,7 +28046,7 @@ } }, { - "id": 2476, + "id": 2490, "name": "--ts-var-menu-selected-text-color", "kind": 1024, "kindString": "Property", @@ -27650,7 +28069,7 @@ } }, { - "id": 2474, + "id": 2488, "name": "--ts-var-menu-text-transform", "kind": 1024, "kindString": "Property", @@ -27673,7 +28092,7 @@ } }, { - "id": 2409, + "id": 2423, "name": "--ts-var-nav-background", "kind": 1024, "kindString": "Property", @@ -27696,7 +28115,7 @@ } }, { - "id": 2410, + "id": 2424, "name": "--ts-var-nav-color", "kind": 1024, "kindString": "Property", @@ -27719,7 +28138,7 @@ } }, { - "id": 2404, + "id": 2418, "name": "--ts-var-root-background", "kind": 1024, "kindString": "Property", @@ -27742,7 +28161,7 @@ } }, { - "id": 2405, + "id": 2419, "name": "--ts-var-root-color", "kind": 1024, "kindString": "Property", @@ -27765,7 +28184,7 @@ } }, { - "id": 2406, + "id": 2420, "name": "--ts-var-root-font-family", "kind": 1024, "kindString": "Property", @@ -27788,7 +28207,7 @@ } }, { - "id": 2407, + "id": 2421, "name": "--ts-var-root-text-transform", "kind": 1024, "kindString": "Property", @@ -27811,7 +28230,7 @@ } }, { - "id": 2418, + "id": 2432, "name": "--ts-var-search-auto-complete-background", "kind": 1024, "kindString": "Property", @@ -27834,7 +28253,7 @@ } }, { - "id": 2422, + "id": 2436, "name": "--ts-var-search-auto-complete-font-color", "kind": 1024, "kindString": "Property", @@ -27857,7 +28276,7 @@ } }, { - "id": 2423, + "id": 2437, "name": "--ts-var-search-auto-complete-subtext-font-color", "kind": 1024, "kindString": "Property", @@ -27880,7 +28299,7 @@ } }, { - "id": 2421, + "id": 2435, "name": "--ts-var-search-bar-auto-complete-hover-background", "kind": 1024, "kindString": "Property", @@ -27903,7 +28322,7 @@ } }, { - "id": 2417, + "id": 2431, "name": "--ts-var-search-bar-background", "kind": 1024, "kindString": "Property", @@ -27926,7 +28345,7 @@ } }, { - "id": 2420, + "id": 2434, "name": "--ts-var-search-bar-navigation-help-text-background", "kind": 1024, "kindString": "Property", @@ -27949,7 +28368,7 @@ } }, { - "id": 2414, + "id": 2428, "name": "--ts-var-search-bar-text-font-color", "kind": 1024, "kindString": "Property", @@ -27972,7 +28391,7 @@ } }, { - "id": 2415, + "id": 2429, "name": "--ts-var-search-bar-text-font-family", "kind": 1024, "kindString": "Property", @@ -27995,7 +28414,7 @@ } }, { - "id": 2416, + "id": 2430, "name": "--ts-var-search-bar-text-font-style", "kind": 1024, "kindString": "Property", @@ -28018,7 +28437,7 @@ } }, { - "id": 2411, + "id": 2425, "name": "--ts-var-search-data-button-background", "kind": 1024, "kindString": "Property", @@ -28041,7 +28460,7 @@ } }, { - "id": 2412, + "id": 2426, "name": "--ts-var-search-data-button-font-color", "kind": 1024, "kindString": "Property", @@ -28064,7 +28483,7 @@ } }, { - "id": 2413, + "id": 2427, "name": "--ts-var-search-data-button-font-family", "kind": 1024, "kindString": "Property", @@ -28087,7 +28506,7 @@ } }, { - "id": 2419, + "id": 2433, "name": "--ts-var-search-navigation-button-background", "kind": 1024, "kindString": "Property", @@ -28110,7 +28529,7 @@ } }, { - "id": 2484, + "id": 2498, "name": "--ts-var-segment-control-hover-background", "kind": 1024, "kindString": "Property", @@ -28133,7 +28552,7 @@ } }, { - "id": 2424, + "id": 2438, "name": "--ts-var-spotter-input-background", "kind": 1024, "kindString": "Property", @@ -28156,7 +28575,7 @@ } }, { - "id": 2425, + "id": 2439, "name": "--ts-var-spotter-prompt-background", "kind": 1024, "kindString": "Property", @@ -28179,7 +28598,7 @@ } }, { - "id": 2454, + "id": 2468, "name": "--ts-var-viz-background", "kind": 1024, "kindString": "Property", @@ -28202,7 +28621,7 @@ } }, { - "id": 2452, + "id": 2466, "name": "--ts-var-viz-border-radius", "kind": 1024, "kindString": "Property", @@ -28225,7 +28644,7 @@ } }, { - "id": 2453, + "id": 2467, "name": "--ts-var-viz-box-shadow", "kind": 1024, "kindString": "Property", @@ -28248,7 +28667,7 @@ } }, { - "id": 2449, + "id": 2463, "name": "--ts-var-viz-description-color", "kind": 1024, "kindString": "Property", @@ -28271,7 +28690,7 @@ } }, { - "id": 2450, + "id": 2464, "name": "--ts-var-viz-description-font-family", "kind": 1024, "kindString": "Property", @@ -28294,7 +28713,7 @@ } }, { - "id": 2451, + "id": 2465, "name": "--ts-var-viz-description-text-transform", "kind": 1024, "kindString": "Property", @@ -28317,7 +28736,7 @@ } }, { - "id": 2455, + "id": 2469, "name": "--ts-var-viz-legend-hover-background", "kind": 1024, "kindString": "Property", @@ -28340,7 +28759,7 @@ } }, { - "id": 2446, + "id": 2460, "name": "--ts-var-viz-title-color", "kind": 1024, "kindString": "Property", @@ -28363,7 +28782,7 @@ } }, { - "id": 2447, + "id": 2461, "name": "--ts-var-viz-title-font-family", "kind": 1024, "kindString": "Property", @@ -28386,7 +28805,7 @@ } }, { - "id": 2448, + "id": 2462, "name": "--ts-var-viz-title-text-transform", "kind": 1024, "kindString": "Property", @@ -28414,98 +28833,98 @@ "title": "Properties", "kind": 1024, "children": [ - 2457, - 2456, - 2426, - 2427, - 2429, - 2428, - 2408, - 2469, + 2471, 2470, - 2467, - 2468, - 2431, - 2436, - 2433, - 2435, - 2434, - 2432, - 2441, - 2438, 2440, - 2439, - 2437, - 2445, - 2444, + 2441, 2443, 2442, - 2430, + 2422, + 2483, + 2484, + 2481, + 2482, + 2445, + 2450, + 2447, + 2449, + 2448, + 2446, + 2455, + 2452, + 2454, + 2453, + 2451, + 2459, + 2458, + 2457, + 2456, + 2444, + 2506, + 2509, + 2504, + 2507, + 2508, + 2503, + 2505, + 2476, + 2475, + 2478, + 2477, + 2474, + 2472, + 2473, + 2479, + 2480, + 2491, 2492, 2495, - 2490, 2493, 2494, + 2502, + 2501, + 2500, + 2499, + 2497, + 2496, 2489, - 2491, - 2462, - 2461, - 2464, - 2463, - 2460, - 2458, - 2459, - 2465, - 2466, - 2477, - 2478, - 2481, - 2479, - 2480, - 2488, - 2487, 2486, 2485, - 2483, - 2482, - 2475, - 2472, - 2471, - 2473, - 2476, - 2474, - 2409, - 2410, - 2404, - 2405, - 2406, - 2407, - 2418, - 2422, + 2487, + 2490, + 2488, 2423, - 2421, - 2417, - 2420, - 2414, - 2415, - 2416, - 2411, - 2412, - 2413, - 2419, - 2484, 2424, + 2418, + 2419, + 2420, + 2421, + 2432, + 2436, + 2437, + 2435, + 2431, + 2434, + 2428, + 2429, + 2430, 2425, - 2454, - 2452, - 2453, - 2449, - 2450, - 2451, - 2455, - 2446, - 2447, - 2448 + 2426, + 2427, + 2433, + 2498, + 2438, + 2439, + 2468, + 2466, + 2467, + 2463, + 2464, + 2465, + 2469, + 2460, + 2461, + 2462 ] } ], @@ -28518,7 +28937,7 @@ ] }, { - "id": 2391, + "id": 2405, "name": "CustomStyles", "kind": 256, "kindString": "Interface", @@ -28528,7 +28947,7 @@ }, "children": [ { - "id": 2393, + "id": 2407, "name": "customCSS", "kind": 1024, "kindString": "Property", @@ -28544,12 +28963,12 @@ ], "type": { "type": "reference", - "id": 2394, + "id": 2408, "name": "customCssInterface" } }, { - "id": 2392, + "id": 2406, "name": "customCSSUrl", "kind": 1024, "kindString": "Property", @@ -28574,8 +28993,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2393, - 2392 + 2407, + 2406 ] } ], @@ -28588,7 +29007,7 @@ ] }, { - "id": 2381, + "id": 2395, "name": "CustomisationsInterface", "kind": 256, "kindString": "Interface", @@ -28604,7 +29023,7 @@ }, "children": [ { - "id": 2383, + "id": 2397, "name": "content", "kind": 1024, "kindString": "Property", @@ -28621,14 +29040,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2384, + "id": 2398, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2386, + "id": 2400, "name": "stringIDs", "kind": 1024, "kindString": "Property", @@ -28658,7 +29077,7 @@ } }, { - "id": 2387, + "id": 2401, "name": "stringIDsUrl", "kind": 1024, "kindString": "Property", @@ -28678,7 +29097,7 @@ } }, { - "id": 2385, + "id": 2399, "name": "strings", "kind": 1024, "kindString": "Property", @@ -28721,21 +29140,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2386, - 2387, - 2385 + 2400, + 2401, + 2399 ] } ], "indexSignature": { - "id": 2388, + "id": 2402, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2389, + "id": 2403, "name": "key", "kind": 32768, "flags": {}, @@ -28754,7 +29173,7 @@ } }, { - "id": 2390, + "id": 2404, "name": "iconSpriteUrl", "kind": 1024, "kindString": "Property", @@ -28774,7 +29193,7 @@ } }, { - "id": 2382, + "id": 2396, "name": "style", "kind": 1024, "kindString": "Property", @@ -28790,7 +29209,7 @@ ], "type": { "type": "reference", - "id": 2391, + "id": 2405, "name": "CustomStyles" } } @@ -28800,9 +29219,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2383, - 2390, - 2382 + 2397, + 2404, + 2396 ] } ], @@ -28815,7 +29234,7 @@ ] }, { - "id": 2005, + "id": 2019, "name": "EmbedConfig", "kind": 256, "kindString": "Interface", @@ -28831,7 +29250,7 @@ }, "children": [ { - "id": 2047, + "id": 2061, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -28861,20 +29280,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2048, + "id": 2062, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2049, + "id": 2063, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2050, + "id": 2064, "name": "key", "kind": 32768, "flags": {}, @@ -28906,7 +29325,7 @@ } }, { - "id": 2008, + "id": 2022, "name": "authEndpoint", "kind": 1024, "kindString": "Property", @@ -28929,7 +29348,7 @@ } }, { - "id": 2029, + "id": 2043, "name": "authTriggerContainer", "kind": 1024, "kindString": "Property", @@ -28971,7 +29390,7 @@ } }, { - "id": 2031, + "id": 2045, "name": "authTriggerText", "kind": 1024, "kindString": "Property", @@ -29000,7 +29419,7 @@ } }, { - "id": 2007, + "id": 2021, "name": "authType", "kind": 1024, "kindString": "Property", @@ -29022,7 +29441,7 @@ } }, { - "id": 2020, + "id": 2034, "name": "autoLogin", "kind": 1024, "kindString": "Property", @@ -29051,7 +29470,7 @@ } }, { - "id": 2032, + "id": 2046, "name": "blockNonEmbedFullAppAccess", "kind": 1024, "kindString": "Property", @@ -29084,7 +29503,7 @@ } }, { - "id": 2023, + "id": 2037, "name": "callPrefetch", "kind": 1024, "kindString": "Property", @@ -29113,7 +29532,7 @@ } }, { - "id": 2044, + "id": 2058, "name": "currencyFormat", "kind": 1024, "kindString": "Property", @@ -29142,7 +29561,7 @@ } }, { - "id": 2051, + "id": 2065, "name": "customVariablesForThirdPartyTools", "kind": 1024, "kindString": "Property", @@ -29185,7 +29604,7 @@ } }, { - "id": 2028, + "id": 2042, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -29210,12 +29629,12 @@ ], "type": { "type": "reference", - "id": 2381, + "id": 2395, "name": "CustomisationsInterface" } }, { - "id": 2042, + "id": 2056, "name": "dateFormatLocale", "kind": 1024, "kindString": "Property", @@ -29244,7 +29663,7 @@ } }, { - "id": 2025, + "id": 2039, "name": "detectCookieAccessSlow", "kind": 1024, "kindString": "Property", @@ -29274,7 +29693,7 @@ } }, { - "id": 2053, + "id": 2067, "name": "disableFullscreenPresentation", "kind": 1024, "kindString": "Property", @@ -29311,7 +29730,7 @@ } }, { - "id": 2046, + "id": 2060, "name": "disableLoginFailurePage", "kind": 1024, "kindString": "Property", @@ -29340,7 +29759,7 @@ } }, { - "id": 2021, + "id": 2035, "name": "disableLoginRedirect", "kind": 1024, "kindString": "Property", @@ -29373,7 +29792,7 @@ } }, { - "id": 2052, + "id": 2066, "name": "disablePreauthCache", "kind": 1024, "kindString": "Property", @@ -29393,7 +29812,7 @@ } }, { - "id": 2041, + "id": 2055, "name": "disableSDKTracking", "kind": 1024, "kindString": "Property", @@ -29422,7 +29841,7 @@ } }, { - "id": 2019, + "id": 2033, "name": "ignoreNoCookieAccess", "kind": 1024, "kindString": "Property", @@ -29451,7 +29870,7 @@ } }, { - "id": 2014, + "id": 2028, "name": "inPopup", "kind": 1024, "kindString": "Property", @@ -29485,7 +29904,7 @@ } }, { - "id": 2040, + "id": 2054, "name": "logLevel", "kind": 1024, "kindString": "Property", @@ -29518,12 +29937,12 @@ ], "type": { "type": "reference", - "id": 2499, + "id": 2513, "name": "LogLevel" } }, { - "id": 2022, + "id": 2036, "name": "loginFailedMessage", "kind": 1024, "kindString": "Property", @@ -29552,7 +29971,7 @@ } }, { - "id": 2013, + "id": 2027, "name": "noRedirect", "kind": 1024, "kindString": "Property", @@ -29585,7 +30004,7 @@ } }, { - "id": 2043, + "id": 2057, "name": "numberFormatLocale", "kind": 1024, "kindString": "Property", @@ -29614,7 +30033,7 @@ } }, { - "id": 2012, + "id": 2026, "name": "password", "kind": 1024, "kindString": "Property", @@ -29638,7 +30057,7 @@ } }, { - "id": 2038, + "id": 2052, "name": "pendoTrackingKey", "kind": 1024, "kindString": "Property", @@ -29667,7 +30086,7 @@ } }, { - "id": 2024, + "id": 2038, "name": "queueMultiRenders", "kind": 1024, "kindString": "Property", @@ -29700,7 +30119,7 @@ } }, { - "id": 2015, + "id": 2029, "name": "redirectPath", "kind": 1024, "kindString": "Property", @@ -29730,7 +30149,7 @@ } }, { - "id": 2017, + "id": 2031, "name": "shouldEncodeUrlQueryParams", "kind": 1024, "kindString": "Property", @@ -29759,7 +30178,7 @@ } }, { - "id": 2039, + "id": 2053, "name": "suppressErrorAlerts", "kind": 1024, "kindString": "Property", @@ -29788,7 +30207,7 @@ } }, { - "id": 2018, + "id": 2032, "name": "suppressNoCookieAccessAlert", "kind": 1024, "kindString": "Property", @@ -29817,7 +30236,7 @@ } }, { - "id": 2027, + "id": 2041, "name": "suppressSageEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -29840,7 +30259,7 @@ } }, { - "id": 2026, + "id": 2040, "name": "suppressSearchEmbedBetaWarning", "kind": 1024, "kindString": "Property", @@ -29869,7 +30288,7 @@ } }, { - "id": 2006, + "id": 2020, "name": "thoughtSpotHost", "kind": 1024, "kindString": "Property", @@ -29890,7 +30309,7 @@ } }, { - "id": 2030, + "id": 2044, "name": "useEventForSAMLPopup", "kind": 1024, "kindString": "Property", @@ -29913,7 +30332,7 @@ } }, { - "id": 2011, + "id": 2025, "name": "username", "kind": 1024, "kindString": "Property", @@ -29936,7 +30355,7 @@ } }, { - "id": 2009, + "id": 2023, "name": "getAuthToken", "kind": 2048, "kindString": "Method", @@ -29952,7 +30371,7 @@ ], "signatures": [ { - "id": 2010, + "id": 2024, "name": "getAuthToken", "kind": 4096, "kindString": "Call signature", @@ -29980,49 +30399,49 @@ "title": "Properties", "kind": 1024, "children": [ - 2047, - 2008, - 2029, - 2031, - 2007, - 2020, - 2032, - 2023, - 2044, - 2051, - 2028, - 2042, - 2025, - 2053, - 2046, - 2021, - 2052, - 2041, - 2019, - 2014, - 2040, + 2061, 2022, - 2013, 2043, - 2012, - 2038, - 2024, - 2015, - 2017, + 2045, + 2021, + 2034, + 2046, + 2037, + 2058, + 2065, + 2042, + 2056, 2039, - 2018, + 2067, + 2060, + 2035, + 2066, + 2055, + 2033, + 2028, + 2054, + 2036, 2027, + 2057, 2026, - 2006, - 2030, - 2011 + 2052, + 2038, + 2029, + 2031, + 2053, + 2032, + 2041, + 2040, + 2020, + 2044, + 2025 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2009 + 2023 ] } ], @@ -30035,7 +30454,7 @@ ] }, { - "id": 2340, + "id": 2354, "name": "FrameParams", "kind": 256, "kindString": "Interface", @@ -30051,7 +30470,7 @@ }, "children": [ { - "id": 2342, + "id": 2356, "name": "height", "kind": 1024, "kindString": "Property", @@ -30083,7 +30502,7 @@ } }, { - "id": 2343, + "id": 2357, "name": "loading", "kind": 1024, "kindString": "Property", @@ -30119,7 +30538,7 @@ } }, { - "id": 2341, + "id": 2355, "name": "width", "kind": 1024, "kindString": "Property", @@ -30156,9 +30575,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2342, - 2343, - 2341 + 2356, + 2357, + 2355 ] } ], @@ -30170,7 +30589,7 @@ } ], "indexSignature": { - "id": 2344, + "id": 2358, "name": "__index", "kind": 8192, "kindString": "Index signature", @@ -30180,7 +30599,7 @@ }, "parameters": [ { - "id": 2345, + "id": 2359, "name": "key", "kind": 32768, "flags": {}, @@ -30214,7 +30633,7 @@ } }, { - "id": 2148, + "id": 2162, "name": "LiveboardViewConfig", "kind": 256, "kindString": "Interface", @@ -30230,7 +30649,7 @@ }, "children": [ { - "id": 2159, + "id": 2173, "name": "activeTabId", "kind": 1024, "kindString": "Property", @@ -30264,7 +30683,7 @@ } }, { - "id": 2177, + "id": 2191, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -30295,20 +30714,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2178, + "id": 2192, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2179, + "id": 2193, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2180, + "id": 2194, "name": "key", "kind": 32768, "flags": {}, @@ -30344,7 +30763,7 @@ } }, { - "id": 2200, + "id": 2214, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -30386,7 +30805,7 @@ } }, { - "id": 2197, + "id": 2211, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -30416,7 +30835,7 @@ ], "type": { "type": "reference", - "id": 2001, + "id": 2015, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -30425,7 +30844,7 @@ } }, { - "id": 2213, + "id": 2227, "name": "coverAndFilterOptionInPDF", "kind": 1024, "kindString": "Property", @@ -30463,7 +30882,7 @@ } }, { - "id": 2181, + "id": 2195, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -30492,7 +30911,7 @@ ], "type": { "type": "reference", - "id": 2381, + "id": 2395, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -30501,7 +30920,7 @@ } }, { - "id": 2201, + "id": 2215, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -30543,7 +30962,7 @@ } }, { - "id": 2150, + "id": 2164, "name": "defaultHeight", "kind": 1024, "kindString": "Property", @@ -30581,7 +31000,7 @@ } }, { - "id": 2189, + "id": 2203, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -30619,7 +31038,7 @@ } }, { - "id": 2173, + "id": 2187, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -30657,7 +31076,7 @@ } }, { - "id": 2172, + "id": 2186, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -30689,7 +31108,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -30699,7 +31118,7 @@ } }, { - "id": 2185, + "id": 2199, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -30740,7 +31159,7 @@ } }, { - "id": 2207, + "id": 2221, "name": "enable2ColumnLayout", "kind": 1024, "kindString": "Property", @@ -30782,7 +31201,7 @@ } }, { - "id": 2212, + "id": 2226, "name": "enableAskSage", "kind": 1024, "kindString": "Property", @@ -30824,7 +31243,7 @@ } }, { - "id": 2202, + "id": 2216, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -30866,7 +31285,7 @@ } }, { - "id": 2186, + "id": 2200, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -30904,7 +31323,7 @@ } }, { - "id": 2151, + "id": 2165, "name": "enableVizTransformations", "kind": 1024, "kindString": "Property", @@ -30940,7 +31359,7 @@ } }, { - "id": 2198, + "id": 2212, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -30978,7 +31397,7 @@ } }, { - "id": 2199, + "id": 2213, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -31016,7 +31435,7 @@ } }, { - "id": 2188, + "id": 2202, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -31053,7 +31472,7 @@ } }, { - "id": 2169, + "id": 2183, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -31083,7 +31502,7 @@ ], "type": { "type": "reference", - "id": 2340, + "id": 2354, "name": "FrameParams" }, "inheritedFrom": { @@ -31092,7 +31511,7 @@ } }, { - "id": 2149, + "id": 2163, "name": "fullHeight", "kind": 1024, "kindString": "Property", @@ -31126,7 +31545,7 @@ } }, { - "id": 2174, + "id": 2188, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -31162,7 +31581,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -31172,7 +31591,7 @@ } }, { - "id": 2165, + "id": 2179, "name": "hiddenTabs", "kind": 1024, "kindString": "Property", @@ -31209,7 +31628,7 @@ } }, { - "id": 2210, + "id": 2224, "name": "hideIrrelevantChipsInLiveboardTabs", "kind": 1024, "kindString": "Property", @@ -31251,7 +31670,7 @@ } }, { - "id": 2203, + "id": 2217, "name": "hideLiveboardHeader", "kind": 1024, "kindString": "Property", @@ -31293,7 +31712,7 @@ } }, { - "id": 2160, + "id": 2174, "name": "hideTabPanel", "kind": 1024, "kindString": "Property", @@ -31327,7 +31746,7 @@ } }, { - "id": 2182, + "id": 2196, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -31365,7 +31784,7 @@ } }, { - "id": 2208, + "id": 2222, "name": "isLiveboardCompactHeaderEnabled", "kind": 1024, "kindString": "Property", @@ -31407,7 +31826,7 @@ } }, { - "id": 2206, + "id": 2220, "name": "isLiveboardHeaderSticky", "kind": 1024, "kindString": "Property", @@ -31445,7 +31864,7 @@ } }, { - "id": 2167, + "id": 2181, "name": "isLiveboardStylingAndGroupingEnabled", "kind": 1024, "kindString": "Property", @@ -31479,7 +31898,7 @@ } }, { - "id": 2191, + "id": 2205, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -31517,7 +31936,7 @@ } }, { - "id": 2152, + "id": 2166, "name": "liveboardId", "kind": 1024, "kindString": "Property", @@ -31551,7 +31970,7 @@ } }, { - "id": 2158, + "id": 2172, "name": "liveboardV2", "kind": 1024, "kindString": "Property", @@ -31585,7 +32004,7 @@ } }, { - "id": 2176, + "id": 2190, "name": "locale", "kind": 1024, "kindString": "Property", @@ -31623,7 +32042,7 @@ } }, { - "id": 2190, + "id": 2204, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -31661,7 +32080,7 @@ } }, { - "id": 2184, + "id": 2198, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -31699,7 +32118,7 @@ } }, { - "id": 2155, + "id": 2169, "name": "preventLiveboardFilterRemoval", "kind": 1024, "kindString": "Property", @@ -31733,7 +32152,7 @@ } }, { - "id": 2192, + "id": 2206, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -31771,7 +32190,7 @@ } }, { - "id": 2195, + "id": 2209, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -31813,7 +32232,7 @@ } }, { - "id": 2196, + "id": 2210, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -31845,7 +32264,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2496, + "id": 2510, "name": "RuntimeParameter" } }, @@ -31855,7 +32274,7 @@ } }, { - "id": 2194, + "id": 2208, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -31892,7 +32311,7 @@ } }, { - "id": 2205, + "id": 2219, "name": "showLiveboardDescription", "kind": 1024, "kindString": "Property", @@ -31934,7 +32353,7 @@ } }, { - "id": 2211, + "id": 2225, "name": "showLiveboardReverifyBanner", "kind": 1024, "kindString": "Property", @@ -31976,7 +32395,7 @@ } }, { - "id": 2204, + "id": 2218, "name": "showLiveboardTitle", "kind": 1024, "kindString": "Property", @@ -32018,7 +32437,7 @@ } }, { - "id": 2209, + "id": 2223, "name": "showLiveboardVerifiedBadge", "kind": 1024, "kindString": "Property", @@ -32060,7 +32479,7 @@ } }, { - "id": 2161, + "id": 2175, "name": "showPreviewLoader", "kind": 1024, "kindString": "Property", @@ -32094,7 +32513,7 @@ } }, { - "id": 2175, + "id": 2189, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -32130,7 +32549,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -32140,7 +32559,7 @@ } }, { - "id": 2166, + "id": 2180, "name": "visibleTabs", "kind": 1024, "kindString": "Property", @@ -32177,7 +32596,7 @@ } }, { - "id": 2156, + "id": 2170, "name": "visibleVizs", "kind": 1024, "kindString": "Property", @@ -32214,7 +32633,7 @@ } }, { - "id": 2154, + "id": 2168, "name": "vizId", "kind": 1024, "kindString": "Property", @@ -32253,57 +32672,57 @@ "title": "Properties", "kind": 1024, "children": [ - 2159, - 2177, - 2200, - 2197, - 2213, - 2181, - 2201, - 2150, - 2189, 2173, - 2172, - 2185, - 2207, - 2212, - 2202, + 2191, + 2214, + 2211, + 2227, + 2195, + 2215, + 2164, + 2203, + 2187, 2186, - 2151, - 2198, 2199, + 2221, + 2226, + 2216, + 2200, + 2165, + 2212, + 2213, + 2202, + 2183, + 2163, 2188, - 2169, - 2149, + 2179, + 2224, + 2217, 2174, - 2165, - 2210, - 2203, - 2160, - 2182, - 2208, - 2206, - 2167, - 2191, - 2152, - 2158, - 2176, - 2190, - 2184, - 2155, - 2192, - 2195, 2196, - 2194, + 2222, + 2220, + 2181, 2205, - 2211, + 2166, + 2172, + 2190, 2204, + 2198, + 2169, + 2206, 2209, - 2161, + 2210, + 2208, + 2219, + 2225, + 2218, + 2223, 2175, - 2166, - 2156, - 2154 + 2189, + 2180, + 2170, + 2168 ] } ], @@ -32444,7 +32863,7 @@ ] }, { - "id": 2496, + "id": 2510, "name": "RuntimeParameter", "kind": 256, "kindString": "Interface", @@ -32454,7 +32873,7 @@ }, "children": [ { - "id": 2497, + "id": 2511, "name": "name", "kind": 1024, "kindString": "Property", @@ -32475,7 +32894,7 @@ } }, { - "id": 2498, + "id": 2512, "name": "value", "kind": 1024, "kindString": "Property", @@ -32514,8 +32933,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2497, - 2498 + 2511, + 2512 ] } ], @@ -32528,7 +32947,7 @@ ] }, { - "id": 2214, + "id": 2228, "name": "SageViewConfig", "kind": 256, "kindString": "Interface", @@ -32548,7 +32967,7 @@ }, "children": [ { - "id": 2243, + "id": 2257, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -32579,20 +32998,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2244, + "id": 2258, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2245, + "id": 2259, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2246, + "id": 2260, "name": "key", "kind": 32768, "flags": {}, @@ -32628,7 +33047,7 @@ } }, { - "id": 2231, + "id": 2245, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -32670,7 +33089,7 @@ } }, { - "id": 2228, + "id": 2242, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -32700,7 +33119,7 @@ ], "type": { "type": "reference", - "id": 2001, + "id": 2015, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -32709,7 +33128,7 @@ } }, { - "id": 2247, + "id": 2261, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -32738,7 +33157,7 @@ ], "type": { "type": "reference", - "id": 2381, + "id": 2395, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -32747,7 +33166,7 @@ } }, { - "id": 2232, + "id": 2246, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -32789,7 +33208,7 @@ } }, { - "id": 2224, + "id": 2238, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -32812,7 +33231,7 @@ } }, { - "id": 2255, + "id": 2269, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -32850,7 +33269,7 @@ } }, { - "id": 2219, + "id": 2233, "name": "disableWorksheetChange", "kind": 1024, "kindString": "Property", @@ -32879,7 +33298,7 @@ } }, { - "id": 2239, + "id": 2253, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -32917,7 +33336,7 @@ } }, { - "id": 2238, + "id": 2252, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -32949,7 +33368,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -32959,7 +33378,7 @@ } }, { - "id": 2251, + "id": 2265, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -33000,7 +33419,7 @@ } }, { - "id": 2233, + "id": 2247, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -33042,7 +33461,7 @@ } }, { - "id": 2252, + "id": 2266, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -33080,7 +33499,7 @@ } }, { - "id": 2229, + "id": 2243, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -33118,7 +33537,7 @@ } }, { - "id": 2230, + "id": 2244, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -33156,7 +33575,7 @@ } }, { - "id": 2254, + "id": 2268, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -33193,7 +33612,7 @@ } }, { - "id": 2235, + "id": 2249, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -33223,7 +33642,7 @@ ], "type": { "type": "reference", - "id": 2340, + "id": 2354, "name": "FrameParams" }, "inheritedFrom": { @@ -33232,7 +33651,7 @@ } }, { - "id": 2240, + "id": 2254, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -33268,7 +33687,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -33278,7 +33697,7 @@ } }, { - "id": 2221, + "id": 2235, "name": "hideAutocompleteSuggestions", "kind": 1024, "kindString": "Property", @@ -33307,7 +33726,7 @@ } }, { - "id": 2218, + "id": 2232, "name": "hideSageAnswerHeader", "kind": 1024, "kindString": "Property", @@ -33336,7 +33755,7 @@ } }, { - "id": 2223, + "id": 2237, "name": "hideSampleQuestions", "kind": 1024, "kindString": "Property", @@ -33370,7 +33789,7 @@ } }, { - "id": 2217, + "id": 2231, "name": "hideSearchBarTitle", "kind": 1024, "kindString": "Property", @@ -33403,7 +33822,7 @@ } }, { - "id": 2220, + "id": 2234, "name": "hideWorksheetSelector", "kind": 1024, "kindString": "Property", @@ -33432,7 +33851,7 @@ } }, { - "id": 2248, + "id": 2262, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -33470,7 +33889,7 @@ } }, { - "id": 2257, + "id": 2271, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -33508,7 +33927,7 @@ } }, { - "id": 2242, + "id": 2256, "name": "locale", "kind": 1024, "kindString": "Property", @@ -33546,7 +33965,7 @@ } }, { - "id": 2256, + "id": 2270, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -33584,7 +34003,7 @@ } }, { - "id": 2250, + "id": 2264, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -33622,7 +34041,7 @@ } }, { - "id": 2226, + "id": 2240, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -33664,7 +34083,7 @@ } }, { - "id": 2227, + "id": 2241, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -33696,7 +34115,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2496, + "id": 2510, "name": "RuntimeParameter" } }, @@ -33706,7 +34125,7 @@ } }, { - "id": 2225, + "id": 2239, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -33740,7 +34159,7 @@ } }, { - "id": 2259, + "id": 2273, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -33777,7 +34196,7 @@ } }, { - "id": 2215, + "id": 2229, "name": "showObjectResults", "kind": 1024, "kindString": "Property", @@ -33806,7 +34225,7 @@ } }, { - "id": 2222, + "id": 2236, "name": "showObjectSuggestions", "kind": 1024, "kindString": "Property", @@ -33835,7 +34254,7 @@ } }, { - "id": 2241, + "id": 2255, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -33871,7 +34290,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -33886,41 +34305,41 @@ "title": "Properties", "kind": 1024, "children": [ - 2243, - 2231, - 2228, - 2247, - 2232, - 2224, - 2255, - 2219, - 2239, + 2257, + 2245, + 2242, + 2261, + 2246, 2238, - 2251, + 2269, 2233, + 2253, 2252, - 2229, - 2230, + 2265, + 2247, + 2266, + 2243, + 2244, + 2268, + 2249, 2254, 2235, - 2240, - 2221, - 2218, - 2223, - 2217, - 2220, - 2248, - 2257, - 2242, + 2232, + 2237, + 2231, + 2234, + 2262, + 2271, 2256, - 2250, - 2226, - 2227, - 2225, - 2259, - 2215, - 2222, - 2241 + 2270, + 2264, + 2240, + 2241, + 2239, + 2273, + 2229, + 2236, + 2255 ] } ], @@ -33974,7 +34393,7 @@ ] }, { - "id": 2107, + "id": 2121, "name": "SearchBarViewConfig", "kind": 256, "kindString": "Interface", @@ -33989,7 +34408,7 @@ }, "children": [ { - "id": 2122, + "id": 2136, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -34020,20 +34439,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2123, + "id": 2137, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2124, + "id": 2138, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2125, + "id": 2139, "name": "key", "kind": 32768, "flags": {}, @@ -34069,7 +34488,7 @@ } }, { - "id": 2145, + "id": 2159, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -34111,7 +34530,7 @@ } }, { - "id": 2142, + "id": 2156, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -34141,7 +34560,7 @@ ], "type": { "type": "reference", - "id": 2001, + "id": 2015, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -34150,7 +34569,7 @@ } }, { - "id": 2126, + "id": 2140, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -34179,7 +34598,7 @@ ], "type": { "type": "reference", - "id": 2381, + "id": 2395, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -34188,7 +34607,7 @@ } }, { - "id": 2146, + "id": 2160, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -34230,7 +34649,7 @@ } }, { - "id": 2109, + "id": 2123, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -34264,7 +34683,7 @@ } }, { - "id": 2108, + "id": 2122, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -34305,7 +34724,7 @@ } }, { - "id": 2134, + "id": 2148, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -34343,7 +34762,7 @@ } }, { - "id": 2118, + "id": 2132, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -34381,7 +34800,7 @@ } }, { - "id": 2117, + "id": 2131, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -34413,7 +34832,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -34423,7 +34842,7 @@ } }, { - "id": 2130, + "id": 2144, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -34464,7 +34883,7 @@ } }, { - "id": 2147, + "id": 2161, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -34506,7 +34925,7 @@ } }, { - "id": 2131, + "id": 2145, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -34544,7 +34963,7 @@ } }, { - "id": 2143, + "id": 2157, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -34582,7 +35001,7 @@ } }, { - "id": 2144, + "id": 2158, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -34620,7 +35039,7 @@ } }, { - "id": 2112, + "id": 2126, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -34654,7 +35073,7 @@ } }, { - "id": 2133, + "id": 2147, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -34691,7 +35110,7 @@ } }, { - "id": 2114, + "id": 2128, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -34721,7 +35140,7 @@ ], "type": { "type": "reference", - "id": 2340, + "id": 2354, "name": "FrameParams" }, "inheritedFrom": { @@ -34730,7 +35149,7 @@ } }, { - "id": 2119, + "id": 2133, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -34766,7 +35185,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -34776,7 +35195,7 @@ } }, { - "id": 2127, + "id": 2141, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -34814,7 +35233,7 @@ } }, { - "id": 2136, + "id": 2150, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -34852,7 +35271,7 @@ } }, { - "id": 2121, + "id": 2135, "name": "locale", "kind": 1024, "kindString": "Property", @@ -34890,7 +35309,7 @@ } }, { - "id": 2135, + "id": 2149, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -34928,7 +35347,7 @@ } }, { - "id": 2129, + "id": 2143, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -34966,7 +35385,7 @@ } }, { - "id": 2137, + "id": 2151, "name": "primaryAction", "kind": 1024, "kindString": "Property", @@ -35004,7 +35423,7 @@ } }, { - "id": 2140, + "id": 2154, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -35046,7 +35465,7 @@ } }, { - "id": 2141, + "id": 2155, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -35078,7 +35497,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2496, + "id": 2510, "name": "RuntimeParameter" } }, @@ -35088,7 +35507,7 @@ } }, { - "id": 2111, + "id": 2125, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -35122,7 +35541,7 @@ } }, { - "id": 2139, + "id": 2153, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -35159,7 +35578,7 @@ } }, { - "id": 2110, + "id": 2124, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -35193,7 +35612,7 @@ } }, { - "id": 2120, + "id": 2134, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -35229,7 +35648,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -35244,37 +35663,37 @@ "title": "Properties", "kind": 1024, "children": [ + 2136, + 2159, + 2156, + 2140, + 2160, + 2123, 2122, + 2148, + 2132, + 2131, + 2144, + 2161, 2145, - 2142, + 2157, + 2158, 2126, - 2146, - 2109, - 2108, - 2134, - 2118, - 2117, - 2130, 2147, - 2131, - 2143, - 2144, - 2112, + 2128, 2133, - 2114, - 2119, - 2127, - 2136, - 2121, - 2135, - 2129, - 2137, - 2140, 2141, - 2111, - 2139, - 2110, - 2120 + 2150, + 2135, + 2149, + 2143, + 2151, + 2154, + 2155, + 2125, + 2153, + 2124, + 2134 ] } ], @@ -35297,7 +35716,7 @@ ] }, { - "id": 2054, + "id": 2068, "name": "SearchViewConfig", "kind": 256, "kindString": "Interface", @@ -35313,7 +35732,7 @@ }, "children": [ { - "id": 2090, + "id": 2104, "name": "additionalFlags", "kind": 1024, "kindString": "Property", @@ -35344,20 +35763,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2091, + "id": 2105, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2092, + "id": 2106, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2093, + "id": 2107, "name": "key", "kind": 32768, "flags": {}, @@ -35393,7 +35812,7 @@ } }, { - "id": 2066, + "id": 2080, "name": "answerId", "kind": 1024, "kindString": "Property", @@ -35427,7 +35846,7 @@ } }, { - "id": 2056, + "id": 2070, "name": "collapseDataPanel", "kind": 1024, "kindString": "Property", @@ -35461,7 +35880,7 @@ } }, { - "id": 2055, + "id": 2069, "name": "collapseDataSources", "kind": 1024, "kindString": "Property", @@ -35495,7 +35914,7 @@ } }, { - "id": 2078, + "id": 2092, "name": "collapseSearchBar", "kind": 1024, "kindString": "Property", @@ -35537,7 +35956,7 @@ } }, { - "id": 2069, + "id": 2083, "name": "collapseSearchBarInitially", "kind": 1024, "kindString": "Property", @@ -35574,7 +35993,7 @@ } }, { - "id": 2075, + "id": 2089, "name": "contextMenuTrigger", "kind": 1024, "kindString": "Property", @@ -35604,7 +36023,7 @@ ], "type": { "type": "reference", - "id": 2001, + "id": 2015, "name": "ContextMenuTriggerOptions" }, "inheritedFrom": { @@ -35613,7 +36032,7 @@ } }, { - "id": 2094, + "id": 2108, "name": "customizations", "kind": 1024, "kindString": "Property", @@ -35642,7 +36061,7 @@ ], "type": { "type": "reference", - "id": 2381, + "id": 2395, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -35651,7 +36070,7 @@ } }, { - "id": 2071, + "id": 2085, "name": "dataPanelCustomGroupsAccordionInitialState", "kind": 1024, "kindString": "Property", @@ -35689,7 +36108,7 @@ } }, { - "id": 2079, + "id": 2093, "name": "dataPanelV2", "kind": 1024, "kindString": "Property", @@ -35731,7 +36150,7 @@ } }, { - "id": 2062, + "id": 2076, "name": "dataSource", "kind": 1024, "kindString": "Property", @@ -35765,7 +36184,7 @@ } }, { - "id": 2061, + "id": 2075, "name": "dataSources", "kind": 1024, "kindString": "Property", @@ -35801,7 +36220,7 @@ } }, { - "id": 2102, + "id": 2116, "name": "disableRedirectionLinksInNewTab", "kind": 1024, "kindString": "Property", @@ -35839,7 +36258,7 @@ } }, { - "id": 2086, + "id": 2100, "name": "disabledActionReason", "kind": 1024, "kindString": "Property", @@ -35877,7 +36296,7 @@ } }, { - "id": 2085, + "id": 2099, "name": "disabledActions", "kind": 1024, "kindString": "Property", @@ -35909,7 +36328,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -35919,7 +36338,7 @@ } }, { - "id": 2098, + "id": 2112, "name": "doNotTrackPreRenderSize", "kind": 1024, "kindString": "Property", @@ -35960,7 +36379,7 @@ } }, { - "id": 2080, + "id": 2094, "name": "enableCustomColumnGroups", "kind": 1024, "kindString": "Property", @@ -36002,7 +36421,7 @@ } }, { - "id": 2059, + "id": 2073, "name": "enableSearchAssist", "kind": 1024, "kindString": "Property", @@ -36036,7 +36455,7 @@ } }, { - "id": 2099, + "id": 2113, "name": "enableV2Shell_experimental", "kind": 1024, "kindString": "Property", @@ -36074,7 +36493,7 @@ } }, { - "id": 2076, + "id": 2090, "name": "excludeRuntimeFiltersfromURL", "kind": 1024, "kindString": "Property", @@ -36112,7 +36531,7 @@ } }, { - "id": 2077, + "id": 2091, "name": "excludeRuntimeParametersfromURL", "kind": 1024, "kindString": "Property", @@ -36150,7 +36569,7 @@ } }, { - "id": 2065, + "id": 2079, "name": "excludeSearchTokenStringFromURL", "kind": 1024, "kindString": "Property", @@ -36184,7 +36603,7 @@ } }, { - "id": 2101, + "id": 2115, "name": "exposeTranslationIDs", "kind": 1024, "kindString": "Property", @@ -36221,7 +36640,7 @@ } }, { - "id": 2072, + "id": 2086, "name": "focusSearchBarOnRender", "kind": 1024, "kindString": "Property", @@ -36259,7 +36678,7 @@ } }, { - "id": 2060, + "id": 2074, "name": "forceTable", "kind": 1024, "kindString": "Property", @@ -36293,7 +36712,7 @@ } }, { - "id": 2082, + "id": 2096, "name": "frameParams", "kind": 1024, "kindString": "Property", @@ -36323,7 +36742,7 @@ ], "type": { "type": "reference", - "id": 2340, + "id": 2354, "name": "FrameParams" }, "inheritedFrom": { @@ -36332,7 +36751,7 @@ } }, { - "id": 2087, + "id": 2101, "name": "hiddenActions", "kind": 1024, "kindString": "Property", @@ -36368,7 +36787,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -36378,7 +36797,7 @@ } }, { - "id": 2057, + "id": 2071, "name": "hideDataSources", "kind": 1024, "kindString": "Property", @@ -36412,7 +36831,7 @@ } }, { - "id": 2058, + "id": 2072, "name": "hideResults", "kind": 1024, "kindString": "Property", @@ -36446,7 +36865,7 @@ } }, { - "id": 2067, + "id": 2081, "name": "hideSearchBar", "kind": 1024, "kindString": "Property", @@ -36480,7 +36899,7 @@ } }, { - "id": 2095, + "id": 2109, "name": "insertAsSibling", "kind": 1024, "kindString": "Property", @@ -36518,7 +36937,7 @@ } }, { - "id": 2070, + "id": 2084, "name": "isOnBeforeGetVizDataInterceptEnabled", "kind": 1024, "kindString": "Property", @@ -36548,7 +36967,7 @@ } }, { - "id": 2104, + "id": 2118, "name": "linkOverride", "kind": 1024, "kindString": "Property", @@ -36586,7 +37005,7 @@ } }, { - "id": 2089, + "id": 2103, "name": "locale", "kind": 1024, "kindString": "Property", @@ -36624,7 +37043,7 @@ } }, { - "id": 2103, + "id": 2117, "name": "overrideOrgId", "kind": 1024, "kindString": "Property", @@ -36662,7 +37081,7 @@ } }, { - "id": 2097, + "id": 2111, "name": "preRenderId", "kind": 1024, "kindString": "Property", @@ -36700,7 +37119,7 @@ } }, { - "id": 2073, + "id": 2087, "name": "runtimeFilters", "kind": 1024, "kindString": "Property", @@ -36742,7 +37161,7 @@ } }, { - "id": 2074, + "id": 2088, "name": "runtimeParameters", "kind": 1024, "kindString": "Property", @@ -36774,7 +37193,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2496, + "id": 2510, "name": "RuntimeParameter" } }, @@ -36784,7 +37203,7 @@ } }, { - "id": 2064, + "id": 2078, "name": "searchOptions", "kind": 1024, "kindString": "Property", @@ -36814,7 +37233,7 @@ } }, { - "id": 2063, + "id": 2077, "name": "searchQuery", "kind": 1024, "kindString": "Property", @@ -36843,7 +37262,7 @@ } }, { - "id": 2106, + "id": 2120, "name": "showAlerts", "kind": 1024, "kindString": "Property", @@ -36880,7 +37299,7 @@ } }, { - "id": 2068, + "id": 2082, "name": "useLastSelectedSources", "kind": 1024, "kindString": "Property", @@ -36910,7 +37329,7 @@ } }, { - "id": 2088, + "id": 2102, "name": "visibleActions", "kind": 1024, "kindString": "Property", @@ -36946,7 +37365,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -36961,49 +37380,49 @@ "title": "Properties", "kind": 1024, "children": [ - 2090, - 2066, - 2056, - 2055, - 2078, + 2104, + 2080, + 2070, 2069, + 2092, + 2083, + 2089, + 2108, + 2085, + 2093, + 2076, 2075, + 2116, + 2100, + 2099, + 2112, 2094, - 2071, + 2073, + 2113, + 2090, + 2091, 2079, - 2062, - 2061, - 2102, + 2115, 2086, - 2085, - 2098, - 2080, - 2059, - 2099, - 2076, - 2077, - 2065, + 2074, + 2096, 2101, + 2071, 2072, - 2060, - 2082, - 2087, - 2057, - 2058, - 2067, - 2095, - 2070, - 2104, - 2089, + 2081, + 2109, + 2084, + 2118, 2103, - 2097, - 2073, - 2074, - 2064, - 2063, - 2106, - 2068, - 2088 + 2117, + 2111, + 2087, + 2088, + 2078, + 2077, + 2120, + 2082, + 2102 ] } ], @@ -37296,7 +37715,7 @@ ], "type": { "type": "reference", - "id": 2381, + "id": 2395, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -37413,7 +37832,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -37569,7 +37988,7 @@ ], "type": { "type": "reference", - "id": 2340, + "id": 2354, "name": "FrameParams" }, "inheritedFrom": { @@ -37614,7 +38033,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -37887,7 +38306,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -38101,7 +38520,7 @@ ], "type": { "type": "reference", - "id": 2381, + "id": 2395, "name": "CustomisationsInterface" }, "inheritedFrom": { @@ -38290,7 +38709,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -38446,7 +38865,7 @@ ], "type": { "type": "reference", - "id": 2340, + "id": 2354, "name": "FrameParams" }, "inheritedFrom": { @@ -38491,7 +38910,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -38889,7 +39308,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 1870, + "id": 1884, "name": "Action" } }, @@ -39046,14 +39465,14 @@ ] }, { - "id": 2533, + "id": 2547, "name": "VizPoint", "kind": 256, "kindString": "Interface", "flags": {}, "children": [ { - "id": 2534, + "id": 2548, "name": "selectedAttributes", "kind": 1024, "kindString": "Property", @@ -39061,7 +39480,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5236, + "line": 5439, "character": 4 } ], @@ -39074,7 +39493,7 @@ } }, { - "id": 2535, + "id": 2549, "name": "selectedMeasures", "kind": 1024, "kindString": "Property", @@ -39082,7 +39501,7 @@ "sources": [ { "fileName": "types.ts", - "line": 5237, + "line": 5440, "character": 4 } ], @@ -39100,21 +39519,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2534, - 2535 + 2548, + 2549 ] } ], "sources": [ { "fileName": "types.ts", - "line": 5235, + "line": 5438, "character": 17 } ] }, { - "id": 2394, + "id": 2408, "name": "customCssInterface", "kind": 256, "kindString": "Interface", @@ -39124,7 +39543,7 @@ }, "children": [ { - "id": 2396, + "id": 2410, "name": "rules_UNSTABLE", "kind": 1024, "kindString": "Property", @@ -39154,20 +39573,20 @@ "type": { "type": "reflection", "declaration": { - "id": 2397, + "id": 2411, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2398, + "id": 2412, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2399, + "id": 2413, "name": "selector", "kind": 32768, "flags": {}, @@ -39180,7 +39599,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2400, + "id": 2414, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -39193,14 +39612,14 @@ } ], "indexSignature": { - "id": 2401, + "id": 2415, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2402, + "id": 2416, "name": "declaration", "kind": 32768, "flags": {}, @@ -39222,7 +39641,7 @@ } }, { - "id": 2395, + "id": 2409, "name": "variables", "kind": 1024, "kindString": "Property", @@ -39241,7 +39660,7 @@ ], "type": { "type": "reference", - "id": 2403, + "id": 2417, "name": "CustomCssVariables" } } @@ -39251,8 +39670,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2396, - 2395 + 2410, + 2409 ] } ], @@ -39557,7 +39976,7 @@ ] }, { - "id": 2364, + "id": 2378, "name": "DOMSelector", "kind": 4194304, "kindString": "Type alias", @@ -39584,7 +40003,7 @@ } }, { - "id": 2368, + "id": 2382, "name": "MessageCallback", "kind": 4194304, "kindString": "Type alias", @@ -39599,7 +40018,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2369, + "id": 2383, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -39622,7 +40041,7 @@ ], "signatures": [ { - "id": 2370, + "id": 2384, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -39632,19 +40051,19 @@ }, "parameters": [ { - "id": 2371, + "id": 2385, "name": "payload", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "id": 2376, + "id": 2390, "name": "MessagePayload" } }, { - "id": 2372, + "id": 2386, "name": "responder", "kind": 32768, "kindString": "Parameter", @@ -39654,7 +40073,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2373, + "id": 2387, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -39668,7 +40087,7 @@ ], "signatures": [ { - "id": 2374, + "id": 2388, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -39678,7 +40097,7 @@ }, "parameters": [ { - "id": 2375, + "id": 2389, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -39709,7 +40128,7 @@ } }, { - "id": 2365, + "id": 2379, "name": "MessageOptions", "kind": 4194304, "kindString": "Type alias", @@ -39733,14 +40152,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2366, + "id": 2380, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2367, + "id": 2381, "name": "start", "kind": 1024, "kindString": "Property", @@ -39768,7 +40187,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2367 + 2381 ] } ], @@ -39783,7 +40202,7 @@ } }, { - "id": 2376, + "id": 2390, "name": "MessagePayload", "kind": 4194304, "kindString": "Type alias", @@ -39807,14 +40226,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2377, + "id": 2391, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2379, + "id": 2393, "name": "data", "kind": 1024, "kindString": "Property", @@ -39832,7 +40251,7 @@ } }, { - "id": 2380, + "id": 2394, "name": "status", "kind": 1024, "kindString": "Property", @@ -39852,7 +40271,7 @@ } }, { - "id": 2378, + "id": 2392, "name": "type", "kind": 1024, "kindString": "Property", @@ -39875,9 +40294,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2379, - 2380, - 2378 + 2393, + 2394, + 2392 ] } ], @@ -40290,7 +40709,7 @@ }, "type": { "type": "reference", - "id": 2005, + "id": 2019, "name": "EmbedConfig" } } @@ -40390,7 +40809,7 @@ }, "type": { "type": "reference", - "id": 2005, + "id": 2019, "name": "EmbedConfig" } } @@ -40537,7 +40956,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2335, + "id": 2349, "name": "PrefetchFeatures" } } @@ -40609,7 +41028,7 @@ ] }, { - "id": 2573, + "id": 2587, "name": "resetCachedAuthToken", "kind": 64, "kindString": "Function", @@ -40625,7 +41044,7 @@ ], "signatures": [ { - "id": 2574, + "id": 2588, "name": "resetCachedAuthToken", "kind": 4096, "kindString": "Call signature", @@ -40819,7 +41238,7 @@ ] }, { - "id": 2506, + "id": 2520, "name": "uploadMixpanelEvent", "kind": 64, "kindString": "Function", @@ -40833,7 +41252,7 @@ ], "signatures": [ { - "id": 2507, + "id": 2521, "name": "uploadMixpanelEvent", "kind": 4096, "kindString": "Call signature", @@ -40843,7 +41262,7 @@ }, "parameters": [ { - "id": 2508, + "id": 2522, "name": "eventId", "kind": 32768, "kindString": "Parameter", @@ -40855,7 +41274,7 @@ } }, { - "id": 2509, + "id": 2523, "name": "eventProps", "kind": 32768, "kindString": "Parameter", @@ -40866,7 +41285,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2510, + "id": 2524, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -40889,28 +41308,28 @@ "title": "Enumerations", "kind": 4, "children": [ - 1870, + 1884, 1543, 1528, 1535, 1690, - 2001, - 2569, - 1866, + 2015, + 2583, + 1880, 1722, - 2346, - 2528, - 2522, - 2357, - 1804, - 2530, - 2563, - 2499, + 2360, + 2542, + 2536, + 2371, + 1811, + 2544, + 2577, + 2513, 1681, - 2335, - 2526, + 2349, + 2540, 1706, - 2556 + 2570 ] }, { @@ -40933,28 +41352,28 @@ "title": "Interfaces", "kind": 256, "children": [ - 2260, + 2274, 1545, 1109, 1347, - 2536, - 2403, - 2391, - 2381, - 2005, - 2340, - 2148, + 2550, + 2417, + 2405, + 2395, + 2019, + 2354, + 2162, 1702, - 2496, - 2214, - 2107, - 2054, + 2510, + 2228, + 2121, + 2068, 1671, 1081, 1313, 1678, - 2533, - 2394, + 2547, + 2408, 21, 25 ] @@ -40963,10 +41382,10 @@ "title": "Type aliases", "kind": 4194304, "children": [ - 2364, - 2368, - 2365, - 2376 + 2378, + 2382, + 2379, + 2390 ] }, { @@ -40982,9 +41401,9 @@ 1, 4, 7, - 2573, + 2587, 37, - 2506 + 2520 ] } ],