uipath 2.1.33__py3-none-any.whl → 2.1.35__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.
- uipath/_cli/__init__.py +2 -0
- uipath/_cli/_auth/_auth_server.py +0 -4
- uipath/_cli/_dev/_terminal/_components/_details.py +5 -2
- uipath/_cli/_utils/_common.py +6 -0
- uipath/_cli/_utils/_project_files.py +6 -5
- uipath/_cli/cli_auth.py +0 -2
- uipath/_cli/cli_dev.py +23 -23
- uipath/_cli/cli_eval.py +0 -2
- uipath/_cli/cli_init.py +0 -4
- uipath/_cli/cli_invoke.py +0 -4
- uipath/_cli/cli_publish.py +0 -4
- uipath/_cli/cli_pull.py +0 -2
- uipath/_cli/cli_push.py +0 -2
- uipath/_cli/cli_run.py +0 -2
- uipath/_execution_context.py +0 -4
- uipath/_folder_context.py +0 -4
- uipath/_uipath.py +0 -3
- uipath/_utils/constants.py +1 -0
- {uipath-2.1.33.dist-info → uipath-2.1.35.dist-info}/METADATA +1 -1
- {uipath-2.1.33.dist-info → uipath-2.1.35.dist-info}/RECORD +23 -23
- {uipath-2.1.33.dist-info → uipath-2.1.35.dist-info}/WHEEL +0 -0
- {uipath-2.1.33.dist-info → uipath-2.1.35.dist-info}/entry_points.txt +0 -0
- {uipath-2.1.33.dist-info → uipath-2.1.35.dist-info}/licenses/LICENSE +0 -0
uipath/_cli/__init__.py
CHANGED
@@ -3,6 +3,7 @@ import sys
|
|
3
3
|
|
4
4
|
import click
|
5
5
|
|
6
|
+
from ._utils._common import load_environment_variables
|
6
7
|
from .cli_auth import auth as auth
|
7
8
|
from .cli_deploy import deploy as deploy # type: ignore
|
8
9
|
from .cli_dev import dev as dev
|
@@ -43,6 +44,7 @@ def _get_safe_version() -> str:
|
|
43
44
|
help="Display the current version of uipath.",
|
44
45
|
)
|
45
46
|
def cli(lv: bool, v: bool) -> None:
|
47
|
+
load_environment_variables()
|
46
48
|
if lv:
|
47
49
|
try:
|
48
50
|
version = importlib.metadata.version("uipath-langchain")
|
@@ -180,8 +180,11 @@ class RunDetailsPanel(Container):
|
|
180
180
|
|
181
181
|
elif isinstance(value, str):
|
182
182
|
if prefix:
|
183
|
-
|
184
|
-
|
183
|
+
split_lines = value.splitlines()
|
184
|
+
if split_lines:
|
185
|
+
lines.append(f"{prefix}: {split_lines[0]}")
|
186
|
+
for line in split_lines[1:]:
|
187
|
+
lines.append(f"{' ' * 2}{line}")
|
185
188
|
else:
|
186
189
|
lines.extend(value.splitlines())
|
187
190
|
|
uipath/_cli/_utils/_common.py
CHANGED
@@ -3,7 +3,9 @@ from typing import Optional
|
|
3
3
|
from urllib.parse import urlparse
|
4
4
|
|
5
5
|
import click
|
6
|
+
from dotenv import load_dotenv
|
6
7
|
|
8
|
+
from ..._utils.constants import DOTENV_FILE
|
7
9
|
from ..spinner import Spinner
|
8
10
|
|
9
11
|
|
@@ -102,3 +104,7 @@ def clean_directory(directory: str) -> None:
|
|
102
104
|
|
103
105
|
if os.path.isfile(file_path) and file_name.endswith(".py"):
|
104
106
|
os.remove(file_path)
|
107
|
+
|
108
|
+
|
109
|
+
def load_environment_variables():
|
110
|
+
load_dotenv(dotenv_path=os.path.join(os.getcwd(), DOTENV_FILE), override=True)
|
@@ -68,7 +68,7 @@ def get_project_config(directory: str) -> dict[str, str]:
|
|
68
68
|
"version": toml_data["version"],
|
69
69
|
"authors": toml_data["authors"],
|
70
70
|
"dependencies": toml_data.get("dependencies", {}),
|
71
|
-
"requires-python": toml_data.get("requires-python",
|
71
|
+
"requires-python": toml_data.get("requires-python", None),
|
72
72
|
}
|
73
73
|
|
74
74
|
|
@@ -104,14 +104,15 @@ def validate_config(config: dict[str, str]) -> None:
|
|
104
104
|
)
|
105
105
|
|
106
106
|
invalid_chars = ["&", "<", ">", '"', "'", ";"]
|
107
|
-
for char in invalid_chars:
|
108
|
-
if char in config["project_name"]:
|
109
|
-
console.error(f"Project name contains invalid character: '{char}'")
|
110
|
-
|
111
107
|
for char in invalid_chars:
|
112
108
|
if char in config["description"]:
|
113
109
|
console.error(f"Project description contains invalid character: '{char}'")
|
114
110
|
|
111
|
+
invalid_chars += [" "]
|
112
|
+
for char in invalid_chars:
|
113
|
+
if char in config["project_name"]:
|
114
|
+
console.error(f"Project name contains invalid character: '{char}'")
|
115
|
+
|
115
116
|
|
116
117
|
def validate_config_structure(config_data: dict[str, Any]) -> None:
|
117
118
|
"""Validate the structure of uipath.json configuration.
|
uipath/_cli/cli_auth.py
CHANGED
@@ -7,7 +7,6 @@ from typing import Optional
|
|
7
7
|
from urllib.parse import urlparse
|
8
8
|
|
9
9
|
import click
|
10
|
-
from dotenv import load_dotenv
|
11
10
|
|
12
11
|
from ..telemetry import track
|
13
12
|
from ._auth._auth_server import HTTPServer
|
@@ -18,7 +17,6 @@ from ._auth._utils import update_auth_file, update_env_file
|
|
18
17
|
from ._utils._common import environment_options
|
19
18
|
from ._utils._console import ConsoleLogger
|
20
19
|
|
21
|
-
load_dotenv(override=True)
|
22
20
|
console = ConsoleLogger()
|
23
21
|
|
24
22
|
|
uipath/_cli/cli_dev.py
CHANGED
@@ -18,27 +18,27 @@ console = ConsoleLogger()
|
|
18
18
|
@track
|
19
19
|
def dev(interface: Optional[str]) -> None:
|
20
20
|
"""Launch interactive debugging interface."""
|
21
|
-
console.
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
"dev",
|
26
|
-
interface,
|
27
|
-
)
|
28
|
-
|
29
|
-
if result.should_continue is False:
|
30
|
-
return
|
31
|
-
|
32
|
-
try:
|
33
|
-
if interface == "terminal":
|
34
|
-
runtime_factory = UiPathRuntimeFactory(UiPathRuntime, UiPathRuntimeContext)
|
35
|
-
app = UiPathDevTerminal(runtime_factory)
|
36
|
-
asyncio.run(app.run_async())
|
37
|
-
else:
|
38
|
-
console.error(f"Unknown interface: {interface}")
|
39
|
-
except KeyboardInterrupt:
|
40
|
-
console.info("Debug session interrupted by user")
|
41
|
-
except Exception as e:
|
42
|
-
console.error(
|
43
|
-
f"Error running debug interface: {str(e)}", include_traceback=True
|
21
|
+
with console.spinner("Launching UiPath debugging terminal ..."):
|
22
|
+
result = Middlewares.next(
|
23
|
+
"dev",
|
24
|
+
interface,
|
44
25
|
)
|
26
|
+
|
27
|
+
if result.should_continue is False:
|
28
|
+
return
|
29
|
+
|
30
|
+
try:
|
31
|
+
if interface == "terminal":
|
32
|
+
runtime_factory = UiPathRuntimeFactory(
|
33
|
+
UiPathRuntime, UiPathRuntimeContext
|
34
|
+
)
|
35
|
+
app = UiPathDevTerminal(runtime_factory)
|
36
|
+
asyncio.run(app.run_async())
|
37
|
+
else:
|
38
|
+
console.error(f"Unknown interface: {interface}")
|
39
|
+
except KeyboardInterrupt:
|
40
|
+
console.info("Debug session interrupted by user")
|
41
|
+
except Exception as e:
|
42
|
+
console.error(
|
43
|
+
f"Error running debug interface: {str(e)}", include_traceback=True
|
44
|
+
)
|
uipath/_cli/cli_eval.py
CHANGED
@@ -5,7 +5,6 @@ import os
|
|
5
5
|
from typing import List, Optional, Tuple
|
6
6
|
|
7
7
|
import click
|
8
|
-
from dotenv import load_dotenv
|
9
8
|
|
10
9
|
from .._utils.constants import ENV_JOB_ID
|
11
10
|
from ..telemetry import track
|
@@ -13,7 +12,6 @@ from ._evals.evaluation_service import EvaluationService
|
|
13
12
|
from ._utils._console import ConsoleLogger
|
14
13
|
|
15
14
|
console = ConsoleLogger()
|
16
|
-
load_dotenv(override=True)
|
17
15
|
|
18
16
|
|
19
17
|
class LiteralOption(click.Option):
|
uipath/_cli/cli_init.py
CHANGED
@@ -6,7 +6,6 @@ from pathlib import Path
|
|
6
6
|
from typing import Any, Dict, Optional
|
7
7
|
|
8
8
|
import click
|
9
|
-
from dotenv import load_dotenv
|
10
9
|
|
11
10
|
from .._utils.constants import ENV_TELEMETRY_ENABLED
|
12
11
|
from ..telemetry import track
|
@@ -125,9 +124,6 @@ def write_config_file(config_data: Dict[str, Any]) -> None:
|
|
125
124
|
@track
|
126
125
|
def init(entrypoint: str, infer_bindings: bool) -> None:
|
127
126
|
"""Create uipath.json with input/output schemas and bindings."""
|
128
|
-
current_path = os.getcwd()
|
129
|
-
load_dotenv(os.path.join(current_path, ".env"), override=True)
|
130
|
-
|
131
127
|
with console.spinner("Initializing UiPath project ..."):
|
132
128
|
current_directory = os.getcwd()
|
133
129
|
generate_env_file(current_directory)
|
uipath/_cli/cli_invoke.py
CHANGED
@@ -5,7 +5,6 @@ from typing import Optional
|
|
5
5
|
|
6
6
|
import click
|
7
7
|
import httpx
|
8
|
-
from dotenv import load_dotenv
|
9
8
|
|
10
9
|
from ._utils._console import ConsoleLogger
|
11
10
|
|
@@ -21,7 +20,6 @@ from ._utils._folders import get_personal_workspace_info
|
|
21
20
|
from ._utils._processes import get_release_info
|
22
21
|
|
23
22
|
logger = logging.getLogger(__name__)
|
24
|
-
load_dotenv(override=True)
|
25
23
|
console = ConsoleLogger()
|
26
24
|
|
27
25
|
|
@@ -63,8 +61,6 @@ def invoke(
|
|
63
61
|
with open(file) as f:
|
64
62
|
input = f.read()
|
65
63
|
with console.spinner("Loading configuration ..."):
|
66
|
-
current_path = os.getcwd()
|
67
|
-
load_dotenv(os.path.join(current_path, ".env"), override=True)
|
68
64
|
[base_url, token] = get_env_vars()
|
69
65
|
|
70
66
|
url = f"{base_url}/orchestrator_/odata/Jobs/UiPath.Server.Configuration.OData.StartJobs"
|
uipath/_cli/cli_publish.py
CHANGED
@@ -4,7 +4,6 @@ import os
|
|
4
4
|
|
5
5
|
import click
|
6
6
|
import httpx
|
7
|
-
from dotenv import load_dotenv
|
8
7
|
|
9
8
|
from .._utils._ssl_context import get_httpx_client_kwargs
|
10
9
|
from ..telemetry import track
|
@@ -70,9 +69,6 @@ def get_available_feeds(
|
|
70
69
|
@track
|
71
70
|
def publish(feed):
|
72
71
|
"""Publish the package."""
|
73
|
-
current_path = os.getcwd()
|
74
|
-
load_dotenv(os.path.join(current_path, ".env"), override=True)
|
75
|
-
|
76
72
|
[base_url, token] = get_env_vars()
|
77
73
|
headers = {"Authorization": f"Bearer {token}"}
|
78
74
|
|
uipath/_cli/cli_pull.py
CHANGED
@@ -17,7 +17,6 @@ import os
|
|
17
17
|
from typing import Dict, Set
|
18
18
|
|
19
19
|
import click
|
20
|
-
from dotenv import load_dotenv
|
21
20
|
|
22
21
|
from ..telemetry import track
|
23
22
|
from ._utils._console import ConsoleLogger
|
@@ -30,7 +29,6 @@ from ._utils._studio_project import (
|
|
30
29
|
)
|
31
30
|
|
32
31
|
console = ConsoleLogger()
|
33
|
-
load_dotenv(override=True)
|
34
32
|
|
35
33
|
|
36
34
|
def compute_normalized_hash(content: str) -> str:
|
uipath/_cli/cli_push.py
CHANGED
@@ -5,7 +5,6 @@ from typing import Any
|
|
5
5
|
from urllib.parse import urlparse
|
6
6
|
|
7
7
|
import click
|
8
|
-
from dotenv import load_dotenv
|
9
8
|
|
10
9
|
from ..telemetry import track
|
11
10
|
from ._push.sw_file_handler import SwFileHandler
|
@@ -21,7 +20,6 @@ from ._utils._project_files import (
|
|
21
20
|
from ._utils._uv_helpers import handle_uv_operations
|
22
21
|
|
23
22
|
console = ConsoleLogger()
|
24
|
-
load_dotenv(override=True)
|
25
23
|
|
26
24
|
|
27
25
|
def get_org_scoped_url(base_url: str) -> str:
|
uipath/_cli/cli_run.py
CHANGED
@@ -7,7 +7,6 @@ from typing import Optional, Tuple
|
|
7
7
|
from uuid import uuid4
|
8
8
|
|
9
9
|
import click
|
10
|
-
from dotenv import load_dotenv
|
11
10
|
|
12
11
|
from uipath._cli._utils._debug import setup_debugging
|
13
12
|
from uipath.tracing import LlmOpsHttpExporter
|
@@ -27,7 +26,6 @@ from ._utils._console import ConsoleLogger
|
|
27
26
|
from .middlewares import MiddlewareResult, Middlewares
|
28
27
|
|
29
28
|
console = ConsoleLogger()
|
30
|
-
load_dotenv(override=True)
|
31
29
|
|
32
30
|
|
33
31
|
def python_run_middleware(
|
uipath/_execution_context.py
CHANGED
@@ -1,12 +1,8 @@
|
|
1
1
|
from os import environ as env
|
2
2
|
from typing import Optional
|
3
3
|
|
4
|
-
from dotenv import load_dotenv
|
5
|
-
|
6
4
|
from ._utils.constants import ENV_JOB_ID, ENV_JOB_KEY, ENV_ROBOT_KEY
|
7
5
|
|
8
|
-
load_dotenv(override=True)
|
9
|
-
|
10
6
|
|
11
7
|
class ExecutionContext:
|
12
8
|
"""Manages the execution context for UiPath automation processes.
|
uipath/_folder_context.py
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
from os import environ as env
|
2
2
|
from typing import Any, Optional
|
3
3
|
|
4
|
-
from dotenv import load_dotenv
|
5
|
-
|
6
4
|
from ._utils.constants import (
|
7
5
|
ENV_FOLDER_KEY,
|
8
6
|
ENV_FOLDER_PATH,
|
@@ -10,8 +8,6 @@ from ._utils.constants import (
|
|
10
8
|
HEADER_FOLDER_PATH,
|
11
9
|
)
|
12
10
|
|
13
|
-
load_dotenv(override=True)
|
14
|
-
|
15
11
|
|
16
12
|
class FolderContext:
|
17
13
|
"""Manages the folder context for UiPath automation resources.
|
uipath/_uipath.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
from os import environ as env
|
2
2
|
from typing import Optional
|
3
3
|
|
4
|
-
from dotenv import load_dotenv
|
5
4
|
from pydantic import ValidationError
|
6
5
|
|
7
6
|
from ._config import Config
|
@@ -29,8 +28,6 @@ from ._utils.constants import (
|
|
29
28
|
)
|
30
29
|
from .models.errors import BaseUrlMissingError, SecretMissingError
|
31
30
|
|
32
|
-
load_dotenv(override=True)
|
33
|
-
|
34
31
|
|
35
32
|
class UiPath:
|
36
33
|
def __init__(
|
uipath/_utils/constants.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: uipath
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.35
|
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
|
@@ -1,26 +1,26 @@
|
|
1
1
|
uipath/__init__.py,sha256=IaeKItOOQXMa95avueJ3dAq-XcRHyZVNjcCGwlSB000,634
|
2
2
|
uipath/_config.py,sha256=pi3qxPzDTxMEstj_XkGOgKJqD6RTHHv7vYv8sS_-d5Q,92
|
3
|
-
uipath/_execution_context.py,sha256=
|
4
|
-
uipath/_folder_context.py,sha256=
|
5
|
-
uipath/_uipath.py,sha256=
|
3
|
+
uipath/_execution_context.py,sha256=Qo8VMUFgtiL-40KsZrvul5bGv1CRERle_fCw1ORCggY,2374
|
4
|
+
uipath/_folder_context.py,sha256=D-bgxdwpwJP4b_QdVKcPODYh15kMDrOar2xNonmMSm4,1861
|
5
|
+
uipath/_uipath.py,sha256=vYSrugpWOufwXln7y4rn6SvoDWwZq2KMX5prAvCyHHM,4087
|
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=
|
9
|
-
uipath/_cli/cli_auth.py,sha256
|
8
|
+
uipath/_cli/__init__.py,sha256=kf4GINkunFGMZkTk2Z4f1Q3-OsxpNnV6u_9BsBt1i0E,2229
|
9
|
+
uipath/_cli/cli_auth.py,sha256=SfE3wiQZ00f_iv4NQfRpLqV4KVnkUhq8J-a7reg247A,7773
|
10
10
|
uipath/_cli/cli_deploy.py,sha256=KPCmQ0c_NYD5JofSDao5r6QYxHshVCRxlWDVnQvlp5w,645
|
11
|
-
uipath/_cli/cli_dev.py,sha256=
|
12
|
-
uipath/_cli/cli_eval.py,sha256=
|
13
|
-
uipath/_cli/cli_init.py,sha256=
|
14
|
-
uipath/_cli/cli_invoke.py,sha256=
|
11
|
+
uipath/_cli/cli_dev.py,sha256=AtxGi6mFJoigvNuqiP3qaQmoiL6VMmli6nJdRJX_oKQ,1370
|
12
|
+
uipath/_cli/cli_eval.py,sha256=Hze4PwW4smivmSZg_eGDHr3pZ6LHxX5MkTJuXB2xpxs,3598
|
13
|
+
uipath/_cli/cli_init.py,sha256=LPpcKcuoYDAb1K8N-51z_HMlV9slqjhKr7EWC_hL4U0,5963
|
14
|
+
uipath/_cli/cli_invoke.py,sha256=zuy3hCn5wfOcd_qYJDmfMB-5qtYS-GENprYXkQN29No,3836
|
15
15
|
uipath/_cli/cli_new.py,sha256=9378NYUBc9j-qKVXV7oja-jahfJhXBg8zKVyaon7ctY,2102
|
16
16
|
uipath/_cli/cli_pack.py,sha256=NmwZTfwZ2fURiHyiX1BM0juAtBOjPB1Jmcpu-rD7p-4,11025
|
17
|
-
uipath/_cli/cli_publish.py,sha256=
|
18
|
-
uipath/_cli/cli_pull.py,sha256=
|
19
|
-
uipath/_cli/cli_push.py,sha256
|
20
|
-
uipath/_cli/cli_run.py,sha256=
|
17
|
+
uipath/_cli/cli_publish.py,sha256=FmBCdeh4zFaESOLfzTTPxGcOwUtsQ_WkvF_fjHEdU8s,6448
|
18
|
+
uipath/_cli/cli_pull.py,sha256=vwS0KMX6O2L6RaPy8tw_qzXe4dC7kf_G6nbLm0I62eI,6831
|
19
|
+
uipath/_cli/cli_push.py,sha256=-j-gDIbT8GyU2SybLQqFl5L8KI9nu3CDijVtltDgX20,3132
|
20
|
+
uipath/_cli/cli_run.py,sha256=pM4FoR0mbykIK2O68auN_NX1LckNsMLJLBtW8MqgLxo,7777
|
21
21
|
uipath/_cli/middlewares.py,sha256=MffXgAeafn5AqUsbw4l-FVly9Dm9TOvfvGJ61XOTt2Y,4934
|
22
22
|
uipath/_cli/spinner.py,sha256=bS-U_HA5yne11ejUERu7CQoXmWdabUD2bm62EfEdV8M,1107
|
23
|
-
uipath/_cli/_auth/_auth_server.py,sha256=
|
23
|
+
uipath/_cli/_auth/_auth_server.py,sha256=ICgc-GqfQmI6fMieJrGNTLcg6v7JgbKjZRGSBm6fdkg,7102
|
24
24
|
uipath/_cli/_auth/_client_credentials.py,sha256=aC_xtEzWBQohRlxt85ZE8Ro0Pv9LmNltXECV8yjjO0U,5422
|
25
25
|
uipath/_cli/_auth/_models.py,sha256=sYMCfvmprIqnZxStlD_Dxx2bcxgn0Ri4D7uwemwkcNg,948
|
26
26
|
uipath/_cli/_auth/_oidc_utils.py,sha256=tsYuueJoAYgS9d_ly0b3RmQ4Yybhr4G7ZkAc6lf8Gck,2169
|
@@ -32,7 +32,7 @@ uipath/_cli/_auth/index.html,sha256=uGK0CDTP8Rys_p4O_Pbd2x4tz0frKNVcumjrXnal5Nc,
|
|
32
32
|
uipath/_cli/_auth/localhost.crt,sha256=oGl9oLLOiouHubAt39B4zEfylFvKEtbtr_43SIliXJc,1226
|
33
33
|
uipath/_cli/_auth/localhost.key,sha256=X31VYXD8scZtmGA837dGX5l6G-LXHLo5ItWJhZXaz3c,1679
|
34
34
|
uipath/_cli/_dev/_terminal/__init__.py,sha256=08aBD5-I6rcO9Sjp3sWWlinoRvHpa67Ss7yawXBhkBI,10136
|
35
|
-
uipath/_cli/_dev/_terminal/_components/_details.py,sha256=
|
35
|
+
uipath/_cli/_dev/_terminal/_components/_details.py,sha256=kgTWoBwr5f509gUmfYZzCmxJ86BpfbNhWT5oCf7rHoM,16377
|
36
36
|
uipath/_cli/_dev/_terminal/_components/_history.py,sha256=-0lystNcVUCUbHgEUVQ-CdxAfV3_X5uhjxWevxs19Z0,2054
|
37
37
|
uipath/_cli/_dev/_terminal/_components/_json_input.py,sha256=MPkaeiA5KfkwJZKuNJ02hQksVtluZlmJv9nLRRAWYQI,592
|
38
38
|
uipath/_cli/_dev/_terminal/_components/_new.py,sha256=jxDFOQ6NCzTgesgx3srRr45ij1FqdICAB0uo6vXeh4I,4614
|
@@ -66,7 +66,7 @@ uipath/_cli/_templates/.rels.template,sha256=-fTcw7OA1AcymHr0LzBqbMAAtzZTRXLTNa_
|
|
66
66
|
uipath/_cli/_templates/[Content_Types].xml.template,sha256=bYsKDz31PkIF9QksjgAY_bqm57YC8U_owsZeNZAiBxQ,584
|
67
67
|
uipath/_cli/_templates/main.py.template,sha256=QB62qX5HKDbW4lFskxj7h9uuxBITnTWqu_DE6asCwcU,476
|
68
68
|
uipath/_cli/_templates/package.nuspec.template,sha256=YZyLc-u_EsmIoKf42JsLQ55OGeFmb8VkIU2VF7DFbtw,359
|
69
|
-
uipath/_cli/_utils/_common.py,sha256=
|
69
|
+
uipath/_cli/_utils/_common.py,sha256=CzhhkIRfCuQ1-5HLDtjzOyt8KFs1jm6wzrBeU_v2B7c,3329
|
70
70
|
uipath/_cli/_utils/_console.py,sha256=scvnrrFoFX6CE451K-PXKV7UN0DUkInbOtDZ5jAdPP0,10070
|
71
71
|
uipath/_cli/_utils/_constants.py,sha256=rS8lQ5Nzull8ytajK6lBsz398qiCp1REoAwlHtyBwF0,1415
|
72
72
|
uipath/_cli/_utils/_debug.py,sha256=zamzIR4VgbdKADAE4gbmjxDsbgF7wvdr7C5Dqp744Oc,1739
|
@@ -74,7 +74,7 @@ uipath/_cli/_utils/_folders.py,sha256=UVJcKPfPAVR5HF4AP6EXdlNVcfEF1v5pwGCpoAgBY3
|
|
74
74
|
uipath/_cli/_utils/_input_args.py,sha256=3LGNqVpJItvof75VGm-ZNTUMUH9-c7-YgleM5b2YgRg,5088
|
75
75
|
uipath/_cli/_utils/_parse_ast.py,sha256=8Iohz58s6bYQ7rgWtOTjrEInLJ-ETikmOMZzZdIY2Co,20072
|
76
76
|
uipath/_cli/_utils/_processes.py,sha256=q7DfEKHISDWf3pngci5za_z0Pbnf_shWiYEcTOTCiyk,1855
|
77
|
-
uipath/_cli/_utils/_project_files.py,sha256=
|
77
|
+
uipath/_cli/_utils/_project_files.py,sha256=a_mhBN0CLp2h56DYswjE79BP3M_LpIMYteJcfcGoCRc,13144
|
78
78
|
uipath/_cli/_utils/_studio_project.py,sha256=X4X9HbdbGgLQtJRE-h8rcALCrupWkrpqOfSnt9c-hlo,15541
|
79
79
|
uipath/_cli/_utils/_tracing.py,sha256=2igb03j3EHjF_A406UhtCKkPfudVfFPjUq5tXUEG4oo,1541
|
80
80
|
uipath/_cli/_utils/_uv_helpers.py,sha256=6SvoLnZPoKIxW0sjMvD1-ENV_HOXDYzH34GjBqwT138,3450
|
@@ -102,7 +102,7 @@ uipath/_utils/_request_spec.py,sha256=iCtBLqtbWUpFG5g1wtIZBzSupKsfaRLiQFoFc_4B70
|
|
102
102
|
uipath/_utils/_ssl_context.py,sha256=xSYitos0eJc9cPHzNtHISX9PBvL6D2vas5G_GiBdLp8,1783
|
103
103
|
uipath/_utils/_url.py,sha256=-4eluSrIZCUlnQ3qU17WPJkgaC2KwF9W5NeqGnTNGGo,2512
|
104
104
|
uipath/_utils/_user_agent.py,sha256=pVJkFYacGwaQBomfwWVAvBQgdBUo62e4n3-fLIajWUU,563
|
105
|
-
uipath/_utils/constants.py,sha256=
|
105
|
+
uipath/_utils/constants.py,sha256=Rqclg9wVkXbpzKPCXKit5_P3tik9J1y8T80h9W2VxLE,1059
|
106
106
|
uipath/models/__init__.py,sha256=d_DkK1AtRUetM1t2NrH5UKgvJOBiynzaKnK5pMY7aIc,1289
|
107
107
|
uipath/models/action_schema.py,sha256=lKDhP7Eix23fFvfQrqqNmSOiPyyNF6tiRpUu0VZIn_M,714
|
108
108
|
uipath/models/actions.py,sha256=ekSH4YUQR4KPOH-heBm9yOgOfirndx0In4_S4VYWeEU,2993
|
@@ -128,8 +128,8 @@ uipath/tracing/_traced.py,sha256=qeVDrds2OUnpdUIA0RhtF0kg2dlAZhyC1RRkI-qivTM,185
|
|
128
128
|
uipath/tracing/_utils.py,sha256=wJRELaPu69iY0AhV432Dk5QYf_N_ViRU4kAUG1BI1ew,10384
|
129
129
|
uipath/utils/__init__.py,sha256=VD-KXFpF_oWexFg6zyiWMkxl2HM4hYJMIUDZ1UEtGx0,105
|
130
130
|
uipath/utils/_endpoints_manager.py,sha256=iRTl5Q0XAm_YgcnMcJOXtj-8052sr6jpWuPNz6CgT0Q,8408
|
131
|
-
uipath-2.1.
|
132
|
-
uipath-2.1.
|
133
|
-
uipath-2.1.
|
134
|
-
uipath-2.1.
|
135
|
-
uipath-2.1.
|
131
|
+
uipath-2.1.35.dist-info/METADATA,sha256=sfng_9SPb9SEgON3xRS06894IV7tM7xnbtTqUHflFsI,6450
|
132
|
+
uipath-2.1.35.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
133
|
+
uipath-2.1.35.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
134
|
+
uipath-2.1.35.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
|
135
|
+
uipath-2.1.35.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|