@neuracore/types 11.0.0 → 11.1.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.
@@ -1153,6 +1153,10 @@ export interface InternalStartTrainingJobRequest {
1153
1153
  * allow_duplicates: Whether to allow duplicate data points in the synchronization.
1154
1154
  * trim_start_end: Whether to trim the start and end of the episode
1155
1155
  * when synchronizing.
1156
+ * trim_no_movement_at_start_threshold: If set, drop synchronized frames at
1157
+ * the start of the episode while every joint position stays within
1158
+ * this threshold of its value in the first frame. None disables the
1159
+ * trimming. Only applies when joint positions are synchronized.
1156
1160
  */
1157
1161
  export interface SynchronizationDetails {
1158
1162
  frequency: number;
@@ -1164,6 +1168,7 @@ export interface SynchronizationDetails {
1164
1168
  max_delay_s: number;
1165
1169
  allow_duplicates: boolean;
1166
1170
  trim_start_end: boolean;
1171
+ trim_no_movement_at_start_threshold: number | null;
1167
1172
  }
1168
1173
  /**
1169
1174
  * Robot joint state data including positions, velocities, or torques.
@@ -1641,6 +1646,9 @@ export interface SynchronizeRecordingRequest {
1641
1646
  * allow_duplicates: Whether duplicate data points are allowed.
1642
1647
  * trim_start_end: Whether to trim the start and end of the episode
1643
1648
  * when synchronizing.
1649
+ * trim_no_movement_at_start_threshold: Threshold below which leading
1650
+ * frames without joint movement were dropped, or None if the
1651
+ * dataset was synchronized without that trimming.
1644
1652
  */
1645
1653
  export interface SynchronizedDataset {
1646
1654
  id: string;
@@ -1665,6 +1673,7 @@ export interface SynchronizedDataset {
1665
1673
  max_delay_s: number;
1666
1674
  allow_duplicates: boolean;
1667
1675
  trim_start_end?: boolean;
1676
+ trim_no_movement_at_start_threshold?: number | null;
1668
1677
  }
1669
1678
  /**
1670
1679
  * Statistics for a synchronized dataset.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "11.0.0",
3
+ "version": "11.1.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",