@neuracore/types 6.9.0 → 6.11.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.
@@ -192,6 +194,9 @@ export interface DataFormat {
192
194
  visual_joint_type?: VisualJointTypeConfig;
193
195
  joint_position_type?: JointPositionTypeConfig;
194
196
  ik_init_config?: number[] | null;
197
+ extrinsics_format?: PoseConfig1;
198
+ extrinsics_orientation?: OrientationConfig | null;
199
+ intrinsics_format?: IntrinsicsConfig;
195
200
  [k: string]: unknown;
196
201
  }
197
202
  /**
@@ -308,9 +313,26 @@ export interface RobotConfig {
308
313
  */
309
314
  export interface RGBCameraDataImportConfig {
310
315
  source?: string;
311
- mapping?: MappingItem[];
316
+ mapping?: RGBCameraDataMappingItem[];
312
317
  format?: DataFormat1;
313
318
  }
319
+ /**
320
+ * Mapping item for RGB camera streams, with optional calibration sources.
321
+ */
322
+ export interface RGBCameraDataMappingItem {
323
+ name: string;
324
+ source_name?: string | null;
325
+ index?: number | null;
326
+ index_range?: IndexRangeConfig | null;
327
+ offset?: number;
328
+ inverted?: boolean;
329
+ transforms?: DataTransformSequence;
330
+ extrinsics_source?: string | null;
331
+ intrinsics_source?: string | null;
332
+ extrinsics_transforms?: DataTransformSequence;
333
+ intrinsics_transforms?: DataTransformSequence;
334
+ [k: string]: unknown;
335
+ }
314
336
  /**
315
337
  * Per datatype format specifications.
316
338
  *
@@ -332,6 +354,9 @@ export interface DataFormat1 {
332
354
  visual_joint_type?: VisualJointTypeConfig;
333
355
  joint_position_type?: JointPositionTypeConfig;
334
356
  ik_init_config?: number[] | null;
357
+ extrinsics_format?: PoseConfig1;
358
+ extrinsics_orientation?: OrientationConfig | null;
359
+ intrinsics_format?: IntrinsicsConfig;
335
360
  [k: string]: unknown;
336
361
  }
337
362
  /**
@@ -339,9 +364,26 @@ export interface DataFormat1 {
339
364
  */
340
365
  export interface DepthCameraDataImportConfig {
341
366
  source?: string;
342
- mapping?: MappingItem[];
367
+ mapping?: DepthCameraDataMappingItem[];
343
368
  format?: DataFormat2;
344
369
  }
370
+ /**
371
+ * Mapping item for depth camera streams, with optional calibration sources.
372
+ */
373
+ export interface DepthCameraDataMappingItem {
374
+ name: string;
375
+ source_name?: string | null;
376
+ index?: number | null;
377
+ index_range?: IndexRangeConfig | null;
378
+ offset?: number;
379
+ inverted?: boolean;
380
+ transforms?: DataTransformSequence;
381
+ extrinsics_source?: string | null;
382
+ intrinsics_source?: string | null;
383
+ extrinsics_transforms?: DataTransformSequence;
384
+ intrinsics_transforms?: DataTransformSequence;
385
+ [k: string]: unknown;
386
+ }
345
387
  /**
346
388
  * Per datatype format specifications.
347
389
  *
@@ -363,6 +405,9 @@ export interface DataFormat2 {
363
405
  visual_joint_type?: VisualJointTypeConfig;
364
406
  joint_position_type?: JointPositionTypeConfig;
365
407
  ik_init_config?: number[] | null;
408
+ extrinsics_format?: PoseConfig1;
409
+ extrinsics_orientation?: OrientationConfig | null;
410
+ intrinsics_format?: IntrinsicsConfig;
366
411
  [k: string]: unknown;
367
412
  }
368
413
  /**
@@ -370,9 +415,26 @@ export interface DataFormat2 {
370
415
  */
