@neuracore/types 11.2.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.
|
|
@@ -1782,6 +1785,9 @@ export interface TracesMetadataRequest {
|
|
|
1782
1785
|
* resume_points: List of timestamps where the job can be resumed.
|
|
1783
1786
|
* input_cross_embodiment_description: List of data types for the input data.
|
|
1784
1787
|
* output_cross_embodiment_description: List of data types for the output data.
|
|
1788
|
+
* deleted: True if the job is marked for deletion and its resources are
|
|
1789
|
+
* not yet removed.
|
|
1790
|
+
* deleted_at: The time the job was marked for deletion, if applicable.
|
|
1785
1791
|
*/
|
|
1786
1792
|
export interface TrainingJob {
|
|
1787
1793
|
id: string;
|
|
@@ -1825,6 +1831,8 @@ export interface TrainingJob {
|
|
|
1825
1831
|
};
|
|
1826
1832
|
};
|
|
1827
1833
|
synchronization_details: SynchronizationDetails;
|
|
1834
|
+
deleted: boolean;
|
|
1835
|
+
deleted_at: string | null;
|
|
1828
1836
|
}
|
|
1829
1837
|
/**
|
|
1830
1838
|
* Request model for starting a training job.
|