diff --git a/README.md b/README.md index d1fca6f..157c06d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A Python SDK for the [Roe](https://www.roe-ai.com/) API. -> **v1.1.8** - SDK operation coverage is synchronized across Python, +> **v1.1.9** - SDK operation coverage is synchronized across Python, > TypeScript, and Go. See `SDK_EXAMPLES.md` for copy-ready examples and > use cases. diff --git a/SDK_EXAMPLES.md b/SDK_EXAMPLES.md index 15f7320..db4f815 100644 --- a/SDK_EXAMPLES.md +++ b/SDK_EXAMPLES.md @@ -154,6 +154,7 @@ client = RoeClient() result = client.agents.jobs.resend_webhook( job_id="job_id", # required + webhook_id="webhook_id", # optional ) ``` diff --git a/openapi/wrappers.yml b/openapi/wrappers.yml index f6c1aa6..07a1e80 100644 --- a/openapi/wrappers.yml +++ b/openapi/wrappers.yml @@ -605,6 +605,11 @@ apis: location: path annotation: str coerce: uuid + - name: webhook_id + location: body + annotation: str | None + default: null + pass_unset_when_none: true - kind: body method_name: cancel_all docstring: '' diff --git a/pyproject.toml b/pyproject.toml index bd34ab2..577ab4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "roe-ai" -version = "1.1.8" +version = "1.1.9" authors = [ { name = "Roe", email = "founders@roe-ai.com" }, ] diff --git a/uv.lock b/uv.lock index 5548057..6543e88 100644 --- a/uv.lock +++ b/uv.lock @@ -454,7 +454,7 @@ wheels = [ [[package]] name = "roe-ai" -version = "1.1.8" +version = "1.1.9" source = { editable = "." } dependencies = [ { name = "attrs" },