Skip to content

Commit 6ff8d01

Browse files
github-actions[bot]ishulgin
authored andcommitted
Update codex to 0.144.0
1 parent f9f0994 commit 6ff8d01

10 files changed

Lines changed: 46 additions & 68 deletions

package-lock.json

Lines changed: 28 additions & 58 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
@@ -62,7 +62,7 @@
6262
},
6363
"dependencies": {
6464
"@agentclientprotocol/sdk": "^1.2.1",
65-
"@openai/codex": "^0.143.0",
65+
"@openai/codex": "^0.144.0",
6666
"diff": "^9.0.0",
6767
"open": "^11.0.0",
6868
"vscode-jsonrpc": "^9.0.1",

src/app-server/AuthMode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
/**
66
* Authentication mode for OpenAI-backed providers.
77
*/
8-
export type AuthMode = "apikey" | "chatgpt" | "chatgptAuthTokens" | "agentIdentity" | "personalAccessToken" | "bedrockApiKey";
8+
export type AuthMode = "apikey" | "chatgpt" | "chatgptAuthTokens" | "headers" | "agentIdentity" | "personalAccessToken" | "bedrockApiKey";
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// GENERATED CODE! DO NOT MODIFY BY HAND!
22

33
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
4+
import type { AbsolutePathBuf } from "./AbsolutePathBuf";
45

5-
export type ImageGenerationItem = { id: string, status: string, revised_prompt?: string, result: string, saved_path?: string, };
6+
export type ImageGenerationItem = { id: string, status: string, revisedPrompt: string | null, result: string, savedPath?: AbsolutePathBuf, };

src/app-server/WebSearchItem.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// GENERATED CODE! DO NOT MODIFY BY HAND!
22

33
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
4-
import type { WebSearchAction } from "./WebSearchAction";
4+
import type { WebSearchAction } from "./v2/WebSearchAction";
55

6-
export type WebSearchItem = { id: string, query: string, action: WebSearchAction, };
6+
export type WebSearchItem = { id: string, query: string, action: WebSearchAction | null, };

src/app-server/v2/AppToolApproval.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
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 AppToolApproval = "auto" | "prompt" | "approve";
5+
export type AppToolApproval = "auto" | "prompt" | "writes" | "approve";

src/app-server/v2/LoginAccountParams.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
// GENERATED CODE! DO NOT MODIFY BY HAND!
22

33
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
4+
import type { LoginAppBrand } from "./LoginAppBrand";
45

5-
export type LoginAccountParams = { "type": "apiKey", apiKey: string, } | { "type": "chatgpt", codexStreamlinedLogin?: boolean, } | { "type": "chatgptDeviceCode" } | { "type": "chatgptAuthTokens",
6+
export type LoginAccountParams = { "type": "apiKey", apiKey: string, } | { "type": "chatgpt", codexStreamlinedLogin?: boolean, useHostedLoginSuccessPage?: boolean, appBrand?: LoginAppBrand | null, } | { "type": "chatgptDeviceCode" } | { "type": "chatgptAuthTokens",
67
/**
78
* Access token (JWT) supplied by the client.
89
* This token is used for backend API requests and email extraction.

src/app-server/v2/LoginAppBrand.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// GENERATED CODE! DO NOT MODIFY BY HAND!
2+
3+
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
4+
5+
export type LoginAppBrand = "codex" | "chatgpt";

src/app-server/v2/ThreadItem.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
// GENERATED CODE! DO NOT MODIFY BY HAND!
22

33
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
4-
import type { AbsolutePathBuf } from "../AbsolutePathBuf";
4+
import type { ImageGenerationItem } from "../ImageGenerationItem";
55
import type { LegacyAppPathString } from "../LegacyAppPathString";
66
import type { MessagePhase } from "../MessagePhase";
77
import type { ReasoningEffort } from "../ReasoningEffort";
8+
import type { WebSearchItem } from "../WebSearchItem";
89
import type { JsonValue } from "../serde_json/JsonValue";
910
import type { CollabAgentState } from "./CollabAgentState";
1011
import type { CollabAgentTool } from "./CollabAgentTool";
@@ -24,7 +25,6 @@ import type { MemoryCitation } from "./MemoryCitation";
2425
import type { PatchApplyStatus } from "./PatchApplyStatus";
2526
import type { SubAgentActivityKind } from "./SubAgentActivityKind";
2627
import type { UserInput } from "./UserInput";
27-
import type { WebSearchAction } from "./WebSearchAction";
2828

2929
export type ThreadItem = { "type": "userMessage", id: string, clientId: string | null, content: Array<UserInput>, } | { "type": "hookPrompt", id: string, fragments: Array<HookPromptFragment>, } | { "type": "agentMessage", id: string, text: string, phase: MessagePhase | null, memoryCitation: MemoryCitation | null, } | { "type": "plan", id: string, text: string, } | { "type": "reasoning", id: string, summary: Array<string>, content: Array<string>, } | { "type": "commandExecution", id: string,
3030
/**
@@ -105,4 +105,4 @@ reasoningEffort: ReasoningEffort | null,
105105
/**
106106
* Last known status of the target agents, when available.
107107
*/
108-
agentsStates: { [key in string]?: CollabAgentState }, } | { "type": "subAgentActivity", id: string, kind: SubAgentActivityKind, agentThreadId: string, agentPath: string, } | { "type": "webSearch", id: string, query: string, action: WebSearchAction | null, } | { "type": "imageView", id: string, path: LegacyAppPathString, } | { "type": "sleep", id: string, durationMs: number, } | { "type": "imageGeneration", id: string, status: string, revisedPrompt: string | null, result: string, savedPath?: AbsolutePathBuf, } | { "type": "enteredReviewMode", id: string, review: string, } | { "type": "exitedReviewMode", id: string, review: string, } | { "type": "contextCompaction", id: string, };
108+
agentsStates: { [key in string]?: CollabAgentState }, } | { "type": "subAgentActivity", id: string, kind: SubAgentActivityKind, agentThreadId: string, agentPath: string, } | { "type": "webSearch" } & WebSearchItem | { "type": "imageView", id: string, path: LegacyAppPathString, } | { "type": "sleep", id: string, durationMs: number, } | { "type": "imageGeneration" } & ImageGenerationItem | { "type": "enteredReviewMode", id: string, review: string, } | { "type": "exitedReviewMode", id: string, review: string, } | { "type": "contextCompaction", id: string, };

src/app-server/v2/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ export type { ListMcpServersParams } from "./ListMcpServersParams";
216216
export type { ListMcpServersResponse } from "./ListMcpServersResponse";
217217
export type { LoginAccountParams } from "./LoginAccountParams";
218218
export type { LoginAccountResponse } from "./LoginAccountResponse";
219+
export type { LoginAppBrand } from "./LoginAppBrand";
219220
export type { LogoutAccountResponse } from "./LogoutAccountResponse";
220221
export type { ManagedHooksRequirements } from "./ManagedHooksRequirements";
221222
export type { MarketplaceAddParams } from "./MarketplaceAddParams";

0 commit comments

Comments
 (0)