uipath 2.0.3__py3-none-any.whl → 2.0.4__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.

@@ -6,9 +6,9 @@ from typing import Any, Dict, Optional, Tuple
6
6
  from .._config import Config
7
7
  from .._execution_context import ExecutionContext
8
8
  from .._folder_context import FolderContext
9
- from .._models import Action, ActionSchema
10
9
  from .._utils import Endpoint, RequestSpec
11
10
  from .._utils.constants import ENV_TENANT_ID, HEADER_TENANT_ID
11
+ from ..models import Action, ActionSchema
12
12
  from ._base_service import BaseService
13
13
 
14
14
 
@@ -5,8 +5,8 @@ from httpx import Response
5
5
  from .._config import Config
6
6
  from .._execution_context import ExecutionContext
7
7
  from .._folder_context import FolderContext
8
- from .._models import UserAsset
9
8
  from .._utils import Endpoint, RequestSpec, header_folder, infer_bindings
9
+ from ..models import UserAsset
10
10
  from ._base_service import BaseService
11
11
 
12
12
 
@@ -4,9 +4,9 @@ from typing import Any, Dict, Protocol, TypeVar, Union
4
4
 
5
5
  from .._config import Config
6
6
  from .._execution_context import ExecutionContext
7
- from .._models import Connection, ConnectionToken
8
7
  from .._utils import Endpoint, RequestSpec
9
8
  from .._utils.constants import ENTRYPOINT
9
+ from ..models import Connection, ConnectionToken
10
10
  from ._base_service import BaseService
11
11
 
12
12
  T_co = TypeVar("T_co", covariant=True)
@@ -3,11 +3,11 @@ from typing import TYPE_CHECKING, Any, Protocol, TypeVar
3
3
 
4
4
  from .._config import Config as Config
5
5
  from .._execution_context import ExecutionContext as ExecutionContext
6
- from .._models import Connection as Connection
7
- from .._models import ConnectionToken as ConnectionToken
8
6
  from .._utils import Endpoint as Endpoint
9
7
  from .._utils import RequestSpec as RequestSpec
10
8
  from .._utils.constants import ENTRYPOINT as ENTRYPOINT
9
+ from ..models import Connection as Connection
10
+ from ..models import ConnectionToken as ConnectionToken
11
11
  from ._base_service import BaseService as BaseService
12
12
 
13
13
  if TYPE_CHECKING:
@@ -6,14 +6,14 @@ from pydantic import TypeAdapter
6
6
  from .._config import Config
7
7
  from .._execution_context import ExecutionContext
8
8
  from .._folder_context import FolderContext
9
- from .._models import IngestionInProgressException
10
- from .._models.context_grounding import ContextGroundingQueryResponse
11
- from .._models.context_grounding_index import ContextGroundingIndex
12
9
  from .._utils import Endpoint, RequestSpec
13
10
  from .._utils.constants import (
14
11
  HEADER_FOLDER_KEY,
15
12
  ORCHESTRATOR_STORAGE_BUCKET_DATA_SOURCE,
16
13
  )
14
+ from ..models import IngestionInProgressException
15
+ from ..models.context_grounding import ContextGroundingQueryResponse
16
+ from ..models.context_grounding_index import ContextGroundingIndex
17
17
  from ._base_service import BaseService
18
18
  from .folder_service import FolderService
19
19
 
@@ -4,8 +4,8 @@ from typing import Any, Dict, Optional, overload
4
4
  from .._config import Config
5
5
  from .._execution_context import ExecutionContext
6
6
  from .._folder_context import FolderContext
7
- from .._models.job import Job
8
7
  from .._utils import Endpoint, RequestSpec, header_folder
8
+ from ..models.job import Job
9
9
  from ._base_service import BaseService
10
10
 
11
11
 
@@ -3,7 +3,8 @@ from typing import Any, Dict, List, Optional
3
3
 
4
4
  from .._config import Config
5
5
  from .._execution_context import ExecutionContext
