Skip to content

Commit ed8057e

Browse files
Fix type and test fixture regressions after Codex update
1 parent 6b21165 commit ed8057e

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/CodexEventHandler.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ export class CodexEventHandler {
7171
return await this.createTextEvent(notification.params);
7272
case "item/started":
7373
return await this.createItemEvent(notification.params);
74+
case "item/autoApprovalReview/started":
75+
case "item/autoApprovalReview/completed":
76+
return null;
7477
case "item/completed":
7578
return await this.completeItemEvent(notification.params);
7679
case "turn/plan/updated":

src/__tests__/CodexACPAgent/load-session.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ describe("CodexACPAgent - loadSession", () => {
7676
id: "item-agent-1",
7777
text: "Hello!",
7878
phase: null,
79+
memoryCitation: null,
7980
},
8081
{
8182
type: "reasoning",

0 commit comments

Comments
 (0)