From d9aee44893345a0ba41dc964aa3ab7e2e8fbeb46 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 19:32:24 +0000 Subject: [PATCH] feat(api): api update --- .stats.yml | 2 +- src/rizaio/resources/command.py | 4 ++-- src/rizaio/types/command_exec_func_params.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.stats.yml b/.stats.yml index 0435b64..e05f902 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 15 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/riza%2Friza-api-cf7aadf0b0db354f95e6a80756043f9588fa1c90ec9556e2255ad00c45be2528.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/riza%2Friza-api-0707c4b63d218a8dcab888e23b8cbb5089c4e14d5f8fe21457f3be6b2f1e1def.yml diff --git a/src/rizaio/resources/command.py b/src/rizaio/resources/command.py index 946c6b9..54371f5 100644 --- a/src/rizaio/resources/command.py +++ b/src/rizaio/resources/command.py @@ -155,7 +155,7 @@ def exec_func( language: The interpreter to use when executing code. - env: Set of key-value pairs to add to the script's execution environment. + env: Set of key-value pairs to add to the function's execution environment. files: List of input files. @@ -322,7 +322,7 @@ async def exec_func( language: The interpreter to use when executing code. - env: Set of key-value pairs to add to the script's execution environment. + env: Set of key-value pairs to add to the function's execution environment. files: List of input files. diff --git a/src/rizaio/types/command_exec_func_params.py b/src/rizaio/types/command_exec_func_params.py index 78b452a..f5c9340 100644 --- a/src/rizaio/types/command_exec_func_params.py +++ b/src/rizaio/types/command_exec_func_params.py @@ -31,7 +31,7 @@ class CommandExecFuncParams(TypedDict, total=False): """The interpreter to use when executing code.""" env: Dict[str, str] - """Set of key-value pairs to add to the script's execution environment.""" + """Set of key-value pairs to add to the function's execution environment.""" files: Iterable[File] """List of input files."""