Skip to content

Commit 74d74f8

Browse files
broken link fixes and event example updates
1 parent e8d7f8a commit 74d74f8

9 files changed

Lines changed: 26 additions & 84 deletions

modules/ROOT/pages/common/nav.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,7 @@ include::generated/typedoc/CustomSideNav.adoc[]
275275
** link:https://developers.thoughtspot.com/codespot[CodeSpot, window=_blank]
276276
** link:https://training.thoughtspot.com/page/developer[Training resources, window=_blank]
277277
** link:https://docs.thoughtspot.com[Product Documentation, window=_blank]
278-
** link:{{navprefix}}/rest-apiv2-beta-reference[REST API v2 ^Beta^ Reference (Deprecated)]
279278
** link:{{navprefix}}/abac-user-parameters-beta[ABAC via tokens (pre-10.4.0.cl) (Deprecated)]
280279
280+
281+

modules/ROOT/pages/embed-ai-analytics.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ The thinking and reasoning UX in Spotter conversations shows step-by-step reason
147147

148148
**Default state in embed**: Enabled by default if the feature is enabled at the instance level.
149149

150-
|link:https://docs.thoughtspot.com/cloud/latest/spotter-coach-conversation[Spotter coaching within conversation sessions, window=_blank] +
150+
|link:https://docs.thoughtspot.com/cloud/latest/spotter-coaching-options[Spotter coaching within conversation sessions, window=_blank] +
151151
The coaching workflow in Spotter conversations.
152152

153153
|**Supported Spotter version**: +

modules/ROOT/pages/embed-events.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ Fires when a change occurs in the search bar, including the initial load of the
4242
== Related resources
4343

4444
* See xref:EmbedEvent.adoc[EmbedEvent] and xref:HostEvent.adoc[HostEvent] SDK documentation.
45-
* For information about triggering events on React components, see xref:tutorials:react-components/react-components_lesson-04.adoc[Event listeners for React components].
45+
* For information about triggering events on React components, see xref:react-components_lesson-04.adoc[Event listeners for React components].

modules/ROOT/pages/event-embedEvents.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,5 +293,5 @@ For information about the supported event objects and examples, see xref:EmbedEv
293293
== Additional resources
294294

295295
* See the xref:EmbedEvent.adoc[EmbedEvent] and xref:HostEvent.adoc[HostEvent] SDK documentation.
296-
* For information about triggering events on React components, see xref:tutorials:react-components/react-components_lesson-04.adoc[Event listeners for React components].
296+
* For information about triggering events on React components, see xref:react-components_lesson-04.adoc[Event listeners for React components].
297297

modules/ROOT/pages/events-context-aware-routing.adoc

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,8 @@ The following example routes the event to the top-most active page in the user's
333333

