From f0261e6dc0d5a08c05811b3cfa31fe7154fdf598 Mon Sep 17 00:00:00 2001 From: radu-mocanu Date: Thu, 11 Dec 2025 13:25:02 +0200 Subject: [PATCH] chore: rename ixp trigger type and name --- pyproject.toml | 2 +- src/uipath/runtime/resumable/trigger.py | 4 ++-- uv.lock | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5026983..5b64e96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath-runtime" -version = "0.2.6" +version = "0.2.7" 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 e8e8dec..796fde2 100644 --- a/src/uipath/runtime/resumable/trigger.py +++ b/src/uipath/runtime/resumable/trigger.py @@ -18,7 +18,7 @@ class UiPathResumeTriggerType(str, Enum): API = "Api" DEEP_RAG = "DeepRag" BATCH_RAG = "BatchRag" - IXP = "IXP" + IXP_EXTRACTION = "IxpExtraction" class UiPathResumeTriggerName(str, Enum): @@ -34,7 +34,7 @@ class UiPathResumeTriggerName(str, Enum): API = "Api" DEEP_RAG = "DeepRag" BATCH_RAG = "BatchRag" - EXTRACTION = "EXTRACTION" + EXTRACTION = "Extraction" class UiPathApiTrigger(BaseModel): diff --git a/uv.lock b/uv.lock index cb4b558..ac7253d 100644 --- a/uv.lock +++ b/uv.lock @@ -1005,7 +1005,7 @@ wheels = [ [[package]] name = "uipath-runtime" -version = "0.2.6" +version = "0.2.7" source = { editable = "." } dependencies = [ { name = "uipath-core" },