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

@@ -412,7 +412,7 @@ class UiPathBaseRuntime(ABC):
412
412
  raise
413
413
  finally:
414
414
  # Restore original logging
415
- if self.context.job_id and self.logs_interceptor:
415
+ if self.logs_interceptor:
416
416
  self.logs_interceptor.teardown()
417
417
 
418
418
  await self.cleanup()
@@ -51,8 +51,9 @@ class LogsInterceptor:
51
51
  self.original_level = self.root_logger.level
52
52
  self.original_handlers = list(self.root_logger.handlers)
53
53
 
54
- self.original_stdout: Optional[TextIO] = None
55
- self.original_stderr: Optional[TextIO] = None
54
+ # Store system stdout/stderr
55
+ self.original_stdout = cast(TextIO, sys.stdout)
56
+ self.original_stderr = cast(TextIO, sys.stderr)
56
57
 
57
58
  self.log_handler: Union[PersistentLogsHandler, logging.StreamHandler[TextIO]]
58
59
 
@@ -74,10 +75,6 @@ class LogsInterceptor:
74
75
  self.logger = logging.getLogger("runtime")
75
76
  self.patched_loggers: set[str] = set()
76
77
 
77
- # Store system stdout/stderr
78
- self.sys_stdout = cast(TextIO, sys.__stdout__)
79
- self.sys_stderr = cast(TextIO, sys.__stderr__)
80
-
81
78
  def _clean_all_handlers(self, logger: logging.Logger) -> None:
82
79
  """Remove ALL handlers from a logger except ours."""
83
80
  handlers_to_remove = list(logger.handlers)
@@ -111,8 +108,6 @@ class LogsInterceptor:
111
108
 
112
109
  def _redirect_stdout_stderr(self) -> None:
113
110
  """Redirect stdout and stderr to the logging system."""
114
- self.original_stdout = sys.stdout
115
- self.original_stderr = sys.stderr
116
111
 
117
112
  class LoggerWriter:
