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 .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
python-version-file: ".python-version"

- name: Install dependencies
run: uv sync --all-extras
run: uv sync --locked --all-extras

- name: Check static types
run: uv run mypy --config-file pyproject.toml .
Expand Down
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-runtime"
version = "0.2.5"
version = "0.2.6"
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"
Expand Down
6 changes: 6 additions & 0 deletions src/uipath/runtime/resumable/trigger.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ class UiPathResumeTriggerType(str, Enum):
TIMER = "Timer"
INBOX = "Inbox"
API = "Api"
DEEP_RAG = "DeepRag"
BATCH_RAG = "BatchRag"
IXP = "IXP"


class UiPathResumeTriggerName(str, Enum):
Expand All @@ -29,6 +32,9 @@ class UiPathResumeTriggerName(str, Enum):
TIMER = "Timer"
INBOX = "Inbox"
API = "Api"
DEEP_RAG = "DeepRag"
BATCH_RAG = "BatchRag"
EXTRACTION = "EXTRACTION"


class UiPathApiTrigger(BaseModel):
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.