@neuracore/types 7.5.0 → 9.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 +32 -8
- 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
|
*
|
|
@@ -1303,12 +1335,10 @@ export interface PendingRecording {
|
|
|
1303
1335
|
* Metadata details for a recording.
|
|
1304
1336
|
*
|
|
1305
1337
|
* Attributes:
|
|
1306
|
-
* name: Name of the recording.
|
|
1307
1338
|
* notes: Optional notes about the recording.
|
|
1308
1339
|
* status: Current RecordingStatus of the recording
|
|
1309
1340
|
*/
|
|
1310
1341
|
export interface RecordingMetadata {
|
|
1311
|
-
name: string;
|
|
1312
1342
|
notes: string;
|
|
1313
1343
|
status: RecordingStatus;
|
|
1314
1344
|
}
|
|
@@ -1948,9 +1978,7 @@ export declare enum GPUType {
|
|
|
1948
1978
|
NVIDIA_A100_80GB = "NVIDIA_A100_80GB",
|
|
1949
1979
|
NVIDIA_TESLA_A100 = "NVIDIA_TESLA_A100",
|
|
1950
1980
|
NVIDIA_TESLA_V100 = "NVIDIA_TESLA_V100",
|
|
1951
|
-
NVIDIA_TESLA_P100 = "NVIDIA_TESLA_P100",
|
|
1952
1981
|
NVIDIA_TESLA_T4 = "NVIDIA_TESLA_T4",
|
|
1953
|
-
NVIDIA_TESLA_P4 = "NVIDIA_TESLA_P4",
|
|
1954
1982
|
NVIDIA_L4 = "NVIDIA_L4"
|
|
1955
1983
|
}
|
|
1956
1984
|
export declare enum Type3 {
|
|
@@ -1979,9 +2007,7 @@ export declare enum GPUType1 {
|
|
|
1979
2007
|
NVIDIA_A100_80GB = "NVIDIA_A100_80GB",
|
|
1980
2008
|
NVIDIA_TESLA_A100 = "NVIDIA_TESLA_A100",
|
|
1981
2009
|
NVIDIA_TESLA_V100 = "NVIDIA_TESLA_V100",
|
|
1982
|
-
NVIDIA_TESLA_P100 = "NVIDIA_TESLA_P100",
|
|
1983
2010
|
NVIDIA_TESLA_T4 = "NVIDIA_TESLA_T4",
|
|
1984
|
-
NVIDIA_TESLA_P4 = "NVIDIA_TESLA_P4",
|
|
1985
2011
|
NVIDIA_L4 = "NVIDIA_L4"
|
|
1986
2012
|
}
|
|
1987
2013
|
/**
|
|
@@ -2094,8 +2120,6 @@ export declare enum GPUType2 {
|
|
|
2094
2120
|
NVIDIA_A100_80GB = "NVIDIA_A100_80GB",
|
|
2095
2121
|
NVIDIA_TESLA_A100 = "NVIDIA_TESLA_A100",
|
|
2096
2122
|
NVIDIA_TESLA_V100 = "NVIDIA_TESLA_V100",
|
|
2097
|
-
NVIDIA_TESLA_P100 = "NVIDIA_TESLA_P100",
|
|
2098
2123
|
NVIDIA_TESLA_T4 = "NVIDIA_TESLA_T4",
|
|
2099
|
-
NVIDIA_TESLA_P4 = "NVIDIA_TESLA_P4",
|
|
2100
2124
|
NVIDIA_L4 = "NVIDIA_L4"
|
|
2101
2125
|
}
|
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 = {}));
|