@cognite/reveal 4.29.1-dev.20260203 → 4.29.1-dev.20260205
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.
|
@@ -32,10 +32,13 @@ export declare class DefaultImage360Collection<T extends DataSourceType> impleme
|
|
|
32
32
|
private readonly _events;
|
|
33
33
|
private readonly _icons;
|
|
34
34
|
private _isCollectionVisible;
|
|
35
|
-
private readonly
|
|
35
|
+
private readonly _sourceId;
|
|
36
36
|
private readonly _collectionLabel;
|
|
37
37
|
private readonly _setNeedsRedraw;
|
|
38
|
-
|
|
38
|
+
/**
|
|
39
|
+
* returns the source ID of the collection
|
|
40
|
+
*/
|
|
41
|
+
get sourceId(): T['image360Identifier'];
|
|
39
42
|
/**
|
|
40
43
|
* @deprecated
|
|
41
44
|
*/
|
|
@@ -81,7 +81,8 @@ export type Image360AnnotationAssetQueryResult<T extends DataSourceType = Classi
|
|
|
81
81
|
export interface Image360Collection<T extends DataSourceType = ClassicDataSourceType> {
|
|
82
82
|
/**
|
|
83
83
|
* The id of the collection.
|
|
84
|
-
* @returns The id of the collection
|
|
84
|
+
* @returns The id of the collection
|
|
85
|
+
* @deprecated Use `sourceId` instead
|
|
85
86
|
*/
|
|
86
87
|
readonly id: string;
|
|
87
88
|
/**
|
|
@@ -89,6 +90,10 @@ export interface Image360Collection<T extends DataSourceType = ClassicDataSource
|
|
|
89
90
|
* @returns The label of the collection.
|
|
90
91
|
*/
|
|
91
92
|
readonly label: string | undefined;
|
|
93
|
+
/**
|
|
94
|
+
* The source identifier of the collection.
|
|
95
|
+
*/
|
|
96
|
+
readonly sourceId: T['image360Identifier'];
|
|
92
97
|
/**
|
|
93
98
|
* A list containing all the 360 images in this set.
|
|
94
99
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cognite/reveal",
|
|
3
|
-
"version": "4.29.1-dev.
|
|
3
|
+
"version": "4.29.1-dev.20260205",
|
|
4
4
|
"description": "WebGL based 3D viewer for CAD and point clouds processed in Cognite Data Fusion.",
|
|
5
5
|
"homepage": "https://github.com/cognitedata/reveal/tree/master/viewer",
|
|
6
6
|
"repository": {
|