Skip to content

Commit 5dea869

Browse files
SCAL-284119 update the version for enablePastConversationsSidebar to 26.2.0.cl (#355)
Co-authored-by: ravishah8176 <ravi.shah@thoughtspot.com>
1 parent cd0ec5d commit 5dea869

File tree

3 files changed

+1856
-1815
lines changed

3 files changed

+1856
-1815
lines changed

src/embed/conversation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export interface SpotterEmbedViewConfig extends Omit<BaseViewConfig, 'primaryAct
177177
* enablePastConversationsSidebar : true,
178178
* })
179179
* ```
180-
* @version SDK: 1.43.0 | ThoughtSpot: 10.14.0.cl
180+
* @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl
181181
*/
182182
enablePastConversationsSidebar?: boolean;
183183
}
@@ -263,7 +263,7 @@ export class SpotterEmbed extends TsEmbed {
263263
excludeRuntimeFiltersfromURL,
264264
runtimeParameters,
265265
excludeRuntimeParametersfromURL,
266-
enablePastConversationsSidebar
266+
enablePastConversationsSidebar,
267267
} = this.viewConfig;
268268
const path = 'insights/conv-assist';
269269
const queryParams = this.getEmbedParamsObject();

src/types.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2973,7 +2973,7 @@ export enum EmbedEvent {
29732973
*```
29742974
* @version SDK: 1.44.0 | ThoughtSpot: 26.2.0.cl
29752975
*/
2976-
SpotterLoadComplete = 'spotterLoadComplete',
2976+
SpotterLoadComplete = 'spotterLoadComplete',
29772977
/**
29782978
* @hidden
29792979
* Triggers when the embed listener is ready to receive events.
@@ -4424,6 +4424,18 @@ export enum HostEvent {
44244424
* @version SDK: 1.41.0 | ThoughtSpot: 10.12.0.cl
44254425
*/
44264426
DestroyEmbed = 'EmbedDestroyed',
4427+
/** Triggers a create new conversation operation in spotter embed.
4428+
* @example
4429+
* ```js
4430+
* This feature is available only when chat history is enabled on your ThoughtSpot instance.
4431+
* Contact your admin or ThoughtSpot Support to enable chat history on your instance.
4432+
* @example
4433+
* ```js
4434+
* spotterEmbed.trigger(HostEvent.StartNewSpotterConversation);
4435+
* ```
4436+
* @version SDK: 1.45.0 | ThoughtSpot: 26.2.0.cl
4437+
*/
4438+
StartNewSpotterConversation = 'StartNewSpotterConversation',
44274439
}
44284440

44294441
/**

0 commit comments

Comments
 (0)