uipath 2.0.0.dev3__py3-none-any.whl → 2.0.1__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/__init__.py +24 -0
- uipath/_cli/README.md +11 -0
- uipath/_cli/__init__.py +54 -0
- uipath/_cli/_auth/_auth_server.py +165 -0
- uipath/_cli/_auth/_models.py +51 -0
- uipath/_cli/_auth/_oidc_utils.py +69 -0
- uipath/_cli/_auth/_portal_service.py +163 -0
- uipath/_cli/_auth/_utils.py +51 -0
- uipath/_cli/_auth/auth_config.json +6 -0
- uipath/_cli/_auth/index.html +167 -0
- uipath/_cli/_auth/localhost.crt +25 -0
- uipath/_cli/_auth/localhost.key +27 -0
- uipath/_cli/_runtime/_contracts.py +429 -0
- uipath/_cli/_runtime/_logging.py +193 -0
- uipath/_cli/_runtime/_runtime.py +264 -0
- uipath/_cli/_templates/.psmdcp.template +9 -0
- uipath/_cli/_templates/.rels.template +5 -0
- uipath/_cli/_templates/[Content_Types].xml.template +9 -0
- uipath/_cli/_templates/main.py.template +25 -0
- uipath/_cli/_templates/package.nuspec.template +10 -0
- uipath/_cli/_utils/_common.py +24 -0
- uipath/_cli/_utils/_input_args.py +126 -0
- uipath/_cli/_utils/_parse_ast.py +542 -0
- uipath/_cli/cli_auth.py +97 -0
- uipath/_cli/cli_deploy.py +13 -0
- uipath/_cli/cli_init.py +113 -0
- uipath/_cli/cli_new.py +76 -0
- uipath/_cli/cli_pack.py +337 -0
- uipath/_cli/cli_publish.py +113 -0
- uipath/_cli/cli_run.py +133 -0
- uipath/_cli/middlewares.py +113 -0
- uipath/_config.py +6 -0
- uipath/_execution_context.py +83 -0
- uipath/_folder_context.py +62 -0
- uipath/_models/__init__.py +37 -0
- uipath/_models/action_schema.py +26 -0
- uipath/_models/actions.py +64 -0
- uipath/_models/assets.py +48 -0
- uipath/_models/connections.py +51 -0
- uipath/_models/context_grounding.py +18 -0
- uipath/_models/context_grounding_index.py +60 -0
- uipath/_models/exceptions.py +6 -0
- uipath/_models/interrupt_models.py +28 -0
- uipath/_models/job.py +66 -0
- uipath/_models/llm_gateway.py +101 -0
- uipath/_models/processes.py +48 -0
- uipath/_models/queues.py +167 -0
- uipath/_services/__init__.py +26 -0
- uipath/_services/_base_service.py +250 -0
- uipath/_services/actions_service.py +271 -0
- uipath/_services/api_client.py +89 -0
- uipath/_services/assets_service.py +257 -0
- uipath/_services/buckets_service.py +268 -0
- uipath/_services/connections_service.py +185 -0
- uipath/_services/connections_service.pyi +50 -0
- uipath/_services/context_grounding_service.py +402 -0
- uipath/_services/folder_service.py +49 -0
- uipath/_services/jobs_service.py +265 -0
- uipath/_services/llm_gateway_service.py +311 -0
- uipath/_services/processes_service.py +168 -0
- uipath/_services/queues_service.py +314 -0
- uipath/_uipath.py +98 -0
- uipath/_utils/__init__.py +17 -0
- uipath/_utils/_endpoint.py +79 -0
- uipath/_utils/_infer_bindings.py +30 -0
- uipath/_utils/_logs.py +15 -0
- uipath/_utils/_request_override.py +18 -0
- uipath/_utils/_request_spec.py +23 -0
- uipath/_utils/_user_agent.py +16 -0
- uipath/_utils/constants.py +25 -0
- uipath/py.typed +0 -0
- {uipath-2.0.0.dev3.dist-info → uipath-2.0.1.dist-info}/METADATA +2 -3
- uipath-2.0.1.dist-info/RECORD +75 -0
- uipath-2.0.0.dev3.dist-info/RECORD +0 -4
- {uipath-2.0.0.dev3.dist-info → uipath-2.0.1.dist-info}/WHEEL +0 -0
- {uipath-2.0.0.dev3.dist-info → uipath-2.0.1.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import functools
|
|
2
|
+
import inspect
|
|
3
|
+
from typing import Any, Callable, TypeVar
|
|
4
|
+
|
|
5
|
+
T = TypeVar("T")
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def infer_bindings(
|
|
9
|
+
name: str = "name", folder_path: str = "folder_path"
|
|
10
|
+
) -> Callable[..., Any]:
|
|
11
|
+
def decorator(func: Callable[..., Any]):
|
|
12
|
+
@functools.wraps(func)
|
|
13
|
+
def wrapper(*args, **kwargs):
|
|
14
|
+
return func(*args, **kwargs)
|
|
15
|
+
|
|
16
|
+
wrapper._should_infer_bindings = True # type: ignore
|
|
17
|
+
wrapper._infer_bindings_mappings = {"name": name, "folder_path": folder_path} # type: ignore
|
|
18
|
+
|
|
19
|
+
return wrapper
|
|
20
|
+
|
|
21
|
+
return decorator
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
def get_inferred_bindings_names(cls: T):
|
|
25
|
+
inferred_bindings = {}
|
|
26
|
+
for name, method in inspect.getmembers(cls, inspect.isfunction):
|
|
27
|
+
if hasattr(method, "_should_infer_bindings") and method._should_infer_bindings:
|
|
28
|
+
inferred_bindings[name] = method._infer_bindings_mappings # type: ignore
|
|
29
|
+
|
|
30
|
+
return inferred_bindings
|
uipath/_utils/_logs.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
import sys
|
|
3
|
+
from typing import Optional
|
|
4
|
+
|
|
5
|
+
logger: logging.Logger = logging.getLogger("uipath")
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def setup_logging(should_debug: Optional[bool] = None) -> None:
|
|
9
|
+
logging.basicConfig(
|
|
10
|
+
format="[%(asctime)s - %(name)s:%(lineno)d - %(levelname)s] %(message)s",
|
|
11
|
+
datefmt="%Y-%m-%d %H:%M:%S",
|
|
12
|
+
)
|
|
13
|
+
logger.setLevel(logging.DEBUG if should_debug else logging.INFO)
|
|
14
|
+
logger.removeHandler(logging.StreamHandler(sys.stdout))
|
|
15
|
+
logger.addHandler(logging.StreamHandler(sys.stderr))
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
|
|
3
|
+
from .constants import HEADER_FOLDER_KEY, HEADER_FOLDER_PATH
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def header_folder(
|
|
7
|
+
folder_key: Optional[str], folder_path: Optional[str]
|
|
8
|
+
) -> dict[str, str]:
|
|
9
|
+
if folder_key is not None and folder_path is not None:
|
|
10
|
+
raise ValueError("Only one of folder_key or folder_path can be provided")
|
|
11
|
+
|
|
12
|
+
headers = {}
|
|
13
|
+
if folder_key is not None:
|
|
14
|
+
headers[HEADER_FOLDER_KEY] = folder_key
|
|
15
|
+
if folder_path is not None:
|
|
16
|
+
headers[HEADER_FOLDER_PATH] = folder_path
|
|
17
|
+
|
|
18
|
+
return headers
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
from dataclasses import dataclass, field
|
|
2
|
+
from typing import Any, Optional, Union
|
|
3
|
+
|
|
4
|
+
from ._endpoint import Endpoint
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
@dataclass
|
|
8
|
+
class RequestSpec:
|
|
9
|
+
"""Encapsulates the configuration for making an HTTP request.
|
|
10
|
+
|
|
11
|
+
This class contains all necessary parameters to construct and send an HTTP request,
|
|
12
|
+
including the HTTP method, endpoint, query parameters, headers, and various forms
|
|
13
|
+
of request body data (content, JSON, form data).
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
method: str
|
|
17
|
+
endpoint: Endpoint
|
|
18
|
+
params: dict[str, Any] = field(default_factory=dict)
|
|
19
|
+
headers: dict[str, Any] = field(default_factory=dict)
|
|
20
|
+
content: Optional[Any] = None
|
|
21
|
+
json: Optional[Any] = None
|
|
22
|
+
data: Optional[Any] = None
|
|
23
|
+
timeout: Optional[Union[int, float]] = None
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import importlib
|
|
2
|
+
|
|
3
|
+
from .constants import HEADER_USER_AGENT
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def user_agent_value(specific_component: str) -> str:
|
|
7
|
+
product = "UiPath.Python.Sdk"
|
|
8
|
+
product_component = f"UiPath.Python.Sdk.Activities.{specific_component}"
|
|
9
|
+
|
|
10
|
+
version = importlib.metadata.version("uipath")
|
|
11
|
+
|
|
12
|
+
return f"{product}/{product_component}/{version}"
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def header_user_agent(specific_component: str) -> dict[str, str]:
|
|
16
|
+
return {HEADER_USER_AGENT: user_agent_value(specific_component)}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Environment variables
|
|
2
|
+
ENV_BASE_URL = "UIPATH_URL"
|
|
3
|
+
ENV_UNATTENDED_USER_ACCESS_TOKEN = "UNATTENDED_USER_ACCESS_TOKEN"
|
|
4
|
+
ENV_UIPATH_ACCESS_TOKEN = "UIPATH_ACCESS_TOKEN"
|
|
5
|
+
ENV_FOLDER_KEY = "UIPATH_FOLDER_KEY"
|
|
6
|
+
ENV_FOLDER_PATH = "UIPATH_FOLDER_PATH"
|
|
7
|
+
ENV_JOB_KEY = "UIPATH_JOB_KEY"
|
|
8
|
+
ENV_JOB_ID = "UIPATH_JOB_ID"
|
|
9
|
+
ENV_ROBOT_KEY = "UIPATH_ROBOT_KEY"
|
|
10
|
+
ENV_TENANT_ID = "UIPATH_TENANT_ID"
|
|
11
|
+
|
|
12
|
+
# Headers
|
|
13
|
+
HEADER_FOLDER_KEY = "x-uipath-folderkey"
|
|
14
|
+
HEADER_FOLDER_PATH = "x-uipath-folderpath"
|
|
15
|
+
HEADER_USER_AGENT = "x-uipath-user-agent"
|
|
16
|
+
HEADER_TENANT_ID = "x-uipath-tenantid"
|
|
17
|
+
HEADER_JOB_KEY = "x-uipath-jobkey"
|
|
18
|
+
|
|
19
|
+
# Entrypoint for plugins
|
|
20
|
+
ENTRYPOINT = "uipath.connectors"
|
|
21
|
+
|
|
22
|
+
# Data sources
|
|
23
|
+
ORCHESTRATOR_STORAGE_BUCKET_DATA_SOURCE = (
|
|
24
|
+
"#UiPath.Vdbs.Domain.Api.V20Models.StorageBucketDataSourceRequest"
|
|
25
|
+
)
|
uipath/py.typed
ADDED
|
File without changes
|
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: uipath
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
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
|
|
7
7
|
Maintainer-email: Marius Cosareanu <marius.cosareanu@uipath.com>, Cristian Pufu <cristian.pufu@uipath.com>
|
|
8
8
|
Classifier: Development Status :: 3 - Alpha
|
|
9
9
|
Classifier: Intended Audience :: Developers
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
11
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
14
13
|
Classifier: Topic :: Software Development :: Build Tools
|
|
15
|
-
Requires-Python: >=3.
|
|
14
|
+
Requires-Python: >=3.10
|
|
16
15
|
Requires-Dist: click>=8.1.8
|
|
17
16
|
Requires-Dist: httpx>=0.28.1
|
|
18
17
|
Requires-Dist: pydantic>=2.11.1
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
uipath/__init__.py,sha256=IaeKItOOQXMa95avueJ3dAq-XcRHyZVNjcCGwlSB000,634
|
|
2
|
+
uipath/_config.py,sha256=pi3qxPzDTxMEstj_XkGOgKJqD6RTHHv7vYv8sS_-d5Q,92
|
|
3
|
+
uipath/_execution_context.py,sha256=JkmMH51ck4p-JQtgJeDvpBP-BZNIN_1h3Qlo8QrPr-w,2421
|
|
4
|
+
uipath/_folder_context.py,sha256=DmCXHLCmyZWIdAqRnMOfXE-9BAyVLu4CYTeaMXrPqa0,2031
|
|
5
|
+
uipath/_uipath.py,sha256=D9UWyRInN2Q8HFEQtYaYzT3DCZ3tW_OCBs_4RRqRVuY,2795
|
|
6
|
+
uipath/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
uipath/_cli/README.md,sha256=GLtCfbeIKZKNnGTCsfSVqRQ27V1btT1i2bSAyW_xZl4,474
|
|
8
|
+
uipath/_cli/__init__.py,sha256=CAyMecQhBBD6s4MzYQNa01bz0TIXXCqkQ5DR2kCb00w,1574
|
|
9
|
+
uipath/_cli/cli_auth.py,sha256=ANaYUc2q1t0hDbGBRT3ags6K6Lef_3tyC8Mmc611jow,3141
|
|
10
|
+
uipath/_cli/cli_deploy.py,sha256=h8qwJkXnW6JURsg4YcocJInGA4dwkl4CZkpT1Cn9A3c,268
|
|
11
|
+
uipath/_cli/cli_init.py,sha256=8vpqo3xf1yCDZI8TatDYMjcw0iVS5Yzg6LVbnHzp8FE,3701
|
|
12
|
+
uipath/_cli/cli_new.py,sha256=SP7eWOa5valmCpc8UsOCIezL25euhglB3yJkx-N92W8,1903
|
|
13
|
+
uipath/_cli/cli_pack.py,sha256=gV7SKa3H4ftP1fx3cNLlUQs05ogtqBTIkBcgvvsoyj4,11582
|
|
14
|
+
uipath/_cli/cli_publish.py,sha256=_b9rehjsbxwkpH5_DtgFUaWWJqcZTg5nate-M5BnE_c,3586
|
|
15
|
+
uipath/_cli/cli_run.py,sha256=dV0a-sx78T0HJHArfZP2M9YhT8d8aOuf-9OdkBqj3fE,4577
|
|
16
|
+
uipath/_cli/middlewares.py,sha256=IiJgjsqrJVKSXx4RcIKHWoH-SqWqpHPbhzkQEybmAos,3937
|
|
17
|
+
uipath/_cli/_auth/_auth_server.py,sha256=JMk8hcli4fyKgU66jS3dJbdiiQpVlbz4SxLHMHZSb4Q,6122
|
|
18
|
+
uipath/_cli/_auth/_models.py,sha256=sYMCfvmprIqnZxStlD_Dxx2bcxgn0Ri4D7uwemwkcNg,948
|
|
19
|
+
uipath/_cli/_auth/_oidc_utils.py,sha256=WaX9jDlXrlX6yD8i8gsocV8ngjaT72Xd1tvsZMmSbco,2127
|
|
20
|
+
uipath/_cli/_auth/_portal_service.py,sha256=G5wiBlinLTar28b4p-d5alje28hSVqfBUDU7fNezpg4,5984
|
|
21
|
+
uipath/_cli/_auth/_utils.py,sha256=9nb76xe5XmDZ0TAncp-_1SKqL6FdwRi9eS3C2noN1lY,1591
|
|
22
|
+
uipath/_cli/_auth/auth_config.json,sha256=zEhtozwLot3ZOypxyEaZu53OWVSYy-NVoVZfVoJ991I,317
|
|
23
|
+
uipath/_cli/_auth/index.html,sha256=ML_xDOcKs0ETYucufJskiYfWSvdrD_E26C0Qd3qpGj8,6280
|
|
24
|
+
uipath/_cli/_auth/localhost.crt,sha256=oGl9oLLOiouHubAt39B4zEfylFvKEtbtr_43SIliXJc,1226
|
|
25
|
+
uipath/_cli/_auth/localhost.key,sha256=X31VYXD8scZtmGA837dGX5l6G-LXHLo5ItWJhZXaz3c,1679
|
|
26
|
+
uipath/_cli/_runtime/_contracts.py,sha256=Pp36FT2losv_UsYs7vBIf4VQpu0ttBYwfMoO-qmSDnA,14122
|
|
27
|
+
uipath/_cli/_runtime/_logging.py,sha256=1413xOPZmCm4xxqvO9WDvESVyudWamSRhGuFbN6jIyI,7274
|
|
28
|
+
uipath/_cli/_runtime/_runtime.py,sha256=K8lQjeUE-qXNshmt0UE2SNdbH-MA9goOSqsReJ-_NF4,9681
|
|
29
|
+
uipath/_cli/_templates/.psmdcp.template,sha256=C7pBJPt98ovEljcBvGtEUGoWjjQhu9jls1bpYjeLOKA,611
|
|
30
|
+
uipath/_cli/_templates/.rels.template,sha256=-fTcw7OA1AcymHr0LzBqbMAAtzZTRXLTNa_ljq087Jk,406
|
|
31
|
+
uipath/_cli/_templates/[Content_Types].xml.template,sha256=bYsKDz31PkIF9QksjgAY_bqm57YC8U_owsZeNZAiBxQ,584
|
|
32
|
+
uipath/_cli/_templates/main.py.template,sha256=QB62qX5HKDbW4lFskxj7h9uuxBITnTWqu_DE6asCwcU,476
|
|
33
|
+
uipath/_cli/_templates/package.nuspec.template,sha256=YZyLc-u_EsmIoKf42JsLQ55OGeFmb8VkIU2VF7DFbtw,359
|
|
34
|
+
uipath/_cli/_utils/_common.py,sha256=CH25AKRosp6t28iAl9SCK2wgBTRr-Bekq5Fu-Mc3Ui0,547
|
|
35
|
+
uipath/_cli/_utils/_input_args.py,sha256=pyQhEcQXHdFHYTVNzvfWp439aii5StojoptnmCv5lfs,4094
|
|
36
|
+
uipath/_cli/_utils/_parse_ast.py,sha256=3XVjnhJNnSfjXlitct91VOtqSl0l-sqDpoWww28mMc0,20663
|
|
37
|
+
uipath/_models/__init__.py,sha256=Pg8x6wUeyUQGTKgu5u0alPxhxUXlTWFUc1RTPK820lg,914
|
|
38
|
+
uipath/_models/action_schema.py,sha256=lKDhP7Eix23fFvfQrqqNmSOiPyyNF6tiRpUu0VZIn_M,714
|
|
39
|
+
uipath/_models/actions.py,sha256=ekSH4YUQR4KPOH-heBm9yOgOfirndx0In4_S4VYWeEU,2993
|
|
40
|
+
uipath/_models/assets.py,sha256=8ZPImmJ-1u5KqdR1UBgZnGjSBW-Nr81Ruq_5Uav417A,1841
|
|
41
|
+
uipath/_models/connections.py,sha256=perIqW99YEg_0yWZPdpZlmNpZcwY_toR1wkqDUBdAN0,2014
|
|
42
|
+
uipath/_models/context_grounding.py,sha256=ak3cjlA90X1FceAAI0ry4jioTtK6Zxo0oqmKY_xs8bo,352
|
|
43
|
+
uipath/_models/context_grounding_index.py,sha256=vHBu069j1Y1m5PydLj6uoVH0rNIxuOohKLknHn5KvQw,2508
|
|
44
|
+
uipath/_models/exceptions.py,sha256=WEUw2_sh-aE0HDiqPoBZyh9KIk1BaDFY5O7Lzo8KRws,324
|
|
45
|
+
uipath/_models/interrupt_models.py,sha256=KcUD7YeUCMHOiunbnLbHZdSjivdO5yQ8hachQ_IR1Wg,525
|
|
46
|
+
uipath/_models/job.py,sha256=f9L6_kg_VP0dAYvdcz1DWEWzy4NZPdlpHREod0uNK1E,3099
|
|
47
|
+
uipath/_models/llm_gateway.py,sha256=0sl5Wtve94V14H3AHwmJSoXAhoc-Fai3wJxP8HrnBPg,1994
|
|
48
|
+
uipath/_models/processes.py,sha256=Atvfrt6X4TYST3iA62jpS_Uxc3hg6uah11p-RaKZ6dk,2029
|
|
49
|
+
uipath/_models/queues.py,sha256=N_s0GKucbyjh0RnO8SxPk6wlRgvq8KIIYsfaoIY46tM,6446
|
|
50
|
+
uipath/_services/__init__.py,sha256=VPbwLDsvN26nWZgvR-8_-tc3i0rk5doqjTJbSrK0nN4,818
|
|
51
|
+
uipath/_services/_base_service.py,sha256=3YClCoZBkVQGNJZGy-4NTk-HGsGA61XtwVQFYv9mwWk,7955
|
|
52
|
+
uipath/_services/actions_service.py,sha256=KN6qhKVuFokm7Mb6s7yyRF-Z8E1I6XBFnwBa4kzl71s,9115
|
|
53
|
+
uipath/_services/api_client.py,sha256=1hYLc_90dQzCGnqqirEHpPqvL3Gkv2sSKoeOV_iTmlk,2903
|
|
54
|
+
uipath/_services/assets_service.py,sha256=Y-iOtSvlfQqpGk8vEBHcdOYTY-vhGiM-n8W3jXWS374,8648
|
|
55
|
+
uipath/_services/buckets_service.py,sha256=JeSFoEOBeGi-i_aevaMAyu5gpauq1KC_JkANRTmyxEs,8655
|
|
56
|
+
uipath/_services/connections_service.py,sha256=f79xeCRkZpdGK2STWYoF67NJwh27mNwhjw8jGwCpH1Q,6854
|
|
57
|
+
uipath/_services/connections_service.pyi,sha256=sBU8m22A6gpFMjwm2Tp9uZDF8-RMWRizyW_LxHt0Cac,2467
|
|
58
|
+
uipath/_services/context_grounding_service.py,sha256=0SH3YrG5PxP88FF_R63WtLscS7StK6UiMU-OgXh0koc,13271
|
|
59
|
+
uipath/_services/folder_service.py,sha256=1BRTnfA-iMzAGZTJqTUtOXzNZLzbGCoWpH3g45YBEuQ,1556
|
|
60
|
+
uipath/_services/jobs_service.py,sha256=9Ow_5T3HPAtWy5K7mCTl0kJd--h0saQpUhWOjZNSybE,8127
|
|
61
|
+
uipath/_services/llm_gateway_service.py,sha256=nns6zmGglCRs6r9RmLV1Ygs3Yf31xvHhhN_qySUA5Nw,11696
|
|
62
|
+
uipath/_services/processes_service.py,sha256=dn11ULYJY48yegleePxdFsiCX36TpCCK7FEwxGO43qg,5511
|
|
63
|
+
uipath/_services/queues_service.py,sha256=_5rJJsU64D5YQVtRPfvuCcgXjKLkl_HegC9DDVoEEvk,12226
|
|
64
|
+
uipath/_utils/__init__.py,sha256=y8asYKjU5j3v72TbgShEpUafAAJXJ6bngqdzXIl-Lhk,481
|
|
65
|
+
uipath/_utils/_endpoint.py,sha256=yYHwqbQuJIevpaTkdfYJS9CrtlFeEyfb5JQK5osTCog,2489
|
|
66
|
+
uipath/_utils/_infer_bindings.py,sha256=ysAftopcCBj4ojYyeVwbSl20qYhCDmqyldCinj6sICM,905
|
|
67
|
+
uipath/_utils/_logs.py,sha256=adfX_0UAn3YBeKJ8DQDeZs94rJyHGQO00uDfkaTpNWQ,510
|
|
68
|
+
uipath/_utils/_request_override.py,sha256=_vibG78vEDWS3JKg2cJ5l6tpoBMLChUOauiqL1ozFPc,530
|
|
69
|
+
uipath/_utils/_request_spec.py,sha256=iCtBLqtbWUpFG5g1wtIZBzSupKsfaRLiQFoFc_4B70Q,747
|
|
70
|
+
uipath/_utils/_user_agent.py,sha256=AcyXwxzdg1Woi-TuFdHzDExC34AgwW4_i9W8JVj-VZI,470
|
|
71
|
+
uipath/_utils/constants.py,sha256=xW-gbRasjdOwSj2rke4wfRCml69710oUaDNJcwFAZug,775
|
|
72
|
+
uipath-2.0.1.dist-info/METADATA,sha256=TQjLlx0Q7RswGZnTxP_VPFSV202PWMVPyGq9it9RghE,5777
|
|
73
|
+
uipath-2.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
74
|
+
uipath-2.0.1.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
|
75
|
+
uipath-2.0.1.dist-info/RECORD,,
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
uipath-2.0.0.dev3.dist-info/METADATA,sha256=LlR9theB0VV8oLXihx440dt51ZRs_6Bt7jjkUCj0i_s,5831
|
|
2
|
-
uipath-2.0.0.dev3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
3
|
-
uipath-2.0.0.dev3.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
|
4
|
-
uipath-2.0.0.dev3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|