@cognite/reveal 4.27.1 → 4.28.0-dev.20251106
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.
- package/dist/api-entry-points/core.d.ts +2 -2
- package/dist/index.js +190 -190
- package/dist/index.js.map +1 -1
- package/dist/packages/360-images/index.d.ts +2 -2
- package/dist/packages/360-images/src/annotation/ImageAnnotationObject.d.ts +1 -0
- package/dist/packages/360-images/src/annotation/getInstanceId.d.ts +1 -1
- package/dist/packages/360-images/src/annotation/typeGuards.d.ts +6 -3
- package/dist/packages/360-images/src/annotation/types.d.ts +5 -0
- package/dist/packages/360-images/src/collection/DefaultImage360Collection.d.ts +2 -1
- package/dist/packages/360-images/src/collection/Image360Collection.d.ts +26 -5
- package/dist/packages/data-providers/index.d.ts +2 -2
- package/dist/packages/data-providers/src/Image360ProviderCombiner.d.ts +5 -3
- package/dist/packages/data-providers/src/image-360-data-providers/Cdf360ImageAnnotationProvider.d.ts +4 -2
- package/dist/packages/data-providers/src/image-360-data-providers/CoreDm360ImageAnnotationProvider.d.ts +2 -1
- package/dist/packages/data-providers/src/image-360-data-providers/Local360ImageProvider.d.ts +2 -1
- package/dist/packages/data-providers/src/image-360-data-providers/shared.d.ts +2 -3
- package/dist/packages/data-providers/src/types.d.ts +16 -4
- package/dist/packages/data-providers/src/utilities/constants.d.ts +13 -0
- package/dist/packages/utilities/index.d.ts +1 -0
- package/dist/packages/utilities/src/isDefined.d.ts +4 -0
- package/package.json +2 -2
|
@@ -9,9 +9,9 @@ export { CAMERA_MANAGER_EVENT_TYPE_LIST, CameraControlsOptions, DebouncedCameraS
|
|
|
9
9
|
export { AreaCollection, ClusteredAreaCollection, NodeAppearance, SerializableNodeAppearance, NodeOutlineColor, DefaultNodeAppearance, NodeCollection, CdfNodeCollectionBase, CombineNodeCollectionBase, TreeIndexNodeCollection, NodeIdNodeCollection, IntersectionNodeCollection, UnionNodeCollection, SerializedNodeCollection, PropertyFilterNodeCollection, PropertyFilterNodeCollectionOptions, SinglePropertyFilterNodeCollection, AssetNodeCollection, InvertedNodeCollection, registerNodeCollectionType, NodeCollectionSerializationContext, CdfModelNodeCollectionDataProvider } from '../packages/cad-styling';
|
|
10
10
|
export { SupportedModelTypes } from '../packages/model-base';
|
|
11
11
|
export { IndexSet, NumericRange, BeforeSceneRenderedDelegate, SceneRenderedDelegate, PointerEventDelegate, PointerEventData, DisposedDelegate, DMInstanceRef, ICustomObject, CustomObject, CustomObjectIntersection, CustomObjectIntersectInput, PointerEventsTarget, PointerEvents, Vector3Pool, getWheelEventDelta, getNormalizedPixelCoordinatesBySize, getNormalizedPixelCoordinates, isPointVisibleByPlanes, ClosestGeometryFinder, CDF_TO_VIEWER_TRANSFORMATION } from '../packages/utilities';
|
|
12
|
-
export { PointCloudObjectMetadata, CoreDmImage360Annotation, ImageAssetLinkAnnotationInfo, Image360DataModelIdentifier, Image360BaseIdentifier, Image360CoreDataModelIdentifier, Image360LegacyDataModelIdentifier, Image360Id, Image360RevisionId, DataSourceType, ClassicDataSourceType, DMDataSourceType, ClassicModelIdentifierType, DMModelIdentifierType, isDMPointCloudVolume, isClassicPointCloudVolume, CommonModelOptions, InstanceReference } from '../packages/data-providers';
|
|
12
|
+
export { PointCloudObjectMetadata, CoreDmImage360Annotation, ImageAssetLinkAnnotationInfo, ImageInstanceLinkAnnotationInfo, Image360DataModelIdentifier, Image360BaseIdentifier, Image360CoreDataModelIdentifier, Image360LegacyDataModelIdentifier, Image360Id, Image360RevisionId, DataSourceType, ClassicDataSourceType, DMDataSourceType, ClassicModelIdentifierType, DMModelIdentifierType, isDMPointCloudVolume, isClassicPointCloudVolume, CommonModelOptions, InstanceReference } from '../packages/data-providers';
|
|
13
13
|
export { CogniteCadModel, BoundingBoxClipper, GeometryFilter, WellKnownUnit } from '../packages/cad-model';
|
|
14
14
|
export { CognitePointCloudModel, isDMPointCloudModel, isClassicPointCloudModel } from '../packages/pointclouds';
|
|
15
15
|
export { CompletePointCloudAppearance, PointCloudAppearance, PointCloudObjectCollection, PointCloudAnnotationVolumeCollection, AnnotationIdPointCloudObjectCollection, PointCloudDMVolumeCollection, DefaultPointCloudAppearance, StyledPointCloudObjectCollection, StyledPointCloudVolumeCollection } from '../packages/pointcloud-styling';
|
|
16
|
-
export { AssetAnnotationImage360Info, Image360, Image360Revision, Image360Visualization, Image360Collection, Image360EnteredDelegate, Image360ExitedDelegate, Image360IconStyle, Image360AnnotationIntersection, Image360AnnotationAppearance, Image360Annotation, Image360AnnotationAssetFilter, Image360AnnotationAssetQueryResult, Image360AnnotationFilterOptions, Image360Action, InstanceLinkable360ImageAnnotationType } from '../packages/360-images';
|
|
16
|
+
export { AssetAnnotationImage360Info, Image360, Image360Revision, Image360Visualization, Image360Collection, Image360EnteredDelegate, Image360ExitedDelegate, Image360IconStyle, Image360AnnotationIntersection, Image360AnnotationAppearance, Image360Annotation, Image360AnnotationAssetFilter, Image360AnnotationAssetQueryResult, Image360AnnotationFilterOptions, Image360Action, InstanceLinkable360ImageAnnotationType, Image360AnnotationInstanceReference, AssetHybridAnnotationImage360Info } from '../packages/360-images';
|
|
17
17
|
export { OverlayCollection, Overlay3DCollection, Overlay3DCollectionOptions, OverlayInfo, Overlay3D, DefaultOverlay3DContentType } from '../packages/3d-overlays';
|