118
113
  def __init__(
@@ -129,15 +124,32 @@ class LogsInterceptor:
129
124
  self.sys_file = sys_file # Store reference to system stdout/stderr
130
125
 
131
126
  def write(self, message: str) -> None:
132
- if message and message.strip() and self.level >= self.min_level:
133
- self.logger.log(self.level, message.rstrip())
127
+ self.buffer += message
128
+ while "\n" in self.buffer:
129
+ line, self.buffer = self.buffer.split("\n", 1)
130
+ # Only log if the message is not empty and the level is sufficient
131
+ if line and self.level >= self.min_level:
132
+ # Use _log to avoid potential recursive logging if logging methods are overridden
133
+ self.logger._log(self.level, line, ())
134
134
 
135
135
  def flush(self) -> None:
136
- pass
136
+ # Log any remaining content in the buffer on flush
137
+ if self.buffer and self.level >= self.min_level:
138
+ self.logger._log(self.level, self.buffer, ())
139
+ self.buffer = ""
137
140
 
138
141
  def fileno(self) -> int:
139
142
  # Return the file descriptor of the original system stdout/stderr
140
- return self.sys_file.fileno()
143
+ try:
144
+ return self.sys_file.fileno()
145
+ except Exception:
146
+ return -1
147
+
148
+ def isatty(self) -> bool:
149
+ return hasattr(self.sys_file, "isatty") and self.sys_file.isatty()
150
+
151
+ def writable(self) -> bool:
152
+ return True
141
153
 
142
154
  # Set up stdout and stderr loggers with propagate=False
143
155
  stdout_logger = logging.getLogger("stdout")
@@ -150,10 +162,10 @@ class LogsInterceptor:
150
162
 
151
163
  # Use the min_level in the LoggerWriter to filter messages
152
164
  sys.stdout = LoggerWriter(
153
- stdout_logger, logging.INFO, self.numeric_min_level, self.sys_stdout
165
+ stdout_logger, logging.INFO, self.numeric_min_level, self.original_stdout
154
166
  )
155
167
  sys.stderr = LoggerWriter(
156
- stderr_logger, logging.ERROR, self.numeric_min_level, self.sys_stderr
168
+ stderr_logger, logging.ERROR, self.numeric_min_level, self.original_stderr
157
169
  )
158
170
 
159
171
  def teardown(self) -> None:
@@ -174,12 +186,12 @@ class LogsInterceptor:
174
186
  if handler not in self.root_logger.handlers:
175
187
  self.root_logger.addHandler(handler)
176
188
 
189
+ self.log_handler.close()
190
+
177
191
  if self.original_stdout and self.original_stderr:
178
192
  sys.stdout = self.original_stdout
179
193
  sys.stderr = self.original_stderr
180
194
 
181
- self.log_handler.close()
182
-
183
195
  def __enter__(self):
184
196
  self.setup()
185
197
  return self
uipath/_cli/cli_new.py CHANGED
@@ -68,9 +68,8 @@ def new(name: str):
68
68
  ctx = click.get_current_context()
69
69
  init_cmd = ctx.parent.command.get_command(ctx, "init")
70
70
  ctx.invoke(init_cmd)
71
- console.hint(
72
- """Run project: uipath run main.py '{"message": "Hello World!"}'"""
73
- )
71
+ run_command = """uipath run main.py '{"message": "Hello World!"}'"""
72
+ console.hint(f"""Run project: {click.style(run_command, fg="cyan")}""")
74
73
 
75
74
 
76
75
  if __name__ == "__main__":
uipath/_cli/cli_run.py CHANGED
@@ -1,6 +1,5 @@
1
1
  # type: ignore
2
2
  import asyncio
3
- import logging
4
3
  import os
5
4
  import traceback
6
5
  from os import environ as env
@@ -16,9 +15,10 @@ from ._runtime._contracts import (
16
15
  UiPathTraceContext,
17
16
  )
18
17
  from ._runtime._runtime import UiPathRuntime
18
+ from ._utils._console import ConsoleLogger
19
19
  from .middlewares import MiddlewareResult, Middlewares
20
20
 
21
- logger = logging.getLogger(__name__)
21
+ console = ConsoleLogger()
22
22
  load_dotenv()
23
23
 
24
24
 
@@ -39,14 +39,14 @@ def python_run_middleware(
39
39
  return MiddlewareResult(
40
40
  should_continue=False,
41
41
  info_message="""Error: No entrypoint specified. Please provide a path to a Python script.
42
- Usage: `uipath run <entrypoint_path> <input_arguments>`""",
42
+ Usage: `uipath run <entrypoint_path> <input_arguments> [-f <input_json_file_path>]`""",
43
43
  )
44
44
 
45
45
  if not os.path.exists(entrypoint):
46
46
  return MiddlewareResult(
47
47
  should_continue=False,
48
48
  error_message=f"""Error: Script not found at path {entrypoint}.
49
- Usage: `uipath run <entrypoint_path> <input_arguments>`""",
49
+ Usage: `uipath run <entrypoint_path> <input_arguments> [-f <input_json_file_path>]`""",
50
50
  )
51
51
 
52
52
  try:
@@ -74,7 +74,6 @@ Usage: `uipath run <entrypoint_path> <input_arguments>`""",
74
74
  reference_id=env.get("UIPATH_JOB_KEY") or str(uuid4()),
75
75
  )
76
76
  context.logs_min_level = env.get("LOG_LEVEL", "INFO")
77
-
78
77
  async with UiPathRuntime.from_context(context) as runtime:
79
78
  await runtime.execute()
80
79
 
@@ -91,7 +90,6 @@ Usage: `uipath run <entrypoint_path> <input_arguments>`""",
91
90
  )
92
91
  except Exception as e:
93
92
  # Handle unexpected errors
94
- logger.exception("Unexpected error in Python runtime middleware")
95
93
  return MiddlewareResult(
96
94
  should_continue=False,
97
95
  error_message=f"Error: Unexpected error occurred - {str(e)}",
@@ -103,8 +101,23 @@ Usage: `uipath run <entrypoint_path> <input_arguments>`""",
103
101
  @click.argument("entrypoint", required=False)
104
102
  @click.argument("input", required=False, default="{}")
105
103
  @click.option("--resume", is_flag=True, help="Resume execution from a previous state")
106
- def run(entrypoint: Optional[str], input: Optional[str], resume: bool) -> None:
104
+ @click.option(
105
+ "-f",
106
+ "--file",
107
+ required=False,
108
+ type=click.Path(exists=True),
109
+ help="File path for the .json input",
110
+ )
111
+ def run(
112
+ entrypoint: Optional[str], input: Optional[str], resume: bool, file: Optional[str]
113
+ ) -> None:
107
114
  """Execute the project."""
115
+ if file:
116
+ _, file_extension = os.path.splitext(file)
117
+ if file_extension != ".json":
118
+ console.error("Input file extension must be '.json'.")
119
+ with open(file) as f:
120
+ input = f.read()
108
121
  # Process through middleware chain
109
122
  result = Middlewares.next("run", entrypoint, input, resume)
110
123
 
@@ -115,18 +128,22 @@ def run(entrypoint: Optional[str], input: Optional[str], resume: bool) -> None:
115
128
 
116
129
  # Handle result from middleware
117
130
  if result.error_message:
118
- click.echo(result.error_message, err=True)
131
+ console.error(result.error_message, include_traceback=True)
119
132
  if result.should_include_stacktrace:
120
- click.echo(traceback.format_exc(), err=True)
133
+ console.error(traceback.format_exc())
121
134
  click.get_current_context().exit(1)
122
135
 
123
136
  if result.info_message:
124
- click.echo(result.info_message)
137
+ console.info(result.info_message)
125
138
 
126
139
  # If middleware chain completed but didn't handle the request
127
140
  if result.should_continue:
128
- click.echo("Error: Could not process the request with any available handler.")
129
- click.get_current_context().exit(1)
141
+ console.error(
142
+ "Error: Could not process the request with any available handler."
143
+ )
144
+
145
+ if not result.should_continue and not result.error_message:
146
+ console.success("Successful execution.")
130
147
 
131
148
 
132
149
  if __name__ == "__main__":
@@ -188,13 +188,15 @@ class AssetsService(FolderContext, BaseService):
188
188
  robot_asset, folder_key=folder_key, folder_path=folder_path
189
189
  )
190
190
 
191
- return self.request(
191
+ response = self.request(
192
192
  spec.method,
193
193
  url=spec.endpoint,
194
194
  content=spec.content,
195
195
  headers=spec.headers,
196
196
  )
197
197
 
198
+ return response.json()
199
+
198
200
  @traced(name="assets_update", run_type="uipath", hide_input=True, hide_output=True)
199
201
  async def update_async(
200
202
  self,
@@ -217,13 +219,15 @@ class AssetsService(FolderContext, BaseService):
217
219
  robot_asset, folder_key=folder_key, folder_path=folder_path
218
220
  )
219
221
 
220
- return await self.request_async(
222
+ response = await self.request_async(
221
223
  spec.method,
222
224
  url=spec.endpoint,
223
225
  content=spec.content,
224
226
  headers=spec.headers,
225
227
  )
226
228
 
229
+ return response.json()
230
+
227
231
  @property
228
232
  def custom_headers(self) -> Dict[str, str]:
229
233
  return self.folder_headers
@@ -29,7 +29,9 @@ class QueuesService(FolderContext, BaseService):
29
29
  Response: HTTP response containing the list of queue items.
30
30
  """
31
31
  spec = self._list_items_spec()
32
- return self.request(spec.method, url=spec.endpoint)
32
+ response = self.request(spec.method, url=spec.endpoint)
33
+
34
+ return response.json()
33
35
 
34
36
  @traced(name="queues_list_items", run_type="uipath")
35
37
  async def list_items_async(self) -> Response:
@@ -39,7 +41,8 @@ class QueuesService(FolderContext, BaseService):
39
41
  Response: HTTP response containing the list of queue items.
40
42
  """
41
43
  spec = self._list_items_spec()
42
- return await self.request_async(spec.method, url=spec.endpoint)
44
+ response = await self.request_async(spec.method, url=spec.endpoint)
45
+ return response.json()
43
46
 
44
47
  @traced(name="queues_create_item", run_type="uipath")
45
48
  def create_item(self, item: Union[Dict[str, Any], QueueItem]) -> Response:
@@ -54,7 +57,8 @@ class QueuesService(FolderContext, BaseService):
54
57
  Related Activity: [Add Queue Item](https://docs.uipath.com/ACTIVITIES/other/latest/workflow/add-queue-item)
55
58
  """
56
59
  spec = self._create_item_spec(item)
57
- return self.request(spec.method, url=spec.endpoint, json=spec.json)
60
+ response = self.request(spec.method, url=spec.endpoint, json=spec.json)
61
+ return response.json()
58
62
 
59
63
  @traced(name="queues_create_item", run_type="uipath")
60
64
  async def create_item_async(
@@ -71,7 +75,10 @@ class QueuesService(FolderContext, BaseService):
71
75
  Related Activity: [Add Queue Item](https://docs.uipath.com/ACTIVITIES/other/latest/workflow/add-queue-item)
72
76
  """
73
77
  spec = self._create_item_spec(item)
74
- return await self.request_async(spec.method, url=spec.endpoint, json=spec.json)
78
+ response = await self.request_async(
79
+ spec.method, url=spec.endpoint, json=spec.json
80
+ )
81
+ return response.json()
75
82
 
76
83
  @traced(name="queues_create_items", run_type="uipath")
77
84
  def create_items(
@@ -91,7 +98,8 @@ class QueuesService(FolderContext, BaseService):
91
98
  Response: HTTP response containing the bulk operation result.
92
99
  """
93
100
  spec = self._create_items_spec(items, queue_name, commit_type)
94
- return self.request(spec.method, url=spec.endpoint, json=spec.json)
101
+ response = self.request(spec.method, url=spec.endpoint, json=spec.json)
102
+ return response.json()
95
103
 
96
104
  @traced(name="queues_create_items", run_type="uipath")
97
105
  async def create_items_async(
@@ -111,7 +119,10 @@ class QueuesService(FolderContext, BaseService):
111
119
  Response: HTTP response containing the bulk operation result.
112
120
  """
113
121
  spec = self._create_items_spec(items, queue_name, commit_type)
114
- return await self.request_async(spec.method, url=spec.endpoint, json=spec.json)
122
+ response = await self.request_async(
123
+ spec.method, url=spec.endpoint, json=spec.json
124
+ )
125
+ return response.json()
115
126
 
116
127
  @traced(name="queues_create_transaction_item", run_type="uipath")
117
128
  def create_transaction_item(
@@ -127,7 +138,8 @@ class QueuesService(FolderContext, BaseService):
127
138
  Response: HTTP response containing the transaction item details.
128
139
  """
129
140
  spec = self._create_transaction_item_spec(item, no_robot)
130
- return self.request(spec.method, url=spec.endpoint, json=spec.json)
141
+ response = self.request(spec.method, url=spec.endpoint, json=spec.json)
142
+ return response.json()
131
143
 
132
144
  @traced(name="queues_create_transaction_item", run_type="uipath")
133
145
  async def create_transaction_item_async(
@@ -143,7 +155,10 @@ class QueuesService(FolderContext, BaseService):
143
155
  Response: HTTP response containing the transaction item details.
144
156
  """
145
157
  spec = self._create_transaction_item_spec(item, no_robot)
146
- return await self.request_async(spec.method, url=spec.endpoint, json=spec.json)
158
+ response = await self.request_async(
159
+ spec.method, url=spec.endpoint, json=spec.json
160
+ )
161
+ return response.json()
147
162
 
148
163
  @traced(name="queues_update_progress_of_transaction_item", run_type="uipath")
149
164
  def update_progress_of_transaction_item(
@@ -161,7 +176,8 @@ class QueuesService(FolderContext, BaseService):
161
176
  Related Activity: [Set Transaction Progress](https://docs.uipath.com/activities/other/latest/workflow/set-transaction-progress)
162
177
  """
163
178
  spec = self._update_progress_of_transaction_item_spec(transaction_key, progress)
164
- return self.request(spec.method, url=spec.endpoint, json=spec.json)
179
+ response = self.request(spec.method, url=spec.endpoint, json=spec.json)
180
+ return response.json()
165
181
 
166
182
  @traced(name="queues_update_progress_of_transaction_item", run_type="uipath")
167
183
  async def update_progress_of_transaction_item_async(
@@ -179,7 +195,10 @@ class QueuesService(FolderContext, BaseService):
179
195
  Related Activity: [Set Transaction Progress](https://docs.uipath.com/activities/other/latest/workflow/set-transaction-progress)
180
196
  """
181
197
  spec = self._update_progress_of_transaction_item_spec(transaction_key, progress)
182
- return await self.request_async(spec.method, url=spec.endpoint, json=spec.json)
198
+ response = await self.request_async(
199
+ spec.method, url=spec.endpoint, json=spec.json
200
+ )
201
+ return response.json()
183
202
 
184
203
  @traced(name="queues_complete_transaction_item", run_type="uipath")
185
204
  def complete_transaction_item(
@@ -197,7 +216,8 @@ class QueuesService(FolderContext, BaseService):
197
216
  Related Activity: [Set Transaction Status](https://docs.uipath.com/activities/other/latest/workflow/set-transaction-status)
198
217
  """
199
218
  spec = self._complete_transaction_item_spec(transaction_key, result)
200
- return self.request(spec.method, url=spec.endpoint, json=spec.json)
219
+ response = self.request(spec.method, url=spec.endpoint, json=spec.json)
220
+ return response.json()
201
221
 
202
222
  @traced(name="queues_complete_transaction_item", run_type="uipath")
203
223
  async def complete_transaction_item_async(
@@ -215,7 +235,10 @@ class QueuesService(FolderContext, BaseService):
215
235
  Related Activity: [Set Transaction Status](https://docs.uipath.com/activities/other/latest/workflow/set-transaction-status)
216
236
  """
217
237
  spec = self._complete_transaction_item_spec(transaction_key, result)
218
- return await self.request_async(spec.method, url=spec.endpoint, json=spec.json)
238
+ response = await self.request_async(
239
+ spec.method, url=spec.endpoint, json=spec.json
240
+ )
241
+ return response.json()
219
242
 
220
243
  @property
221
244
  def custom_headers(self) -> Dict[str, str]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: uipath
3
- Version: 2.0.32
3
+ Version: 2.0.34
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
@@ -35,7 +35,7 @@ Description-Content-Type: text/markdown
35
35
  [![PyPI - Version](https://img.shields.io/pypi/v/uipath)](https://img.shields.io/pypi/v/uipath)
36
36
  [![Python versions](https://img.shields.io/pypi/pyversions/uipath.svg)](https://pypi.org/project/uipath/)
37
37
 
38
- A Python SDK that enables programmatic interaction with UiPath Platform services including processes, assets, buckets, context grounding, data services, jobs, and more. The package also features a CLI for creation, packaging, and deployment of automations to UiPath Platform.
38
+ A Python SDK that enables programmatic interaction with UiPath Cloud Platform services including processes, assets, buckets, context grounding, data services, jobs, and more. The package also features a CLI for creation, packaging, and deployment of automations to UiPath Cloud Platform.
39
39
 
40
40
  Use the [UiPath LangChain SDK](https://github.com/UiPath/uipath-langchain-python) to pack and publish LangGraph Agents.
41
41
 
@@ -10,10 +10,10 @@ uipath/_cli/cli_auth.py,sha256=O-hbaYxLXBPXgnjW2gGa1lbvmVh1ui2-U9BzrLUU708,3707
10
10
  uipath/_cli/cli_deploy.py,sha256=lnGwwhDDY6La0fj_-duqx9saGUvY2iNNW28rQCI3hsU,308
11
11
  uipath/_cli/cli_init.py,sha256=Hk4R7dxTkRkSdo4gbp6QSKXe2jVdR5PBSDVjxCt7TO0,3834
12
12
  uipath/_cli/cli_invoke.py,sha256=Fnoc5_4nWxac-FVxQL-Akrqd-yQb9BwLWSzR9p397Lw,3221
13
- uipath/_cli/cli_new.py,sha256=uBWt44ZnNrq6oMYjYm4cCipmat2GRkcJ-g8YP_yP9-0,2024
13
+ uipath/_cli/cli_new.py,sha256=dZGdyPDk16L17JdmDh_cY6MNSvf0CwNrrAQmzUo-eUw,2069
14
14
  uipath/_cli/cli_pack.py,sha256=FZr7P5WZvPkrP56fjn4dTONv76NuoEhVtQwzG3CxGQs,14667
15
15
  uipath/_cli/cli_publish.py,sha256=qhuYQq8kogUbCDd-x7_vV4Px8t-0UeAjm96lE7KQBHM,5679
16
- uipath/_cli/cli_run.py,sha256=BSVx4fLJnBgpqK1VoRbSvpA_o4N0IbxQCU3fNmyry8I,4577
16
+ uipath/_cli/cli_run.py,sha256=ke4UQiqzagv4ST60-mvcC7nh1dQMw_Z6GQ2hAbnspU0,5074
17
17
  uipath/_cli/middlewares.py,sha256=IiJgjsqrJVKSXx4RcIKHWoH-SqWqpHPbhzkQEybmAos,3937
18
18
  uipath/_cli/spinner.py,sha256=bS-U_HA5yne11ejUERu7CQoXmWdabUD2bm62EfEdV8M,1107
19
19
  uipath/_cli/_auth/_auth_server.py,sha256=GRdjXUcvZO2O2GecolFJ8uMv7_DUD_VXeBJpElqmtIQ,7034
@@ -25,8 +25,8 @@ uipath/_cli/_auth/auth_config.json,sha256=NTb_ZZor5xEgya2QbK51GiTL5_yVqG_QpV4VYI
25
25
  uipath/_cli/_auth/index.html,sha256=ML_xDOcKs0ETYucufJskiYfWSvdrD_E26C0Qd3qpGj8,6280
26
26
  uipath/_cli/_auth/localhost.crt,sha256=oGl9oLLOiouHubAt39B4zEfylFvKEtbtr_43SIliXJc,1226
27
27
  uipath/_cli/_auth/localhost.key,sha256=X31VYXD8scZtmGA837dGX5l6G-LXHLo5ItWJhZXaz3c,1679
28
- uipath/_cli/_runtime/_contracts.py,sha256=0L5Y2JBJfpmYFIQhK40pAa8vT8Kpf6P8nc3V1aKinj0,14340
29
- uipath/_cli/_runtime/_logging.py,sha256=1413xOPZmCm4xxqvO9WDvESVyudWamSRhGuFbN6jIyI,7274
28
+ uipath/_cli/_runtime/_contracts.py,sha256=Rxs-uEOA490fLPNimB8LqZW7KI-72O0BLY4Jm7Fa1ms,14316
29
+ uipath/_cli/_runtime/_logging.py,sha256=rmRBEHNMRK422o_TYk7h2sNfeGfaZdXC6-83VcO5o10,7903
30
30
  uipath/_cli/_runtime/_runtime.py,sha256=K8lQjeUE-qXNshmt0UE2SNdbH-MA9goOSqsReJ-_NF4,9681
31
31
  uipath/_cli/_templates/.psmdcp.template,sha256=C7pBJPt98ovEljcBvGtEUGoWjjQhu9jls1bpYjeLOKA,611
32
32
  uipath/_cli/_templates/.rels.template,sha256=-fTcw7OA1AcymHr0LzBqbMAAtzZTRXLTNa_ljq087Jk,406
@@ -43,7 +43,7 @@ uipath/_services/__init__.py,sha256=VPbwLDsvN26nWZgvR-8_-tc3i0rk5doqjTJbSrK0nN4,
43
43
  uipath/_services/_base_service.py,sha256=3YClCoZBkVQGNJZGy-4NTk-HGsGA61XtwVQFYv9mwWk,7955
44
44
  uipath/_services/actions_service.py,sha256=PQ6HGEfX1vRBkFsjP2ykBRc9xOIf7wVKJC7Dkhka3HM,15623
45
45
  uipath/_services/api_client.py,sha256=1hYLc_90dQzCGnqqirEHpPqvL3Gkv2sSKoeOV_iTmlk,2903
46
- uipath/_services/assets_service.py,sha256=nuaP-yzObUiB10VLeq4AsEcx75VJokbr3HC9EpW0iXA,9280
46
+ uipath/_services/assets_service.py,sha256=4TsHd_b3VQZlN195ecrCHbQcaNew0GWEk90SFhvNJTU,9352
47
47
  uipath/_services/buckets_service.py,sha256=m0HMWBkooUhjTtna_ZXcw4QOzKmaibuepWlC8wPGtlA,9330
48
48
  uipath/_services/connections_service.py,sha256=bE-t-YS_C67bcyEA9xNwKqv5b0dN7qh0McZdGETcEAQ,7338
49
49
  uipath/_services/connections_service.pyi,sha256=6OOnh0aCfxhETL8n_JZ6Xoe2BE3ST_7Vz-FgLZc53lM,2465
@@ -52,7 +52,7 @@ uipath/_services/folder_service.py,sha256=HtsBoBejvMuIZ-9gocAG9B8uKOFsAAD4WUozta
52
52
  uipath/_services/jobs_service.py,sha256=MsJlu1egvHKZhHdammp4Xo9iJzceWquW4qIWT-nPBws,8214
53
53
  uipath/_services/llm_gateway_service.py,sha256=ySg3sflIoXmY9K7txlSm7bkuI2qzBT0kAKmGlFBk5KA,12032
54
54
  uipath/_services/processes_service.py,sha256=12tflrzTNvtA0xGteQwrIZ0s-jCTinTv7gktder5tRE,5659
55
- uipath/_services/queues_service.py,sha256=wDyOb7xxP22Yb3kpnI-4GgjRmt19X28F5WyBAJN0JWk,13003
55
+ uipath/_services/queues_service.py,sha256=VaG3dWL2QK6AJBOLoW2NQTpkPfZjsqsYPl9-kfXPFzA,13534
56
56
  uipath/_utils/__init__.py,sha256=y8asYKjU5j3v72TbgShEpUafAAJXJ6bngqdzXIl-Lhk,481
57
57
  uipath/_utils/_endpoint.py,sha256=yYHwqbQuJIevpaTkdfYJS9CrtlFeEyfb5JQK5osTCog,2489
58
58
  uipath/_utils/_infer_bindings.py,sha256=ysAftopcCBj4ojYyeVwbSl20qYhCDmqyldCinj6sICM,905
@@ -79,8 +79,8 @@ uipath/tracing/__init__.py,sha256=GimSzv6qkCOlHOG1WtjYKJsZqcXpA28IgoXfR33JhiA,13
79
79
  uipath/tracing/_otel_exporters.py,sha256=x0PDPmDKJcxashsuehVsSsqBCzRr6WsNFaq_3_HS5F0,3014
80
80
  uipath/tracing/_traced.py,sha256=GFxOp73jk0vGTN_H7YZOOsEl9rVLaEhXGztMiYKIA-8,16634
81
81
  uipath/tracing/_utils.py,sha256=5SwsTGpHkIouXBndw-u8eCLnN4p7LM8DsTCCuf2jJgs,10165
82
- uipath-2.0.32.dist-info/METADATA,sha256=xs_02O_aMNCKaHePuK-y9h764pQZAyXJoocJEYk9FP8,6291
83
- uipath-2.0.32.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
84
- uipath-2.0.32.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
85
- uipath-2.0.32.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
86
- uipath-2.0.32.dist-info/RECORD,,
82
+ uipath-2.0.34.dist-info/METADATA,sha256=bdFotTo0CoY9SN7LM9cx328-GFo2MNlrRz5vPx-MTjg,6303
83
+ uipath-2.0.34.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
84
+ uipath-2.0.34.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
85
+ uipath-2.0.34.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
86
+ uipath-2.0.34.dist-info/RECORD,,