diff --git a/docs/generated/changelog.html b/docs/generated/changelog.html
index cc0ec2cf..f353d4db 100644
--- a/docs/generated/changelog.html
+++ b/docs/generated/changelog.html
@@ -12,6 +12,7 @@
Agent-JS Changelog
Version x.x.x
+ - chore: exporting http errors
- chore: cleaning up lint warnings
- chore: cleans up github actions linting warnings
- feat: replaces `secp256k1` npm package with `@noble/curves`
diff --git a/packages/agent/src/agent/index.ts b/packages/agent/src/agent/index.ts
index 06c52e18..f48a996a 100644
--- a/packages/agent/src/agent/index.ts
+++ b/packages/agent/src/agent/index.ts
@@ -3,6 +3,7 @@ import { Agent } from './api';
export * from './api';
export * from './http';
+export * from './http/errors';
export * from './proxy';
declare const window: GlobalInternetComputer;