Skip to content

Commit a60b622

Browse files
committed
fix: rename CreateAction fields
1 parent 2db0044 commit a60b622

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[project]
22
name = "uipath-langchain"
3-
version = "0.0.88"
3+
version = "0.0.89"
44
description = "UiPath Langchain"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"
77
dependencies = [
8-
"uipath>=2.0.4, <2.1.0",
8+
"uipath>=2.0.7, <2.1.0",
99
"langgraph>=0.2.70",
1010
"langchain-core>=0.3.34",
1111
"langgraph-checkpoint-sqlite>=2.0.3",

src/uipath_langchain/_cli/_runtime/_output.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -277,11 +277,11 @@ async def _save_resume_trigger(self) -> None:
277277
if isinstance(self.interrupt_value, CreateAction):
278278
action = uipath_sdk.actions.create(
279279
title=self.interrupt_value.title,
280-
app_name=self.interrupt_value.name
281-
if self.interrupt_value.name
280+
app_name=self.interrupt_value.app_name
281+
if self.interrupt_value.app_name
282282
else "",
283-
app_key=self.interrupt_value.key
284-
if self.interrupt_value.key
283+
app_key=self.interrupt_value.app_key
284+
if self.interrupt_value.app_key
285285
else "",
286286
app_version=self.interrupt_value.app_version
287287
if self.interrupt_value.app_version

0 commit comments

Comments
 (0)