@neuracore/types 8.0.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.
@@ -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
  *
@@ -1946,9 +1978,7 @@ export declare enum GPUType {
1946
1978
  NVIDIA_A100_80GB = "NVIDIA_A100_80GB",
1947
1979
  NVIDIA_TESLA_A100 = "NVIDIA_TESLA_A100",
1948
1980
  NVIDIA_TESLA_V100 = "NVIDIA_TESLA_V100",
1949
- NVIDIA_TESLA_P100 = "NVIDIA_TESLA_P100",
1950
1981
  NVIDIA_TESLA_T4 = "NVIDIA_TESLA_T4",
1951
- NVIDIA_TESLA_P4 = "NVIDIA_TESLA_P4",
1952
1982
  NVIDIA_L4 = "NVIDIA_L4"
1953
1983
  }
1954
1984
  export declare enum Type3 {
@@ -1977,9 +2007,7 @@ export declare enum GPUType1 {
1977
2007
  NVIDIA_A100_80GB = "NVIDIA_A100_80GB",
1978
2008
  NVIDIA_TESLA_A100 = "NVIDIA_TESLA_A100",
1979
2009
  NVIDIA_TESLA_V100 = "NVIDIA_TESLA_V100",
1980
- NVIDIA_TESLA_P100 = "NVIDIA_TESLA_P100",
1981
2010
  NVIDIA_TESLA_T4 = "NVIDIA_TESLA_T4",
1982
- NVIDIA_TESLA_P4 = "NVIDIA_TESLA_P4",
1983
2011
  NVIDIA_L4 = "NVIDIA_L4"
1984
2012
  }
1985
2013
  /**
@@ -2092,8 +2120,6 @@ export declare enum GPUType2 {
2092
2120
  NVIDIA_A100_80GB = "NVIDIA_A100_80GB",
2093
2121
  NVIDIA_TESLA_A100 = "NVIDIA_TESLA_A100",
2094
2122
  NVIDIA_TESLA_V100 = "NVIDIA_TESLA_V100",
2095
- NVIDIA_TESLA_P100 = "NVIDIA_TESLA_P100",
2096
2123
  NVIDIA_TESLA_T4 = "NVIDIA_TESLA_T4",
2097
- NVIDIA_TESLA_P4 = "NVIDIA_TESLA_P4",
2098
2124
  NVIDIA_L4 = "NVIDIA_L4"
2099
2125
  }
@@ -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 = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "8.0.0",
3
+ "version": "9.0.0",
4
4
  "description": "Shared TypeScript type definitions for Neuracore robotics platform",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",