Skip to content

Commit 113c92b

Browse files
feat(api): add codex broker mount protocol and axon attach enum value (#10186)
1 parent c238123 commit 113c92b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 119
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-99b4be5cc4cd6f2e1cfd71d5a9ec5409dd9293fe6084833da76f178010bfdcab.yml
3-
openapi_spec_hash: 4760825b37e131da53c88bf893b60937
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-0c2afaabf6aab84a49eaf4f94efa48a70afe47a73c6a684f38c0909a8f6ae15b.yml
3+
openapi_spec_hash: cf9b348173a796db0252c59468a464f7
44
config_hash: 9f32651e6269089b5d6c33594b992232

src/resources/shared.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,20 +162,20 @@ export interface BrokerMount {
162162

163163
/**
164164
* Binary to launch the agent (e.g., 'opencode'). Used by protocols that launch a
165-
* subprocess (acp, claude_json).
165+
* subprocess (acp, claude_json, codex_json).
166166
*/
167167
agent_binary?: string | null;
168168

169169
/**
170170
* Arguments to pass to the agent command (e.g., ['acp']). Used by protocols that
171-
* launch a subprocess (acp, claude_json).
171+
* launch a subprocess (acp, claude_json, codex_json).
172172
*/
173173
launch_args?: Array<string> | null;
174174

175175
/**
176176
* The protocol used by the broker to deliver events to the agent.
177177
*/
178-
protocol?: 'acp' | 'claude_json' | null;
178+
protocol?: 'acp' | 'claude_json' | 'codex_json' | null;
179179

180180
/**
181181
* Working directory in which to launch the agent binary. Defaults to the home

0 commit comments

Comments
 (0)