@neuracore/types 1.0.1 → 1.2.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.
@@ -142,6 +142,8 @@ export interface CustomData {
142
142
  * mean: List of means for each data dimension
143
143
  * std: List of standard deviations for each data dimension
144
144
  * count: List of counts for each data dimension
145
+ * min: List of minimum values for each data dimension
146
+ * max: List of maximum values for each data dimension
145
147
  * max_len: Maximum length of the data arrays
146
148
  * robot_to_ncdata_keys: Mapping of robot ids to their associated
147
149
  * data keys for this data type
@@ -150,6 +152,8 @@ export interface DataItemStats {
150
152
  mean?: number[];
151
153
  std?: number[];
152
154
  count?: number[];
155
+ min?: number[];
156
+ max?: number[];
153
157
  max_len?: number;
154
158
  robot_to_ncdata_keys?: {
155
159
  [k: string]: string[];
@@ -213,6 +217,7 @@ export interface Dataset {
213
217
  * for determining which data types are present.
214
218
  */
215
219
  export interface DatasetDescription {
220
+ total_num_transitions?: number;
216
221
  joint_positions?: DataItemStats;
217
222
  joint_velocities?: DataItemStats;
218
223
  joint_torques?: DataItemStats;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "1.0.1",
3
+ "version": "1.2.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",