From 426e2d4c7cc395414370aac33bab9486f6819a93 Mon Sep 17 00:00:00 2001 From: radu-mocanu Date: Thu, 11 Dec 2025 11:19:49 +0200 Subject: [PATCH] feat: add new trigger types --- .github/workflows/lint.yml | 2 +- pyproject.toml | 2 +- src/uipath/runtime/resumable/trigger.py | 6 ++++++ uv.lock | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d259d94..d6813d8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 . diff --git a/pyproject.toml b/pyproject.toml index b868c8d..5026983 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/uipath/runtime/resumable/trigger.py b/src/uipath/runtime/resumable/trigger.py index 9d92dd2..e8e8dec 100644 --- a/src/uipath/runtime/resumable/trigger.py +++ b/src/uipath/runtime/resumable/trigger.py @@ -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): @@ -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): diff --git a/uv.lock b/uv.lock index d534712..cb4b558 100644 --- a/uv.lock +++ b/uv.lock @@ -1005,7 +1005,7 @@ wheels = [ [[package]] name = "uipath-runtime" -version = "0.2.5" +version = "0.2.6" source = { editable = "." } dependencies = [ { name = "uipath-core" },