Skip to content

Commit 1c25459

Browse files
fix(mux): move eviction-watch SSE route off the /{id} slot (#10409)
1 parent 0413e7b commit 1c25459

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 120
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-6fb96a2de54d260cad2b76366cada4eda15335275dbab7f6c108c1bb29acf309.yml
3-
openapi_spec_hash: 6044f4a4da13881c5f82fcc394c1f43b
4-
config_hash: 92c04f0b12249cb2d2bcf9e503a9cbf9
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-50686c7a06e432373c5dd7e771ab1483a6ca0531b1dd9a10fc31c0cf2833bcdf.yml
3+
openapi_spec_hash: a554b4d3815148c094778b53bfe20b21
4+
config_hash: 6d102da8b9fcc3d0deb42d7a707e78c6

api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ Methods:
245245
- <code title="post /v1/devboxes/{id}/suspend">client.devboxes.<a href="./src/runloop_api_client/resources/devboxes/devboxes.py">suspend</a>(id) -> <a href="./src/runloop_api_client/types/devbox_view.py">DevboxView</a></code>
246246
- <code title="post /v1/devboxes/{id}/upload_file">client.devboxes.<a href="./src/runloop_api_client/resources/devboxes/devboxes.py">upload_file</a>(id, \*\*<a href="src/runloop_api_client/types/devbox_upload_file_params.py">params</a>) -> object</code>
247247
- <code title="post /v1/devboxes/{devbox_id}/executions/{execution_id}/wait_for_status">client.devboxes.<a href="./src/runloop_api_client/resources/devboxes/devboxes.py">wait_for_command</a>(execution_id, \*, devbox_id, \*\*<a href="src/runloop_api_client/types/devbox_wait_for_command_params.py">params</a>) -> <a href="./src/runloop_api_client/types/devbox_async_execution_detail_view.py">DevboxAsyncExecutionDetailView</a></code>
248-
- <code title="get /v1/devboxes/watch_evictions">client.devboxes.<a href="./src/runloop_api_client/resources/devboxes/devboxes.py">watch_evictions</a>() -> <a href="./src/runloop_api_client/types/devbox_eviction_event_view.py">DevboxEvictionEventView</a></code>
248+
- <code title="get /v1/devboxes/evictions/watch">client.devboxes.<a href="./src/runloop_api_client/resources/devboxes/devboxes.py">watch_evictions</a>() -> <a href="./src/runloop_api_client/types/devbox_eviction_event_view.py">DevboxEvictionEventView</a></code>
249249
- <code title="post /v1/devboxes/{id}/write_file_contents">client.devboxes.<a href="./src/runloop_api_client/resources/devboxes/devboxes.py">write_file_contents</a>(id, \*\*<a href="src/runloop_api_client/types/devbox_write_file_contents_params.py">params</a>) -> <a href="./src/runloop_api_client/types/devbox_execution_detail_view.py">DevboxExecutionDetailView</a></code>
250250

251251

src/runloop_api_client/resources/devboxes/devboxes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1762,7 +1762,7 @@ def watch_evictions(
17621762
and delivery is not guaranteed.
17631763
"""
17641764
return self._get(
1765-
"/v1/devboxes/watch_evictions",
1765+
"/v1/devboxes/evictions/watch",
17661766
options=make_request_options(
17671767
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
17681768
),
@@ -3464,7 +3464,7 @@ async def watch_evictions(
34643464
and delivery is not guaranteed.
34653465
"""
34663466
return await self._get(
3467-
"/v1/devboxes/watch_evictions",
3467+
"/v1/devboxes/evictions/watch",
34683468
options=make_request_options(
34693469
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
34703470
),

0 commit comments

Comments
 (0)