@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 @@ 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.
@@ -4728,6 +4816,30 @@ export declare enum EmbedEvent {
4728
4816
  * @version SDK: 1.46.0 | ThoughtSpot: 26.3.0.cl
4729
4817
  */
4730
4818
  SpotterConversationSelected = "spotterConversationSelected",
4819
+ /**
4820
+ * Emitted when the Spotter agent finishes streaming/rendering a response.
4821
+ * Includes the conversation and message identifiers so the host app can
4822
+ * fetch the full conversation history via the REST API if needed.
4823
+ *
4824
+ * The payload data has the shape `{ convId: string, messageId: string }`.
4825
+ *
4826
+ * Works with SpotterEmbed as well as AppEmbed (when Spotter is reached
4827
+ * inside the full application).
4828
+ * @example
4829
+ * ```js
4830
+ * spotterEmbed.on(EmbedEvent.SpotterResponseComplete, (payload) => {
4831
+ * console.log('Spotter response complete', payload);
4832
+ * })
4833
+ * ```
4834
+ * @example
4835
+ * ```js
4836
+ * appEmbed.on(EmbedEvent.SpotterResponseComplete, (payload) => {
4837
+ * console.log('Spotter response complete', payload);
4838
+ * })
4839
+ * ```
4840
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.9.0.cl
4841
+ */
4842
+ SpotterResponseComplete = "spotterResponseComplete",
4731
4843
  /**
4732
4844
  * @hidden
4733
4845
  * Emitted when the auth token is about to get expired and needs to be refreshed.
@@ -4752,10 +4864,11 @@ export declare enum EmbedEvent {
4752
4864
  */
4753
4865
  EmbedPageContextChanged = "EmbedPageContextChanged",
4754
4866
  /**
4755
- * Represents a special embed event that is triggered whenever any host event is subscribed.
4867
+ * Represents a special embed event that is triggered whenever any host event is
4868
+ * subscribed.
4756
4869
  *
4757
- * You can listen to this event when you need to dispatch a host event during load or render,
4758
- * particularly in situations where timing issues may occur.
4870
+ * You can listen to this event when you need to dispatch a host event during load or
4871
+ * render, particularly in situations where timing issues may occur.
4759
4872
  *
4760
4873
  * @example
4761
4874
  * ```js
@@ -6290,6 +6403,14 @@ export declare enum HostEvent {
6290
6403
  /**
6291
6404
  * Get details of filters applied on the Liveboard.
6292
6405
  * Returns arrays containing Liveboard filter and runtime filter elements.
6406
+ * Each Liveboard filter may include an `applicability` attribute
6407
+ * indicating the scope of the filter. It contains a `level`
6408
+ * (`LIVEBOARD`, `TAB`, or `GROUP`) and, when `level` is `TAB` or
6409
+ * `GROUP`, a `targetId` with the GUID of the target. At `LIVEBOARD`
6410
+ * level there is no `targetId`, since the filter applies to the
6411
+ * whole Liveboard.
6412
+ * The `applicability` attribute is available from SDK: 1.51.0 |
6413
+ * ThoughtSpot: 26.10.0.cl.
6293
6414
  * @example
6294
6415
  * ```js
6295
6416
  * const data = await liveboardEmbed.trigger(HostEvent.GetFilters);
@@ -6329,6 +6450,16 @@ export declare enum HostEvent {
6329
6450
  *
6330
6451
  * `type` - To update filters for date time, specify the date format type.
6331
6452
  * For more information and examples, see link:https://developers.thoughtspot.com/docs/embed-liveboard#_date_filters[Date filters].
6453
+ *
6454
+ * `applicability` - Optional. Scopes the filter to a specific target,
6455
+ * for example, a single Liveboard tab. Available from SDK: 1.51.0 |
6456
+ * ThoughtSpot: 26.10.0.cl. Includes the following attributes:
6457
+ *
6458
+ * - `level`: The scope of the filter: `LIVEBOARD`, `TAB`, or `GROUP`.
6459
+ * - `targetId`: The GUID of the target, for example, the tab GUID.
6460
+ * Required when `level` is `TAB` or `GROUP`. Do not pass it when
6461
+ * `level` is `LIVEBOARD`, since the filter applies to the whole
6462
+ * Liveboard.
6332
6463
  * @example
6333
6464
  * ```js
6334
6465
  *
@@ -6405,6 +6536,21 @@ export declare enum HostEvent {
6405
6536
  * }
6406
6537
  * }, ContextType.Liveboard);
6407
6538
  * ```
6539
+ * @example
6540
+ * ```js
6541
+ * // Scope the filter to a specific Liveboard tab
6542
+ * liveboardEmbed.trigger(HostEvent.UpdateFilters, {
6543
+ * filter: {
6544
+ * column: "item type",
6545
+ * oper: "IN",
6546
+ * values: ["bags", "shirts"],
6547
+ * applicability: {
6548
+ * level: "TAB",
6549
+ * targetId: "e0836cad-4fdf-42d4-bd97-567a6b2a6058"
6550
+ * }
6551
+ * }
6552
+ * });
6553
+ * ```
6408
6554
  * @version SDK: 1.23.0 | ThoughtSpot: 9.4.0.cl
6409
6555
  */
6410
6556
  UpdateFilters = "updateFilters",
@@ -6556,6 +6702,15 @@ export declare enum HostEvent {
6556
6702
  * - `name`: Name of the parameter.
6557
6703
  * - `value`: The value to set for the parameter.
6558
6704
  * - `isVisibleToUser`: Optional. To control the visibility of the parameter chip.
6705
+ * - `applicability`: Optional. Scopes the parameter to a specific target,
6706
+ * for example, a single Liveboard tab. Available from SDK: 1.51.0 |
6707
+ * ThoughtSpot: 26.10.0.cl. Includes the following attributes:
6708
+ *
6709
+ * - `level`: The scope of the parameter: `LIVEBOARD`, `TAB`, or `GROUP`.
6710
+ * - `targetId`: The GUID of the target, for example, the tab GUID.
6711
+ * Required when `level` is `TAB` or `GROUP`. Do not pass it when
6712
+ * `level` is `LIVEBOARD`, since the parameter applies to the whole
6713
+ * Liveboard.
6559
6714
  *
6560
6715
  * @example
6561
6716
  * ```js
@@ -6567,6 +6722,18 @@ export declare enum HostEvent {
6567
6722
  * ```
6568
6723
  * @example
6569
6724
  * ```js
6725
+ * // Scope the parameter to a specific Liveboard tab
6726
+ * liveboardEmbed.trigger(HostEvent.UpdateParameters, [{
6727
+ * name: "Integer Range Param",
6728
+ * value: 10,
6729
+ * applicability: {
6730
+ * level: "TAB",
6731
+ * targetId: "e0836cad-4fdf-42d4-bd97-567a6b2a6058"
6732
+ * }
6733
+ * }])
6734
+ * ```
6735
+ * @example
6736
+ * ```js
6570
6737
  * // Update parameters from liveboard context
6571
6738
  * import { ContextType } from '@thoughtspot/visual-embed-sdk';
6572
6739
  * liveboardEmbed.trigger(HostEvent.UpdateParameters, [{
@@ -6580,6 +6747,14 @@ export declare enum HostEvent {
6580
6747
  UpdateParameters = "UpdateParameters",
6581
6748
  /**
6582
6749
  * Triggers GetParameters to fetch the runtime Parameters.
6750
+ * Each parameter may include an `applicability` attribute
6751
+ * indicating the scope of the parameter. It contains a `level`
6752
+ * (`LIVEBOARD`, `TAB`, or `GROUP`) and, when `level` is `TAB` or
6753
+ * `GROUP`, a `targetId` with the GUID of the target. At `LIVEBOARD`
6754
+ * level there is no `targetId`, since the parameter applies to the
6755
+ * whole Liveboard.
6756
+ * The `applicability` attribute is available from SDK: 1.51.0 |
6757
+ * ThoughtSpot: 26.10.0.cl.
6583
6758
  * @param - `vizId` refers to the Answer ID in Spotter embed and is required in Spotter embed.
6584
6759
  * ```js
6585
6760
  * liveboardEmbed.trigger(HostEvent.GetParameters).then((parameter) => {
@@ -6993,6 +7168,24 @@ export declare enum HostEvent {
6993
7168
  * ```
6994
7169
  */
6995
7170
  InitSpotterVizConversation = "InitSpotterVizConversation",
7171
+ /**
7172
+ * Opens the SpotterViz panel.
7173
+ * @version SDK: 1.50.0 | ThoughtSpot Cloud: 26.7.0.cl
7174
+ * @example
7175
+ * ```js
7176
+ * liveboardEmbed.trigger(HostEvent.OpenSpotterVizPanel);
7177
+ * ```
7178
+ */
7179
+ OpenSpotterVizPanel = "OpenSpotterVizPanel",
7180
+ /**
7181
+ * Closes the SpotterViz panel.
7182
+ * @version SDK: 1.50.0 | ThoughtSpot Cloud: 26.7.0.cl
7183
+ * @example
7184
+ * ```js
7185
+ * liveboardEmbed.trigger(HostEvent.CloseSpotterVizPanel);
7186
+ * ```
7187
+ */
7188
+ CloseSpotterVizPanel = "CloseSpotterVizPanel",
6996
7189
  /**
6997
7190
  * Clears browser cache and fetches new data for liveboard ChartViz Containers.
6998
7191
  * Requires `enableLiveboardDataCache` to be enabled.
@@ -8758,7 +8951,73 @@ export declare enum Action {
8758
8951
  * ```
8759
8952
  * @version SDK: 1.49.0 | ThoughtSpot Cloud: 26.6.0.cl
8760
8953
  */
8761
- RefreshLiveboardBrowserCache = "refreshLiveboardBrowserCache"
8954
+ RefreshLiveboardBrowserCache = "refreshLiveboardBrowserCache",
8955
+ /**
8956
+ * Controls visibility and disable state of the share action
8957
+ * in the Spotter Analyst interface.
8958
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
8959
+ * @example
8960
+ * ```js
8961
+ * hiddenActions: [Action.SpotterAnalystShare]
8962
+ * disabledActions: [Action.SpotterAnalystShare]
8963
+ * ```
8964
+ */
8965
+ SpotterAnalystShare = "spotterAnalystShare",
8966
+ /**
8967
+ * Controls visibility and disable state of the edit action
8968
+ * in the Spotter Analyst interface.
8969
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
8970
+ * @example
8971
+ * ```js
8972
+ * hiddenActions: [Action.SpotterAnalystEdit]
8973
+ * disabledActions: [Action.SpotterAnalystEdit]
8974
+ * ```
8975
+ */
8976
+ SpotterAnalystEdit = "spotterAnalystEdit",
8977
+ /**
8978
+ * Controls visibility and disable state of the create action
8979
+ * in the Spotter Analyst interface.
8980
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
8981
+ * @example
8982
+ * ```js
8983
+ * hiddenActions: [Action.SpotterAnalystCreate]
8984
+ * disabledActions: [Action.SpotterAnalystCreate]
8985
+ * ```
8986
+ */
8987
+ SpotterAnalystCreate = "spotterAnalystCreate",
8988
+ /**
8989
+ * Controls visibility and disable state of the delete action
8990
+ * in the Spotter Analyst interface.
8991
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
8992
+ * @example
8993
+ * ```js
8994
+ * hiddenActions: [Action.SpotterAnalystDelete]
8995
+ * disabledActions: [Action.SpotterAnalystDelete]
8996
+ * ```
8997
+ */
8998
+ SpotterAnalystDelete = "spotterAnalystDelete",
8999
+ /**
9000
+ * Controls visibility and disable state of the make a copy action
9001
+ * in the Spotter Analyst interface.
9002
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
9003
+ * @example
9004
+ * ```js
9005
+ * hiddenActions: [Action.SpotterAnalystMakeACopy]
9006
+ * disabledActions: [Action.SpotterAnalystMakeACopy]
9007
+ * ```
9008
+ */
9009
+ SpotterAnalystMakeACopy = "spotterAnalystMakeACopy",
9010
+ /**
9011
+ * Controls visibility and disable state of the sidebar
9012
+ * in the Spotter Analyst interface.
9013
+ * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
9014
+ * @example
9015
+ * ```js
9016
+ * hiddenActions: [Action.SpotterAnalystSidebar]
9017
+ * disabledActions: [Action.SpotterAnalystSidebar]
9018
+ * ```
9019
+ */
9020
+ SpotterAnalystSidebar = "spotterAnalystSidebar"
8762
9021
  }
8763
9022
  export declare enum PrefetchFeatures {
8764
9023
  FullApp = "FullApp",
@@ -9003,7 +9262,9 @@ declare enum EmbedErrorCodes {
9003
9262
  /** UpdateFilters payload is invalid - missing or malformed filter/filters */
9004
9263
  UPDATEFILTERS_INVALID_PAYLOAD = "UPDATEFILTERS_INVALID_PAYLOAD",
9005
9264
  /** DrillDown payload is invalid - missing or malformed points */
9006
- DRILLDOWN_INVALID_PAYLOAD = "DRILLDOWN_INVALID_PAYLOAD"
9265
+ DRILLDOWN_INVALID_PAYLOAD = "DRILLDOWN_INVALID_PAYLOAD",
9266
+ /** UpdateParameters payload is invalid - malformed applicability */
9267
+ UPDATEPARAMETERS_INVALID_PAYLOAD = "UPDATEPARAMETERS_INVALID_PAYLOAD"
9007
9268
  }
9008
9269
  /**
9009
9270
  * Error event object emitted when an error occurs in an embedded component.
@@ -9766,6 +10027,35 @@ export interface LiveboardTab {
9766
10027
  name: string;
9767
10028
  [key: string]: any;
9768
10029
  }
10030
+ declare enum ApplicabilityLevel {
10031
+ Liveboard = "LIVEBOARD",
10032
+ Tab = "TAB",
10033
+ Group = "GROUP"
10034
+ }
10035
+ /**
10036
+ * Scopes a filter or parameter to a specific target.
10037
+ * At `LIVEBOARD` level the filter applies to the whole Liveboard, so `targetId`
10038
+ * is not required.
10039
+ */
10040
+ export interface Applicability {
10041
+ level: ApplicabilityLevel;
10042
+ targetId?: string;
10043
+ }
10044
+ export interface FilterUpdate {
10045
+ column: string;
10046
+ oper: string;
10047
+ values: string[];
10048
+ type?: string;
10049
+ applicability?: Applicability;
10050
+ }
10051
+ export interface LiveboardFilter {
10052
+ applicability?: Applicability;
10053
+ [key: string]: any;
10054
+ }
10055
+ export interface LiveboardParameter {
10056
+ applicability?: Applicability;
10057
+ [key: string]: any;
10058
+ }
9769
10059
  export declare enum UIPassthroughEvent {
9770
10060
  PinAnswerToLiveboard = "addVizToPinboard",
9771
10061
  SaveAnswer = "saveAnswer",
@@ -9860,7 +10150,7 @@ export type UIPassthroughContractBase = {
9860
10150
  vizId?: string;
9861
10151
  };
9862
10152
  response: {
9863
- liveboardFilters: Record<string, any>[];
10153
+ liveboardFilters: LiveboardFilter[];
9864
10154
  runtimeFilters: RuntimeFilter[];
9865
10155
  };
9866
10156
  };
@@ -9873,7 +10163,7 @@ export type UIPassthroughContractBase = {
9873
10163
  [UIPassthroughEvent.GetParameters]: {
9874
10164
  request: Record<string, never>;
9875
10165
  response: {
9876
- parameters: Record<string, any>[];
10166
+ parameters: LiveboardParameter[];
9877
10167
  };
9878
10168
  };
9879
10169
  [UIPassthroughEvent.GetTML]: {
@@ -9902,18 +10192,8 @@ export type UIPassthroughContractBase = {
9902
10192
  };
9903
10193
  [UIPassthroughEvent.UpdateFilters]: {
9904
10194
  request: {
9905
- filter?: {
9906
- column: string;
9907
- oper: string;
9908
- values: string[];
9909
- type?: string;
9910
- };
9911
- filters?: {
9912
- column: string;
9913
- oper: string;
9914
- values: string[];
9915
- type?: string;
9916
- }[];
10195
+ filter?: FilterUpdate;
10196
+ filters?: FilterUpdate[];
9917
10197
  };
9918
10198
  response: unknown;
9919
10199
  };
@@ -9990,6 +10270,7 @@ declare class HostEventClient {
9990
10270
  protected handlePinEvent(payload: HostEventRequest<HostEvent.Pin>, context?: ContextType): Promise<HostEventResponse<HostEvent.Pin, ContextType>>;
9991
10271
  protected handleSaveAnswerEvent(payload: HostEventRequest<HostEvent.SaveAnswer>, context?: ContextType): Promise<any>;
9992
10272
  protected handleUpdateFiltersEvent(payload: HostEventRequest<HostEvent.UpdateFilters>, context?: ContextType): Promise<any>;
10273
+ protected handleUpdateParametersEvent(payload: HostEventRequest<HostEvent.UpdateParameters>, context?: ContextType): Promise<any>;
9993
10274
  protected handleDrillDownEvent(payload: HostEventRequest<HostEvent.DrillDown>, context?: ContextType): Promise<any>;
9994
10275
  /**
9995
10276
  * Dispatches a host event using the appropriate channel:
@@ -11046,6 +11327,10 @@ interface SearchOptions$1 {
11046
11327
  */
11047
11328
  searchQuery: string;
11048
11329
  }
11330
+ declare enum SpotterQueryMode {
11331
+ FAST_SEARCH = "fastSearch",
11332
+ RESEARCH = "research"
11333
+ }
11049
11334
  /**
11050
11335
  * Configuration for the Spotter sidebar.
11051
11336
  * Can be used in SpotterEmbed and AppEmbed.
@@ -11120,6 +11405,18 @@ export interface SpotterSidebarViewConfig {
11120
11405
  * @version SDK: 1.47.0 | ThoughtSpot: 26.4.0.cl
11121
11406
  */
11122
11407
  spotterNewChatButtonTitle?: string;
11408
+ /**
11409
+ * Custom label text for the Spotter Analyst section in the sidebar.
11410
+ * @version SDK: 1.51.0 | ThoughtSpot: 26.8.0.cl
11411
+ * @default Analyst
11412
+ */
11413
+ spotterAnalystLabel?: string;
11414
+ /**
11415
+ * Custom label text for the Spotter Analysts section in the sidebar.
11416
+ * @version SDK: 1.51.0 | ThoughtSpot: 26.8.0.cl
11417
+ * @default Analysts
11418
+ */
11419
+ spotterAnalystsLabel?: string;
11123
11420
  }
11124
11421
  /**
11125
11422
  * Configuration for customizing Spotter chat UI branding.
@@ -11336,6 +11633,24 @@ export interface SpotterEmbedViewConfig extends Omit<BaseViewConfig, "primaryAct
11336
11633
  * ```
11337
11634
  */
11338
11635
  updatedSpotterChatPrompt?: boolean;
11636
+ /**
11637
+ * Sets the default query mode when Spotter loads — Fast Search or
11638
+ * Research Mode. Applies fresh on every new session for this embed
11639
+ * instance only; it does not persist as a user preference and does
11640
+ * not affect other embeds or native ThoughtSpot usage.
11641
+ *
11642
+ * Supported embed types: `SpotterEmbed`, `AppEmbed`
11643
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11644
+ * @default SpotterQueryMode.FAST_SEARCH
11645
+ * @example
11646
+ * ```js
11647
+ * const embed = new SpotterEmbed('#tsEmbed', {
11648
+ * ... //other embed view config
11649
+ * defaultQueryMode: SpotterQueryMode.RESEARCH,
11650
+ * })
11651
+ * ```
11652
+ */
11653
+ defaultQueryMode?: SpotterQueryMode;
11339
11654
  /**
11340
11655
  * Enables the stop answer generation button in the Spotter embed UI,
11341
11656
  * allowing users to interrupt an ongoing answer generation.
@@ -11474,6 +11789,12 @@ export interface SpotterVizStarterPrompt {
11474
11789
  * { label: 'Tip', text: 'try asking about revenue by region' },
11475
11790
  * { label: 'Tip', text: 'use natural language' },
11476
11791
  * ],
11792
+ * // liveboardBrandName, spotterBrandName, insightTileBrandName, insightTileViewPlanLabel and insightTileLoaderText require SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11793
+ * liveboardBrandName: 'Reports',
11794
+ * spotterBrandName: 'Analyst',
11795
+ * insightTileBrandName: 'Insight card',
11796
+ * insightTileViewPlanLabel: 'View plan',
11797
+ * insightTileLoaderText: 'Generating insight',
11477
11798
  * },
11478
11799
  * })
11479
11800
  * ```
@@ -11530,6 +11851,34 @@ export interface SpotterVizConfig {
11530
11851
  * @version SDK: 1.51.0 | ThoughtSpot Cloud: 26.8.0.cl
11531
11852
  */
11532
11853
  loaderTips?: SpotterVizLoaderTip[];
11854
+ /**
11855
+ * Custom term used to replace "Liveboard" in the agent's responses.
11856
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11857
+ * @default ''
11858
+ */
11859
+ liveboardBrandName?: string;
11860
+ /**
11861
+ * Custom term used to replace "Spotter" in the agent's responses.
11862
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11863
+ * @default ''
11864
+ */
11865
+ spotterBrandName?: string;
11866
+ /**
11867
+ * Custom term used to replace "Insight tile" in the UI and in the agent's responses.
11868
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11869
+ * @default ''
11870
+ */
11871
+ insightTileBrandName?: string;
11872
+ /**
11873
+ * Custom term used to replace "View plan" in the insight tile menu.
11874
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11875
+ */
11876
+ insightTileViewPlanLabel?: string;
11877
+ /**
11878
+ * Custom loader text shown on the insight tile.
11879
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
11880
+ */
11881
+ insightTileLoaderText?: string;
11533
11882
  }
11534
11883
  /**
11535
11884
  * A single tip shown in the SpotterViz loading state.
@@ -11577,7 +11926,11 @@ export declare enum Page {
11577
11926
  /**
11578
11927
  * Monitor Alerts Page
11579
11928
  */
11580
- Monitor = "monitor"
11929
+ Monitor = "monitor",
11930
+ /**
11931
+ * Collections listing page
11932
+ */
11933
+ Collections = "collections"
11581
11934
  }
11582
11935
  /**
11583
11936
  * Define the initial state of column custom group accordions
@@ -12220,6 +12573,25 @@ export interface AppViewConfig extends AllEmbedViewConfig {
12220
12573
  * ```
12221
12574
  */
12222
12575
  updatedSpotterChatPrompt?: boolean;
12576
+ /**
12577
+ * Sets the default query mode when Spotter loads — Fast Search or
12578
+ * Research Mode. Applies fresh on every new session for this embed
12579
+ * instance only; it does not persist as a user preference and does
12580
+ * not affect other embeds or native ThoughtSpot usage.
12581
+ * Only applicable when navigating to Spotter within the app.
12582
+ *
12583
+ * Supported embed types: `AppEmbed`
12584
+ * @version SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
12585
+ * @default SpotterQueryMode.FAST_SEARCH
12586
+ * @example
12587
+ * ```js
12588
+ * const embed = new AppEmbed('#tsEmbed', {
12589
+ * ... //other embed view config
12590
+ * defaultQueryMode: SpotterQueryMode.RESEARCH,
12591
+ * })
12592
+ * ```
12593
+ */
12594
+ defaultQueryMode?: SpotterQueryMode;
12223
12595
  /**
12224
12596
  * Controls the visibility of the past conversations sidebar.
12225
12597
  *
@@ -12292,6 +12664,12 @@ export interface AppViewConfig extends AllEmbedViewConfig {
12292
12664
  * { label: 'Tip', text: 'try asking about revenue by region' },
12293
12665
  * { label: 'Tip', text: 'use natural language' },
12294
12666
  * ],
12667
+ * // liveboardBrandName, spotterBrandName, insightTileBrandName, insightTileViewPlanLabel and insightTileLoaderText require SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
12668
+ * liveboardBrandName: 'Reports',
12669
+ * spotterBrandName: 'Analyst',
12670
+ * insightTileBrandName: 'Insight card',
12671
+ * insightTileViewPlanLabel: 'View plan',
12672
+ * insightTileLoaderText: 'Generating insight',
12295
12673
  * },
12296
12674
  * })
12297
12675
  * ```
@@ -12994,6 +13372,12 @@ export interface LiveboardViewConfig extends BaseViewConfig, SearchLiveboardComm
12994
13372
  * { label: 'Tip', text: 'try asking about revenue by region' },
12995
13373
  * { label: 'Tip', text: 'use natural language' },
12996
13374
  * ],
13375
+ * // liveboardBrandName, spotterBrandName, insightTileBrandName, insightTileViewPlanLabel and insightTileLoaderText require SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl
13376
+ * liveboardBrandName: 'Reports',
13377
+ * spotterBrandName: 'Analyst',
13378
+ * insightTileBrandName: 'Insight card',
13379
+ * insightTileViewPlanLabel: 'View plan',
13380
+ * insightTileLoaderText: 'Generating insight',
12997
13381
  * },
12998
13382
  * })
12999
13383
  * ```