Skip to content

Commit 78e7859

Browse files
Update codex to 0.122.0
1 parent 9dcedec commit 78e7859

197 files changed

Lines changed: 779 additions & 498 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

package-lock.json

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
},
5151
"dependencies": {
5252
"@agentclientprotocol/sdk": "^0.16.1",
53-
"@openai/codex": "^0.120.0",
53+
"@openai/codex": "^0.122.0",
5454
"diff": "^8.0.3",
5555
"open": "^11.0.0",
5656
"vscode-jsonrpc": "^8.2.1"

src/app-server/AgentMessageItem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import type { MessagePhase } from "./MessagePhase";
1111
* should use it when present, but retain legacy completion semantics when it
1212
* is `None`.
1313
*/
14-
export type AgentMessageItem = { id: string, content: Array<AgentMessageContent>,
14+
export type AgentMessageItem = { id: string, content: Array<AgentMessageContent>,
1515
/**
1616
* Optional phase metadata carried through from `ResponseItem::Message`.
1717
*

src/app-server/ApplyPatchApprovalParams.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
import type { FileChange } from "./FileChange";
55
import type { ThreadId } from "./ThreadId";
66

7-
export type ApplyPatchApprovalParams = { conversationId: ThreadId,
7+
export type ApplyPatchApprovalParams = { conversationId: ThreadId,
88
/**
99
* Use to correlate this with [codex_protocol::protocol::PatchApplyBeginEvent]
1010
* and [codex_protocol::protocol::PatchApplyEndEvent].
1111
*/
12-
callId: string, fileChanges: { [key in string]?: FileChange },
12+
callId: string, fileChanges: { [key in string]?: FileChange },
1313
/**
1414
* Optional explanatory reason (e.g. request for extra write access).
1515
*/
16-
reason: string | null,
16+
reason: string | null,
1717
/**
1818
* When set, the agent is asking the user to allow writes under this root
1919
* for the remainder of the session (unclear if this is honored today).

src/app-server/ApplyPatchApprovalRequestEvent.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
44
import type { FileChange } from "./FileChange";
55

6-
export type ApplyPatchApprovalRequestEvent = {
6+
export type ApplyPatchApprovalRequestEvent = {
77
/**
88
* Responses API call id for the associated patch apply call, if available.
99
*/
10-
call_id: string,
10+
call_id: string,
1111
/**
1212
* Turn ID that this patch belongs to.
1313
* Uses `#[serde(default)]` for backwards compatibility with older senders.
1414
*/
15-
turn_id: string, changes: { [key in string]?: FileChange },
15+
turn_id: string, changes: { [key in string]?: FileChange },
1616
/**
1717
* Optional explanatory reason (e.g. request for extra write access).
1818
*/
19-
reason: string | null,
19+
reason: string | null,
2020
/**
2121
* When set, the agent is asking the user to allow writes under this root for the remainder of the session.
2222
*/

src/app-server/ByteRange.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
44

5-
export type ByteRange = {
5+
export type ByteRange = {
66
/**
77
* Start byte offset (inclusive) within the UTF-8 text buffer.
88
*/
9-
start: number,
9+
start: number,
1010
/**
1111
* End byte offset (exclusive) within the UTF-8 text buffer.
1212
*/

0 commit comments

Comments
 (0)