ashish-sdk
Version:
ThoughtSpot Embed SDK
53 lines (50 loc) • 1.03 kB
text/typescript
/**
* Copyright (c) 2022
*
* ThoughtSpot Visual Embed SDK for embedding ThoughtSpot analytics
* in other web applications.
*
* @summary ThoughtSpot Visual Embed SDK
* @author Ayon Ghosh <ayon.ghosh@thoughtspot.com>
*/
import { AppEmbed, Page, AppViewConfig } from './embed/app';
import { init, prefetch } from './embed/base';
import {
PinboardEmbed,
LiveboardViewConfig,
LiveboardEmbed,
} from './embed/liveboard';
import { SearchEmbed, SearchViewConfig } from './embed/search';
import {
AuthType,
RuntimeFilter,
RuntimeFilterOp,
EmbedEvent,
HostEvent,
DataSourceVisualMode,
Action,
EmbedConfig,
Plugin,
} from './types';
export {
init,
prefetch,
SearchEmbed,
PinboardEmbed,
LiveboardEmbed,
AppEmbed,
// types
Page,
AuthType,
RuntimeFilter,
RuntimeFilterOp,
EmbedEvent,
HostEvent,
DataSourceVisualMode,
Action,
EmbedConfig,
SearchViewConfig,
LiveboardViewConfig,
AppViewConfig,
Plugin,
};