@neuracore/types 7.2.0 → 7.4.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.
@@ -971,6 +971,7 @@ export interface InternalStartTrainingJobRequest {
971
971
  };
972
972
  gpu_type: GPUType;
973
973
  num_gpus: number;
974
+ disk_size_gb?: number;
974
975
  synchronization_details: SynchronizationDetails;
975
976
  input_cross_embodiment_description: {
976
977
  [k: string]: {
@@ -1584,6 +1585,7 @@ export interface TrainingJob {
1584
1585
  };
1585
1586
  gpu_type: GPUType2;
1586
1587
  num_gpus: number;
1588
+ disk_size_gb: number;
1587
1589
  resumed_at?: number | null;
1588
1590
  previous_training_time?: number | null;
1589
1591
  error?: string | null;
@@ -1629,6 +1631,7 @@ export interface TrainingJobRequest {
1629
1631
  };
1630
1632
  gpu_type: GPUType;
1631
1633
  num_gpus: number;
1634
+ disk_size_gb?: number;
1632
1635
  synchronization_details: SynchronizationDetails;
1633
1636
  input_cross_embodiment_description: {
1634
1637
  [k: string]: {
@@ -1838,6 +1841,7 @@ export declare enum Type2 {
1838
1841
  * Enumeration of supported dataset types.
1839
1842
  */
1840
1843
  export declare enum DatasetTypeConfig {
1844
+ MCAP = "MCAP",
1841
1845
  RLDS = "RLDS",
1842
1846
  LEROBOT = "LEROBOT",
1843
1847
  TFDS = "TFDS"
@@ -224,6 +224,7 @@ var Type2;
224
224
  */
225
225
  var DatasetTypeConfig;
226
226
  (function (DatasetTypeConfig) {
227
+ DatasetTypeConfig["MCAP"] = "MCAP";
227
228
  DatasetTypeConfig["RLDS"] = "RLDS";
228
229
  DatasetTypeConfig["LEROBOT"] = "LEROBOT";
229
230
  DatasetTypeConfig["TFDS"] = "TFDS";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "7.2.0",
3
+ "version": "7.4.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",