@neuracore/types 6.9.0 → 6.10.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.
@@ -117,6 +117,8 @@ export interface DataItemStats {
117
117
  count: unknown[] | null;
118
118
  min: unknown[] | null;
119
119
  max: unknown[] | null;
120
+ q01: unknown[] | null;
121
+ q99: unknown[] | null;
120
122
  }
121
123
  /**
122
124
  * Custom 1D numerical data for specialized applications.
@@ -1722,7 +1724,8 @@ export declare enum TrainingJobStatus {
1722
1724
  RUNNING = "RUNNING",
1723
1725
  COMPLETED = "COMPLETED",
1724
1726
  FAILED = "FAILED",
1725
- CANCELLED = "CANCELLED"
1727
+ CANCELLED = "CANCELLED",
1728
+ CANCELLING = "CANCELLING"
1726
1729
  }
1727
1730
  /**
1728
1731
  * GPU types available for training and deployment.
@@ -339,6 +339,7 @@ var TrainingJobStatus;
339
339
  TrainingJobStatus["COMPLETED"] = "COMPLETED";
340
340
  TrainingJobStatus["FAILED"] = "FAILED";
341
341
  TrainingJobStatus["CANCELLED"] = "CANCELLED";
342
+ TrainingJobStatus["CANCELLING"] = "CANCELLING";
342
343
  })(TrainingJobStatus || (exports.TrainingJobStatus = TrainingJobStatus = {}));
343
344
  /**
344
345
  * GPU types available for training and deployment.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "6.9.0",
3
+ "version": "6.10.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",