@neuracore/types 6.7.0 → 6.8.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.
|
@@ -1163,10 +1163,16 @@ export interface StreamAliveResponse {
|
|
|
1163
1163
|
* Attributes:
|
|
1164
1164
|
* synchronized_dataset_id: Unique identifier for the synced dataset.
|
|
1165
1165
|
* num_synchronized_demonstrations: Number of demonstrations synchronized so far.
|
|
1166
|
+
* has_failures: Whether any recording synchronization has failed.
|
|
1167
|
+
* num_failed_recordings: Number of failed recordings.
|
|
1168
|
+
* failed_recording_ids: IDs of recordings that failed synchronization.
|
|
1166
1169
|
*/
|
|
1167
1170
|
export interface SynchronizationProgress {
|
|
1168
1171
|
synchronized_dataset_id: string;
|
|
1169
1172
|
num_synchronized_demonstrations: number;
|
|
1173
|
+
has_failures?: boolean;
|
|
1174
|
+
num_failed_recordings?: number;
|
|
1175
|
+
failed_recording_ids?: string[];
|
|
1170
1176
|
}
|
|
1171
1177
|
/**
|
|
1172
1178
|
* Request model for synchronizing a dataset.
|