334334
[source,TypeScript]
335335
----
336+
import { HostEvent } from '@thoughtspot/visual-embed-sdk';
337+
336338
// Implicit context: top‑most active page (For example, the visualization page on top of Liveboard)
337339
liveboardEmbed.trigger(HostEvent.OpenFilter, {
338340
column: {
@@ -345,6 +347,8 @@ The following example explicitly sets the target context to route the event trig
345347

346348
[source,TypeScript]
347349
----
350+
import { HostEvent, ContextType } from '@thoughtspot/visual-embed-sdk';
351+
348352
// Explicit context: force filters to open on the underlying Liveboard
349353
appEmbed.trigger(
350354
HostEvent.OpenFilter, {
@@ -365,6 +369,8 @@ The following example routes the event to top-most active page. The filter updat
365369

366370
[source,TypeScript]
367371
----
372+
import { HostEvent } from '@thoughtspot/visual-embed-sdk';
373+
368374
// Implicit context: current active page with runtime filters
369375
liveboardEmbed.trigger(HostEvent.UpdateRuntimeFilters, [
370376
{
@@ -384,6 +390,8 @@ The following example explicitly sets the target context to route the event trig
384390

385391
[source,TypeScript]
386392
----
393+
import { HostEvent, ContextType } from '@thoughtspot/visual-embed-sdk';
394+
387395
// Explicit context: update runtime filters in the Answer layer
388396
appEmbed.trigger(
389397
HostEvent.UpdateRuntimeFilters,
@@ -405,6 +413,8 @@ The following example shows implicit context in a single-layer UI:
405413

406414
[source,TypeScript]
407415
----
416+
import { HostEvent } from '@thoughtspot/visual-embed-sdk';
417+
408418
// Implicit context: pin from the current page
409419
spotterEmbed.trigger(HostEvent.Pin);
410420
----
@@ -413,6 +423,8 @@ The following example shows how to explicitly set the target context to route th
413423

414424
[source,TypeScript]
415425
----
426+
import { HostEvent, ContextType } from '@thoughtspot/visual-embed-sdk';
427+
416428
// Parameterized with explicit context: pin a visualization from a Liveboard layer
417429
appEmbed.trigger(
418430
HostEvent.Pin,
@@ -504,4 +516,4 @@ console.log("Full stack:", payload.stack);
504516
== Related resources
505517

506518
* For information about host events and the supported enumeration members in the SDK, see xref:events-hostEvents.adoc[Using host events] and xref:HostEvent.adoc[HostEvent].
507-
* For information about triggering actions in React embed components, see xref:tutorials:react-components/react-components_lesson-04.adoc[Event listeners for React components].
519+
* For information about triggering actions in React embed components, see xref:react-components_lesson-04.adoc[Event listeners for React components].

modules/ROOT/pages/events-hostEvents.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,5 +277,5 @@ Fires when a change occurs in the search bar, including the initial load of the
277277
== Related resources
278278

279279
* See xref:EmbedEvent.adoc[EmbedEvent] and xref:HostEvent.adoc[HostEvent] SDK documentation.
280-
* For information about triggering events on React components, see xref:tutorials:react-components/react-components_lesson-04.adoc[Event listeners for React components].
280+
* For information about triggering events on React components, see xref:react-components_lesson-04.adoc[Event listeners for React components].
281281

modules/ROOT/pages/mcp-server-client-connection.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ Before you begin, review the following prerequisites:
3232
=== Connecting clients that support remote MCP servers
3333
To connect to a client that supports remote MCP servers natively, add the MCP Server endpoint to your client's configuration settings.
3434

35-
`https://agent.thoughtspot.app/mcp`
35+
`\https://agent.thoughtspot.app/mcp`
3636

3737
For clients that require a bearer token for authentication, use the following URL format:
3838

39-
`https://agent.thoughtspot.app/bearer/mcp`
39+
`\https://agent.thoughtspot.app/bearer/mcp`
4040

4141
For OpenAI MCP and Responses API integration, use the following URL:
4242

43-
`https://agent.thoughtspot.app/openai/mcp`
43+
`\https://agent.thoughtspot.app/openai/mcp`
4444

4545
For additional information about how to register a remote MCP Server, refer to your client's documentation.
4646

modules/ROOT/pages/search-assist-tse.adoc

Lines changed: 0 additions & 71 deletions
This file was deleted.

modules/ROOT/pages/whats-new.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1978,7 +1978,7 @@ New API endpoints::
19781978
* `POST /tspublic/rest/v2/report/answer`
19791979
* `GET /tspublic/rest/v2/logs/events`
19801980
1981-
For more information, see xref:rest-api-v2-reference-beta.adoc[REST API v2 Reference].
1981+
//For more information, see xref:rest-api-v2-reference-beta.adoc[REST API v2 Reference].
19821982
19831983
====
19841984

@@ -2066,7 +2066,7 @@ The SDK includes the following new event:
20662066
20672067
* `RouteChange`
20682068
2069-
For more information, see xref:events-ref.adoc[Events reference].
2069+
For more information, see xref:embed-events.adoc[Events reference].
20702070
20712071
|====
20722072
====
@@ -2156,7 +2156,7 @@ The SDK supports the following new events:
21562156
* `DialogOpen`
21572157
* `DialogClose`
21582158
2159-
For more information, see xref:events-ref.adoc[Events reference].
2159+
For more information, see xref:embed-events.adoc[Events reference].
21602160
21612161
|====
21622162
====
@@ -2251,7 +2251,7 @@ The SDK EmbedEvent library includes the following new events:
22512251
* `Drilldown`
22522252
* `SetVisibleVizs`
22532253
2254-
For more information, see xref:events-ref.adoc#embed-events[Events reference].
2254+
For more information, see xref:embed-events.adoc[Events reference].
22552255
22562256
|====
22572257
====

0 commit comments

Comments
 (0)