Skip to content

Commit c3bbab2

Browse files
committed
chore: add circular deps flags to runtime schema
1 parent 756ffdb commit c3bbab2

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-runtime"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "Runtime abstractions and interfaces for building agents and automation scripts in the UiPath ecosystem"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

src/uipath/runtime/schema.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ class UiPathRuntimeSchema(BaseModel):
5757
unique_id: str = Field(..., alias="uniqueId")
5858
type: str = Field(..., alias="type")
5959
input: dict[str, Any] = Field(..., alias="input")
60+
has_input_circular_dependency: bool = Field(default=False, exclude=True)
61+
has_output_circular_dependency: bool = Field(default=False, exclude=True)
6062
output: dict[str, Any] = Field(..., alias="output")
6163
graph: UiPathRuntimeGraph | None = Field(
6264
None, description="Runtime graph structure for debugging"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)