@neuracore/types 8.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 +44 -7
- package/dist/neuracore_types.js +0 -6
- package/package.json +1 -1
|
@@ -336,6 +336,21 @@ export interface Dataset {
|
|
|
336
336
|
};
|
|
337
337
|
deleted: boolean;
|
|
338
338
|
}
|
|
339
|
+
/**
|
|
340
|
+
* Request model for cloning a dataset.
|
|
341
|
+
*
|
|
342
|
+
* Attributes:
|
|
343
|
+
* name: Name for the new cloned dataset.
|
|
344
|
+
* sourceDatasetId: ID of the dataset to clone.
|
|
345
|
+
* description: Optional description for the new dataset.
|
|
346
|
+
* tags: Optional tags for the new dataset.
|
|
347
|
+
*/
|
|
348
|
+
export interface DatasetCloneRequest {
|
|
349
|
+
name: string;
|
|
350
|
+
sourceDatasetId: string;
|
|
351
|
+
description?: string | null;
|
|
352
|
+
tags?: string[] | null;
|
|
353
|
+
}
|
|
339
354
|
/**
|
|
340
355
|
* Main dataset configuration model.
|
|
341
356
|
*
|
|
@@ -818,6 +833,23 @@ export interface DataFormat10 {
|
|
|
818
833
|
extrinsics_orientation?: OrientationConfig | null;
|
|
819
834
|
intrinsics_format?: IntrinsicsConfig;
|
|
820
835
|
}
|
|
836
|
+
/**
|
|
837
|
+
* Request model for splitting recordings from a dataset into a new one.
|
|
838
|
+
*
|
|
839
|
+
* Attributes:
|
|
840
|
+
* name: Name for the new dataset.
|
|
841
|
+
* sourceDatasetId: ID of the dataset to split from.
|
|
842
|
+
* recordingIds: IDs of the recordings to copy into the new dataset.
|
|
843
|
+
* description: Optional description for the new dataset.
|
|
844
|
+
* tags: Optional tags for the new dataset.
|
|
845
|
+
*/
|
|
846
|
+
export interface DatasetSplitRequest {
|
|
847
|
+
name: string;
|
|
848
|
+
sourceDatasetId: string;
|
|
849
|
+
recordingIds: string[];
|
|
850
|
+
description?: string | null;
|
|
851
|
+
tags?: string[] | null;
|
|
852
|
+
}
|
|
821
853
|
/**
|
|
822
854
|
* Request model for dataset updates.
|
|
823
855
|
*
|
|
@@ -1041,7 +1073,7 @@ export interface InternalStartTrainingJobRequest {
|
|
|
1041
1073
|
*
|
|
1042
1074
|
* Attributes:
|
|
1043
1075
|
* frequency: Synchronization frequency in Hz.
|
|
1044
|
-
*
|
|
1076
|
+
* cross_embodiment_union: Union of embodiment data to include
|
|
1045
1077
|
* in the synchronization.
|
|
1046
1078
|
* max_delay_s: Maximum allowable delay (in seconds) for synchronization.
|
|
1047
1079
|
* allow_duplicates: Whether to allow duplicate data points in the synchronization.
|
|
@@ -1294,6 +1326,9 @@ export interface PendingRecording {
|
|
|
1294
1326
|
total_bytes: number;
|
|
1295
1327
|
is_shared: boolean;
|
|
1296
1328
|
data_types: DataType[];
|
|
1329
|
+
sensor_manifest: {
|
|
1330
|
+
[k: string]: string[];
|
|
1331
|
+
};
|
|
1297
1332
|
saved_dataset_id?: string | null;
|
|
1298
1333
|
status: PendingRecordingStatus;
|
|
1299
1334
|
progress: number;
|
|
@@ -1364,6 +1399,10 @@ export interface RGBCameraData {
|
|
|
1364
1399
|
* total_bytes: Total size of all recorded data in bytes
|
|
1365
1400
|
* is_shared: Whether the recording is shared across organizations
|
|
1366
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.
|
|
1367
1406
|
*/
|
|
1368
1407
|
export interface Recording {
|
|
1369
1408
|
id: string;
|
|
@@ -1377,6 +1416,9 @@ export interface Recording {
|
|
|
1377
1416
|
total_bytes: number;
|
|
1378
1417
|
is_shared: boolean;
|
|
1379
1418
|
data_types: DataType[];
|
|
1419
|
+
sensor_manifest: {
|
|
1420
|
+
[k: string]: string[];
|
|
1421
|
+
};
|
|
1380
1422
|
}
|
|
1381
1423
|
/**
|
|
1382
1424
|
* Represents a single data trace belonging to a recording.
|
|
@@ -1388,6 +1430,7 @@ export interface RecordingDataTrace {
|
|
|
1388
1430
|
id: string;
|
|
1389
1431
|
recording_id: string;
|
|
1390
1432
|
data_type: DataType;
|
|
1433
|
+
sensor_name: string | null;
|
|
1391
1434
|
status: RecordingDataTraceStatus1;
|
|
1392
1435
|
created_at: number;
|
|
1393
1436
|
uploaded_at: number | null;
|
|
@@ -1946,9 +1989,7 @@ export declare enum GPUType {
|
|
|
1946
1989
|
NVIDIA_A100_80GB = "NVIDIA_A100_80GB",
|
|
1947
1990
|
NVIDIA_TESLA_A100 = "NVIDIA_TESLA_A100",
|
|
1948
1991
|
NVIDIA_TESLA_V100 = "NVIDIA_TESLA_V100",
|
|
1949
|
-
NVIDIA_TESLA_P100 = "NVIDIA_TESLA_P100",
|
|
1950
1992
|
NVIDIA_TESLA_T4 = "NVIDIA_TESLA_T4",
|
|
1951
|
-
NVIDIA_TESLA_P4 = "NVIDIA_TESLA_P4",
|
|
1952
1993
|
NVIDIA_L4 = "NVIDIA_L4"
|
|
1953
1994
|
}
|
|
1954
1995
|
export declare enum Type3 {
|
|
@@ -1977,9 +2018,7 @@ export declare enum GPUType1 {
|
|
|
1977
2018
|
NVIDIA_A100_80GB = "NVIDIA_A100_80GB",
|
|
1978
2019
|
NVIDIA_TESLA_A100 = "NVIDIA_TESLA_A100",
|
|
1979
2020
|
NVIDIA_TESLA_V100 = "NVIDIA_TESLA_V100",
|
|
1980
|
-
NVIDIA_TESLA_P100 = "NVIDIA_TESLA_P100",
|
|
1981
2021
|
NVIDIA_TESLA_T4 = "NVIDIA_TESLA_T4",
|
|
1982
|
-
NVIDIA_TESLA_P4 = "NVIDIA_TESLA_P4",
|
|
1983
2022
|
NVIDIA_L4 = "NVIDIA_L4"
|
|
1984
2023
|
}
|
|
1985
2024
|
/**
|
|
@@ -2092,8 +2131,6 @@ export declare enum GPUType2 {
|
|
|
2092
2131
|
NVIDIA_A100_80GB = "NVIDIA_A100_80GB",
|
|
2093
2132
|
NVIDIA_TESLA_A100 = "NVIDIA_TESLA_A100",
|
|
2094
2133
|
NVIDIA_TESLA_V100 = "NVIDIA_TESLA_V100",
|
|
2095
|
-
NVIDIA_TESLA_P100 = "NVIDIA_TESLA_P100",
|
|
2096
2134
|
NVIDIA_TESLA_T4 = "NVIDIA_TESLA_T4",
|
|
2097
|
-
NVIDIA_TESLA_P4 = "NVIDIA_TESLA_P4",
|
|
2098
2135
|
NVIDIA_L4 = "NVIDIA_L4"
|
|
2099
2136
|
}
|
package/dist/neuracore_types.js
CHANGED
|
@@ -257,9 +257,7 @@ var GPUType;
|
|
|
257
257
|
GPUType["NVIDIA_A100_80GB"] = "NVIDIA_A100_80GB";
|
|
258
258
|
GPUType["NVIDIA_TESLA_A100"] = "NVIDIA_TESLA_A100";
|
|
259
259
|
GPUType["NVIDIA_TESLA_V100"] = "NVIDIA_TESLA_V100";
|
|
260
|
-
GPUType["NVIDIA_TESLA_P100"] = "NVIDIA_TESLA_P100";
|
|
261
260
|
GPUType["NVIDIA_TESLA_T4"] = "NVIDIA_TESLA_T4";
|
|
262
|
-
GPUType["NVIDIA_TESLA_P4"] = "NVIDIA_TESLA_P4";
|
|
263
261
|
GPUType["NVIDIA_L4"] = "NVIDIA_L4";
|
|
264
262
|
})(GPUType || (exports.GPUType = GPUType = {}));
|
|
265
263
|
var Type3;
|
|
@@ -293,9 +291,7 @@ var GPUType1;
|
|
|
293
291
|
GPUType1["NVIDIA_A100_80GB"] = "NVIDIA_A100_80GB";
|
|
294
292
|
GPUType1["NVIDIA_TESLA_A100"] = "NVIDIA_TESLA_A100";
|
|
295
293
|
GPUType1["NVIDIA_TESLA_V100"] = "NVIDIA_TESLA_V100";
|
|
296
|
-
GPUType1["NVIDIA_TESLA_P100"] = "NVIDIA_TESLA_P100";
|
|
297
294
|
GPUType1["NVIDIA_TESLA_T4"] = "NVIDIA_TESLA_T4";
|
|
298
|
-
GPUType1["NVIDIA_TESLA_P4"] = "NVIDIA_TESLA_P4";
|
|
299
295
|
GPUType1["NVIDIA_L4"] = "NVIDIA_L4";
|
|
300
296
|
})(GPUType1 || (exports.GPUType1 = GPUType1 = {}));
|
|
301
297
|
/**
|
|
@@ -427,8 +423,6 @@ var GPUType2;
|
|
|
427
423
|
GPUType2["NVIDIA_A100_80GB"] = "NVIDIA_A100_80GB";
|
|
428
424
|
GPUType2["NVIDIA_TESLA_A100"] = "NVIDIA_TESLA_A100";
|
|
429
425
|
GPUType2["NVIDIA_TESLA_V100"] = "NVIDIA_TESLA_V100";
|
|
430
|
-
GPUType2["NVIDIA_TESLA_P100"] = "NVIDIA_TESLA_P100";
|
|
431
426
|
GPUType2["NVIDIA_TESLA_T4"] = "NVIDIA_TESLA_T4";
|
|
432
|
-
GPUType2["NVIDIA_TESLA_P4"] = "NVIDIA_TESLA_P4";
|
|
433
427
|
GPUType2["NVIDIA_L4"] = "NVIDIA_L4";
|
|
434
428
|
})(GPUType2 || (exports.GPUType2 = GPUType2 = {}));
|