@neuracore/types 10.1.0 → 10.3.0

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.
@@ -1338,10 +1338,12 @@ export interface PendingRecording {
1338
1338
  * Metadata details for a recording.
1339
1339
  *
1340
1340
  * Attributes:
1341
+ * name: Name of the recording.
1341
1342
  * notes: Optional notes about the recording.
1342
1343
  * status: Current RecordingStatus of the recording
1343
1344
  */
1344
1345
  export interface RecordingMetadata {
1346
+ name: string;
1345
1347
  notes: string;
1346
1348
  status: RecordingStatus;
1347
1349
  }
@@ -1350,10 +1352,12 @@ export interface RecordingMetadata {
1350
1352
  *
1351
1353
  * Represents 3D spatial data from depth sensors or LiDAR systems with
1352
1354
  * optional colour information and camera calibration for registration.
1355
+ * The points and rgb_points fields are populated during dataset iteration.
1353
1356
  */
1354
1357
  export interface PointCloudData {
1355
1358
  timestamp: number;
1356
1359
  type: Type14;
1360
+ frame_idx: number;
1357
1361
  points?: string | null;
1358
1362
  rgb_points?: string | null;
1359
1363
  extrinsics?: unknown[] | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "10.1.0",
3
+ "version": "10.3.0",
4
4
  "description": "Shared TypeScript type definitions for Neuracore robotics platform",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",