File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
2- "." : " 1.12 .0"
2+ "." : " 1.13 .0"
33}
Original file line number Diff line number Diff line change 11configured_endpoints : 122
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-32e4b2dfb75745be076697d252bd80aff21c08464750928ffe2b7dd997d0b443 .yml
3- openapi_spec_hash : eb0ccabfcda0fb8c56b53939b56f6d80
4- config_hash : c422b761c745873bce8fa5ccf03b7b98
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-efb88e3669a1c631b1537bb0872c94d29586dfc6e9f403418cdc53a21efdb0bc .yml
3+ openapi_spec_hash : 55189696e264bf48a712acf4df21a807
4+ config_hash : 2dbb07d90e3e2d37fa6645af119965d5
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.13.0 (2026-03-25)
4+
5+ Full Changelog: [ v1.12.0...v1.13.0] ( https://github.com/runloopai/api-client-ts/compare/v1.12.0...v1.13.0 )
6+
7+ ### Features
8+
9+ * add BrokerMount to OpenAPI spec ([ #8282 ] ( https://github.com/runloopai/api-client-ts/issues/8282 ) ) ([ 88863c6] ( https://github.com/runloopai/api-client-ts/commit/88863c61384888bd25bb7d5733a1100b319b62bb ) )
10+ * adding axon sdk methods ([ #758 ] ( https://github.com/runloopai/api-client-ts/issues/758 ) ) ([ 1681eb3] ( https://github.com/runloopai/api-client-ts/commit/1681eb385979849a8f95843eba833eaa983031bb ) )
11+
12+
13+ ### Chores
14+
15+ * ** sdk:** update ` removeTunnel() ` oo sdk method and add smoketest ([ #756 ] ( https://github.com/runloopai/api-client-ts/issues/756 ) ) ([ db682a9] ( https://github.com/runloopai/api-client-ts/commit/db682a91d2a2c2a34d71492a11c26f396212f98b ) )
16+
317## 1.12.0 (2026-03-24)
418
519Full Changelog: [ v1.11.2...v1.12.0] ( https://github.com/runloopai/api-client-ts/compare/v1.11.2...v1.12.0 )
Original file line number Diff line number Diff line change 55- <code ><a href =" ./src/resources/shared.ts " >AfterIdle</a ></code >
66- <code ><a href =" ./src/resources/shared.ts " >AgentMount</a ></code >
77- <code ><a href =" ./src/resources/shared.ts " >AgentSource</a ></code >
8+ - <code ><a href =" ./src/resources/shared.ts " >BrokerMount</a ></code >
89- <code ><a href =" ./src/resources/shared.ts " >CodeMountParameters</a ></code >
910- <code ><a href =" ./src/resources/shared.ts " >LaunchParameters</a ></code >
1011- <code ><a href =" ./src/resources/shared.ts " >Mount</a ></code >
Original file line number Diff line number Diff line change 11{
22 "name" : " @runloop/api-client" ,
3- "version" : " 1.12 .0" ,
3+ "version" : " 1.13 .0" ,
44 "description" : " The official TypeScript library for the Runloop API" ,
55 "author" : " Runloop <support@runloop.ai>" ,
66 "types" : " dist/sdk.d.ts" ,
Original file line number Diff line number Diff line change 11{
22 "dxt_version" : " 0.2" ,
33 "name" : " @runloop/api-client-mcp" ,
4- "version" : " 1.12 .0" ,
4+ "version" : " 1.13 .0" ,
55 "description" : " The official MCP Server for the Runloop API" ,
66 "author" : {
77 "name" : " Runloop" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @runloop/api-client-mcp" ,
3- "version" : " 1.12 .0" ,
3+ "version" : " 1.13 .0" ,
44 "description" : " The official MCP Server for the Runloop API" ,
55 "author" : " Runloop <support@runloop.ai>" ,
66 "types" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
1616 new McpServer (
1717 {
1818 name : 'runloop_api_client_api' ,
19- version : '1.12 .0' ,
19+ version : '1.13 .0' ,
2020 } ,
2121 {
2222 instructions : await getInstructions ( stainlessApiKey ) ,
Original file line number Diff line number Diff line change @@ -766,6 +766,7 @@ export declare namespace Runloop {
766766 export type AfterIdle = API . AfterIdle ;
767767 export type AgentMount = API . AgentMount ;
768768 export type AgentSource = API . AgentSource ;
769+ export type BrokerMount = API . BrokerMount ;
769770 export type CodeMountParameters = API . CodeMountParameters ;
770771 export type LaunchParameters = API . LaunchParameters ;
771772 export type Mount = API . Mount ;
Original file line number Diff line number Diff line change @@ -152,6 +152,30 @@ export namespace AgentSource {
152152 }
153153}
154154
155+ export interface BrokerMount {
156+ /**
157+ * The ID of the axon event stream to mount onto the Devbox.
158+ */
159+ axon_id : string ;
160+
161+ type : 'broker_mount' ;
162+
163+ /**
164+ * Binary to launch the agent (e.g., 'opencode'). Used by ACP broker.
165+ */
166+ agent_binary ?: string | null ;
167+
168+ /**
169+ * Arguments to pass to the agent command (e.g., ['acp']). Used by ACP broker.
170+ */
171+ launch_args ?: Array < string > | null ;
172+
173+ /**
174+ * The protocol used by the broker to deliver events to the agent.
175+ */
176+ protocol ?: 'acp' | 'claude' | 'codex' | null ;
177+ }
178+
155179/**
156180 * Parameters for mounting code from a Git repository.
157181 *
@@ -287,7 +311,7 @@ export namespace LaunchParameters {
287311 *
288312 * @category Shared Types
289313 */
290- export type Mount = ObjectMount | AgentMount | Mount . CodeMount | Mount . FileMount ;
314+ export type Mount = ObjectMount | AgentMount | Mount . CodeMount | Mount . FileMount | BrokerMount ;
291315
292316export namespace Mount {
293317 export interface CodeMount {
You can’t perform that action at this time.
0 commit comments