Skip to content

Commit c650e72

Browse files
committed
cp dines
1 parent e596092 commit c650e72

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

src/runloop_api_client/sdk/_types.py

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,15 @@
2828
NetworkPolicyUpdateParams,
2929
DevboxReadFileContentsParams,
3030
DevboxWriteFileContentsParams,
31+
BenchmarkRunListScenarioRunsParams,
3132
)
3233
from .._types import Body, Query, Headers, Timeout, NotGiven
3334
from ..lib.polling import PollingConfig
3435
from ..types.devboxes import DiskSnapshotListParams, DiskSnapshotUpdateParams
3536
from ..types.scenarios import ScorerListParams, ScorerCreateParams, ScorerUpdateParams, ScorerValidateParams
36-
from ..types.benchmarks import RunListScenarioRunsParams
3737
from ..types.devbox_create_params import DevboxBaseCreateParams
3838
from ..types.scenario_start_run_params import ScenarioStartRunBaseParams
3939
from ..types.benchmark_start_run_params import BenchmarkSelfStartRunParams
40-
from ..types.benchmarks.run_list_params import RunSelfListParams
4140
from ..types.devbox_execute_async_params import DevboxNiceExecuteAsyncParams
4241

4342
LogCallback = Callable[[str], None]
@@ -233,11 +232,18 @@ class SDKBenchmarkStartRunParams(BenchmarkSelfStartRunParams, LongRequestOptions
233232
pass
234233

235234

236-
class SDKBenchmarkListRunsParams(RunSelfListParams, BaseRequestOptions):
237-
pass
235+
class SDKBenchmarkListRunsParams(BaseRequestOptions, total=False):
236+
limit: int
237+
"""The limit of items to return. Default is 20. Max is 5000."""
238+
239+
name: str
240+
"""Filter by name"""
241+
242+
starting_after: str
243+
"""Load the next page of data starting after the item with the given ID."""
238244

239245

240-
class SDKBenchmarkRunListScenarioRunsParams(RunListScenarioRunsParams, BaseRequestOptions):
246+
class SDKBenchmarkRunListScenarioRunsParams(BenchmarkRunListScenarioRunsParams, BaseRequestOptions):
241247
pass
242248

243249

0 commit comments

Comments
 (0)