Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath"
version = "2.0.7"
version = "2.0.8"
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
Expand Down
3 changes: 3 additions & 0 deletions src/uipath/_cli/_runtime/_contracts.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ class UiPathResumeTrigger(BaseModel):
)
item_key: Optional[str] = Field(default=None, alias="itemKey")
api_resume: Optional[UiPathApiTrigger] = Field(default=None, alias="apiResume")
folder_path: Optional[str] = Field(default=None, alias="folderPath")
folder_key: Optional[str] = Field(default=None, alias="folderKey")
payload: Optional[Any] = Field(default=None, alias="interruptObject")

model_config = {"populate_by_name": True}

Expand Down
7 changes: 6 additions & 1 deletion src/uipath/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
from .connections import Connection, ConnectionToken
from .context_grounding import ContextGroundingQueryResponse
from .exceptions import IngestionInProgressException
from .interrupt_models import CreateAction, InvokeProcess, WaitAction, WaitJob
from .interrupt_models import (
CreateAction,
InvokeProcess,
WaitAction,
WaitJob,
)
from .job import Job
from .processes import Process
from .queues import (
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.