@neuracore/types 6.5.0 → 6.6.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.
@@ -613,6 +613,19 @@ export interface DataFormat10 {
613
613
  ik_init_config?: number[] | null;
614
614
  [k: string]: unknown;
615
615
  }
616
+ /**
617
+ * Request model for dataset updates.
618
+ *
619
+ * Attributes:
620
+ * name: Optional new name for the dataset.
621
+ * description: Optional new description.
622
+ * tags: Optional new list of tags.
623
+ */
624
+ export interface DatasetUpdateRequest {
625
+ name?: string | null;
626
+ description?: string | null;
627
+ tags?: string[] | null;
628
+ }
616
629
  /**
617
630
  * Configuration for model deployment.
618
631
  *
@@ -1503,7 +1516,7 @@ export declare enum VisualJointTypeConfig {
1503
1516
  * Types of joint positions.
1504
1517
  */
1505
1518
  export declare enum JointPositionTypeConfig {
1506
- TCP = "TCP",
1519
+ END_EFFECTOR = "END_EFFECTOR",
1507
1520
  CUSTOM = "CUSTOM"
1508
1521
  }
1509
1522
  export declare enum Type2 {
@@ -145,7 +145,7 @@ var VisualJointTypeConfig;
145
145
  */
146
146
  var JointPositionTypeConfig;
147
147
  (function (JointPositionTypeConfig) {
148
- JointPositionTypeConfig["TCP"] = "TCP";
148
+ JointPositionTypeConfig["END_EFFECTOR"] = "END_EFFECTOR";
149
149
  JointPositionTypeConfig["CUSTOM"] = "CUSTOM";
150
150
  })(JointPositionTypeConfig || (exports.JointPositionTypeConfig = JointPositionTypeConfig = {}));
151
151
  var Type2;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "6.5.0",
3
+ "version": "6.6.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",