Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
timeout-minutes: 10
name: lint
runs-on: ${{ github.repository == 'stainless-sdks/runloop-node' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
steps:
- uses: actions/checkout@v6

Expand All @@ -41,7 +41,7 @@ jobs:
timeout-minutes: 5
name: build
runs-on: ${{ github.repository == 'stainless-sdks/runloop-node' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
permissions:
contents: read
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.13.0"
".": "1.14.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 122
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-efb88e3669a1c631b1537bb0872c94d29586dfc6e9f403418cdc53a21efdb0bc.yml
openapi_spec_hash: 55189696e264bf48a712acf4df21a807
config_hash: 2dbb07d90e3e2d37fa6645af119965d5
configured_endpoints: 124
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-c576eb67f119a7eb5815d4a3bf413c652cd7e4c257095e3b6b51967fe72fc00e.yml
openapi_spec_hash: 0a4d20adf725a121e39a3442afa34b32
config_hash: a759c23a5a04ad26f8740acc7e094c01
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 1.14.0 (2026-03-25)

Full Changelog: [v1.13.0...v1.14.0](https://github.com/runloopai/api-client-ts/compare/v1.13.0...v1.14.0)

### Features

* Add axon rest endpoints for raw SQL access ([#8287](https://github.com/runloopai/api-client-ts/issues/8287)) ([4f8b988](https://github.com/runloopai/api-client-ts/commit/4f8b9884344cbb0c0a1a86d66390086e9b397e2a))


### Bug Fixes

* **broker:** broker protocol renames for clarity / future proof ([#8285](https://github.com/runloopai/api-client-ts/issues/8285)) ([db4eadd](https://github.com/runloopai/api-client-ts/commit/db4eaddd921cb07879fccf9fbb8ca902b9cdbb6b))


### Chores

* **ci:** skip lint on metadata-only changes ([3ea23af](https://github.com/runloopai/api-client-ts/commit/3ea23af6a629913bc7aba2d65c7173df86a817e3))
* **tests:** bump steady to v0.19.7 ([ef57274](https://github.com/runloopai/api-client-ts/commit/ef57274687f6e364bab6055bc9fca40b531c6602))

## 1.13.0 (2026-03-25)

Full Changelog: [v1.12.0...v1.13.0](https://github.com/runloopai/api-client-ts/compare/v1.12.0...v1.13.0)
Expand Down
40 changes: 29 additions & 11 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,20 +81,38 @@ Methods:

Types:

- <code><a href="./src/resources/axons.ts">AxonCreateParams</a></code>
- <code><a href="./src/resources/axons.ts">AxonEventView</a></code>
- <code><a href="./src/resources/axons.ts">AxonListView</a></code>
- <code><a href="./src/resources/axons.ts">AxonView</a></code>
- <code><a href="./src/resources/axons.ts">PublishParams</a></code>
- <code><a href="./src/resources/axons.ts">PublishResultView</a></code>
- <code><a href="./src/resources/axons/axons.ts">AxonCreateParams</a></code>
- <code><a href="./src/resources/axons/axons.ts">AxonEventView</a></code>
- <code><a href="./src/resources/axons/axons.ts">AxonListView</a></code>
- <code><a href="./src/resources/axons/axons.ts">AxonView</a></code>
- <code><a href="./src/resources/axons/axons.ts">PublishParams</a></code>
- <code><a href="./src/resources/axons/axons.ts">PublishResultView</a></code>

Methods:

- <code title="post /v1/axons">client.axons.<a href="./src/resources/axons.ts">create</a>({ ...params }) -> AxonView</code>
- <code title="get /v1/axons/{id}">client.axons.<a href="./src/resources/axons.ts">retrieve</a>(id) -> AxonView</code>
- <code title="get /v1/axons">client.axons.<a href="./src/resources/axons.ts">list</a>() -> AxonListView</code>
- <code title="post /v1/axons/{id}/publish">client.axons.<a href="./src/resources/axons.ts">publish</a>(id, { ...params }) -> PublishResultView</code>
- <code title="get /v1/axons/{id}/subscribe/sse">client.axons.<a href="./src/resources/axons.ts">subscribeSse</a>(id) -> AxonEventView</code>
- <code title="post /v1/axons">client.axons.<a href="./src/resources/axons/axons.ts">create</a>({ ...params }) -> AxonView</code>
- <code title="get /v1/axons/{id}">client.axons.<a href="./src/resources/axons/axons.ts">retrieve</a>(id) -> AxonView</code>
- <code title="get /v1/axons">client.axons.<a href="./src/resources/axons/axons.ts">list</a>() -> AxonListView</code>
- <code title="post /v1/axons/{id}/publish">client.axons.<a href="./src/resources/axons/axons.ts">publish</a>(id, { ...params }) -> PublishResultView</code>
- <code title="get /v1/axons/{id}/subscribe/sse">client.axons.<a href="./src/resources/axons/axons.ts">subscribeSse</a>(id) -> AxonEventView</code>

## Sql

Types:

- <code><a href="./src/resources/axons/sql.ts">SqlBatchParams</a></code>
- <code><a href="./src/resources/axons/sql.ts">SqlBatchResultView</a></code>
- <code><a href="./src/resources/axons/sql.ts">SqlColumnMetaView</a></code>
- <code><a href="./src/resources/axons/sql.ts">SqlQueryResultView</a></code>
- <code><a href="./src/resources/axons/sql.ts">SqlResultMetaView</a></code>
- <code><a href="./src/resources/axons/sql.ts">SqlStatementParams</a></code>
- <code><a href="./src/resources/axons/sql.ts">SqlStepErrorView</a></code>
- <code><a href="./src/resources/axons/sql.ts">SqlStepResultView</a></code>

Methods:

- <code title="post /v1/axons/{id}/sql/batch">client.axons.sql.<a href="./src/resources/axons/sql.ts">batch</a>(id, { ...params }) -> SqlBatchResultView</code>
- <code title="post /v1/axons/{id}/sql/query">client.axons.sql.<a href="./src/resources/axons/sql.ts">query</a>(id, { ...params }) -> SqlQueryResultView</code>

# Blueprints

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@runloop/api-client",
"version": "1.13.0",
"version": "1.14.0",
"description": "The official TypeScript library for the Runloop API",
"author": "Runloop <support@runloop.ai>",
"types": "dist/sdk.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dxt_version": "0.2",
"name": "@runloop/api-client-mcp",
"version": "1.13.0",
"version": "1.14.0",
"description": "The official MCP Server for the Runloop API",
"author": {
"name": "Runloop",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@runloop/api-client-mcp",
"version": "1.13.0",
"version": "1.14.0",
"description": "The official MCP Server for the Runloop API",
"author": "Runloop <support@runloop.ai>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
new McpServer(
{
name: 'runloop_api_client_api',
version: '1.13.0',
version: '1.14.0',
},
{
instructions: await getInstructions(stainlessApiKey),
Expand Down
6 changes: 3 additions & 3 deletions scripts/mock
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ echo "==> Starting mock server with URL ${URL}"
# Run steady mock on the given spec
if [ "$1" == "--daemon" ]; then
# Pre-install the package so the download doesn't eat into the startup timeout
npm exec --package=@stdy/cli@0.19.6 -- steady --version
npm exec --package=@stdy/cli@0.19.7 -- steady --version

npm exec --package=@stdy/cli@0.19.6 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=brackets --validator-query-object-format=brackets "$URL" &> .stdy.log &
npm exec --package=@stdy/cli@0.19.7 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=brackets --validator-query-object-format=brackets "$URL" &> .stdy.log &

# Wait for server to come online via health endpoint (max 30s)
echo -n "Waiting for server"
Expand All @@ -48,5 +48,5 @@ if [ "$1" == "--daemon" ]; then

echo
else
npm exec --package=@stdy/cli@0.19.6 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=brackets --validator-query-object-format=brackets "$URL"
npm exec --package=@stdy/cli@0.19.7 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=brackets --validator-query-object-format=brackets "$URL"
fi
2 changes: 1 addition & 1 deletion scripts/test
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ elif ! steady_is_running ; then
echo -e "To run the server, pass in the path or url of your OpenAPI"
echo -e "spec to the steady command:"
echo
echo -e " \$ ${YELLOW}npm exec --package=@stdy/cli@0.19.6 -- steady path/to/your.openapi.yml --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=brackets --validator-query-object-format=brackets${NC}"
echo -e " \$ ${YELLOW}npm exec --package=@stdy/cli@0.19.7 -- steady path/to/your.openapi.yml --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=brackets --validator-query-object-format=brackets${NC}"
echo

exit 1
Expand Down
20 changes: 10 additions & 10 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,6 @@ import {
AgentViewsAgentsCursorIDPage,
Agents,
} from './resources/agents';
import {
AxonCreateParams,
AxonEventView,
AxonListView,
AxonPublishParams,
AxonView,
Axons,
PublishParams,
PublishResultView,
} from './resources/axons';
import {
BenchmarkJobCreateParameters,
BenchmarkJobCreateParams,
Expand Down Expand Up @@ -183,6 +173,16 @@ import {
SecretView,
Secrets,
} from './resources/secrets';
import {
AxonCreateParams,
AxonEventView,
AxonListView,
AxonPublishParams,
AxonView,
Axons,
PublishParams,
PublishResultView,
} from './resources/axons/axons';
import {
DevboxAsyncExecutionDetailView,
DevboxCreateParams,
Expand Down
Loading
Loading