uipath 2.1.103__py3-none-any.whl → 2.1.105__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of uipath might be problematic. Click here for more details.
- uipath/_cli/__init__.py +1 -1
- uipath/_cli/_auth/_portal_service.py +8 -12
- uipath/_cli/_debug/_bridge.py +2 -1
- uipath/_cli/_evals/__init__.py +0 -0
- uipath/_cli/_evals/_evaluate.py +28 -0
- uipath/_cli/_evals/_runtime.py +1 -1
- uipath/_cli/_runtime/_contracts.py +42 -4
- uipath/_cli/_runtime/_hitl.py +7 -6
- uipath/_cli/_runtime/_runtime.py +2 -1
- uipath/_cli/_runtime/_script_executor.py +9 -12
- uipath/_cli/cli_eval.py +5 -15
- {uipath-2.1.103.dist-info → uipath-2.1.105.dist-info}/METADATA +1 -1
- {uipath-2.1.103.dist-info → uipath-2.1.105.dist-info}/RECORD +16 -14
- {uipath-2.1.103.dist-info → uipath-2.1.105.dist-info}/WHEEL +0 -0
- {uipath-2.1.103.dist-info → uipath-2.1.105.dist-info}/entry_points.txt +0 -0
- {uipath-2.1.103.dist-info → uipath-2.1.105.dist-info}/licenses/LICENSE +0 -0
uipath/_cli/__init__.py
CHANGED
|
@@ -8,7 +8,7 @@ from .cli_auth import auth as auth
|
|
|
8
8
|
from .cli_debug import debug as debug # type: ignore
|
|
9
9
|
from .cli_deploy import deploy as deploy # type: ignore
|
|
10
10
|
from .cli_dev import dev as dev
|
|
11
|
-
from .cli_eval import eval as eval
|
|
11
|
+
from .cli_eval import eval as eval
|
|
12
12
|
from .cli_init import init as init # type: ignore
|
|
13
13
|
from .cli_invoke import invoke as invoke # type: ignore
|
|
14
14
|
from .cli_new import new as new # type: ignore
|
|
@@ -7,20 +7,16 @@ import httpx
|
|
|
7
7
|
from ..._utils._auth import update_env_file
|
|
8
8
|
from ..._utils._ssl_context import get_httpx_client_kwargs
|
|
9
9
|
from ...models.auth import TokenData
|
|
10
|
-
from .._runtime._contracts import
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
TenantInfo,
|
|
15
|
-
TenantsAndOrganizationInfoResponse,
|
|
10
|
+
from .._runtime._contracts import (
|
|
11
|
+
UiPathErrorCategory,
|
|
12
|
+
UiPathErrorCode,
|
|
13
|
+
UiPathRuntimeError,
|
|
16
14
|
)
|
|
15
|
+
from .._utils._console import ConsoleLogger
|
|
16
|
+
from ._models import OrganizationInfo, TenantInfo, TenantsAndOrganizationInfoResponse
|
|
17
17
|
from ._oidc_utils import OidcUtils
|
|
18
18
|
from ._url_utils import build_service_url
|
|
19
|
-
from ._utils import
|
|
20
|
-
get_auth_data,
|
|
21
|
-
get_parsed_token_data,
|
|
22
|
-
update_auth_file,
|
|
23
|
-
)
|
|
19
|
+
from ._utils import get_auth_data, get_parsed_token_data, update_auth_file
|
|
24
20
|
|
|
25
21
|
|
|
26
22
|
class PortalService:
|
|
@@ -142,7 +138,7 @@ class PortalService:
|
|
|
142
138
|
refresh_token = auth_data.refresh_token
|
|
143
139
|
if not refresh_token:
|
|
144
140
|
raise UiPathRuntimeError(
|
|
145
|
-
|
|
141
|
+
UiPathErrorCode.REFRESH_TOKEN_MISSING,
|
|
146
142
|
"No refresh token found",
|
|
147
143
|
"The refresh token could not be retrieved. Please retry authenticating.",
|
|
148
144
|
UiPathErrorCategory.SYSTEM,
|
uipath/_cli/_debug/_bridge.py
CHANGED
|
@@ -434,7 +434,8 @@ def get_remote_debug_bridge(context: UiPathRuntimeContext) -> UiPathDebugBridge:
|
|
|
434
434
|
if not context.trace_context:
|
|
435
435
|
raise ValueError("trace_context is required for remote debugging")
|
|
436
436
|
|
|
437
|
-
signalr_url = uipath_url
|
|
437
|
+
signalr_url = f"{uipath_url.rstrip('/')}/orchestrator_/signalr/robotdebug?sessionId={context.job_id}"
|
|
438
|
+
|
|
438
439
|
return SignalRDebugBridge(
|
|
439
440
|
hub_url=signalr_url,
|
|
440
441
|
access_token=os.environ.get("UIPATH_ACCESS_TOKEN"),
|
|
File without changes
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from typing import TypeVar
|
|
2
|
+
|
|
3
|
+
from uipath._cli._evals._runtime import UiPathEvalContext, UiPathEvalRuntime
|
|
4
|
+
from uipath._cli._runtime._contracts import (
|
|
5
|
+
UiPathBaseRuntime,
|
|
6
|
+
UiPathRuntimeContext,
|
|
7
|
+
UiPathRuntimeFactory,
|
|
8
|
+
UiPathRuntimeResult,
|
|
9
|
+
)
|
|
10
|
+
from uipath._events._event_bus import EventBus
|
|
11
|
+
|
|
12
|
+
T = TypeVar("T", bound=UiPathBaseRuntime)
|
|
13
|
+
C = TypeVar("C", bound=UiPathRuntimeContext)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
async def evaluate(
|
|
17
|
+
runtime_factory: UiPathRuntimeFactory[T, C],
|
|
18
|
+
eval_context: UiPathEvalContext,
|
|
19
|
+
event_bus: EventBus,
|
|
20
|
+
) -> UiPathRuntimeResult:
|
|
21
|
+
async with UiPathEvalRuntime.from_eval_context(
|
|
22
|
+
factory=runtime_factory,
|
|
23
|
+
context=eval_context,
|
|
24
|
+
event_bus=event_bus,
|
|
25
|
+
) as eval_runtime:
|
|
26
|
+
results = await eval_runtime.execute()
|
|
27
|
+
await event_bus.wait_for_all(timeout=10)
|
|
28
|
+
return results
|
uipath/_cli/_evals/_runtime.py
CHANGED
|
@@ -176,7 +176,7 @@ class UiPathEvalRuntime(UiPathBaseRuntime, Generic[T, C]):
|
|
|
176
176
|
) -> "UiPathEvalRuntime[T, C]":
|
|
177
177
|
return cls(context, factory, event_bus)
|
|
178
178
|
|
|
179
|
-
async def execute(self) ->
|
|
179
|
+
async def execute(self) -> UiPathRuntimeResult:
|
|
180
180
|
if self.context.eval_set is None:
|
|
181
181
|
raise ValueError("eval_set must be provided for evaluation runs")
|
|
182
182
|
|
|
@@ -93,6 +93,42 @@ class UiPathErrorCategory(str, Enum):
|
|
|
93
93
|
USER = "User" # Business logic or domain-level errors
|
|
94
94
|
|
|
95
95
|
|
|
96
|
+
class UiPathErrorCode(str, Enum):
|
|
97
|
+
"""Standard error codes for UiPath runtime errors."""
|
|
98
|
+
|
|
99
|
+
# Entrypoint related errors
|
|
100
|
+
ENTRYPOINT_MISSING = "ENTRYPOINT_MISSING"
|
|
101
|
+
ENTRYPOINT_NOT_FOUND = "ENTRYPOINT_NOT_FOUND"
|
|
102
|
+
ENTRYPOINT_FUNCTION_MISSING = "ENTRYPOINT_FUNCTION_MISSING"
|
|
103
|
+
|
|
104
|
+
# Module and execution errors
|
|
105
|
+
IMPORT_ERROR = "IMPORT_ERROR"
|
|
106
|
+
MODULE_EXECUTION_ERROR = "MODULE_EXECUTION_ERROR"
|
|
107
|
+
FUNCTION_EXECUTION_ERROR = "FUNCTION_EXECUTION_ERROR"
|
|
108
|
+
EXECUTION_ERROR = "EXECUTION_ERROR"
|
|
109
|
+
|
|
110
|
+
# Input validation errors
|
|
111
|
+
INVALID_INPUT_FILE_EXTENSION = "INVALID_INPUT_FILE_EXTENSION"
|
|
112
|
+
INPUT_INVALID_JSON = "INPUT_INVALID_JSON"
|
|
113
|
+
|
|
114
|
+
# Process and job related errors
|
|
115
|
+
INVOKED_PROCESS_FAILURE = "INVOKED_PROCESS_FAILURE"
|
|
116
|
+
API_CONNECTION_ERROR = "API_CONNECTION_ERROR"
|
|
117
|
+
|
|
118
|
+
# HITL (Human-In-The-Loop) related errors
|
|
119
|
+
HITL_FEEDBACK_FAILURE = "HITL_FEEDBACK_FAILURE"
|
|
120
|
+
UNKNOWN_HITL_MODEL = "UNKNOWN_HITL_MODEL"
|
|
121
|
+
HITL_ACTION_CREATION_FAILED = "HITL_ACTION_CREATION_FAILED"
|
|
122
|
+
|
|
123
|
+
# Trigger type errors
|
|
124
|
+
UNKNOWN_TRIGGER_TYPE = "UNKNOWN_TRIGGER_TYPE"
|
|
125
|
+
|
|
126
|
+
# Runtime shutdown errors
|
|
127
|
+
RUNTIME_SHUTDOWN_ERROR = "RUNTIME_SHUTDOWN_ERROR"
|
|
128
|
+
|
|
129
|
+
REFRESH_TOKEN_MISSING = "REFRESH_TOKEN_MISSING"
|
|
130
|
+
|
|
131
|
+
|
|
96
132
|
class UiPathErrorContract(BaseModel):
|
|
97
133
|
"""Standard error contract used across the runtime."""
|
|
98
134
|
|
|
@@ -428,7 +464,7 @@ class UiPathRuntimeError(Exception):
|
|
|
428
464
|
|
|
429
465
|
def __init__(
|
|
430
466
|
self,
|
|
431
|
-
code:
|
|
467
|
+
code: UiPathErrorCode,
|
|
432
468
|
title: str,
|
|
433
469
|
detail: str,
|
|
434
470
|
category: UiPathErrorCategory = UiPathErrorCategory.UNKNOWN,
|
|
@@ -447,8 +483,10 @@ class UiPathRuntimeError(Exception):
|
|
|
447
483
|
if status is None:
|
|
448
484
|
status = self._extract_http_status()
|
|
449
485
|
|
|
486
|
+
code_value = code.value
|
|
487
|
+
|
|
450
488
|
self.error_info = UiPathErrorContract(
|
|
451
|
-
code=f"{prefix}.{
|
|
489
|
+
code=f"{prefix}.{code_value}",
|
|
452
490
|
title=title,
|
|
453
491
|
detail=detail,
|
|
454
492
|
category=category,
|
|
@@ -547,7 +585,7 @@ class UiPathBaseRuntime(ABC):
|
|
|
547
585
|
_, file_extension = os.path.splitext(self.context.input_file)
|
|
548
586
|
if file_extension != ".json":
|
|
549
587
|
raise UiPathRuntimeError(
|
|
550
|
-
code=
|
|
588
|
+
code=UiPathErrorCode.INVALID_INPUT_FILE_EXTENSION,
|
|
551
589
|
title="Invalid Input File Extension",
|
|
552
590
|
detail="The provided input file must be in JSON format.",
|
|
553
591
|
)
|
|
@@ -561,7 +599,7 @@ class UiPathBaseRuntime(ABC):
|
|
|
561
599
|
self.context.input_json = {}
|
|
562
600
|
except json.JSONDecodeError as e:
|
|
563
601
|
raise UiPathRuntimeError(
|
|
564
|
-
|
|
602
|
+
UiPathErrorCode.INPUT_INVALID_JSON,
|
|
565
603
|
"Invalid JSON input",
|
|
566
604
|
f"The input data is not valid JSON: {str(e)}",
|
|
567
605
|
UiPathErrorCategory.USER,
|
uipath/_cli/_runtime/_hitl.py
CHANGED
|
@@ -10,6 +10,7 @@ from uipath.models import CreateAction, InvokeProcess, WaitAction, WaitJob
|
|
|
10
10
|
from .._runtime._contracts import (
|
|
11
11
|
UiPathApiTrigger,
|
|
12
12
|
UiPathErrorCategory,
|
|
13
|
+
UiPathErrorCode,
|
|
13
14
|
UiPathResumeTrigger,
|
|
14
15
|
UiPathResumeTriggerType,
|
|
15
16
|
UiPathRuntimeError,
|
|
@@ -87,7 +88,7 @@ class HitlReader:
|
|
|
87
88
|
== UiPathRuntimeStatus.SUCCESSFUL.value.lower()
|
|
88
89
|
):
|
|
89
90
|
raise UiPathRuntimeError(
|
|
90
|
-
|
|
91
|
+
UiPathErrorCode.INVOKED_PROCESS_FAILURE,
|
|
91
92
|
"Invoked process did not finish successfully.",
|
|
92
93
|
_try_convert_to_json_format(str(job.job_error or job.info))
|
|
93
94
|
or "Job error unavailable.",
|
|
@@ -103,21 +104,21 @@ class HitlReader:
|
|
|
103
104
|
)
|
|
104
105
|
except Exception as e:
|
|
105
106
|
raise UiPathRuntimeError(
|
|
106
|
-
|
|
107
|
+
UiPathErrorCode.API_CONNECTION_ERROR,
|
|
107
108
|
"Failed to get trigger payload",
|
|
108
109
|
f"Error fetching API trigger payload for inbox {resume_trigger.api_resume.inbox_id}: {str(e)}",
|
|
109
110
|
UiPathErrorCategory.SYSTEM,
|
|
110
111
|
) from e
|
|
111
112
|
case _:
|
|
112
113
|
raise UiPathRuntimeError(
|
|
113
|
-
|
|
114
|
+
UiPathErrorCode.UNKNOWN_TRIGGER_TYPE,
|
|
114
115
|
"Unexpected trigger type received",
|
|
115
116
|
f"Trigger type :{type(resume_trigger.trigger_type)} is invalid",
|
|
116
117
|
UiPathErrorCategory.USER,
|
|
117
118
|
)
|
|
118
119
|
|
|
119
120
|
raise UiPathRuntimeError(
|
|
120
|
-
|
|
121
|
+
UiPathErrorCode.HITL_FEEDBACK_FAILURE,
|
|
121
122
|
"Failed to receive payload from HITL action",
|
|
122
123
|
detail="Failed to receive payload from HITL action",
|
|
123
124
|
category=UiPathErrorCategory.SYSTEM,
|
|
@@ -242,14 +243,14 @@ class HitlProcessor:
|
|
|
242
243
|
)
|
|
243
244
|
case _:
|
|
244
245
|
raise UiPathRuntimeError(
|
|
245
|
-
|
|
246
|
+
UiPathErrorCode.UNKNOWN_HITL_MODEL,
|
|
246
247
|
"Unexpected model received",
|
|
247
248
|
f"{type(hitl_input)} is not a valid Human(Robot/Agent)-In-The-Loop model",
|
|
248
249
|
UiPathErrorCategory.USER,
|
|
249
250
|
)
|
|
250
251
|
except Exception as e:
|
|
251
252
|
raise UiPathRuntimeError(
|
|
252
|
-
|
|
253
|
+
UiPathErrorCode.HITL_ACTION_CREATION_FAILED,
|
|
253
254
|
"Failed to create HITL action",
|
|
254
255
|
f"{str(e)}",
|
|
255
256
|
UiPathErrorCategory.SYSTEM,
|
uipath/_cli/_runtime/_runtime.py
CHANGED
|
@@ -16,6 +16,7 @@ from ..models.runtime_schema import BindingResource, Entrypoint
|
|
|
16
16
|
from ._contracts import (
|
|
17
17
|
UiPathBaseRuntime,
|
|
18
18
|
UiPathErrorCategory,
|
|
19
|
+
UiPathErrorCode,
|
|
19
20
|
UiPathRuntimeContext,
|
|
20
21
|
UiPathRuntimeError,
|
|
21
22
|
UiPathRuntimeResult,
|
|
@@ -66,7 +67,7 @@ class UiPathRuntime(UiPathBaseRuntime):
|
|
|
66
67
|
raise
|
|
67
68
|
|
|
68
69
|
raise UiPathRuntimeError(
|
|
69
|
-
|
|
70
|
+
UiPathErrorCode.EXECUTION_ERROR,
|
|
70
71
|
"Python script execution failed",
|
|
71
72
|
f"Error: {str(e)}",
|
|
72
73
|
UiPathErrorCategory.SYSTEM,
|
|
@@ -8,10 +8,7 @@ from typing import Any, Dict, Type, TypeVar, cast, get_type_hints
|
|
|
8
8
|
|
|
9
9
|
from pydantic import BaseModel
|
|
10
10
|
|
|
11
|
-
from ._contracts import
|
|
12
|
-
UiPathErrorCategory,
|
|
13
|
-
UiPathRuntimeError,
|
|
14
|
-
)
|
|
11
|
+
from ._contracts import UiPathErrorCategory, UiPathErrorCode, UiPathRuntimeError
|
|
15
12
|
|
|
16
13
|
T = TypeVar("T")
|
|
17
14
|
|
|
@@ -28,7 +25,7 @@ class ScriptExecutor:
|
|
|
28
25
|
"""Validate runtime inputs."""
|
|
29
26
|
if not self.entrypoint:
|
|
30
27
|
raise UiPathRuntimeError(
|
|
31
|
-
|
|
28
|
+
UiPathErrorCode.ENTRYPOINT_MISSING,
|
|
32
29
|
"No entrypoint specified",
|
|
33
30
|
"Please provide a path to a Python script.",
|
|
34
31
|
UiPathErrorCategory.USER,
|
|
@@ -36,7 +33,7 @@ class ScriptExecutor:
|
|
|
36
33
|
|
|
37
34
|
if not os.path.exists(self.entrypoint):
|
|
38
35
|
raise UiPathRuntimeError(
|
|
39
|
-
|
|
36
|
+
UiPathErrorCode.ENTRYPOINT_NOT_FOUND,
|
|
40
37
|
"Script not found",
|
|
41
38
|
f"Script not found at path {self.entrypoint}.",
|
|
42
39
|
UiPathErrorCategory.USER,
|
|
@@ -47,7 +44,7 @@ class ScriptExecutor:
|
|
|
47
44
|
spec = importlib.util.spec_from_file_location("dynamic_module", self.entrypoint)
|
|
48
45
|
if not spec or not spec.loader:
|
|
49
46
|
raise UiPathRuntimeError(
|
|
50
|
-
|
|
47
|
+
UiPathErrorCode.IMPORT_ERROR,
|
|
51
48
|
"Module import failed",
|
|
52
49
|
f"Could not load spec for {self.entrypoint}",
|
|
53
50
|
UiPathErrorCategory.USER,
|
|
@@ -58,7 +55,7 @@ class ScriptExecutor:
|
|
|
58
55
|
spec.loader.exec_module(module)
|
|
59
56
|
except Exception as e:
|
|
60
57
|
raise UiPathRuntimeError(
|
|
61
|
-
|
|
58
|
+
UiPathErrorCode.MODULE_EXECUTION_ERROR,
|
|
62
59
|
"Module execution failed",
|
|
63
60
|
f"Error executing module: {str(e)}",
|
|
64
61
|
UiPathErrorCategory.USER,
|
|
@@ -84,7 +81,7 @@ class ScriptExecutor:
|
|
|
84
81
|
)
|
|
85
82
|
except Exception as e:
|
|
86
83
|
raise UiPathRuntimeError(
|
|
87
|
-
|
|
84
|
+
UiPathErrorCode.FUNCTION_EXECUTION_ERROR,
|
|
88
85
|
f"Error executing {func_name} function",
|
|
89
86
|
f"Error: {str(e)}",
|
|
90
87
|
UiPathErrorCategory.USER,
|
|
@@ -114,7 +111,7 @@ class ScriptExecutor:
|
|
|
114
111
|
)
|
|
115
112
|
except Exception as e:
|
|
116
113
|
raise UiPathRuntimeError(
|
|
117
|
-
|
|
114
|
+
UiPathErrorCode.FUNCTION_EXECUTION_ERROR,
|
|
118
115
|
f"Error executing {func_name} function with typed input",
|
|
119
116
|
f"Error: {str(e)}",
|
|
120
117
|
UiPathErrorCategory.USER,
|
|
@@ -135,14 +132,14 @@ class ScriptExecutor:
|
|
|
135
132
|
)
|
|
136
133
|
except Exception as e:
|
|
137
134
|
raise UiPathRuntimeError(
|
|
138
|
-
|
|
135
|
+
UiPathErrorCode.FUNCTION_EXECUTION_ERROR,
|
|
139
136
|
f"Error executing {func_name} function with dictionary input",
|
|
140
137
|
f"Error: {str(e)}",
|
|
141
138
|
UiPathErrorCategory.USER,
|
|
142
139
|
) from e
|
|
143
140
|
|
|
144
141
|
raise UiPathRuntimeError(
|
|
145
|
-
|
|
142
|
+
UiPathErrorCode.ENTRYPOINT_FUNCTION_MISSING,
|
|
146
143
|
"No entry function found",
|
|
147
144
|
f"No main function (main, run, or execute) found in {self.entrypoint}",
|
|
148
145
|
UiPathErrorCategory.USER,
|
uipath/_cli/cli_eval.py
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
# type: ignore
|
|
2
1
|
import ast
|
|
3
2
|
import asyncio
|
|
4
3
|
import os
|
|
@@ -7,10 +6,10 @@ from typing import List, Optional
|
|
|
7
6
|
import click
|
|
8
7
|
|
|
9
8
|
from uipath._cli._evals._console_progress_reporter import ConsoleProgressReporter
|
|
9
|
+
from uipath._cli._evals._evaluate import evaluate
|
|
10
10
|
from uipath._cli._evals._progress_reporter import StudioWebProgressReporter
|
|
11
11
|
from uipath._cli._evals._runtime import (
|
|
12
12
|
UiPathEvalContext,
|
|
13
|
-
UiPathEvalRuntime,
|
|
14
13
|
)
|
|
15
14
|
from uipath._cli._runtime._runtime_factory import generate_runtime_factory
|
|
16
15
|
from uipath._cli._utils._constants import UIPATH_PROJECT_ID
|
|
@@ -46,9 +45,9 @@ def setup_reporting_prereq(no_report: bool) -> bool:
|
|
|
46
45
|
)
|
|
47
46
|
return False
|
|
48
47
|
if not os.getenv("UIPATH_FOLDER_KEY"):
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
48
|
+
folder_key = asyncio.run(get_personal_workspace_key_async())
|
|
49
|
+
if folder_key:
|
|
50
|
+
os.environ["UIPATH_FOLDER_KEY"] = folder_key
|
|
52
51
|
return True
|
|
53
52
|
|
|
54
53
|
|
|
@@ -141,17 +140,8 @@ def eval(
|
|
|
141
140
|
runtime_factory = generate_runtime_factory()
|
|
142
141
|
if eval_context.job_id:
|
|
143
142
|
runtime_factory.add_span_exporter(LlmOpsHttpExporter())
|
|
143
|
+
asyncio.run(evaluate(runtime_factory, eval_context, event_bus))
|
|
144
144
|
|
|
145
|
-
async def execute():
|
|
146
|
-
async with UiPathEvalRuntime.from_eval_context(
|
|
147
|
-
factory=runtime_factory,
|
|
148
|
-
context=eval_context,
|
|
149
|
-
event_bus=event_bus,
|
|
150
|
-
) as eval_runtime:
|
|
151
|
-
await eval_runtime.execute()
|
|
152
|
-
await event_bus.wait_for_all(timeout=10)
|
|
153
|
-
|
|
154
|
-
asyncio.run(execute())
|
|
155
145
|
except Exception as e:
|
|
156
146
|
console.error(
|
|
157
147
|
f"Error occurred: {e or 'Execution failed'}", include_traceback=True
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uipath
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.105
|
|
4
4
|
Summary: Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools.
|
|
5
5
|
Project-URL: Homepage, https://uipath.com
|
|
6
6
|
Project-URL: Repository, https://github.com/UiPath/uipath-python
|
|
@@ -5,12 +5,12 @@ uipath/_folder_context.py,sha256=D-bgxdwpwJP4b_QdVKcPODYh15kMDrOar2xNonmMSm4,186
|
|
|
5
5
|
uipath/_uipath.py,sha256=fZfofFWw8JurY940j9qVuV6EQttCRZe_XvWCyC9oCns,4918
|
|
6
6
|
uipath/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
uipath/_cli/README.md,sha256=GLtCfbeIKZKNnGTCsfSVqRQ27V1btT1i2bSAyW_xZl4,474
|
|
8
|
-
uipath/_cli/__init__.py,sha256=
|
|
8
|
+
uipath/_cli/__init__.py,sha256=ba7gNskJLgN_bNfCPzoGAk7OsHCxaFpWpOvahzcQEf8,2329
|
|
9
9
|
uipath/_cli/cli_auth.py,sha256=CzetSRqSUvMs02PtI4w5Vi_0fv_ETA307bB2vXalWzY,2628
|
|
10
10
|
uipath/_cli/cli_debug.py,sha256=-s6Nmy0DnDyITjZAf6f71hZ1YDDt0Yl57XklEkuL0FU,4068
|
|
11
11
|
uipath/_cli/cli_deploy.py,sha256=KPCmQ0c_NYD5JofSDao5r6QYxHshVCRxlWDVnQvlp5w,645
|
|
12
12
|
uipath/_cli/cli_dev.py,sha256=nEfpjw1PZ72O6jmufYWVrueVwihFxDPOeJakdvNHdOA,2146
|
|
13
|
-
uipath/_cli/cli_eval.py,sha256=
|
|
13
|
+
uipath/_cli/cli_eval.py,sha256=GTTaCgGmmxw9FcVkGUje0VqQQx7ZdWuSBc9qLKo2Zcs,4858
|
|
14
14
|
uipath/_cli/cli_init.py,sha256=hAPMV_0HGZD0cDh7KqHDwMRlUfLoJl2NCp4T3Ilw8y0,7487
|
|
15
15
|
uipath/_cli/cli_invoke.py,sha256=m-te-EjhDpk_fhFDkt-yQFzmjEHGo5lQDGEQWxSXisQ,4395
|
|
16
16
|
uipath/_cli/cli_new.py,sha256=9378NYUBc9j-qKVXV7oja-jahfJhXBg8zKVyaon7ctY,2102
|
|
@@ -25,14 +25,14 @@ uipath/_cli/_auth/_auth_server.py,sha256=v_b8KNwn0tAv8jxpeKdllOVzl31q9AcdwpE_koA
|
|
|
25
25
|
uipath/_cli/_auth/_auth_service.py,sha256=gyOtaHnDmjYccW0R1HVmFgV69a7w53Dx1Mq-PM0uVag,5405
|
|
26
26
|
uipath/_cli/_auth/_models.py,sha256=kWhqd5FqBo_oi3DW2x1IaJHsEloXq0I24f-pX5zb_O4,753
|
|
27
27
|
uipath/_cli/_auth/_oidc_utils.py,sha256=qGpognkz-Ks-8pt-QabSNTix5HE06lQpY3WZxptoJUE,3394
|
|
28
|
-
uipath/_cli/_auth/_portal_service.py,sha256=
|
|
28
|
+
uipath/_cli/_auth/_portal_service.py,sha256=nbJzMEg4MAhUGrXD90Jwd5b1SzxLiHri-ZgiHQwLzu8,8011
|
|
29
29
|
uipath/_cli/_auth/_url_utils.py,sha256=MuMYesMQDgetLBzkwd19dPxw3fctys7EVpByDUQMyLE,2844
|
|
30
30
|
uipath/_cli/_auth/_utils.py,sha256=To4Ara_UF4g7nzUfKqFA11lTjhQWIZWNm4xwa5nNKmU,896
|
|
31
31
|
uipath/_cli/_auth/auth_config.json,sha256=o8J5BBFwiEtjZLHpJ_64lvnTeYeRIHaJ-Bhg0QvcUX8,521
|
|
32
32
|
uipath/_cli/_auth/index.html,sha256=uGK0CDTP8Rys_p4O_Pbd2x4tz0frKNVcumjrXnal5Nc,22814
|
|
33
33
|
uipath/_cli/_auth/localhost.crt,sha256=oGl9oLLOiouHubAt39B4zEfylFvKEtbtr_43SIliXJc,1226
|
|
34
34
|
uipath/_cli/_auth/localhost.key,sha256=X31VYXD8scZtmGA837dGX5l6G-LXHLo5ItWJhZXaz3c,1679
|
|
35
|
-
uipath/_cli/_debug/_bridge.py,sha256=
|
|
35
|
+
uipath/_cli/_debug/_bridge.py,sha256=3TORu0ArTJoNFzolx80RgTv3z_84G_SZOKnYa7sOC0s,16161
|
|
36
36
|
uipath/_cli/_debug/_runtime.py,sha256=h4WRBJn46dorTVXNZ32KIqg_-Z0mcLq5BvXGXqHAT_o,4934
|
|
37
37
|
uipath/_cli/_dev/_terminal/__init__.py,sha256=di_RiN9Mcp9wqyKRRqXag28vbSw8_78mCnQZNn9H-Ss,14027
|
|
38
38
|
uipath/_cli/_dev/_terminal/_components/_chat.py,sha256=NLRoy49QScHiI-q0FGykkaU8ajv1d23fx7issSALcFA,4119
|
|
@@ -46,10 +46,12 @@ uipath/_cli/_dev/_terminal/_styles/terminal.tcss,sha256=ktVpKwXIXw2VZp8KIZD6fO9i
|
|
|
46
46
|
uipath/_cli/_dev/_terminal/_utils/_chat.py,sha256=YUZxYVdmEManwHDuZsczJT1dWIYE1dVBgABlurwMFcE,8493
|
|
47
47
|
uipath/_cli/_dev/_terminal/_utils/_exporter.py,sha256=oI6D_eMwrh_2aqDYUh4GrJg8VLGrLYhDahR-_o0uJns,4144
|
|
48
48
|
uipath/_cli/_dev/_terminal/_utils/_logger.py,sha256=_ipTl_oAiMF9I7keGt2AAFAMz40DNLVMVkoiq-07UAU,2943
|
|
49
|
+
uipath/_cli/_evals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
50
|
uipath/_cli/_evals/_console_progress_reporter.py,sha256=HgB6pdMyoS6YVwuI3EpM2LBcH3U69nrdaTyNgPG8ssg,9304
|
|
51
|
+
uipath/_cli/_evals/_evaluate.py,sha256=yRVhZ6uV58EV5Fv5X_K6425ZGsseQslnLe6FpIKy-u8,833
|
|
50
52
|
uipath/_cli/_evals/_evaluator_factory.py,sha256=Gycv94VtGOpMir_Gba-UoiAyrSRfbSfe8_pTfjzcA9Q,3875
|
|
51
53
|
uipath/_cli/_evals/_progress_reporter.py,sha256=kX7rNSa-QCLXIzK-vb9Jjf-XLEtucdeiQPgPlSkpp2U,16778
|
|
52
|
-
uipath/_cli/_evals/_runtime.py,sha256=
|
|
54
|
+
uipath/_cli/_evals/_runtime.py,sha256=Ne9VBUFH36cSTUx-xsPU41T90vruVrBu0EliubLPijw,20751
|
|
53
55
|
uipath/_cli/_evals/_span_collection.py,sha256=RoKoeDFG2XODdlgI27ionCjU7LLD_C0LJJ3gu0wab10,779
|
|
54
56
|
uipath/_cli/_evals/_models/_evaluation_set.py,sha256=0I83I3HNu_BrgFz9miar2QTyXKb0dAaEpYMQrKUHP0U,4958
|
|
55
57
|
uipath/_cli/_evals/_models/_evaluator.py,sha256=fuC3UOYwPD4d_wdynHeLSCzbu82golNAnnPnxC8Y4rk,3315
|
|
@@ -66,13 +68,13 @@ uipath/_cli/_evals/mocks/mocker_factory.py,sha256=V5QKSTtQxztTo4-fK1TyAaXw2Z3mHf
|
|
|
66
68
|
uipath/_cli/_evals/mocks/mockito_mocker.py,sha256=AO2BmFwA6hz3Lte-STVr7aJDPvMCqKNKa4j2jeNZ_U4,2677
|
|
67
69
|
uipath/_cli/_evals/mocks/mocks.py,sha256=HY0IaSqqO8hioBB3rp5XwAjSpQE4K5hoH6oJQ-sH72I,2207
|
|
68
70
|
uipath/_cli/_push/sw_file_handler.py,sha256=DrGOpX7-dodrROh7YcjHlCBUuOEdVMh8o0550TL-ZYA,22520
|
|
69
|
-
uipath/_cli/_runtime/_contracts.py,sha256=
|
|
71
|
+
uipath/_cli/_runtime/_contracts.py,sha256=tlL67y7YtbbdNpNz5ZmRBxHsaZ59fefcPgHnmZA0Drw,35653
|
|
70
72
|
uipath/_cli/_runtime/_escalation.py,sha256=x3vI98qsfRA-fL_tNkRVTFXioM5Gv2w0GFcXJJ5eQtg,7981
|
|
71
|
-
uipath/_cli/_runtime/_hitl.py,sha256=
|
|
73
|
+
uipath/_cli/_runtime/_hitl.py,sha256=JAwTUKvxO4HpnZMwE4E0AegAPw_uYOwgt0OYcu6EvTg,11474
|
|
72
74
|
uipath/_cli/_runtime/_logging.py,sha256=srjAi3Cy6g7b8WNHiYNjaZT4t40F3XRqquuoGd2kh4Y,14019
|
|
73
|
-
uipath/_cli/_runtime/_runtime.py,sha256=
|
|
75
|
+
uipath/_cli/_runtime/_runtime.py,sha256=Y20NFvnrLvnRi9u6D1HmUT9H7vbbsa423w-CkIRtTlA,4756
|
|
74
76
|
uipath/_cli/_runtime/_runtime_factory.py,sha256=8wbJeTTFQwCZ-Zm7tRec2YjBCJGhWdEwxl9yMkPwz6U,640
|
|
75
|
-
uipath/_cli/_runtime/_script_executor.py,sha256=
|
|
77
|
+
uipath/_cli/_runtime/_script_executor.py,sha256=zRAGQw_7gM93W3hGH4ml_Qn6KEEUxwJIe96odu-dMNA,9803
|
|
76
78
|
uipath/_cli/_templates/.psmdcp.template,sha256=C7pBJPt98ovEljcBvGtEUGoWjjQhu9jls1bpYjeLOKA,611
|
|
77
79
|
uipath/_cli/_templates/.rels.template,sha256=-fTcw7OA1AcymHr0LzBqbMAAtzZTRXLTNa_ljq087Jk,406
|
|
78
80
|
uipath/_cli/_templates/[Content_Types].xml.template,sha256=bYsKDz31PkIF9QksjgAY_bqm57YC8U_owsZeNZAiBxQ,584
|
|
@@ -189,8 +191,8 @@ uipath/tracing/_utils.py,sha256=X-LFsyIxDeNOGuHPvkb6T5o9Y8ElYhr_rP3CEBJSu4s,1383
|
|
|
189
191
|
uipath/utils/__init__.py,sha256=VD-KXFpF_oWexFg6zyiWMkxl2HM4hYJMIUDZ1UEtGx0,105
|
|
190
192
|
uipath/utils/_endpoints_manager.py,sha256=tnF_FiCx8qI2XaJDQgYkMN_gl9V0VqNR1uX7iawuLp8,8230
|
|
191
193
|
uipath/utils/dynamic_schema.py,sha256=w0u_54MoeIAB-mf3GmwX1A_X8_HDrRy6p998PvX9evY,3839
|
|
192
|
-
uipath-2.1.
|
|
193
|
-
uipath-2.1.
|
|
194
|
-
uipath-2.1.
|
|
195
|
-
uipath-2.1.
|
|
196
|
-
uipath-2.1.
|
|
194
|
+
uipath-2.1.105.dist-info/METADATA,sha256=K5hQtwyATXioIYlwjouky0NiHWH8OcFpClL9bjEXSWc,6626
|
|
195
|
+
uipath-2.1.105.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
196
|
+
uipath-2.1.105.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
|
197
|
+
uipath-2.1.105.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
|
|
198
|
+
uipath-2.1.105.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|