744b185cfe
* Unpack levels as proxy * Dynamically attach elevation and units to data object * Do not add level properties to collection * Bump SDK to 3.4.3
16 lines
582 B
C#
16 lines
582 B
C#
using Speckle.Objects.Other;
|
|
using Speckle.Sdk.Models.GraphTraversal;
|
|
using Speckle.Sdk.Models.Instances;
|
|
using Speckle.Sdk.Models.Proxies;
|
|
|
|
namespace Speckle.Connectors.Common.Operations.Receive;
|
|
|
|
public record RootObjectUnpackerResult(
|
|
IReadOnlyCollection<TraversalContext> ObjectsToConvert,
|
|
IReadOnlyCollection<InstanceDefinitionProxy>? DefinitionProxies,
|
|
IReadOnlyCollection<GroupProxy>? GroupProxies,
|
|
IReadOnlyCollection<RenderMaterialProxy>? RenderMaterialProxies,
|
|
IReadOnlyCollection<ColorProxy>? ColorProxies,
|
|
IReadOnlyCollection<LevelProxy>? LevelProxies
|
|
);
|