371
416
  export interface PointCloudDataImportConfig {
372
417
  source?: string;
373
- mapping?: MappingItem[];
418
+ mapping?: PointCloudDataMappingItem[];
374
419
  format?: DataFormat3;
375
420
  }
421
+ /**
422
+ * Mapping item for point cloud streams, with optional calibration sources.
423
+ */
424
+ export interface PointCloudDataMappingItem {
425
+ name: string;
426
+ source_name?: string | null;
427
+ index?: number | null;
428
+ index_range?: IndexRangeConfig | null;
429
+ offset?: number;
430
+ inverted?: boolean;
431
+ transforms?: DataTransformSequence;
432
+ extrinsics_source?: string | null;
433
+ intrinsics_source?: string | null;
434
+ extrinsics_transforms?: DataTransformSequence;
435
+ intrinsics_transforms?: DataTransformSequence;
436
+ [k: string]: unknown;
437
+ }
376
438
  /**
377
439
  * Per datatype format specifications.
378
440
  *
@@ -394,6 +456,9 @@ export interface DataFormat3 {
394
456
  visual_joint_type?: VisualJointTypeConfig;
395
457
  joint_position_type?: JointPositionTypeConfig;
396
458
  ik_init_config?: number[] | null;
459
+ extrinsics_format?: PoseConfig1;
460
+ extrinsics_orientation?: OrientationConfig | null;
461
+ intrinsics_format?: IntrinsicsConfig;
397
462
  [k: string]: unknown;
398
463
  }
399
464
  /**
@@ -425,6 +490,9 @@ export interface DataFormat4 {
425
490
  visual_joint_type?: VisualJointTypeConfig;
426
491
  joint_position_type?: JointPositionTypeConfig;
427
492
  ik_init_config?: number[] | null;
493
+ extrinsics_format?: PoseConfig1;
494
+ extrinsics_orientation?: OrientationConfig | null;
495
+ intrinsics_format?: IntrinsicsConfig;
428
496
  [k: string]: unknown;
429
497
  }
430
498
  /**
@@ -456,6 +524,9 @@ export interface DataFormat5 {
456
524
  visual_joint_type?: VisualJointTypeConfig;
457
525
  joint_position_type?: JointPositionTypeConfig;
458
526
  ik_init_config?: number[] | null;
527
+ extrinsics_format?: PoseConfig1;
528
+ extrinsics_orientation?: OrientationConfig | null;
529
+ intrinsics_format?: IntrinsicsConfig;
459
530
  [k: string]: unknown;
460
531
  }
461
532
  /**
@@ -487,6 +558,9 @@ export interface DataFormat6 {
487
558
  visual_joint_type?: VisualJointTypeConfig;
488
559
  joint_position_type?: JointPositionTypeConfig;
489
560
  ik_init_config?: number[] | null;
561
+ extrinsics_format?: PoseConfig1;
562
+ extrinsics_orientation?: OrientationConfig | null;
563
+ intrinsics_format?: IntrinsicsConfig;
490
564
  [k: string]: unknown;
491
565
  }
492
566
  /**
@@ -518,6 +592,9 @@ export interface DataFormat7 {
518
592
  visual_joint_type?: VisualJointTypeConfig;
519
593
  joint_position_type?: JointPositionTypeConfig;
520
594
  ik_init_config?: number[] | null;
595
+ extrinsics_format?: PoseConfig1;
596
+ extrinsics_orientation?: OrientationConfig | null;
597
+ intrinsics_format?: IntrinsicsConfig;
521
598
  [k: string]: unknown;
522
599
  }
523
600
  /**
@@ -549,6 +626,9 @@ export interface DataFormat8 {
549
626
  visual_joint_type?: VisualJointTypeConfig;
550
627
  joint_position_type?: JointPositionTypeConfig;
551
628
  ik_init_config?: number[] | null;
629
+ extrinsics_format?: PoseConfig1;
630
+ extrinsics_orientation?: OrientationConfig | null;
631
+ intrinsics_format?: IntrinsicsConfig;
552
632
  [k: string]: unknown;
553
633
  }
554
634
  /**
@@ -580,6 +660,9 @@ export interface DataFormat9 {
580
660
  visual_joint_type?: VisualJointTypeConfig;
581
661
  joint_position_type?: JointPositionTypeConfig;
582
662
  ik_init_config?: number[] | null;
663
+ extrinsics_format?: PoseConfig1;
664
+ extrinsics_orientation?: OrientationConfig | null;
665
+ intrinsics_format?: IntrinsicsConfig;
583
666
  [k: string]: unknown;
584
667
  }
585
668
  /**
@@ -611,6 +694,9 @@ export interface DataFormat10 {
611
694
  visual_joint_type?: VisualJointTypeConfig;
612
695
  joint_position_type?: JointPositionTypeConfig;
613
696
  ik_init_config?: number[] | null;
697
+ extrinsics_format?: PoseConfig1;
698
+ extrinsics_orientation?: OrientationConfig | null;
699
+ intrinsics_format?: IntrinsicsConfig;
614
700
  [k: string]: unknown;
615
701
  }
616
702
  /**
@@ -976,6 +1062,9 @@ export interface DataFormat11 {
976
1062
  visual_joint_type?: VisualJointTypeConfig;
977
1063
  joint_position_type?: JointPositionTypeConfig;
978
1064
  ik_init_config?: number[] | null;
1065
+ extrinsics_format?: PoseConfig1;
1066
+ extrinsics_orientation?: OrientationConfig | null;
1067
+ intrinsics_format?: IntrinsicsConfig;
979
1068
  [k: string]: unknown;
980
1069
  }
981
1070
  /**
@@ -1559,6 +1648,23 @@ export declare enum JointPositionTypeConfig {
1559
1648
  END_EFFECTOR = "END_EFFECTOR",
1560
1649
  CUSTOM = "CUSTOM"
1561
1650
  }
1651
+ /**
1652
+ * Types of poses.
1653
+ */
1654
+ export declare enum PoseConfig1 {
1655
+ MATRIX = "MATRIX",
1656
+ POSITION_ORIENTATION = "POSITION_ORIENTATION"
1657
+ }
1658
+ /**
1659
+ * Format of camera intrinsics data in the source dataset.
1660
+ *
1661
+ * MATRIX: 3x3 camera intrinsics matrix.
1662
+ * FLAT: Flat array of [fx, fy, cx, cy].
1663
+ */
1664
+ export declare enum IntrinsicsConfig {
1665
+ MATRIX = "MATRIX",
1666
+ FLAT = "FLAT"
1667
+ }
1562
1668
  export declare enum Type2 {
1563
1669
  Custom1DDataStats = "Custom1DDataStats"
1564
1670
  }
