File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[project ]
22name = " uipath-sdk"
3- version = " 0.0.111 "
3+ version = " 0.0.112 "
44description = " UiPath SDK"
55readme = { file = " README.md" , content-type = " text/markdown" }
66requires-python = " >=3.9"
Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ class UiPathTraceContext(BaseModel):
135135 folder_key : Optional [str ] = None
136136 process_key : Optional [str ] = None
137137 enabled : Union [bool , str ] = False
138+ reference_id : Optional [str ] = None
138139
139140
140141class UiPathRuntimeContext (BaseModel ):
Original file line number Diff line number Diff line change 55import traceback
66from os import environ as env
77from typing import Optional
8+ from uuid import uuid4
89
910import click
1011from dotenv import load_dotenv
@@ -72,6 +73,7 @@ async def execute():
7273 tenant_id = env .get ("UIPATH_TENANT_ID" ),
7374 process_key = env .get ("UIPATH_PROCESS_UUID" ),
7475 folder_key = env .get ("UIPATH_FOLDER_KEY" ),
76+ reference_id = env .get ("UIPATH_JOB_KEY" ) or str (uuid4 ()),
7577 )
7678 context .logs_min_level = env .get ("LOG_LEVEL" , "INFO" )
7779
You can’t perform that action at this time.
0 commit comments