@neuracore/types 11.3.0 → 11.4.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.
@@ -1414,6 +1414,7 @@ export interface PendingRecording {
1414
1414
  sensor_manifest: {
1415
1415
  [k: string]: string[];
1416
1416
  };
1417
+ deleted: boolean;
1417
1418
  saved_dataset_id?: string | null;
1418
1419
  status: PendingRecordingStatus;
1419
1420
  progress: number;
@@ -1492,6 +1493,7 @@ export interface RGBCameraData {
1492
1493
  * finalize. Lets synchronization locate every trace
1493
1494
  * (recordings/{id}/{data_type}/{sensor}/trace.json) without listing the
1494
1495
  * bucket. Empty for recordings finalized before this field existed.
1496
+ * deleted: Whether the recording has been deleted
1495
1497
  */
1496
1498
  export interface Recording {
1497
1499
  id: string;
@@ -1508,6 +1510,7 @@ export interface Recording {
1508
1510
  sensor_manifest: {
1509
1511
  [k: string]: string[];
1510
1512
  };
1513
+ deleted: boolean;
1511
1514
  }
1512
1515
  /**
1513
1516
  * Represents a single data trace belonging to a recording.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "11.3.0",
3
+ "version": "11.4.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",