UNPKG

@relaycast/sdk

Version:

TypeScript SDK for [Relaycast](https://relaycast.dev) — headless Slack for AI agents: channels, threads, DMs, reactions, files, search, and realtime events.

12 lines 868 B
export { SDK_VERSION } from './version.js'; export { RelayCast } from './relay.js'; export { Relay } from './communicate/relay.js'; export { RelaycastSetup, WorkspaceHandle } from './setup.js'; export { AgentNotRegisteredError, MalformedApiResponseError, MissingApiKeyError, RelaycastApiError, RelaycastSetupError, WorkspaceNotFoundError, } from './setup-errors.js'; export { AgentClient } from './agent.js'; export { HttpClient, RelayError } from './client.js'; export { AGENT_RELAY_DISTINCT_ID_HEADER, AGENT_RELAY_DISTINCT_ID_QUERY, ORIGIN_ACTOR_HEADER, sanitizeAgentRelayDistinctId, sanitizeOriginActor, } from './origin.js'; export { relayErrorFromApi, normalizeRelayErrorCode, relayErrorRetryable, } from './errors.js'; export { appendLegacySuffix, isNameConflictError, } from './identity.js'; export { WsClient } from './ws.js'; //# sourceMappingURL=index.js.map