Skip to content

Commit abb330c

Browse files
authored
Merge pull request #51 from UiPath/feat/new-trigger-types
feat: add new trigger types
2 parents 62ce3b3 + 426e2d4 commit abb330c

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ class UiPathResumeTriggerType(str, Enum):
1616
TIMER = "Timer"
1717
INBOX = "Inbox"
1818
API = "Api"
19+
DEEP_RAG = "DeepRag"
20+
BATCH_RAG = "BatchRag"
21+
IXP = "IXP"
1922

2023

2124
class UiPathResumeTriggerName(str, Enum):
@@ -29,6 +32,9 @@ class UiPathResumeTriggerName(str, Enum):
2932
TIMER = "Timer"
3033
INBOX = "Inbox"
3134
API = "Api"
35+
DEEP_RAG = "DeepRag"
36+
BATCH_RAG = "BatchRag"
37+
EXTRACTION = "EXTRACTION"
3238

3339

3440
class UiPathApiTrigger(BaseModel):

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)