Skip to content

Commit d72b5fb

Browse files
committed
fix: add metadata field to schema
1 parent 1201baa commit d72b5fb

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-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.3.3"
3+
version = "0.3.4"
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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ class UiPathRuntimeSchema(BaseModel):
6161
graph: UiPathRuntimeGraph | None = Field(
6262
None, description="Runtime graph structure for debugging"
6363
)
64+
metadata: dict[str, Any] | None = Field(
65+
None, description="Additional metadata for the runtime schema"
66+
)
6467

6568
model_config = COMMON_MODEL_SCHEMA
6669

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)