From 74d4e28a0b4a1443cab87e66e45b358e1650b193 Mon Sep 17 00:00:00 2001 From: Angel Garcia Date: Sat, 13 Jun 2026 16:10:42 -0600 Subject: [PATCH] Add package root export entry --- src/index.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/index.ts diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 00000000..97ca3425 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,25 @@ +/** + * Bedrock AgentCore SDK + */ + +export { BedrockAgentCoreApp, RuntimeClient } from './runtime/index.js' +export { withAccessToken, withApiKey } from './identity/index.js' +export { Browser } from './tools/browser/index.js' +export { CodeInterpreter } from './tools/code-interpreter/index.js' + +export type { + BedrockAgentCoreAppConfig, + ContentTypeParserConfig, + Handler, + RequestContext, + HealthStatus, + HealthCheckResponse, + AsyncTaskInfo, + AsyncTaskStatus, + RuntimeClientConfig, + GenerateWsConnectionParams, + GeneratePresignedUrlParams, + GenerateWsConnectionOAuthParams, + WebSocketConnection, + ParsedRuntimeArn, +} from './runtime/index.js'