@@ -1722,7 +1828,8 @@ export declare enum TrainingJobStatus {
1722
1828
  RUNNING = "RUNNING",
1723
1829
  COMPLETED = "COMPLETED",
1724
1830
  FAILED = "FAILED",
1725
- CANCELLED = "CANCELLED"
1831
+ CANCELLED = "CANCELLED",
1832
+ CANCELLING = "CANCELLING"
1726
1833
  }
1727
1834
  /**
1728
1835
  * GPU types available for training and deployment.
@@ -6,7 +6,7 @@
6
6
  /* Do not modify it by hand - just update the pydantic models and then re-run the script
7
7
  */
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
- exports.GPUType2 = exports.TrainingJobStatus = exports.RecordingNotificationType = exports.RecordingDataTraceStatus = exports.Type16 = exports.Type15 = exports.Type14 = exports.RecordingUploadMethod = exports.PendingRecordingStatus = exports.RecordingStatus = exports.Type13 = exports.VideoFormat = exports.Type12 = exports.Type11 = exports.Type10 = exports.Type9 = exports.Type8 = exports.Type7 = exports.Type6 = exports.MessageType = exports.GPUType1 = exports.EndpointStatus = exports.Type5 = exports.Type4 = exports.Type3 = exports.GPUType = exports.DatasetTypeConfig = exports.Type2 = exports.JointPositionTypeConfig = exports.VisualJointTypeConfig = exports.LanguageConfig = exports.AngleConfig1 = exports.EulerOrderConfig = exports.QuaternionOrderConfig = exports.RotationConfig = exports.PoseConfig = exports.DistanceUnitsConfig = exports.TorqueUnitsConfig = exports.AngleConfig = exports.ImageChannelOrderConfig = exports.ImageConventionConfig = exports.Type1 = exports.Type = exports.DataType = void 0;
9
+ exports.GPUType2 = exports.TrainingJobStatus = exports.RecordingNotificationType = exports.RecordingDataTraceStatus = exports.Type16 = exports.Type15 = exports.Type14 = exports.RecordingUploadMethod = exports.PendingRecordingStatus = exports.RecordingStatus = exports.Type13 = exports.VideoFormat = exports.Type12 = exports.Type11 = exports.Type10 = exports.Type9 = exports.Type8 = exports.Type7 = exports.Type6 = exports.MessageType = exports.GPUType1 = exports.EndpointStatus = exports.Type5 = exports.Type4 = exports.Type3 = exports.GPUType = exports.DatasetTypeConfig = exports.Type2 = exports.IntrinsicsConfig = exports.PoseConfig1 = exports.JointPositionTypeConfig = exports.VisualJointTypeConfig = exports.LanguageConfig = exports.AngleConfig1 = exports.EulerOrderConfig = exports.QuaternionOrderConfig = exports.RotationConfig = exports.PoseConfig = exports.DistanceUnitsConfig = exports.TorqueUnitsConfig = exports.AngleConfig = exports.ImageChannelOrderConfig = exports.ImageConventionConfig = exports.Type1 = exports.Type = exports.DataType = void 0;
10
10
  /**
11
11
  * Enumeration of supported data types in the Neuracore system.
12
12
  *
@@ -148,6 +148,25 @@ var JointPositionTypeConfig;
148
148
  JointPositionTypeConfig["END_EFFECTOR"] = "END_EFFECTOR";
149
149
  JointPositionTypeConfig["CUSTOM"] = "CUSTOM";
150
150
  })(JointPositionTypeConfig || (exports.JointPositionTypeConfig = JointPositionTypeConfig = {}));
151
+ /**
152
+ * Types of poses.
153
+ */
154
+ var PoseConfig1;
155
+ (function (PoseConfig1) {
156
+ PoseConfig1["MATRIX"] = "MATRIX";
157
+ PoseConfig1["POSITION_ORIENTATION"] = "POSITION_ORIENTATION";
158
+ })(PoseConfig1 || (exports.PoseConfig1 = PoseConfig1 = {}));
159
+ /**
160
+ * Format of camera intrinsics data in the source dataset.
161
+ *
162
+ * MATRIX: 3x3 camera intrinsics matrix.
163
+ * FLAT: Flat array of [fx, fy, cx, cy].
164
+ */
165
+ var IntrinsicsConfig;
166
+ (function (IntrinsicsConfig) {
167
+ IntrinsicsConfig["MATRIX"] = "MATRIX";
168
+ IntrinsicsConfig["FLAT"] = "FLAT";
169
+ })(IntrinsicsConfig || (exports.IntrinsicsConfig = IntrinsicsConfig = {}));
151
170
  var Type2;
152
171
  (function (Type2) {
153
172
  Type2["Custom1DDataStats"] = "Custom1DDataStats";
@@ -339,6 +358,7 @@ var TrainingJobStatus;
339
358
  TrainingJobStatus["COMPLETED"] = "COMPLETED";
340
359
  TrainingJobStatus["FAILED"] = "FAILED";
341
360
  TrainingJobStatus["CANCELLED"] = "CANCELLED";
361
+ TrainingJobStatus["CANCELLING"] = "CANCELLING";
342
362
  })(TrainingJobStatus || (exports.TrainingJobStatus = TrainingJobStatus = {}));
343
363
  /**
344
364
  * 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.11.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",