@thoughtspot/visual-embed-sdk 1.49.3 → 1.50.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (241) hide show
  1. package/cjs/package.json +1 -1
  2. package/cjs/src/authToken.spec.js +5 -0
  3. package/cjs/src/authToken.spec.js.map +1 -1
  4. package/cjs/src/css-variables.d.ts +59 -0
  5. package/cjs/src/css-variables.d.ts.map +1 -1
  6. package/cjs/src/embed/app.d.ts +31 -2
  7. package/cjs/src/embed/app.d.ts.map +1 -1
  8. package/cjs/src/embed/app.js +19 -2
  9. package/cjs/src/embed/app.js.map +1 -1
  10. package/cjs/src/embed/app.spec.js +112 -2
  11. package/cjs/src/embed/app.spec.js.map +1 -1
  12. package/cjs/src/embed/conversation.d.ts +38 -0
  13. package/cjs/src/embed/conversation.d.ts.map +1 -1
  14. package/cjs/src/embed/conversation.js +12 -2
  15. package/cjs/src/embed/conversation.js.map +1 -1
  16. package/cjs/src/embed/conversation.spec.js +53 -0
  17. package/cjs/src/embed/conversation.spec.js.map +1 -1
  18. package/cjs/src/embed/embedConfig.spec.d.ts +2 -0
  19. package/cjs/src/embed/embedConfig.spec.d.ts.map +1 -0
  20. package/cjs/src/embed/embedConfig.spec.js +74 -0
  21. package/cjs/src/embed/embedConfig.spec.js.map +1 -0
  22. package/cjs/src/embed/events.spec.js +593 -0
  23. package/cjs/src/embed/events.spec.js.map +1 -1
  24. package/cjs/src/embed/host-events.spec.d.ts +2 -0
  25. package/cjs/src/embed/host-events.spec.d.ts.map +1 -0
  26. package/cjs/src/embed/host-events.spec.js +1325 -0
  27. package/cjs/src/embed/host-events.spec.js.map +1 -0
  28. package/cjs/src/embed/hostEventClient/contracts.d.ts +36 -14
  29. package/cjs/src/embed/hostEventClient/contracts.d.ts.map +1 -1
  30. package/cjs/src/embed/hostEventClient/contracts.js +10 -1
  31. package/cjs/src/embed/hostEventClient/contracts.js.map +1 -1
  32. package/cjs/src/embed/hostEventClient/host-event-client.d.ts +1 -0
  33. package/cjs/src/embed/hostEventClient/host-event-client.d.ts.map +1 -1
  34. package/cjs/src/embed/hostEventClient/host-event-client.js +8 -0
  35. package/cjs/src/embed/hostEventClient/host-event-client.js.map +1 -1
  36. package/cjs/src/embed/hostEventClient/host-event-client.spec.js +209 -0
  37. package/cjs/src/embed/hostEventClient/host-event-client.spec.js.map +1 -1
  38. package/cjs/src/embed/hostEventClient/utils.d.ts +2 -0
  39. package/cjs/src/embed/hostEventClient/utils.d.ts.map +1 -1
  40. package/cjs/src/embed/hostEventClient/utils.js +32 -2
  41. package/cjs/src/embed/hostEventClient/utils.js.map +1 -1
  42. package/cjs/src/embed/hostEventClient/utils.spec.js +178 -0
  43. package/cjs/src/embed/hostEventClient/utils.spec.js.map +1 -1
  44. package/cjs/src/embed/liveboard.d.ts +6 -0
  45. package/cjs/src/embed/liveboard.d.ts.map +1 -1
  46. package/cjs/src/embed/liveboard.js.map +1 -1
  47. package/cjs/src/embed/spotter-viz-utils.d.ts +34 -0
  48. package/cjs/src/embed/spotter-viz-utils.d.ts.map +1 -1
  49. package/cjs/src/embed/spotter-viz-utils.js.map +1 -1
  50. package/cjs/src/embed/spotter-viz-utils.spec.js +17 -0
  51. package/cjs/src/embed/spotter-viz-utils.spec.js.map +1 -1
  52. package/cjs/src/embed/ts-embed.d.ts.map +1 -1
  53. package/cjs/src/embed/ts-embed.js +14 -7
  54. package/cjs/src/embed/ts-embed.js.map +1 -1
  55. package/cjs/src/embed/ts-embed.spec.js +146 -0
  56. package/cjs/src/embed/ts-embed.spec.js.map +1 -1
  57. package/cjs/src/errors.d.ts +1 -0
  58. package/cjs/src/errors.d.ts.map +1 -1
  59. package/cjs/src/errors.js +1 -0
  60. package/cjs/src/errors.js.map +1 -1
  61. package/cjs/src/index.d.ts +2 -2
  62. package/cjs/src/index.d.ts.map +1 -1
  63. package/cjs/src/index.js +3 -2
  64. package/cjs/src/index.js.map +1 -1
  65. package/cjs/src/mixpanel-service.spec.js +14 -0
  66. package/cjs/src/mixpanel-service.spec.js.map +1 -1
  67. package/cjs/src/react/util.spec.js +251 -0
  68. package/cjs/src/react/util.spec.js.map +1 -1
  69. package/cjs/src/types.d.ts +212 -8
  70. package/cjs/src/types.d.ts.map +1 -1
  71. package/cjs/src/types.js +185 -3
  72. package/cjs/src/types.js.map +1 -1
  73. package/cjs/src/utils/custom-actions.spec.js +26 -0
  74. package/cjs/src/utils/custom-actions.spec.js.map +1 -1
  75. package/cjs/src/utils/processData.spec.js +123 -0
  76. package/cjs/src/utils/processData.spec.js.map +1 -1
  77. package/cjs/src/utils/processTrigger.spec.js +61 -0
  78. package/cjs/src/utils/processTrigger.spec.js.map +1 -1
  79. package/cjs/src/utils/reporting.spec.js +21 -0
  80. package/cjs/src/utils/reporting.spec.js.map +1 -1
  81. package/cjs/src/utils/sessionInfoService.spec.d.ts +2 -0
  82. package/cjs/src/utils/sessionInfoService.spec.d.ts.map +1 -0
  83. package/cjs/src/utils/sessionInfoService.spec.js +130 -0
  84. package/cjs/src/utils/sessionInfoService.spec.js.map +1 -0
  85. package/cjs/src/utils.spec.js +158 -0
  86. package/cjs/src/utils.spec.js.map +1 -1
  87. package/dist/{index-DsSQndIB.js → index-fCne7kmU.js} +1 -1
  88. package/dist/src/css-variables.d.ts +59 -0
  89. package/dist/src/css-variables.d.ts.map +1 -1
  90. package/dist/src/embed/app.d.ts +31 -2
  91. package/dist/src/embed/app.d.ts.map +1 -1
  92. package/dist/src/embed/conversation.d.ts +38 -0
  93. package/dist/src/embed/conversation.d.ts.map +1 -1
  94. package/dist/src/embed/embedConfig.spec.d.ts +2 -0
  95. package/dist/src/embed/embedConfig.spec.d.ts.map +1 -0
  96. package/dist/src/embed/host-events.spec.d.ts +2 -0
  97. package/dist/src/embed/host-events.spec.d.ts.map +1 -0
  98. package/dist/src/embed/hostEventClient/contracts.d.ts +36 -14
  99. package/dist/src/embed/hostEventClient/contracts.d.ts.map +1 -1
  100. package/dist/src/embed/hostEventClient/host-event-client.d.ts +1 -0
  101. package/dist/src/embed/hostEventClient/host-event-client.d.ts.map +1 -1
  102. package/dist/src/embed/hostEventClient/utils.d.ts +2 -0
  103. package/dist/src/embed/hostEventClient/utils.d.ts.map +1 -1
  104. package/dist/src/embed/liveboard.d.ts +6 -0
  105. package/dist/src/embed/liveboard.d.ts.map +1 -1
  106. package/dist/src/embed/spotter-viz-utils.d.ts +34 -0
  107. package/dist/src/embed/spotter-viz-utils.d.ts.map +1 -1
  108. package/dist/src/embed/ts-embed.d.ts.map +1 -1
  109. package/dist/src/errors.d.ts +1 -0
  110. package/dist/src/errors.d.ts.map +1 -1
  111. package/dist/src/index.d.ts +2 -2
  112. package/dist/src/index.d.ts.map +1 -1
  113. package/dist/src/types.d.ts +212 -8
  114. package/dist/src/types.d.ts.map +1 -1
  115. package/dist/src/utils/sessionInfoService.spec.d.ts +2 -0
  116. package/dist/src/utils/sessionInfoService.spec.d.ts.map +1 -0
  117. package/dist/tsembed-react.es.js +482 -86
  118. package/dist/tsembed-react.js +481 -85
  119. package/dist/tsembed.es.js +483 -87
  120. package/dist/tsembed.js +481 -85
  121. package/dist/visual-embed-sdk-react-full.d.ts +407 -23
  122. package/dist/visual-embed-sdk-react.d.ts +407 -23
  123. package/dist/visual-embed-sdk.d.ts +411 -23
  124. package/lib/package.json +1 -1
  125. package/lib/src/authToken.spec.js +5 -0
  126. package/lib/src/authToken.spec.js.map +1 -1
  127. package/lib/src/css-variables.d.ts +59 -0
  128. package/lib/src/css-variables.d.ts.map +1 -1
  129. package/lib/src/embed/app.d.ts +31 -2
  130. package/lib/src/embed/app.d.ts.map +1 -1
  131. package/lib/src/embed/app.js +19 -2
  132. package/lib/src/embed/app.js.map +1 -1
  133. package/lib/src/embed/app.spec.js +112 -2
  134. package/lib/src/embed/app.spec.js.map +1 -1
  135. package/lib/src/embed/conversation.d.ts +38 -0
  136. package/lib/src/embed/conversation.d.ts.map +1 -1
  137. package/lib/src/embed/conversation.js +11 -1
  138. package/lib/src/embed/conversation.js.map +1 -1
  139. package/lib/src/embed/conversation.spec.js +54 -1
  140. package/lib/src/embed/conversation.spec.js.map +1 -1
  141. package/lib/src/embed/embedConfig.spec.d.ts +2 -0
  142. package/lib/src/embed/embedConfig.spec.d.ts.map +1 -0
  143. package/lib/src/embed/embedConfig.spec.js +72 -0
  144. package/lib/src/embed/embedConfig.spec.js.map +1 -0
  145. package/lib/src/embed/events.spec.js +593 -0
  146. package/lib/src/embed/events.spec.js.map +1 -1
  147. package/lib/src/embed/host-events.spec.d.ts +2 -0
  148. package/lib/src/embed/host-events.spec.d.ts.map +1 -0
  149. package/lib/src/embed/host-events.spec.js +1322 -0
  150. package/lib/src/embed/host-events.spec.js.map +1 -0
  151. package/lib/src/embed/hostEventClient/contracts.d.ts +36 -14
  152. package/lib/src/embed/hostEventClient/contracts.d.ts.map +1 -1
  153. package/lib/src/embed/hostEventClient/contracts.js +9 -0
  154. package/lib/src/embed/hostEventClient/contracts.js.map +1 -1
  155. package/lib/src/embed/hostEventClient/host-event-client.d.ts +1 -0
  156. package/lib/src/embed/hostEventClient/host-event-client.d.ts.map +1 -1
  157. package/lib/src/embed/hostEventClient/host-event-client.js +9 -1
  158. package/lib/src/embed/hostEventClient/host-event-client.js.map +1 -1
  159. package/lib/src/embed/hostEventClient/host-event-client.spec.js +209 -0
  160. package/lib/src/embed/hostEventClient/host-event-client.spec.js.map +1 -1
  161. package/lib/src/embed/hostEventClient/utils.d.ts +2 -0
  162. package/lib/src/embed/hostEventClient/utils.d.ts.map +1 -1
  163. package/lib/src/embed/hostEventClient/utils.js +28 -1
  164. package/lib/src/embed/hostEventClient/utils.js.map +1 -1
  165. package/lib/src/embed/hostEventClient/utils.spec.js +179 -1
  166. package/lib/src/embed/hostEventClient/utils.spec.js.map +1 -1
  167. package/lib/src/embed/liveboard.d.ts +6 -0
  168. package/lib/src/embed/liveboard.d.ts.map +1 -1
  169. package/lib/src/embed/liveboard.js.map +1 -1
  170. package/lib/src/embed/spotter-viz-utils.d.ts +34 -0
  171. package/lib/src/embed/spotter-viz-utils.d.ts.map +1 -1
  172. package/lib/src/embed/spotter-viz-utils.js.map +1 -1
  173. package/lib/src/embed/spotter-viz-utils.spec.js +17 -0
  174. package/lib/src/embed/spotter-viz-utils.spec.js.map +1 -1
  175. package/lib/src/embed/ts-embed.d.ts.map +1 -1
  176. package/lib/src/embed/ts-embed.js +14 -7
  177. package/lib/src/embed/ts-embed.js.map +1 -1
  178. package/lib/src/embed/ts-embed.spec.js +146 -0
  179. package/lib/src/embed/ts-embed.spec.js.map +1 -1
  180. package/lib/src/errors.d.ts +1 -0
  181. package/lib/src/errors.d.ts.map +1 -1
  182. package/lib/src/errors.js +1 -0
  183. package/lib/src/errors.js.map +1 -1
  184. package/lib/src/index.d.ts +2 -2
  185. package/lib/src/index.d.ts.map +1 -1
  186. package/lib/src/index.js +2 -2
  187. package/lib/src/index.js.map +1 -1
  188. package/lib/src/mixpanel-service.spec.js +14 -0
  189. package/lib/src/mixpanel-service.spec.js.map +1 -1
  190. package/lib/src/react/util.spec.js +251 -0
  191. package/lib/src/react/util.spec.js.map +1 -1
  192. package/lib/src/types.d.ts +212 -8
  193. package/lib/src/types.d.ts.map +1 -1
  194. package/lib/src/types.js +185 -3
  195. package/lib/src/types.js.map +1 -1
  196. package/lib/src/utils/custom-actions.spec.js +26 -0
  197. package/lib/src/utils/custom-actions.spec.js.map +1 -1
  198. package/lib/src/utils/processData.spec.js +123 -0
  199. package/lib/src/utils/processData.spec.js.map +1 -1
  200. package/lib/src/utils/processTrigger.spec.js +61 -0
  201. package/lib/src/utils/processTrigger.spec.js.map +1 -1
  202. package/lib/src/utils/reporting.spec.js +21 -0
  203. package/lib/src/utils/reporting.spec.js.map +1 -1
  204. package/lib/src/utils/sessionInfoService.spec.d.ts +2 -0
  205. package/lib/src/utils/sessionInfoService.spec.d.ts.map +1 -0
  206. package/lib/src/utils/sessionInfoService.spec.js +127 -0
  207. package/lib/src/utils/sessionInfoService.spec.js.map +1 -0
  208. package/lib/src/utils.spec.js +159 -1
  209. package/lib/src/utils.spec.js.map +1 -1
  210. package/lib/src/visual-embed-sdk.d.ts +411 -23
  211. package/package.json +1 -1
  212. package/src/authToken.spec.ts +6 -0
  213. package/src/css-variables.ts +73 -0
  214. package/src/embed/app.spec.ts +155 -2
  215. package/src/embed/app.ts +44 -2
  216. package/src/embed/conversation.spec.ts +64 -1
  217. package/src/embed/conversation.ts +41 -0
  218. package/src/embed/embedConfig.spec.ts +79 -0
  219. package/src/embed/events.spec.ts +705 -1
  220. package/src/embed/host-events.spec.ts +1759 -0
  221. package/src/embed/hostEventClient/contracts.ts +41 -14
  222. package/src/embed/hostEventClient/host-event-client.spec.ts +326 -0
  223. package/src/embed/hostEventClient/host-event-client.ts +15 -0
  224. package/src/embed/hostEventClient/utils.spec.ts +204 -0
  225. package/src/embed/hostEventClient/utils.ts +37 -10
  226. package/src/embed/liveboard.ts +6 -0
  227. package/src/embed/spotter-viz-utils.spec.ts +17 -0
  228. package/src/embed/spotter-viz-utils.ts +34 -0
  229. package/src/embed/ts-embed.spec.ts +186 -0
  230. package/src/embed/ts-embed.ts +12 -4
  231. package/src/errors.ts +1 -0
  232. package/src/index.ts +2 -1
  233. package/src/mixpanel-service.spec.ts +15 -0
  234. package/src/react/util.spec.tsx +255 -0
  235. package/src/types.ts +215 -6
  236. package/src/utils/custom-actions.spec.ts +28 -0
  237. package/src/utils/processData.spec.ts +129 -0
  238. package/src/utils/processTrigger.spec.ts +91 -0
  239. package/src/utils/reporting.spec.ts +27 -0
  240. package/src/utils/sessionInfoService.spec.ts +151 -0
  241. package/src/utils.spec.ts +195 -0
