Skip to content

Commit e514235

Browse files
committed
feat: add new trigger types
1 parent 62ce3b3 commit e514235

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python-version-file: ".python-version"
2626

2727
- name: Install dependencies
28-
run: uv sync --all-extras
28+
run: uv sync --locked --all-extras
2929

3030
- name: Check static types
3131
run: uv run mypy --config-file pyproject.toml .

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.2.5"
3+
version = "0.2.6"
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/resumable/trigger.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ class UiPathResumeTriggerType(str, Enum):
1616
TIMER = "Timer"
1717
INBOX = "Inbox"
1818
API = "Api"
19+
DEEP_RAG = "DeepRag"
20+
BATCH_RAG = "BatchRag"
1921

2022

2123
class UiPathResumeTriggerName(str, Enum):
@@ -29,7 +31,8 @@ class UiPathResumeTriggerName(str, Enum):
2931
TIMER = "Timer"
3032
INBOX = "Inbox"
3133
API = "Api"
32-
34+
DEEP_RAG = "DeepRag"
35+
BATCH_RAG = "BatchRag"
3336

3437
class UiPathApiTrigger(BaseModel):
3538
"""API resume trigger request."""

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)