uipath 2.1.78__py3-none-any.whl → 2.1.79__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/_services/connections_service.py +0 -2
- uipath/eval/mocks/mockable.py +4 -2
- {uipath-2.1.78.dist-info → uipath-2.1.79.dist-info}/METADATA +1 -1
- {uipath-2.1.78.dist-info → uipath-2.1.79.dist-info}/RECORD +7 -7
- {uipath-2.1.78.dist-info → uipath-2.1.79.dist-info}/WHEEL +0 -0
- {uipath-2.1.78.dist-info → uipath-2.1.79.dist-info}/entry_points.txt +0 -0
- {uipath-2.1.78.dist-info → uipath-2.1.79.dist-info}/licenses/LICENSE +0 -0
@@ -32,7 +32,6 @@ class ConnectionsService(BaseService):
|
|
32
32
|
super().__init__(config=config, execution_context=execution_context)
|
33
33
|
self._folders_service = folders_service
|
34
34
|
|
35
|
-
@infer_bindings(resource_type="connection", name="key")
|
36
35
|
@traced(
|
37
36
|
name="connections_retrieve",
|
38
37
|
run_type="uipath",
|
@@ -165,7 +164,6 @@ class ConnectionsService(BaseService):
|
|
165
164
|
|
166
165
|
return self._parse_and_validate_list_response(response)
|
167
166
|
|
168
|
-
@infer_bindings(resource_type="connection", name="key")
|
169
167
|
@traced(
|
170
168
|
name="connections_retrieve",
|
171
169
|
run_type="uipath",
|
uipath/eval/mocks/mockable.py
CHANGED
@@ -82,6 +82,8 @@ def get_input_schema(func):
|
|
82
82
|
def mockable(
|
83
83
|
name: Optional[str] = None,
|
84
84
|
description: Optional[str] = None,
|
85
|
+
input_schema: Optional[dict[str, Any]] = None,
|
86
|
+
output_schema: Optional[dict[str, Any]] = None,
|
85
87
|
example_calls: Optional[List[ExampleCall]] = None,
|
86
88
|
**kwargs,
|
87
89
|
):
|
@@ -91,8 +93,8 @@ def mockable(
|
|
91
93
|
params = {
|
92
94
|
"name": name or func.__name__,
|
93
95
|
"description": description or func.__doc__,
|
94
|
-
"input_schema": get_input_schema(func),
|
95
|
-
"output_schema": get_output_schema(func),
|
96
|
+
"input_schema": input_schema or get_input_schema(func),
|
97
|
+
"output_schema": output_schema or get_output_schema(func),
|
96
98
|
"example_calls": example_calls,
|
97
99
|
**kwargs,
|
98
100
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: uipath
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.79
|
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
|
@@ -97,7 +97,7 @@ uipath/_services/api_client.py,sha256=kGm04ijk9AOEQd2BMxvQg-2QoB8dmyoDwFFDPyutAG
|
|
97
97
|
uipath/_services/assets_service.py,sha256=pG0Io--SeiRRQmfUWPQPl1vq3csZlQgx30LBNKRmmF8,12145
|
98
98
|
uipath/_services/attachments_service.py,sha256=NPQYK7CGjfBaNT_1S5vEAfODmOChTbQZforllFM2ofU,26678
|
99
99
|
uipath/_services/buckets_service.py,sha256=5s8tuivd7GUZYj774DDUYTa0axxlUuesc4EBY1V5sdk,18496
|
100
|
-
uipath/_services/connections_service.py,sha256=
|
100
|
+
uipath/_services/connections_service.py,sha256=IqhKdRYwNZlRsDL2vY7gyl5nAiYaK1zvj_CLa7WLzVQ,15785
|
101
101
|
uipath/_services/context_grounding_service.py,sha256=Pjx-QQQEiSKD-hY6ityj3QUSALN3fIcKLLHr_NZ0d_g,37117
|
102
102
|
uipath/_services/documents_service.py,sha256=UnFS8EpOZ_Ng2TZk3OiJJ3iNANvFs7QxuoG_v-lQj6c,24815
|
103
103
|
uipath/_services/entities_service.py,sha256=QKCLE6wRgq3HZraF-M2mljy-8il4vsNHrQhUgkewVVk,14028
|
@@ -139,7 +139,7 @@ uipath/eval/evaluators/json_similarity_evaluator.py,sha256=cP4kpN-UIf690V5dq4LaC
|
|
139
139
|
uipath/eval/evaluators/llm_as_judge_evaluator.py,sha256=l0bbn8ZLi9ZTXcgr7tJ2tsCvHFqIIeGa7sobaAHgI2Y,4927
|
140
140
|
uipath/eval/evaluators/trajectory_evaluator.py,sha256=w9E8yUXp3KCXTfiUD-ut1OVyiOH3RpFFIIe7w3v3pBQ,5740
|
141
141
|
uipath/eval/mocks/__init__.py,sha256=Qis6XSN7_WOmrmD_I5Fo5E_OQpflb_SlZM_MDOszUXI,152
|
142
|
-
uipath/eval/mocks/mockable.py,sha256=
|
142
|
+
uipath/eval/mocks/mockable.py,sha256=FJEE4iz6nchowGhoGR3FgF9VvymHnWJkUyakKOK4fIg,3360
|
143
143
|
uipath/eval/models/__init__.py,sha256=x360CDZaRjUL3q3kh2CcXYYrQ47jwn6p6JnmhEIvMlA,419
|
144
144
|
uipath/eval/models/models.py,sha256=YgPnkQunjEcEiueVQnYRsbQ3Nj1yQttDQZiMCq_DDkY,6321
|
145
145
|
uipath/models/__init__.py,sha256=d_DkK1AtRUetM1t2NrH5UKgvJOBiynzaKnK5pMY7aIc,1289
|
@@ -169,8 +169,8 @@ uipath/tracing/_traced.py,sha256=yBIY05PCCrYyx50EIHZnwJaKNdHPNx-YTR1sHQl0a98,199
|
|
169
169
|
uipath/tracing/_utils.py,sha256=qd7N56tg6VXQ9pREh61esBgUWLNA0ssKsE0QlwrRWFM,11974
|
170
170
|
uipath/utils/__init__.py,sha256=VD-KXFpF_oWexFg6zyiWMkxl2HM4hYJMIUDZ1UEtGx0,105
|
171
171
|
uipath/utils/_endpoints_manager.py,sha256=iRTl5Q0XAm_YgcnMcJOXtj-8052sr6jpWuPNz6CgT0Q,8408
|
172
|
-
uipath-2.1.
|
173
|
-
uipath-2.1.
|
174
|
-
uipath-2.1.
|
175
|
-
uipath-2.1.
|
176
|
-
uipath-2.1.
|
172
|
+
uipath-2.1.79.dist-info/METADATA,sha256=oUMYGExLVxqKbS006ahTE-cDoWF6ODPDfbXuFU7prjc,6593
|
173
|
+
uipath-2.1.79.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
174
|
+
uipath-2.1.79.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
175
|
+
uipath-2.1.79.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
|
176
|
+
uipath-2.1.79.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|