@@ -413,6 +413,14 @@ export interface CustomCssVariables {
413
413
  * Background color of the tiles in the Liveboard.
414
414
  */
415
415
  "--ts-var-liveboard-tile-background"?: string;
416
+ /**
417
+ * Font color of the insight tiles in the Liveboard.
418
+ */
419
+ "--ts-var-liveboard-insight-tile-font-color"?: string;
420
+ /**
421
+ * Background color of the insight tiles in the Liveboard.
422
+ */
423
+ "--ts-var-liveboard-insight-tile-background"?: string;
416
424
  /**
417
425
  * Border radius of the tiles in the Liveboard.
418
426
  */
@@ -961,6 +969,10 @@ export interface CustomCssVariables {
961
969
  * header underline, left panel border, thinking step connector and dots.
962
970
  */
963
971
  "--ts-var-spotterviz-border-color"?: string;
972
+ /**
973
+ * Expanded user chat message bubble border color in SpotterViz.
974
+ */
975
+ "--ts-var-spotterviz-expanded-border-color"?: string;
964
976
  /**
965
977
  * Background color of the reference-mode toggle button in the SpotterViz
966
978
  * chat input when it is unselected and the user hovers over it.
@@ -978,6 +990,53 @@ export interface CustomCssVariables {
978
990
  * on each referenced-entity chip in the chat input.
979
991
  */
980
992
  "--ts-var-spotterviz-reference-icon-selected-background"?: string;
993
+ /**
994
+ * Background color of the shared conversation header (recipient's read-only view).
995
+ */
996
+ "--ts-var-shared-conv-header-background"?: string;
997
+ /**
998
+ * Border color of the shared conversation header.
999
+ */
1000
+ "--ts-var-shared-conv-header-border-color"?: string;
1001
+ /**
1002
+ * Font color of the title text in the shared conversation header.
1003
+ */
1004
+ "--ts-var-shared-conv-title-color"?: string;
1005
+ /**
1006
+ * Background gradient color-stop of the share chat header's outer container
1007
+ * (sender's pre-share header). Defaults to transparent.
1008
+ */
1009
+ "--ts-var-share-chat-header-container-background"?: string;
1010
+ /**
1011
+ * Background color of the share chat header's inner title/actions row.
1012
+ * Defaults to transparent.
1013
+ */
1014
+ "--ts-var-share-chat-header-background"?: string;
1015
+ /**
1016
+ * Font color of the title text in the share chat header.
1017
+ */
1018
+ "--ts-var-share-chat-header-title-color"?: string;
1019
+ /**
1020
+ * Font color of the title input field in the share chat header.
1021
+ */
1022
+ "--ts-var-share-chat-header-input-text-color"?: string;
1023
+ /**
1024
+ * Background color of the title input field in the share chat header.
1025
+ */
1026
+ "--ts-var-share-chat-header-input-background"?: string;
1027
+ /**
1028
+ * Border color of the title input field in the share chat header.
1029
+ */
1030
+ "--ts-var-share-chat-header-input-border-color"?: string;
1031
+ /**
1032
+ * Background color of the shimmer loading effect. Also affects the
1033
+ * saved chats sidebar's new-chat shimmer, which shares the same style.
1034
+ */
1035
+ "--ts-var-shimmer-background"?: string;
1036
+ /**
1037
+ * Background color of the shimmer sweep animation's gradient mid-stop.
1038
+ */
1039
+ "--ts-var-shimmer-sweep-background"?: string;
981
1040
  }
982
1041
  export interface SessionInterface {
983
1042
  sessionId: string;
@@ -1351,7 +1410,14 @@ export declare enum HomeLeftNavItem {
1351
1410
  * Available in the V3 navigation experience.
1352
1411
  * @version SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl
1353
1412
  */
1354
- Favorites = "favorites"
1413
+ Favorites = "favorites",
1414
+ /**
1415
+ * The *Collections* menu option in
1416
+ * the *Insights* left navigation panel.
1417
+ * Shown when collections are enabled on the cluster.
1418
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
1419
+ */
1420
+ Collections = "collections"
1355
1421
  }
1356
1422
  export type DOMSelector = string | HTMLElement;
1357
1423
  /**
@@ -2041,7 +2107,8 @@ export interface BaseViewConfig extends ApiInterceptFlags {
2041
2107
  * The list of actions to completely remove from the embedded view.
2042
2108
  * Hidden actions are not visible to the user at all (fully removed from the UI).
2043
2109
  * Use this when you want to remove an action entirely.
2044
- * To keep an action visible but non-interactive (grayed out), use {@link disabledActions} instead.
2110
+ * To keep an action visible but non-interactive (grayed out), use {@link
2111
+ * disabledActions} instead.
2045
2112
  *
2046
2113
  * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`
2047
2114
  * @version SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw
@@ -2061,7 +2128,8 @@ export interface BaseViewConfig extends ApiInterceptFlags {
2061
2128
  * (...), and the contextual menu. These will be only actions that
2062
2129
  * are visible to the user.
2063
2130
  * Use this as an allowlist — only the actions listed here will be shown.
2064
- * All other actions will be hidden. Use either this or {@link hiddenActions}, not both.
2131
+ * All other actions will be hidden. Use either this or {@link hiddenActions}, not
2132
+ * both.
2065
2133
  *
2066
2134
  * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`
2067
2135
  * @version SDK: 1.6.0 | ThoughtSpot: ts8.nov.cl, 8.4.1.sw
@@ -2296,6 +2364,26 @@ export interface BaseViewConfig extends ApiInterceptFlags {
2296
2364
  * ```
2297
2365
  */
2298
2366
  overrideOrgId?: number;
2367
+ /**
2368
+ * Overrides the browser history behavior for embedding application users.
2369
+ * This parameter changes standard history navigation (pushState) into a
2370
+ * state replacement (replaceState), preventing users from getting trapped in
2371
+ * back-button loops inside the embedded iframe environment.
2372
+ * The overrideHistoryState setting is honored only if the
2373
+ * application is running within an embedded context.
2374
+ *
2375
+ * Supported embed types: `AppEmbed`, `LiveboardEmbed`, `SearchEmbed`, `SpotterAgentEmbed`, `SpotterEmbed`, `SearchBarEmbed`
2376
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
2377
+ * @example
2378
+ * ```js
2379
+ * // Replace <EmbedComponent> with embed component name. For example, AppEmbed, SearchEmbed, or LiveboardEmbed
2380
+ * const embed = new <EmbedComponent>('#tsEmbed', {
2381
+ * // ... other embed view config
2382
+ * overrideHistoryState: true,
2383
+ * });
2384
+ * ```
2385
+ */
2386
+ overrideHistoryState?: boolean;
2299
2387
  /**
2300
2388
  * Flag to override the *Open Link in New Tab* context
2301
2389
  * menu option.
@@ -4741,6 +4829,30 @@ export declare enum EmbedEvent {
4741
4829
  * @version SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl
4742
4830
  */
4743
4831
  SpotterConversationSelected = "spotterConversationSelected",
4832
+ /**
4833
+ * Emitted when the Spotter agent finishes streaming/rendering a response.
4834
+ * Includes the conversation and message identifiers so the host app can
4835
+ * fetch the full conversation history via the REST API if needed.
4836
+ *
4837
+ * The payload data has the shape `{ convId: string, messageId: string }`.
4838
+ *
4839
+ * Works with SpotterEmbed as well as AppEmbed (when Spotter is reached
4840
+ * inside the full application).
4841
+ * @example
4842
+ * ```js
4843
+ * spotterEmbed.on(EmbedEvent.SpotterResponseComplete, (payload) => {
4844
+ * console.log('Spotter response complete', payload);
4845
+ * })
4846
+ * ```
4847
+ * @example
4848
+ * ```js
4849
+ * appEmbed.on(EmbedEvent.SpotterResponseComplete, (payload) => {
4850
+ * console.log('Spotter response complete', payload);
4851
+ * })
4852
+ * ```
4853
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.9.0.cl
4854
+ */
4855
+ SpotterResponseComplete = "spotterResponseComplete",
4744
4856
  /**
4745
4857
  * @hidden
4746
4858
  * Emitted when the auth token is about to get expired and needs to be refreshed.
@@ -4765,10 +4877,11 @@ export declare enum EmbedEvent {
4765
4877
  */
4766
4878
  EmbedPageContextChanged = "EmbedPageContextChanged",
4767
4879
  /**
4768
- * Represents a special embed event that is triggered whenever any host event is subscribed.
4880
+ * Represents a special embed event that is triggered whenever any host event is
4881
+ * subscribed.
4769
4882
  *
4770
- * You can listen to this event when you need to dispatch a host event during load or render,
4771
- * particularly in situations where timing issues may occur.
4883
+ * You can listen to this event when you need to dispatch a host event during load or
4884
+ * render, particularly in situations where timing issues may occur.
4772
4885
  *
4773
4886
  * @example
4774
4887
  * ```js
@@ -6303,6 +6416,14 @@ export declare enum HostEvent {
6303
6416
  /**
6304
6417
  * Get details of filters applied on the Liveboard.
6305
6418
  * Returns arrays containing Liveboard filter and runtime filter elements.
6419
+ * Each Liveboard filter may include an `applicability` attribute
6420
+ * indicating the scope of the filter. It contains a `level`
6421
+ * (`LIVEBOARD`, `TAB`, or `GROUP`) and, when `level` is `TAB` or
6422
+ * `GROUP`, a `targetId` with the GUID of the target. At `LIVEBOARD`
6423
+ * level there is no `targetId`, since the filter applies to the
6424
+ * whole Liveboard.
6425
+ * The `applicability` attribute is available from SDK: 1.51.0 |
6426
+ * ThoughtSpot: 26.10.0.cl.
6306
6427
  * @example
6307
6428
  * ```js
6308
6429
  * const data = await liveboardEmbed.trigger(HostEvent.GetFilters);
@@ -6342,6 +6463,16 @@ export declare enum HostEvent {
6342
6463
  *
6343
6464
  * `type` - To update filters for date time, specify the date format type.
6344
6465
  * For more information and examples, see link:https://developers.thoughtspot.com/docs/embed-liveboard#_date_filters[Date filters].
6466
+ *
6467
+ * `applicability` - Optional. Scopes the filter to a specific target,
6468
+ * for example, a single Liveboard tab. Available from SDK: 1.51.0 |
6469
+ * ThoughtSpot: 26.10.0.cl. Includes the following attributes:
6470
+ *
6471
+ * - `level`: The scope of the filter: `LIVEBOARD`, `TAB`, or `GROUP`.
6472
+ * - `targetId`: The GUID of the target, for example, the tab GUID.
6473
+ * Required when `level` is `TAB` or `GROUP`. Do not pass it when
6474
+ * `level` is `LIVEBOARD`, since the filter applies to the whole
6475
+ * Liveboard.
6345
6476
  * @example
6346
6477
  * ```js
6347
6478
  *
@@ -6418,6 +6549,21 @@ export declare enum HostEvent {
6418
6549
  * }
6419
6550
  * }, ContextType.Liveboard);
6420
6551
  * ```
6552
+ * @example
6553
+ * ```js
6554
+ * // Scope the filter to a specific Liveboard tab
6555
+ * liveboardEmbed.trigger(HostEvent.UpdateFilters, {
6556
+ * filter: {
6557
+ * column: "item type",
6558
+ * oper: "IN",
6559
+ * values: ["bags", "shirts"],
6560
+ * applicability: {
6561
+ * level: "TAB",
6562
+ * targetId: "e0836cad-4fdf-42d4-bd97-567a6b2a6058"
6563
+ * }
6564
+ * }
6565
+ * });
6566
+ * ```
6421
6567
  * @version SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl
6422
6568
  */
6423
6569
  UpdateFilters = "updateFilters",
@@ -6569,6 +6715,15 @@ export declare enum HostEvent {
6569
6715
  * - `name`: Name of the parameter.
6570
6716
  * - `value`: The value to set for the parameter.
6571
6717
  * - `isVisibleToUser`: Optional. To control the visibility of the parameter chip.
6718
+ * - `applicability`: Optional. Scopes the parameter to a specific target,
6719
+ * for example, a single Liveboard tab. Available from SDK: 1.51.0 |
6720
+ * ThoughtSpot: 26.10.0.cl. Includes the following attributes:
6721
+ *
6722
+ * - `level`: The scope of the parameter: `LIVEBOARD`, `TAB`, or `GROUP`.
6723
+ * - `targetId`: The GUID of the target, for example, the tab GUID.
6724
+ * Required when `level` is `TAB` or `GROUP`. Do not pass it when
6725
+ * `level` is `LIVEBOARD`, since the parameter applies to the whole
6726
+ * Liveboard.
6572
6727
  *
6573
6728
  * @example
6574
6729
  * ```js
@@ -6580,6 +6735,18 @@ export declare enum HostEvent {
6580
6735
  * ```
6581
6736
  * @example
6582
6737
  * ```js
6738
+ * // Scope the parameter to a specific Liveboard tab
6739
+ * liveboardEmbed.trigger(HostEvent.UpdateParameters, [{
6740
+ * name: "Integer Range Param",
6741
+ * value: 10,
6742
+ * applicability: {
6743
+ * level: "TAB",
6744
+ * targetId: "e0836cad-4fdf-42d4-bd97-567a6b2a6058"
6745
+ * }
6746
+ * }])
6747
+ * ```
6748
+ * @example
6749
+ * ```js
6583
6750
  * // Update parameters from liveboard context
6584
6751
  * import { ContextType } from '@thoughtspot/visual-embed-sdk';
6585
6752
  * liveboardEmbed.trigger(HostEvent.UpdateParameters, [{
@@ -6593,6 +6760,14 @@ export declare enum HostEvent {
6593
6760
  UpdateParameters = "UpdateParameters",
6594
6761
  /**
6595
6762
  * Triggers GetParameters to fetch the runtime Parameters.
6763
+ * Each parameter may include an `applicability` attribute
6764
+ * indicating the scope of the parameter. It contains a `level`
6765
+ * (`LIVEBOARD`, `TAB`, or `GROUP`) and, when `level` is `TAB` or
6766
+ * `GROUP`, a `targetId` with the GUID of the target. At `LIVEBOARD`
6767
+ * level there is no `targetId`, since the parameter applies to the
6768
+ * whole Liveboard.
6769
+ * The `applicability` attribute is available from SDK: 1.51.0 |
6770
+ * ThoughtSpot: 26.10.0.cl.
6596
6771
  * @param - `vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed.
6597
6772
  * ```js
6598
6773
  * liveboardEmbed.trigger(HostEvent.GetParameters).then((parameter) => {
@@ -7006,6 +7181,24 @@ export declare enum HostEvent {
7006
7181
  * ```
7007
7182
  */
7008
7183
  InitSpotterVizConversation = "InitSpotterVizConversation",
7184
+ /**
7185
+ * Opens the SpotterViz panel.
7186
+ * @version SDK: 1.50.0 | ThoughtSpot Cloud: 26.7.0.cl
7187
+ * @example
7188
+ * ```js
7189
+ * liveboardEmbed.trigger(HostEvent.OpenSpotterVizPanel);
7190
+ * ```
7191
+ */
7192
+ OpenSpotterVizPanel = "OpenSpotterVizPanel",
7193
+ /**
7194
+ * Closes the SpotterViz panel.
7195
+ * @version SDK: 1.50.0 | ThoughtSpot Cloud: 26.7.0.cl
7196
+ * @example
7197
+ * ```js
7198
+ * liveboardEmbed.trigger(HostEvent.CloseSpotterVizPanel);
7199
+ * ```
7200
+ */
7201
+ CloseSpotterVizPanel = "CloseSpotterVizPanel",
7009
7202
  /**
7010
7203
  * Clears browser cache and fetches new data for liveboard ChartViz Containers.
7011
7204
  * Requires `enableLiveboardDataCache` to be enabled.
@@ -8753,7 +8946,73 @@ export declare enum Action {
8753
8946
  * ```
8754
8947
  * @version SDK: 1.49.0 | ThoughtSpot Cloud: 26.6.0.cl
8755
8948
  */
8756
- RefreshLiveboardBrowserCache = "refreshLiveboardBrowserCache"
8949
+ RefreshLiveboardBrowserCache = "refreshLiveboardBrowserCache",
8950
+ /**
8951
+ * Controls visibility and disable state of the share action
8952
+ * in the Spotter Analyst interface.
8953
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
8954
+ * @example
8955
+ * ```js
8956
+ * hiddenActions: [Action.SpotterAnalystShare]
8957
+ * disabledActions: [Action.SpotterAnalystShare]
8958
+ * ```
8959
+ */
8960
+ SpotterAnalystShare = "spotterAnalystShare",
8961
+ /**
8962
+ * Controls visibility and disable state of the edit action
8963
+ * in the Spotter Analyst interface.
8964
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
8965
+ * @example
8966
+ * ```js
8967
+ * hiddenActions: [Action.SpotterAnalystEdit]
8968
+ * disabledActions: [Action.SpotterAnalystEdit]
8969
+ * ```
8970
+ */
8971
+ SpotterAnalystEdit = "spotterAnalystEdit",
8972
+ /**
8973
+ * Controls visibility and disable state of the create action
8974
+ * in the Spotter Analyst interface.
8975
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
8976
+ * @example
8977
+ * ```js
8978
+ * hiddenActions: [Action.SpotterAnalystCreate]
8979
+ * disabledActions: [Action.SpotterAnalystCreate]
8980
+ * ```
8981
+ */
8982
+ SpotterAnalystCreate = "spotterAnalystCreate",
8983
+ /**
8984
+ * Controls visibility and disable state of the delete action
8985
+ * in the Spotter Analyst interface.
8986
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
8987
+ * @example
8988
+ * ```js
8989
+ * hiddenActions: [Action.SpotterAnalystDelete]
8990
+ * disabledActions: [Action.SpotterAnalystDelete]
8991
+ * ```
8992
+ */
8993
+ SpotterAnalystDelete = "spotterAnalystDelete",
8994
+ /**
8995
+ * Controls visibility and disable state of the make a copy action
8996
+ * in the Spotter Analyst interface.
8997
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
8998
+ * @example
8999
+ * ```js
9000
+ * hiddenActions: [Action.SpotterAnalystMakeACopy]
9001
+ * disabledActions: [Action.SpotterAnalystMakeACopy]
9002
+ * ```
9003
+ */
9004
+ SpotterAnalystMakeACopy = "spotterAnalystMakeACopy",
9005
+ /**
9006
+ * Controls visibility and disable state of the sidebar
9007
+ * in the Spotter Analyst interface.
9008
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
9009
+ * @example
9010
+ * ```js
9011
+ * hiddenActions: [Action.SpotterAnalystSidebar]
9012
+ * disabledActions: [Action.SpotterAnalystSidebar]
9013
+ * ```
9014
+ */
9015
+ SpotterAnalystSidebar = "spotterAnalystSidebar"
8757
9016
  }
8758
9017
  declare enum ContextMenuTriggerOptions {
8759
9018
  LEFT_CLICK = "left-click",
@@ -8992,7 +9251,9 @@ declare enum EmbedErrorCodes {
8992
9251
  /** UpdateFilters payload is invalid - missing or malformed filter/filters */
8993
9252
  UPDATEFILTERS_INVALID_PAYLOAD = "UPDATEFILTERS_INVALID_PAYLOAD",
8994
9253
  /** DrillDown payload is invalid - missing or malformed points */
8995
- DRILLDOWN_INVALID_PAYLOAD = "DRILLDOWN_INVALID_PAYLOAD"
9254
+ DRILLDOWN_INVALID_PAYLOAD = "DRILLDOWN_INVALID_PAYLOAD",
9255
+ /** UpdateParameters payload is invalid - malformed applicability */
9256
+ UPDATEPARAMETERS_INVALID_PAYLOAD = "UPDATEPARAMETERS_INVALID_PAYLOAD"
8996
9257
  }
8997
9258
  /**
8998
9259
  * Error event object emitted when an error occurs in an embedded component.
@@ -9739,6 +10000,35 @@ export interface LiveboardTab {
9739
10000
  name: string;
9740
10001
  [key: string]: any;
9741
10002
  }
10003
+ declare enum ApplicabilityLevel {
10004
+ Liveboard = "LIVEBOARD",
10005
+ Tab = "TAB",
10006
+ Group = "GROUP"
10007
+ }
10008
+ /**
10009
+ * Scopes a filter or parameter to a specific target.
10010
+ * At `LIVEBOARD` level the filter applies to the whole Liveboard, so `targetId`
10011
+ * is not required.
10012
+ */
10013
+ export interface Applicability {
10014
+ level: ApplicabilityLevel;
10015
+ targetId?: string;
10016
+ }
10017
+ export interface FilterUpdate {
10018
+ column: string;
10019
+ oper: string;
10020
+ values: string[];
10021
+ type?: string;
10022
+ applicability?: Applicability;
10023
+ }
10024
+ export interface LiveboardFilter {
10025
+ applicability?: Applicability;
10026
+ [key: string]: any;
10027
+ }
10028
+ export interface LiveboardParameter {
10029
+ applicability?: Applicability;
10030
+ [key: string]: any;
10031
+ }
9742
10032
  declare enum UIPassthroughEvent {
9743
10033
  PinAnswerToLiveboard = "addVizToPinboard",
9744
10034
  SaveAnswer = "saveAnswer",
@@ -9833,7 +10123,7 @@ export type UIPassthroughContractBase = {
9833
10123
  vizId?: string;
9834
10124
  };
9835
10125
  response: {
9836
- liveboardFilters: Record<string, any>[];
10126
+ liveboardFilters: LiveboardFilter[];
9837
10127
  runtimeFilters: RuntimeFilter[];
9838
10128
  };
9839
10129
  };
@@ -9846,7 +10136,7 @@ export type UIPassthroughContractBase = {
9846
10136
  [UIPassthroughEvent.GetParameters]: {
9847
10137
  request: Record<string, never>;
9848
10138
  response: {
9849
- parameters: Record<string, any>[];
10139
+ parameters: LiveboardParameter[];
9850
10140
  };
9851
10141
  };
9852
10142
  [UIPassthroughEvent.GetTML]: {
@@ -9875,18 +10165,8 @@ export type UIPassthroughContractBase = {
9875
10165
  };
9876
10166
  [UIPassthroughEvent.UpdateFilters]: {
9877
10167
  request: {
9878
- filter?: {
9879
- column: string;
9880
- oper: string;
9881
- values: string[];
9882
- type?: string;
9883
- };
9884
- filters?: {
9885
- column: string;
9886
- oper: string;
9887
- values: string[];
9888
- type?: string;
9889
- }[];
10168
+ filter?: FilterUpdate;
10169
+ filters?: FilterUpdate[];
9890
10170
  };
9891
10171
  response: unknown;
9892
10172
  };
@@ -9963,6 +10243,7 @@ declare class HostEventClient {
9963
10243
  protected handlePinEvent(payload: HostEventRequest<HostEvent.Pin>, context?: ContextType): Promise<HostEventResponse<HostEvent.Pin, ContextType>>;
9964
10244
  protected handleSaveAnswerEvent(payload: HostEventRequest<HostEvent.SaveAnswer>, context?: ContextType): Promise<any>;
9965
10245
  protected handleUpdateFiltersEvent(payload: HostEventRequest<HostEvent.UpdateFilters>, context?: ContextType): Promise<any>;
10246
+ protected handleUpdateParametersEvent(payload: HostEventRequest<HostEvent.UpdateParameters>, context?: ContextType): Promise<any>;
9966
10247
  protected handleDrillDownEvent(payload: HostEventRequest<HostEvent.DrillDown>, context?: ContextType): Promise<any>;
9967
10248
  /**
9968
10249
  * Dispatches a host event using the appropriate channel:
@@ -11019,6 +11300,10 @@ interface SearchOptions$1 {
11019
11300
  */
11020
11301
  searchQuery: string;
11021
11302
  }
11303
+ declare enum SpotterQueryMode {
11304
+ FAST_SEARCH = "fastSearch",
11305
+ RESEARCH = "research"
11306
+ }
11022
11307
  /**
11023
11308
  * Configuration for the Spotter sidebar.
11024
11309
  * Can be used in SpotterEmbed and AppEmbed.
@@ -11093,6 +11378,18 @@ export interface SpotterSidebarViewConfig {
11093
11378
  * @version SDK: 1.47.0 | ThoughtSpot: 26.4.0.cl
11094
11379
  */
11095
11380
  spotterNewChatButtonTitle?: string;
11381
+ /**
11382
+ * Custom label text for the Spotter Analyst section in the sidebar.
11383
+ * @version SDK: 1.51.0 | ThoughtSpot: 26.8.0.cl
11384
+ * @default Analyst
11385
+ */
11386
+ spotterAnalystLabel?: string;
11387
+ /**
11388
+ * Custom label text for the Spotter Analysts section in the sidebar.
11389
+ * @version SDK: 1.51.0 | ThoughtSpot: 26.8.0.cl
11390
+ * @default Analysts
11391
+ */
11392
+ spotterAnalystsLabel?: string;
11096
11393
  }
11097
11394
  /**
11098
11395
  * Configuration for customizing Spotter chat UI branding.
@@ -11309,6 +11606,24 @@ export interface SpotterEmbedViewConfig extends Omit<BaseViewConfig, "primaryAct
11309
11606
  * ```
11310
11607
  */
11311
11608
  updatedSpotterChatPrompt?: boolean;
11609
+ /**
11610
+ * Sets the default query mode when Spotter loads — Fast Search or
11611
+ * Research Mode. Applies fresh on every new session for this embed
11612
+ * instance only; it does not persist as a user preference and does
11613
+ * not affect other embeds or native ThoughtSpot usage.
11614
+ *
11615
+ * Supported embed types: `SpotterEmbed`, `AppEmbed`
11616
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11617
+ * @default SpotterQueryMode.FAST_SEARCH
11618
+ * @example
11619
+ * ```js
11620
+ * const embed = new SpotterEmbed('#tsEmbed', {
11621
+ * ... //other embed view config
11622
+ * defaultQueryMode: SpotterQueryMode.RESEARCH,
11623
+ * })
11624
+ * ```
11625
+ */
11626
+ defaultQueryMode?: SpotterQueryMode;
11312
11627
  /**
11313
11628
  * Enables the stop answer generation button in the Spotter embed UI,
11314
11629
  * allowing users to interrupt an ongoing answer generation.
@@ -11447,6 +11762,12 @@ export interface SpotterVizStarterPrompt {
11447
11762
  * { label: 'Tip', text: 'try asking about revenue by region' },
11448
11763
  * { label: 'Tip', text: 'use natural language' },
11449
11764
  * ],
11765
+ * // liveboardBrandName, spotterBrandName, insightTileBrandName, insightTileViewPlanLabel and insightTileLoaderText require SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11766
+ * liveboardBrandName: 'Reports',
11767
+ * spotterBrandName: 'Analyst',
11768
+ * insightTileBrandName: 'Insight card',
11769
+ * insightTileViewPlanLabel: 'View plan',
11770
+ * insightTileLoaderText: 'Generating insight',
11450
11771
  * },
11451
11772
  * })
11452
11773
  * ```
@@ -11503,6 +11824,34 @@ export interface SpotterVizConfig {
11503
11824
  * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
11504
11825
  */
11505
11826
  loaderTips?: SpotterVizLoaderTip[];
11827
+ /**
11828
+ * Custom term used to replace "Liveboard" in the agent's responses.
11829
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11830
+ * @default ''
11831
+ */
11832
+ liveboardBrandName?: string;
11833
+ /**
11834
+ * Custom term used to replace "Spotter" in the agent's responses.
11835
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11836
+ * @default ''
11837
+ */
11838
+ spotterBrandName?: string;
11839
+ /**
11840
+ * Custom term used to replace "Insight tile" in the UI and in the agent's responses.
11841
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11842
+ * @default ''
11843
+ */
11844
+ insightTileBrandName?: string;
11845
+ /**
11846
+ * Custom term used to replace "View plan" in the insight tile menu.
11847
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11848
+ */
11849
+ insightTileViewPlanLabel?: string;
11850
+ /**
11851
+ * Custom loader text shown on the insight tile.
11852
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11853
+ */
11854
+ insightTileLoaderText?: string;
11506
11855
  }
11507
11856
  /**
11508
11857
  * A single tip shown in the SpotterViz loading state.
@@ -11550,7 +11899,11 @@ export declare enum Page {
11550
11899
  /**
11551
11900
  * Monitor Alerts Page
11552
11901
  */
11553
- Monitor = "monitor"
11902
+ Monitor = "monitor",
11903
+ /**
11904
+ * Collections listing page
11905
+ */
11906
+ Collections = "collections"
11554
11907
  }
11555
11908
  declare enum DataPanelCustomColumnGroupsAccordionState$1 {
11556
11909
  /**
@@ -12189,6 +12542,25 @@ export interface AppViewConfig extends AllEmbedViewConfig {
12189
12542
  * ```
12190
12543
  */
12191
12544
  updatedSpotterChatPrompt?: boolean;
12545
+ /**
12546
+ * Sets the default query mode when Spotter loads — Fast Search or
12547
+ * Research Mode. Applies fresh on every new session for this embed
12548
+ * instance only; it does not persist as a user preference and does
12549
+ * not affect other embeds or native ThoughtSpot usage.
12550
+ * Only applicable when navigating to Spotter within the app.
12551
+ *
12552
+ * Supported embed types: `AppEmbed`
12553
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
12554
+ * @default SpotterQueryMode.FAST_SEARCH
12555
+ * @example
12556
+ * ```js
12557
+ * const embed = new AppEmbed('#tsEmbed', {
12558
+ * ... //other embed view config
12559
+ * defaultQueryMode: SpotterQueryMode.RESEARCH,
12560
+ * })
12561
+ * ```
12562
+ */
12563
+ defaultQueryMode?: SpotterQueryMode;
12192
12564
  /**
12193
12565
  * Controls the visibility of the past conversations sidebar.
12194
12566
  *
@@ -12261,6 +12633,12 @@ export interface AppViewConfig extends AllEmbedViewConfig {
12261
12633
  * { label: 'Tip', text: 'try asking about revenue by region' },
12262
12634
  * { label: 'Tip', text: 'use natural language' },
12263
12635
  * ],
12636
+ * // liveboardBrandName, spotterBrandName, insightTileBrandName, insightTileViewPlanLabel and insightTileLoaderText require SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
12637
+ * liveboardBrandName: 'Reports',
12638
+ * spotterBrandName: 'Analyst',
12639
+ * insightTileBrandName: 'Insight card',
12640
+ * insightTileViewPlanLabel: 'View plan',
12641
+ * insightTileLoaderText: 'Generating insight',
12264
12642
  * },
12265
12643
  * })
12266
12644
  * ```
@@ -12963,6 +13341,12 @@ export interface LiveboardViewConfig extends BaseViewConfig, SearchLiveboardComm
12963
13341
  * { label: 'Tip', text: 'try asking about revenue by region' },
12964
13342
  * { label: 'Tip', text: 'use natural language' },
12965
13343
  * ],
13344
+ * // liveboardBrandName, spotterBrandName, insightTileBrandName, insightTileViewPlanLabel and insightTileLoaderText require SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
13345
+ * liveboardBrandName: 'Reports',
13346
+ * spotterBrandName: 'Analyst',
13347
+ * insightTileBrandName: 'Insight card',
13348
+ * insightTileViewPlanLabel: 'View plan',
13349
+ * insightTileLoaderText: 'Generating insight',
12966
13350
  * },
12967
13351
  * })
12968
13352
  * ```