6
- from .._models.llm_gateway import (
6
+ from .._utils import Endpoint
7
+ from ..models.llm_gateway import (
7
8
  ChatCompletion,
8
9
  SpecificToolChoice,
9
10
  TextEmbedding,
@@ -11,7 +12,6 @@ from .._models.llm_gateway import (
11
12
  ToolDefinition,
12
13
  UsageInfo,
13
14
  )
14
- from .._utils import Endpoint
15
15
  from ._base_service import BaseService
16
16
 
17
17
  # Common constants
@@ -5,9 +5,9 @@ from typing import Any, Dict, Optional
5
5
  from .._config import Config
6
6
  from .._execution_context import ExecutionContext
7
7
  from .._folder_context import FolderContext
8
- from .._models.job import Job
9
8
  from .._utils import Endpoint, RequestSpec, header_folder, infer_bindings
10
9
  from .._utils.constants import ENV_JOB_ID, HEADER_JOB_KEY
10
+ from ..models.job import Job
11
11
  from ._base_service import BaseService
12
12
 
13
13
 
@@ -5,8 +5,8 @@ from httpx import Response
5
5
  from .._config import Config
6
6
  from .._execution_context import ExecutionContext
7
7
  from .._folder_context import FolderContext
8
- from .._models import CommitType, QueueItem, TransactionItem, TransactionItemResult
9
8
  from .._utils import Endpoint, RequestSpec
9
+ from ..models import CommitType, QueueItem, TransactionItem, TransactionItemResult
10
10
  from ._base_service import BaseService
11
11
 
12
12
 
@@ -1,10 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uipath
3
- Version: 2.0.3
3
+ Version: 2.0.4
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
+ License-File: LICENSE
8
9
  Classifier: Development Status :: 3 - Alpha
9
10
  Classifier: Intended Audience :: Developers
10
11
  Classifier: Programming Language :: Python :: 3.10
@@ -34,33 +34,20 @@ uipath/_cli/_templates/package.nuspec.template,sha256=YZyLc-u_EsmIoKf42JsLQ55OGe
34
34
  uipath/_cli/_utils/_common.py,sha256=CH25AKRosp6t28iAl9SCK2wgBTRr-Bekq5Fu-Mc3Ui0,547
35
35
  uipath/_cli/_utils/_input_args.py,sha256=pyQhEcQXHdFHYTVNzvfWp439aii5StojoptnmCv5lfs,4094
36
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
37
  uipath/_services/__init__.py,sha256=VPbwLDsvN26nWZgvR-8_-tc3i0rk5doqjTJbSrK0nN4,818
51
38
  uipath/_services/_base_service.py,sha256=3YClCoZBkVQGNJZGy-4NTk-HGsGA61XtwVQFYv9mwWk,7955
52
- uipath/_services/actions_service.py,sha256=KN6qhKVuFokm7Mb6s7yyRF-Z8E1I6XBFnwBa4kzl71s,9115
39
+ uipath/_services/actions_service.py,sha256=9f_NmBzIpBClMz7wsvQJ8MbVvdZ4V1zy-cqLnPzdPRk,9114
53
40
  uipath/_services/api_client.py,sha256=1hYLc_90dQzCGnqqirEHpPqvL3Gkv2sSKoeOV_iTmlk,2903
54
- uipath/_services/assets_service.py,sha256=Y-iOtSvlfQqpGk8vEBHcdOYTY-vhGiM-n8W3jXWS374,8648
41
+ uipath/_services/assets_service.py,sha256=OdnhlHfEmwA0SQqkXO4XHl3bV26QLgIxj6sFycseZ0g,8647
55
42
  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
43
+ uipath/_services/connections_service.py,sha256=J_eKhMuBmiDKIhr5bA4_9g8xND185lh_MuBh2hmWMs4,6853
44
+ uipath/_services/connections_service.pyi,sha256=6OOnh0aCfxhETL8n_JZ6Xoe2BE3ST_7Vz-FgLZc53lM,2465
45
+ uipath/_services/context_grounding_service.py,sha256=YMKRrit4TsU4--pVR7O6eiLxhSwuxPuaVvU0prlYzg0,13268
59
46
  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
47
+ uipath/_services/jobs_service.py,sha256=iNs4hvr8Qyy_zbJjEkPK-0ygCM1l0OqpD1D_0PRgmf4,8126
48
+ uipath/_services/llm_gateway_service.py,sha256=1YCgW2c0Hh3uXctUKPLcytAMJe4Qk_L8LLCd8Plgvvs,11695
49
+ uipath/_services/processes_service.py,sha256=3A7EQrwY2fzKrnLk-MBowKnba4rmUAXIhtw1LlnU1yw,5510
50
+ uipath/_services/queues_service.py,sha256=R9QMTIGeOa76uZJznbNXZ0PPAztah8JnSMjKsZkdNwU,12225
64
51
  uipath/_utils/__init__.py,sha256=y8asYKjU5j3v72TbgShEpUafAAJXJ6bngqdzXIl-Lhk,481
65
52
  uipath/_utils/_endpoint.py,sha256=yYHwqbQuJIevpaTkdfYJS9CrtlFeEyfb5JQK5osTCog,2489
66
53
  uipath/_utils/_infer_bindings.py,sha256=ysAftopcCBj4ojYyeVwbSl20qYhCDmqyldCinj6sICM,905
@@ -69,7 +56,21 @@ uipath/_utils/_request_override.py,sha256=_vibG78vEDWS3JKg2cJ5l6tpoBMLChUOauiqL1
69
56
  uipath/_utils/_request_spec.py,sha256=iCtBLqtbWUpFG5g1wtIZBzSupKsfaRLiQFoFc_4B70Q,747
70
57
  uipath/_utils/_user_agent.py,sha256=AcyXwxzdg1Woi-TuFdHzDExC34AgwW4_i9W8JVj-VZI,470
71
58
  uipath/_utils/constants.py,sha256=xW-gbRasjdOwSj2rke4wfRCml69710oUaDNJcwFAZug,775
72
- uipath-2.0.3.dist-info/METADATA,sha256=Co9580lqjbt_-VUlfjc9Zdd77hRhclQNJ_W0J193jsI,5774
73
- uipath-2.0.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
74
- uipath-2.0.3.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
75
- uipath-2.0.3.dist-info/RECORD,,
59
+ uipath/models/__init__.py,sha256=Pg8x6wUeyUQGTKgu5u0alPxhxUXlTWFUc1RTPK820lg,914
60
+ uipath/models/action_schema.py,sha256=lKDhP7Eix23fFvfQrqqNmSOiPyyNF6tiRpUu0VZIn_M,714
61
+ uipath/models/actions.py,sha256=ekSH4YUQR4KPOH-heBm9yOgOfirndx0In4_S4VYWeEU,2993
62
+ uipath/models/assets.py,sha256=8ZPImmJ-1u5KqdR1UBgZnGjSBW-Nr81Ruq_5Uav417A,1841
63
+ uipath/models/connections.py,sha256=perIqW99YEg_0yWZPdpZlmNpZcwY_toR1wkqDUBdAN0,2014
64
+ uipath/models/context_grounding.py,sha256=ak3cjlA90X1FceAAI0ry4jioTtK6Zxo0oqmKY_xs8bo,352
65
+ uipath/models/context_grounding_index.py,sha256=vHBu069j1Y1m5PydLj6uoVH0rNIxuOohKLknHn5KvQw,2508
66
+ uipath/models/exceptions.py,sha256=WEUw2_sh-aE0HDiqPoBZyh9KIk1BaDFY5O7Lzo8KRws,324
67
+ uipath/models/interrupt_models.py,sha256=KcUD7YeUCMHOiunbnLbHZdSjivdO5yQ8hachQ_IR1Wg,525
68
+ uipath/models/job.py,sha256=f9L6_kg_VP0dAYvdcz1DWEWzy4NZPdlpHREod0uNK1E,3099
69
+ uipath/models/llm_gateway.py,sha256=0sl5Wtve94V14H3AHwmJSoXAhoc-Fai3wJxP8HrnBPg,1994
70
+ uipath/models/processes.py,sha256=Atvfrt6X4TYST3iA62jpS_Uxc3hg6uah11p-RaKZ6dk,2029
71
+ uipath/models/queues.py,sha256=N_s0GKucbyjh0RnO8SxPk6wlRgvq8KIIYsfaoIY46tM,6446
72
+ uipath-2.0.4.dist-info/METADATA,sha256=NJM9Zn2XlQveBQCyQqqJQLn22KsFpaj0LQxzwXV9ZCQ,5796
73
+ uipath-2.0.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
74
+ uipath-2.0.4.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
75
+ uipath-2.0.4.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
76
+ uipath-2.0.4.dist-info/RECORD,,
@@ -0,0 +1,9 @@
1
+ MIT License
2
+
3
+ Copyright 2025 UiPath
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes