Conversation
radu-mocanu
commented
Jan 27, 2026
- ixp validation trigger
9b393b9 to
05a1729
Compare
There was a problem hiding this comment.
Pull request overview
This PR adds support for a new IXP validation trigger type to the runtime trigger system and bumps the package version from 0.6.1 to 0.6.2.
Changes:
- Added IXP_VALIDATION enum value to both UiPathResumeTriggerType and UiPathResumeTriggerName enums
- Bumped package version from 0.6.1 to 0.6.2 in both pyproject.toml and uv.lock
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/uipath/runtime/resumable/trigger.py | Adds IXP_VALIDATION enum values to trigger type and name enums to support IXP validation workflow triggers |
| pyproject.toml | Updates package version from 0.6.1 to 0.6.2 for the new feature release |
| uv.lock | Updates locked package version to match pyproject.toml version bump |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| BATCH_RAG = "BatchRag" | ||
| INDEX_INGESTION = "IndexIngestion" | ||
| EXTRACTION = "Extraction" | ||
| IXP_VS_ESCALATION = "IxpVsEscalation" |
There was a problem hiding this comment.
The naming pattern for IXP_VALIDATION in UiPathResumeTriggerName appears inconsistent with the existing pattern for IXP_EXTRACTION.
Looking at line 22, IXP_EXTRACTION in UiPathResumeTriggerType has a corresponding entry "EXTRACTION" (line 40) in UiPathResumeTriggerName, which removes the "IXP_" prefix. However, the new IXP_VALIDATION entry uses "IXP_VALIDATION" in both enums, keeping the "IXP_" prefix.
For consistency with the existing IXP_EXTRACTION pattern, consider using just "VALIDATION" as the enum member name in UiPathResumeTriggerName, similar to how EXTRACTION is used.
| IXP_VS_ESCALATION = "IxpVsEscalation" | |
| VS_ESCALATION = "VsEscalation" |