Skip to content

Commit 7bcc3fc

Browse files
release: 1.8.1 (#717)
Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> Co-authored-by: Albert Li <albert@runloop.ai>
1 parent 54bb583 commit 7bcc3fc

24 files changed

Lines changed: 114 additions & 51 deletions

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.8.0"
2+
".": "1.8.1"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 117
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-c8d61a0c8b88fa30666ba021d1239eb0d549902354513c4741e9216bcbfa8e6d.yml
3-
openapi_spec_hash: 433e6fb4ce076012b696f69ae7596c67
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-8704a652545c3831c8b7e246ec17f1a626b59911eb5701ddc922ca6cae1c8d57.yml
3+
openapi_spec_hash: e609bc5ed3fdce498bc7d16921bbba5e
44
config_hash: eb28692edd68a6ae95cf92af931c9976

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 1.8.1 (2026-02-19)
4+
5+
Full Changelog: [v1.8.0...v1.8.1](https://github.com/runloopai/api-client-ts/compare/v1.8.0...v1.8.1)
6+
7+
### Chores
8+
9+
* **benchmarks:** removed unused validate scorer endpoint ([#716](https://github.com/runloopai/api-client-ts/issues/716)) ([54bb583](https://github.com/runloopai/api-client-ts/commit/54bb5834f011ad10f9cdb086cddca9810c05f13e))
10+
11+
12+
### Refactors
13+
14+
* deprecate and make Nullable total_count and remaining_count of ListViews ([#7533](https://github.com/runloopai/api-client-ts/issues/7533)) ([1af5508](https://github.com/runloopai/api-client-ts/commit/1af55086d738d85db55ac5a1116bd01950665902))
15+
316
## 1.8.0 (2026-02-12)
417

518
Full Changelog: [v1.7.0...v1.8.0](https://github.com/runloopai/api-client-ts/compare/v1.7.0...v1.8.0)

api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Methods:
144144
- <code title="post /v1/devboxes/{id}/remove_tunnel">client.devboxes.<a href="./src/resources/devboxes/devboxes.ts">removeTunnel</a>(id, { ...params }) -> unknown</code>
145145
- <code title="post /v1/devboxes/{id}/resume">client.devboxes.<a href="./src/resources/devboxes/devboxes.ts">resume</a>(id) -> DevboxView</code>
146146
- <code title="get /v1/devboxes/{id}/usage">client.devboxes.<a href="./src/resources/devboxes/devboxes.ts">retrieveResourceUsage</a>(id) -> DevboxResourceUsageView</code>
147-
- <code title="post /v1/devboxes/{id}/shutdown">client.devboxes.<a href="./src/resources/devboxes/devboxes.ts">shutdown</a>(id) -> DevboxView</code>
147+
- <code title="post /v1/devboxes/{id}/shutdown">client.devboxes.<a href="./src/resources/devboxes/devboxes.ts">shutdown</a>(id, { ...params }) -> DevboxView</code>
148148
- <code title="post /v1/devboxes/{id}/snapshot_disk">client.devboxes.<a href="./src/resources/devboxes/devboxes.ts">snapshotDisk</a>(id, { ...params }) -> DevboxSnapshotView</code>
149149
- <code title="post /v1/devboxes/{id}/snapshot_disk_async">client.devboxes.<a href="./src/resources/devboxes/devboxes.ts">snapshotDiskAsync</a>(id, { ...params }) -> DevboxSnapshotView</code>
150150
- <code title="post /v1/devboxes/{id}/suspend">client.devboxes.<a href="./src/resources/devboxes/devboxes.ts">suspend</a>(id) -> DevboxView</code>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@runloop/api-client",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"description": "The official TypeScript library for the Runloop API",
55
"author": "Runloop <support@runloop.ai>",
66
"types": "dist/sdk.d.ts",

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ import {
197197
DevboxResourceUsageView,
198198
DevboxSendStdInRequest,
199199
DevboxSendStdInResult,
200+
DevboxShutdownParams,
200201
DevboxSnapshotDiskAsyncParams,
201202
DevboxSnapshotDiskParams,
202203
DevboxSnapshotListView,
@@ -630,6 +631,7 @@ export declare namespace Runloop {
630631
type DevboxListDiskSnapshotsParams as DevboxListDiskSnapshotsParams,
631632
type DevboxReadFileContentsParams as DevboxReadFileContentsParams,
632633
type DevboxRemoveTunnelParams as DevboxRemoveTunnelParams,
634+
type DevboxShutdownParams as DevboxShutdownParams,
633635
type DevboxSnapshotDiskParams as DevboxSnapshotDiskParams,
634636
type DevboxSnapshotDiskAsyncParams as DevboxSnapshotDiskAsyncParams,
635637
type DevboxUploadFileParams as DevboxUploadFileParams,

src/resources/agents.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,16 @@ export interface AgentListView {
7878
has_more: boolean;
7979

8080
/**
81-
* The count of remaining Agents.
81+
* The count of remaining Agents. Deprecated: will be removed in a future breaking
82+
* change.
8283
*/
83-
remaining_count: number;
84+
remaining_count?: number | null;
8485

8586
/**
86-
* The total count of Agents.
87+
* The total count of Agents. Deprecated: will be removed in a future breaking
88+
* change.
8789
*/
88-
total_count: number;
90+
total_count?: number | null;
8991
}
9092

9193
/**

src/resources/benchmark-jobs.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,9 +308,9 @@ export interface BenchmarkJobListView {
308308
*/
309309
jobs: Array<BenchmarkJobView>;
310310

311-
remaining_count: number;
311+
remaining_count?: number | null;
312312

313-
total_count: number;
313+
total_count?: number | null;
314314
}
315315

316316
/**

src/resources/benchmark-runs.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ export class BenchmarkRunViewsBenchmarkRunsCursorIDPage extends BenchmarkRunsCur
8585
export interface BenchmarkRunListView {
8686
has_more: boolean;
8787

88-
remaining_count: number;
89-
9088
/**
9189
* List of BenchmarkRuns matching filter.
9290
*/
9391
runs: Array<BenchmarkRunView>;
9492

95-
total_count: number;
93+
remaining_count?: number | null;
94+
95+
total_count?: number | null;
9696
}
9797

9898
/**

src/resources/benchmarks.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,14 +299,14 @@ export interface BenchmarkView {
299299
export interface ScenarioDefinitionListView {
300300
has_more: boolean;
301301

302-
remaining_count: number;
303-
304302
/**
305303
* List of Scenarios matching filter.
306304
*/
307305
scenarios: Array<ScenariosAPI.ScenarioView>;
308306

309-
total_count: number;
307+
remaining_count?: number | null;
308+
309+
total_count?: number | null;
310310
}
311311

312312
export interface StartBenchmarkRunParameters {

0 commit comments

Comments
 (0)