From a92f3899917d010fb2982a87fe08556986f8a1b5 Mon Sep 17 00:00:00 2001 From: Rob von Behren Date: Thu, 30 Oct 2025 15:21:09 -0700 Subject: [PATCH 1/2] use snake case function names to match actual python function defs --- src/runloop_api_client/resources/devboxes/devboxes.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/runloop_api_client/resources/devboxes/devboxes.py b/src/runloop_api_client/resources/devboxes/devboxes.py index 00de4ba45..aa46eb7ae 100644 --- a/src/runloop_api_client/resources/devboxes/devboxes.py +++ b/src/runloop_api_client/resources/devboxes/devboxes.py @@ -913,7 +913,7 @@ def execute_async( ) @typing_extensions.deprecated("deprecated") - # Use execute, executeAsync, or executeAndAwaitCompletion instead + # Use execute, execute_async, or execute_and_await_completion instead def execute_sync( self, id: str, @@ -935,7 +935,7 @@ def execute_sync( execution. .. deprecated:: - Use execute, executeAsync, or executeAndAwaitCompletion instead. + Use execute, execute_async, or execute_and_await_completion instead. Args: command: The command to execute via the Devbox shell. By default, commands are run from @@ -2394,7 +2394,7 @@ async def execute_async( ) @typing_extensions.deprecated("deprecated") - # Use execute, executeAsync, or executeAndAwaitCompletion instead + # Use execute, execute_async, or execute_and_await_completion instead async def execute_sync( self, id: str, @@ -2416,7 +2416,7 @@ async def execute_sync( execution. .. deprecated:: - Use execute, executeAsync, or executeAndAwaitCompletion instead. + Use execute, execute_async, or execute_and_await_completion instead. Args: command: The command to execute via the Devbox shell. By default, commands are run from From afe05bf29d8b8dee5e3b54ac89cc25320a782cf3 Mon Sep 17 00:00:00 2001 From: Rob von Behren Date: Thu, 30 Oct 2025 16:21:37 -0700 Subject: [PATCH 2/2] use a fully qualified link so links on pypi don't break --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7270a5281..f879a65cc 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,9 @@ It is generated with [Stainless](https://www.stainless.com/). ## Documentation -The REST API documentation can be found on [runloop.ai](https://runloop.ai). The full API of this library can be found in [api.md](api.md). +The REST API documentation can be found on +[runloop.ai](https://runloop.ai). The full API of this library can be found in +[api.md](https://github.com/runloopai/api-client-python/blob/main/api.md). ## Installation