@neuracore/types 9.0.0 → 10.0.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.
- package/dist/neuracore_types.d.ts +12 -1
- package/package.json +1 -1
|
@@ -1073,7 +1073,7 @@ export interface InternalStartTrainingJobRequest {
|
|
|
1073
1073
|
*
|
|
1074
1074
|
* Attributes:
|
|
1075
1075
|
* frequency: Synchronization frequency in Hz.
|
|
1076
|
-
*
|
|
1076
|
+
* cross_embodiment_union: Union of embodiment data to include
|
|
1077
1077
|
* in the synchronization.
|
|
1078
1078
|
* max_delay_s: Maximum allowable delay (in seconds) for synchronization.
|
|
1079
1079
|
* allow_duplicates: Whether to allow duplicate data points in the synchronization.
|
|
@@ -1326,6 +1326,9 @@ export interface PendingRecording {
|
|
|
1326
1326
|
total_bytes: number;
|
|
1327
1327
|
is_shared: boolean;
|
|
1328
1328
|
data_types: DataType[];
|
|
1329
|
+
sensor_manifest: {
|
|
1330
|
+
[k: string]: string[];
|
|
1331
|
+
};
|
|
1329
1332
|
saved_dataset_id?: string | null;
|
|
1330
1333
|
status: PendingRecordingStatus;
|
|
1331
1334
|
progress: number;
|
|
@@ -1396,6 +1399,10 @@ export interface RGBCameraData {
|
|
|
1396
1399
|
* total_bytes: Total size of all recorded data in bytes
|
|
1397
1400
|
* is_shared: Whether the recording is shared across organizations
|
|
1398
1401
|
* data_types: Set of data types recorded (e.g., joint positions, images)
|
|
1402
|
+
* sensor_manifest: Sensor names recorded for each data type, captured at
|
|
1403
|
+
* finalize. Lets synchronization locate every trace
|
|
1404
|
+
* (recordings/{id}/{data_type}/{sensor}/trace.json) without listing the
|
|
1405
|
+
* bucket. Empty for recordings finalized before this field existed.
|
|
1399
1406
|
*/
|
|
1400
1407
|
export interface Recording {
|
|
1401
1408
|
id: string;
|
|
@@ -1409,6 +1416,9 @@ export interface Recording {
|
|
|
1409
1416
|
total_bytes: number;
|
|
1410
1417
|
is_shared: boolean;
|
|
1411
1418
|
data_types: DataType[];
|
|
1419
|
+
sensor_manifest: {
|
|
1420
|
+
[k: string]: string[];
|
|
1421
|
+
};
|
|
1412
1422
|
}
|
|
1413
1423
|
/**
|
|
1414
1424
|
* Represents a single data trace belonging to a recording.
|
|
@@ -1420,6 +1430,7 @@ export interface RecordingDataTrace {
|
|
|
1420
1430
|
id: string;
|
|
1421
1431
|
recording_id: string;
|
|
1422
1432
|
data_type: DataType;
|
|
1433
|
+
sensor_name: string | null;
|
|
1423
1434
|
status: RecordingDataTraceStatus1;
|
|
1424
1435
|
created_at: number;
|
|
1425
1436
|
uploaded_at: number | null;
|