Skip to content

Commit 81338db

Browse files
avichalsri24claude
andauthored
feat: expand Data Fabric entities service [DS-8360] (#1616)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent b5d462a commit 81338db

9 files changed

Lines changed: 5337 additions & 645 deletions

File tree

packages/uipath-platform/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-platform"
3-
version = "0.1.56"
3+
version = "0.1.57"
44
description = "HTTP client library for programmatic access to UiPath Platform"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

packages/uipath-platform/src/uipath/platform/entities/__init__.py

Lines changed: 40 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,42 +5,78 @@
55

66
from ._entities_service import EntitiesService
77
from .entities import (
8+
AggregateRow,
89
ChoiceSetValue,
910
DataFabricEntityItem,
1011
Entity,
12+
EntityAggregate,
13+
EntityAggregateFunction,
14+
EntityBinning,
15+
EntityCreateFieldOptions,
16+
EntityCreateOptions,
1117
EntityField,
18+
EntityFieldDataType,
1219
EntityFieldMetadata,
20+
EntityImportRecordsResponse,
21+
EntityJoin,
22+
EntityMetadataUpdateOptions,
23+
EntityQueryFilter,
24+
EntityQueryFilterGroup,
25+
EntityQuerySortOption,
1326
EntityRecord,
1427
EntityRecordsBatchResponse,
28+
EntityRecordsListResponse,
1529
EntityRouting,
1630
EntitySetResolution,
1731
ExternalField,
1832
ExternalObject,
1933
ExternalSourceFields,
34+
FailureRecord,
2035
FieldDataType,
2136
FieldMetadata,
37+
LogicalOperator,
38+
QueryFilterOperator,
2239
QueryRoutingOverrideContext,
2340
ReferenceType,
41+
RetrieveEntityRecordsResponse,
2442
SourceJoinCriteria,
2543
)
2644

2745
__all__ = [
46+
"AggregateRow",
2847
"ChoiceSetValue",
2948
"DataFabricEntityItem",
3049
"EntitiesService",
3150
"Entity",
51+
"EntityAggregate",
52+
"EntityAggregateFunction",
53+
"EntityBinning",
54+
"EntityCreateFieldOptions",
55+
"EntityCreateOptions",
3256
"EntityField",
33-
"EntityRecord",
57+
"EntityFieldDataType",
3458
"EntityFieldMetadata",
59+
"EntityImportRecordsResponse",
60+
"EntityJoin",
61+
"EntityMetadataUpdateOptions",
62+
"EntityQueryFilter",
63+
"EntityQueryFilterGroup",
64+
"EntityQuerySortOption",
65+
"EntityRecord",
66+
"EntityRecordsBatchResponse",
67+
"EntityRecordsListResponse",
3568
"EntityRouting",
3669
"EntitySetResolution",
37-
"FieldDataType",
38-
"FieldMetadata",
39-
"EntityRecordsBatchResponse",
4070
"ExternalField",
4171
"ExternalObject",
4272
"ExternalSourceFields",
73+
"FailureRecord",
74+
"FieldDataType",
75+
"FieldMetadata",
76+
"LogicalOperator",
77+
"QueryFilterOperator",
4378
"QueryRoutingOverrideContext",
4479
"ReferenceType",
80+
"RetrieveEntityRecordsResponse",
4581
"SourceJoinCriteria",
4682
]

0 commit comments

Comments
 (0)