Skip to content

Commit 48aa3b3

Browse files
authored
Merge pull request #52 from UiPath/feat/new-trigger-types
chore: rename ixp trigger type and name
2 parents abb330c + f0261e6 commit 48aa3b3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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.6"
3+
version = "0.2.7"
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class UiPathResumeTriggerType(str, Enum):
1818
API = "Api"
1919
DEEP_RAG = "DeepRag"
2020
BATCH_RAG = "BatchRag"
21-
IXP = "IXP"
21+
IXP_EXTRACTION = "IxpExtraction"
2222

2323

2424
class UiPathResumeTriggerName(str, Enum):
@@ -34,7 +34,7 @@ class UiPathResumeTriggerName(str, Enum):
3434
API = "Api"
3535
DEEP_RAG = "DeepRag"
3636
BATCH_RAG = "BatchRag"
37-
EXTRACTION = "EXTRACTION"
37+
EXTRACTION = "Extraction"
3838

3939

4040
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)