Skip to content

Commit 41973de

Browse files
committed
fix(agent-core): keep the Codex login exports in the services barrel
The bare side-effect import is the only one in this barrel, and no test can prove it survives bundling, so the DI registration could be dropped from the shipped artifact. Keeping the plain re-exports leaves the registration provable.
1 parent 5a5abe3 commit 41973de

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

  • packages/agent-core/src/services

packages/agent-core/src/services/index.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,12 @@ export {
110110
CodexLoginNotFoundError,
111111
CodexLoginInvalidCodeError,
112112
} from './codexLogin/codexLogin';
113-
import './codexLogin/codexLoginService';
113+
export {
114+
CodexLoginFlow,
115+
CodexLoginService,
116+
pickDefaultModel,
117+
} from './codexLogin/codexLoginService';
118+
export type { CodexLoginDeps } from './codexLogin/codexLoginService';
114119

115120

116121
export {

0 commit comments

Comments
 (0)