@neuracore/types 6.5.1 → 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
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "6.5.1",
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",