LLMs.txt: Complete documentation index for AI agents
EmbedErrorSeverity

EmbedErrorSeverity

Table of Contents

How badly an error affects the embed, so the host can decide whether it is worth surfacing to the end user.

Mirrors the severity that ThoughtSpot itself stamps on errors raised inside the embedded app, so a host can apply one rule to both sources.

Version : SDK: 1.52.0 | ThoughtSpot Cloud: 26.9.0.cl

Only surface errors that took the embed down

embed.on(EmbedEvent.Error, (error) => {
  if (error.severity === EmbedErrorSeverity.SEV1) {
    showBanner(error.message);
  }
});

Enumeration membersπŸ”—

SEV1πŸ”—

SEV1:= 1

The embed cannot render. Nothing usable is on screen.

Defined in : types.ts

SEV2πŸ”—

SEV2:= 2

Something is degraded but the embed still works.

Defined in : types.ts

SEV3πŸ”—

SEV3:= 3

Everything else, including validation of the embedder’s own input.

Defined in : types.ts

Β© 2026 ThoughtSpot Inc. All Rights Reserved.