uipath 2.1.45__py3-none-any.whl → 2.1.47__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/_runtime/_contracts.py +7 -2
- uipath/models/action_schema.py +0 -2
- uipath/models/actions.py +7 -2
- uipath/models/assets.py +0 -5
- uipath/models/attachment.py +7 -2
- uipath/models/connections.py +0 -5
- uipath/models/context_grounding.py +0 -3
- uipath/models/context_grounding_index.py +8 -3
- uipath/models/job.py +0 -5
- uipath/models/processes.py +0 -3
- uipath/models/queues.py +19 -4
- {uipath-2.1.45.dist-info → uipath-2.1.47.dist-info}/METADATA +1 -1
- {uipath-2.1.45.dist-info → uipath-2.1.47.dist-info}/RECORD +16 -16
- {uipath-2.1.45.dist-info → uipath-2.1.47.dist-info}/WHEEL +0 -0
- {uipath-2.1.45.dist-info → uipath-2.1.47.dist-info}/entry_points.txt +0 -0
- {uipath-2.1.45.dist-info → uipath-2.1.47.dist-info}/licenses/LICENSE +0 -0
@@ -326,17 +326,22 @@ class UiPathRuntimeContext(BaseModel):
|
|
326
326
|
|
327
327
|
base = cls.from_config(resolved_config_path)
|
328
328
|
|
329
|
+
bool_map = {"true": True, "false": False}
|
330
|
+
tracing_enabled = os.environ.get("UIPATH_TRACING_ENABLED", True)
|
331
|
+
if isinstance(tracing_enabled, str) and tracing_enabled.lower() in bool_map:
|
332
|
+
tracing_enabled = bool_map[tracing_enabled.lower()]
|
333
|
+
|
329
334
|
# Apply defaults from env
|
330
335
|
base.job_id = os.environ.get("UIPATH_JOB_KEY")
|
331
336
|
base.trace_id = os.environ.get("UIPATH_TRACE_ID")
|
332
|
-
base.tracing_enabled =
|
337
|
+
base.tracing_enabled = tracing_enabled
|
333
338
|
base.logs_min_level = os.environ.get("LOG_LEVEL", "INFO")
|
334
339
|
|
335
340
|
base.trace_context = UiPathTraceContext(
|
336
341
|
trace_id=os.environ.get("UIPATH_TRACE_ID"),
|
337
342
|
parent_span_id=os.environ.get("UIPATH_PARENT_SPAN_ID"),
|
338
343
|
root_span_id=os.environ.get("UIPATH_ROOT_SPAN_ID"),
|
339
|
-
enabled=
|
344
|
+
enabled=tracing_enabled,
|
340
345
|
job_id=os.environ.get("UIPATH_JOB_KEY"),
|
341
346
|
org_id=os.environ.get("UIPATH_ORGANIZATION_ID"),
|
342
347
|
tenant_id=os.environ.get("UIPATH_TENANT_ID"),
|
uipath/models/action_schema.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
from datetime import datetime
|
2
1
|
from typing import List, Optional
|
3
2
|
|
4
3
|
from pydantic import BaseModel, ConfigDict, Field
|
@@ -16,7 +15,6 @@ class ActionSchema(BaseModel):
|
|
16
15
|
use_enum_values=True,
|
17
16
|
arbitrary_types_allowed=True,
|
18
17
|
extra="allow",
|
19
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
20
18
|
)
|
21
19
|
|
22
20
|
key: str
|
uipath/models/actions.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
from datetime import datetime
|
2
2
|
from typing import Any, Dict, List, Optional, Union
|
3
3
|
|
4
|
-
from pydantic import BaseModel, ConfigDict, Field
|
4
|
+
from pydantic import BaseModel, ConfigDict, Field, field_serializer
|
5
5
|
|
6
6
|
|
7
7
|
class Action(BaseModel):
|
@@ -11,9 +11,14 @@ class Action(BaseModel):
|
|
11
11
|
use_enum_values=True,
|
12
12
|
arbitrary_types_allowed=True,
|
13
13
|
extra="allow",
|
14
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
15
14
|
)
|
16
15
|
|
16
|
+
@field_serializer("*", when_used="json")
|
17
|
+
def serialize_datetime(self, value):
|
18
|
+
if isinstance(value, datetime):
|
19
|
+
return value.isoformat() if value else None
|
20
|
+
return value
|
21
|
+
|
17
22
|
task_definition_properties_id: Optional[int] = Field(
|
18
23
|
default=None, alias="taskDefinitionPropertiesId"
|
19
24
|
)
|
uipath/models/assets.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
from datetime import datetime
|
2
1
|
from typing import Dict, List, Optional
|
3
2
|
|
4
3
|
from pydantic import BaseModel, ConfigDict, Field
|
@@ -11,9 +10,7 @@ class CredentialsConnectionData(BaseModel):
|
|
11
10
|
use_enum_values=True,
|
12
11
|
arbitrary_types_allowed=True,
|
13
12
|
extra="allow",
|
14
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
15
13
|
)
|
16
|
-
|
17
14
|
url: str
|
18
15
|
body: str
|
19
16
|
bearer_token: str = Field(alias="bearerToken")
|
@@ -26,9 +23,7 @@ class UserAsset(BaseModel):
|
|
26
23
|
use_enum_values=True,
|
27
24
|
arbitrary_types_allowed=True,
|
28
25
|
extra="allow",
|
29
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
30
26
|
)
|
31
|
-
|
32
27
|
name: Optional[str] = Field(default=None, alias="Name")
|
33
28
|
value: Optional[str] = Field(default=None, alias="Value")
|
34
29
|
value_type: Optional[str] = Field(default=None, alias="ValueType")
|
uipath/models/attachment.py
CHANGED
@@ -2,7 +2,7 @@ import uuid
|
|
2
2
|
from datetime import datetime
|
3
3
|
from typing import Optional
|
4
4
|
|
5
|
-
from pydantic import BaseModel, ConfigDict, Field
|
5
|
+
from pydantic import BaseModel, ConfigDict, Field, field_serializer
|
6
6
|
|
7
7
|
|
8
8
|
class Attachment(BaseModel):
|
@@ -17,9 +17,14 @@ class Attachment(BaseModel):
|
|
17
17
|
use_enum_values=True,
|
18
18
|
arbitrary_types_allowed=True,
|
19
19
|
extra="allow",
|
20
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
21
20
|
)
|
22
21
|
|
22
|
+
@field_serializer("creation_time", "last_modification_time", when_used="json")
|
23
|
+
def serialize_datetime(self, value):
|
24
|
+
if isinstance(value, datetime):
|
25
|
+
return value.isoformat() if value else None
|
26
|
+
return value
|
27
|
+
|
23
28
|
name: str = Field(alias="Name")
|
24
29
|
creation_time: Optional[datetime] = Field(default=None, alias="CreationTime")
|
25
30
|
last_modification_time: Optional[datetime] = Field(
|
uipath/models/connections.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
from datetime import datetime
|
2
1
|
from typing import Any, Optional
|
3
2
|
|
4
3
|
from pydantic import BaseModel, ConfigDict, Field
|
@@ -11,9 +10,7 @@ class Connection(BaseModel):
|
|
11
10
|
use_enum_values=True,
|
12
11
|
arbitrary_types_allowed=True,
|
13
12
|
extra="allow",
|
14
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
15
13
|
)
|
16
|
-
|
17
14
|
id: Optional[str] = None
|
18
15
|
name: Optional[str] = None
|
19
16
|
owner: Optional[str] = None
|
@@ -40,9 +37,7 @@ class ConnectionToken(BaseModel):
|
|
40
37
|
use_enum_values=True,
|
41
38
|
arbitrary_types_allowed=True,
|
42
39
|
extra="allow",
|
43
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
44
40
|
)
|
45
|
-
|
46
41
|
access_token: str = Field(alias="accessToken")
|
47
42
|
token_type: Optional[str] = Field(default=None, alias="tokenType")
|
48
43
|
scope: Optional[str] = None
|
@@ -1,4 +1,3 @@
|
|
1
|
-
from datetime import datetime
|
2
1
|
from typing import Optional
|
3
2
|
|
4
3
|
from pydantic import BaseModel, ConfigDict, Field
|
@@ -11,7 +10,6 @@ class ContextGroundingMetadata(BaseModel):
|
|
11
10
|
use_enum_values=True,
|
12
11
|
arbitrary_types_allowed=True,
|
13
12
|
extra="allow",
|
14
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
15
13
|
)
|
16
14
|
operation_id: str = Field(alias="operation_id")
|
17
15
|
strategy: str = Field(alias="strategy")
|
@@ -24,7 +22,6 @@ class ContextGroundingQueryResponse(BaseModel):
|
|
24
22
|
use_enum_values=True,
|
25
23
|
arbitrary_types_allowed=True,
|
26
24
|
extra="allow",
|
27
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
28
25
|
)
|
29
26
|
source: str = Field(alias="source")
|
30
27
|
page_number: str = Field(alias="page_number")
|
@@ -1,7 +1,7 @@
|
|
1
1
|
from datetime import datetime
|
2
2
|
from typing import Any, List, Optional
|
3
3
|
|
4
|
-
from pydantic import BaseModel, ConfigDict, Field
|
4
|
+
from pydantic import BaseModel, ConfigDict, Field, field_serializer
|
5
5
|
|
6
6
|
|
7
7
|
class ContextGroundingField(BaseModel):
|
@@ -21,7 +21,6 @@ class ContextGroundingDataSource(BaseModel):
|
|
21
21
|
use_enum_values=True,
|
22
22
|
arbitrary_types_allowed=True,
|
23
23
|
extra="allow",
|
24
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
25
24
|
)
|
26
25
|
id: Optional[str] = Field(default=None, alias="id")
|
27
26
|
folder: Optional[str] = Field(default=None, alias="folder")
|
@@ -35,8 +34,14 @@ class ContextGroundingIndex(BaseModel):
|
|
35
34
|
use_enum_values=True,
|
36
35
|
arbitrary_types_allowed=True,
|
37
36
|
extra="allow",
|
38
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
39
37
|
)
|
38
|
+
|
39
|
+
@field_serializer("last_ingested", "last_queried", when_used="json")
|
40
|
+
def serialize_datetime(self, value):
|
41
|
+
if isinstance(value, datetime):
|
42
|
+
return value.isoformat() if value else None
|
43
|
+
return value
|
44
|
+
|
40
45
|
id: Optional[str] = Field(default=None, alias="id")
|
41
46
|
name: Optional[str] = Field(default=None, alias="name")
|
42
47
|
description: Optional[str] = Field(default=None, alias="description")
|
uipath/models/job.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
from datetime import datetime
|
2
1
|
from typing import Any, Dict, Optional
|
3
2
|
|
4
3
|
from pydantic import BaseModel, ConfigDict, Field
|
@@ -11,9 +10,7 @@ class JobErrorInfo(BaseModel):
|
|
11
10
|
use_enum_values=True,
|
12
11
|
arbitrary_types_allowed=True,
|
13
12
|
extra="allow",
|
14
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
15
13
|
)
|
16
|
-
|
17
14
|
code: Optional[str] = Field(default=None, alias="Code")
|
18
15
|
title: Optional[str] = Field(default=None, alias="Title")
|
19
16
|
detail: Optional[str] = Field(default=None, alias="Detail")
|
@@ -28,9 +25,7 @@ class Job(BaseModel):
|
|
28
25
|
use_enum_values=True,
|
29
26
|
arbitrary_types_allowed=True,
|
30
27
|
extra="allow",
|
31
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
32
28
|
)
|
33
|
-
|
34
29
|
key: Optional[str] = Field(default=None, alias="Key")
|
35
30
|
start_time: Optional[str] = Field(default=None, alias="StartTime")
|
36
31
|
end_time: Optional[str] = Field(default=None, alias="EndTime")
|
uipath/models/processes.py
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
from datetime import datetime
|
2
1
|
from typing import Any, Dict, List, Optional
|
3
2
|
|
4
3
|
from pydantic import BaseModel, ConfigDict, Field
|
@@ -11,9 +10,7 @@ class Process(BaseModel):
|
|
11
10
|
use_enum_values=True,
|
12
11
|
arbitrary_types_allowed=True,
|
13
12
|
extra="allow",
|
14
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
15
13
|
)
|
16
|
-
|
17
14
|
key: str = Field(alias="Key")
|
18
15
|
process_key: str = Field(alias="ProcessKey")
|
19
16
|
process_version: str = Field(alias="ProcessVersion")
|
uipath/models/queues.py
CHANGED
@@ -2,7 +2,7 @@ from datetime import datetime
|
|
2
2
|
from enum import Enum
|
3
3
|
from typing import Any, Dict, Optional
|
4
4
|
|
5
|
-
from pydantic import BaseModel, ConfigDict, Field
|
5
|
+
from pydantic import BaseModel, ConfigDict, Field, field_serializer
|
6
6
|
from typing_extensions import Annotated
|
7
7
|
|
8
8
|
|
@@ -25,9 +25,14 @@ class QueueItem(BaseModel):
|
|
25
25
|
use_enum_values=True,
|
26
26
|
arbitrary_types_allowed=True,
|
27
27
|
extra="allow",
|
28
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
29
28
|
)
|
30
29
|
|
30
|
+
@field_serializer("defer_date", "due_date", "risk_sla_date", when_used="json")
|
31
|
+
def serialize_datetime(self, value):
|
32
|
+
if isinstance(value, datetime):
|
33
|
+
return value.isoformat() if value else None
|
34
|
+
return value
|
35
|
+
|
31
36
|
name: str = Field(
|
32
37
|
description="The name of the queue into which the item will be added.",
|
33
38
|
alias="Name",
|
@@ -81,9 +86,14 @@ class TransactionItem(BaseModel):
|
|
81
86
|
use_enum_values=True,
|
82
87
|
arbitrary_types_allowed=True,
|
83
88
|
extra="allow",
|
84
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
85
89
|
)
|
86
90
|
|
91
|
+
@field_serializer("defer_date", "due_date", when_used="json")
|
92
|
+
def serialize_datetime(self, value):
|
93
|
+
if isinstance(value, datetime):
|
94
|
+
return value.isoformat() if value else None
|
95
|
+
return value
|
96
|
+
|
87
97
|
name: str = Field(
|
88
98
|
description="The name of the queue in which to search for the next item or in which to insert the item before marking it as InProgress and sending it to the robot.",
|
89
99
|
alias="Name",
|
@@ -124,9 +134,14 @@ class TransactionItemResult(BaseModel):
|
|
124
134
|
use_enum_values=True,
|
125
135
|
arbitrary_types_allowed=True,
|
126
136
|
extra="allow",
|
127
|
-
json_encoders={datetime: lambda v: v.isoformat() if v else None},
|
128
137
|
)
|
129
138
|
|
139
|
+
@field_serializer("defer_date", "due_date", when_used="json")
|
140
|
+
def serialize_datetime(self, value):
|
141
|
+
if isinstance(value, datetime):
|
142
|
+
return value.isoformat() if value else None
|
143
|
+
return value
|
144
|
+
|
130
145
|
is_successful: Optional[bool] = Field(
|
131
146
|
default=None,
|
132
147
|
description="States if the processing was successful or not.",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: uipath
|
3
|
-
Version: 2.1.
|
3
|
+
Version: 2.1.47
|
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
|
@@ -59,7 +59,7 @@ uipath/_cli/_evals/_models/_agent_execution_output.py,sha256=llvApU4JkTnNgQ5DvHP
|
|
59
59
|
uipath/_cli/_evals/_models/_evaluation_set.py,sha256=tVHykSget-G3sOCs9bSchMYUTpFqzXVlYYbY8L9SI0c,1518
|
60
60
|
uipath/_cli/_evals/_models/_evaluators.py,sha256=l57NEVyYmzSKuoIXuGkE94Br01hAMg35fiS2MlTkaQM,2115
|
61
61
|
uipath/_cli/_push/sw_file_handler.py,sha256=AX4TKM-q6CNGw3JyBW02M8ktPZuFMcAU9LN3Ii0Q2QI,18202
|
62
|
-
uipath/_cli/_runtime/_contracts.py,sha256=
|
62
|
+
uipath/_cli/_runtime/_contracts.py,sha256=iAjrYaKS4y4unaNnwiCityfvWMg15f7quNn32f6LFkU,28406
|
63
63
|
uipath/_cli/_runtime/_escalation.py,sha256=x3vI98qsfRA-fL_tNkRVTFXioM5Gv2w0GFcXJJ5eQtg,7981
|
64
64
|
uipath/_cli/_runtime/_hitl.py,sha256=VKbM021nVg1HEDnTfucSLJ0LsDn83CKyUtVzofS2qTU,11369
|
65
65
|
uipath/_cli/_runtime/_logging.py,sha256=MGklGKPjYKjs7J5Jy9eplA9zCDsdtEbkZdCbTwgut_4,8311
|
@@ -121,21 +121,21 @@ uipath/agent/conversation/tool.py,sha256=ol8XI8AVd-QNn5auXNBPcCzOkh9PPFtL7hTK3kq
|
|
121
121
|
uipath/eval/_helpers/__init__.py,sha256=GSmZMryjuO3Wo_zdxZdrHCRRsgOxsVFYkYgJ15YNC3E,86
|
122
122
|
uipath/eval/_helpers/helpers.py,sha256=iE2HHdMiAdAMLqxHkPKHpfecEtAuN5BTBqvKFTI8ciE,1315
|
123
123
|
uipath/models/__init__.py,sha256=d_DkK1AtRUetM1t2NrH5UKgvJOBiynzaKnK5pMY7aIc,1289
|
124
|
-
uipath/models/action_schema.py,sha256=
|
125
|
-
uipath/models/actions.py,sha256=
|
126
|
-
uipath/models/assets.py,sha256=
|
127
|
-
uipath/models/attachment.py,sha256=
|
124
|
+
uipath/models/action_schema.py,sha256=tBn1qQ3NQLU5nwWlBIzIKIx3XK5pO_D1S51IjFlZ1FA,610
|
125
|
+
uipath/models/actions.py,sha256=1vRsJ3JSmMdPkbiYAiHzY8K44vmW3VlMsmQUBAkSgrQ,3141
|
126
|
+
uipath/models/assets.py,sha256=7x3swJRnG_a4VgjdXKKwraJLT5TF0u4wHsl6coOjX0g,2762
|
127
|
+
uipath/models/attachment.py,sha256=lI6BxBY6DY5U6qZbxhkNu-usseA1zovYSTRtLq50ubI,1029
|
128
128
|
uipath/models/buckets.py,sha256=N3Lj_dVCv709-ywhOOdyCSvsuLn41eGuAfSiik6Q6F8,1285
|
129
|
-
uipath/models/connections.py,sha256=
|
130
|
-
uipath/models/context_grounding.py,sha256=
|
131
|
-
uipath/models/context_grounding_index.py,sha256=
|
129
|
+
uipath/models/connections.py,sha256=V6Ecx10HBDO2HGaIGG8NGx4q2sEhViAoPOUgPosPfvE,2418
|
130
|
+
uipath/models/context_grounding.py,sha256=3MaF2Fv2QYle8UUWvKGkCN5XGpx2T4a34fdbBqJ2fCs,1137
|
131
|
+
uipath/models/context_grounding_index.py,sha256=OhRyxZDHDSrEmBFK0-JLqMMMT64jir4XkHtQ54IKtc0,2683
|
132
132
|
uipath/models/errors.py,sha256=WCxxHBlLzLF17YxjqsFkkyBLwEQM_dc6fFU5qmBjD4A,597
|
133
133
|
uipath/models/exceptions.py,sha256=F0ITAhJsl6Agvmnv4nxvgY5oC_lrYIlxWTLs0yx859M,1636
|
134
134
|
uipath/models/interrupt_models.py,sha256=UzuVTMVesI204YQ4qFQFaN-gN3kksddkrujofcaC7zQ,881
|
135
|
-
uipath/models/job.py,sha256=
|
135
|
+
uipath/models/job.py,sha256=HOvWS3I2BkiuM9jvg_PF0MezKa_C_8g7tndZpjJ1w50,3063
|
136
136
|
uipath/models/llm_gateway.py,sha256=rUIus7BrUuuRriXqSJUE9FnjOyQ7pYpaX6hWEYvA6AA,1923
|
137
|
-
uipath/models/processes.py,sha256=
|
138
|
-
uipath/models/queues.py,sha256=
|
137
|
+
uipath/models/processes.py,sha256=bV31xTyF0hRWZmwy3bWj5L8dBD9wttWxfJjwzhjETmk,1924
|
138
|
+
uipath/models/queues.py,sha256=gnbeEyYlHtdqdxBalio0lw8mq-78YBG9MPMSkv1BWOg,6934
|
139
139
|
uipath/telemetry/__init__.py,sha256=Wna32UFzZR66D-RzTKlPWlvji9i2HJb82NhHjCCXRjY,61
|
140
140
|
uipath/telemetry/_constants.py,sha256=uRDuEZayBYtBA0tMx-2AS_D-oiVA7oKgp9zid9jNats,763
|
141
141
|
uipath/telemetry/_track.py,sha256=G_Pyq8n8iMvoCWhUpWedlptXUSuUSbQBBzGxsh4DW9c,4654
|
@@ -145,8 +145,8 @@ uipath/tracing/_traced.py,sha256=qeVDrds2OUnpdUIA0RhtF0kg2dlAZhyC1RRkI-qivTM,185
|
|
145
145
|
uipath/tracing/_utils.py,sha256=wJRELaPu69iY0AhV432Dk5QYf_N_ViRU4kAUG1BI1ew,10384
|
146
146
|
uipath/utils/__init__.py,sha256=VD-KXFpF_oWexFg6zyiWMkxl2HM4hYJMIUDZ1UEtGx0,105
|
147
147
|
uipath/utils/_endpoints_manager.py,sha256=iRTl5Q0XAm_YgcnMcJOXtj-8052sr6jpWuPNz6CgT0Q,8408
|
148
|
-
uipath-2.1.
|
149
|
-
uipath-2.1.
|
150
|
-
uipath-2.1.
|
151
|
-
uipath-2.1.
|
152
|
-
uipath-2.1.
|
148
|
+
uipath-2.1.47.dist-info/METADATA,sha256=xpplGLiRUQnWXsThhQRS6J4HO6OnZQUcYMxeq5FLJgU,6482
|
149
|
+
uipath-2.1.47.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
150
|
+
uipath-2.1.47.dist-info/entry_points.txt,sha256=9C2_29U6Oq1ExFu7usihR-dnfIVNSKc-0EFbh0rskB4,43
|
151
|
+
uipath-2.1.47.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
|
152
|
+
uipath-2.1.47.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|