Skip to content

Commit f539244

Browse files
authored
Merge pull request #83 from UiPath/fix/add_qualified_node_name
fix: add qualified node name to runtime state event
2 parents 47c04c3 + 7de6d13 commit f539244

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-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.8.1"
3+
version = "0.8.2"
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/events/state.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ class UiPathRuntimeStateEvent(UiPathRuntimeEvent):
6565
node_name: str | None = Field(
6666
default=None, description="Name of the node/agent that caused this update"
6767
)
68+
qualified_node_name: str | None = Field(
69+
default=None,
70+
description="Fully qualified node name including subgraph hierarchy prefix",
71+
)
6872
event_type: UiPathRuntimeEventType = Field(
6973
default=UiPathRuntimeEventType.RUNTIME_STATE, frozen=True
7074
)

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)