diff --git a/pyproject.toml b/pyproject.toml index 357ab07..d175f23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath-runtime" -version = "0.0.19" +version = "0.0.20" description = "Runtime abstractions and interfaces for building agents and automation scripts in the UiPath ecosystem" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.11" diff --git a/src/uipath/runtime/context.py b/src/uipath/runtime/context.py index 1b346aa..d83dfde 100644 --- a/src/uipath/runtime/context.py +++ b/src/uipath/runtime/context.py @@ -26,6 +26,7 @@ class UiPathRuntimeContext(BaseModel): entrypoint: str | None = None input: str | None = None + resume: bool = False job_id: str | None = None tenant_id: str | None = None org_id: str | None = None diff --git a/uv.lock b/uv.lock index 4bfc42d..4b4e50a 100644 --- a/uv.lock +++ b/uv.lock @@ -938,7 +938,7 @@ wheels = [ [[package]] name = "uipath-runtime" -version = "0.0.19" +version = "0.0.20" source = { editable = "." } dependencies = [ { name = "uipath-core" },