@neuracore/types 6.12.0 → 6.13.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.
- package/dist/neuracore_types.d.ts +27 -23
- package/dist/neuracore_types.js +1 -11
- package/package.json +1 -1
|
@@ -188,6 +188,8 @@ export interface DataFormat {
|
|
|
188
188
|
distance_units?: DistanceUnitsConfig;
|
|
189
189
|
pose_type?: PoseConfig;
|
|
190
190
|
orientation?: OrientationConfig | null;
|
|
191
|
+
scale_position?: number;
|
|
192
|
+
scale_orientation?: number;
|
|
191
193
|
ee_pose_input_type?: EndEffectorPoseInputTypeConfig;
|
|
192
194
|
language_type?: LanguageConfig;
|
|
193
195
|
normalize?: NormalizeConfig | null;
|
|
@@ -200,7 +202,6 @@ export interface DataFormat {
|
|
|
200
202
|
extrinsics_format?: PoseConfig1;
|
|
201
203
|
extrinsics_orientation?: OrientationConfig | null;
|
|
202
204
|
intrinsics_format?: IntrinsicsConfig;
|
|
203
|
-
[k: string]: unknown;
|
|
204
205
|
}
|
|
205
206
|
/**
|
|
206
207
|
* Configuration for orientation of poses.
|
|
@@ -210,6 +211,9 @@ export interface OrientationConfig {
|
|
|
210
211
|
quaternion_order?: QuaternionOrderConfig;
|
|
211
212
|
euler_order?: EulerOrderConfig;
|
|
212
213
|
angle_units?: AngleConfig1;
|
|
214
|
+
align_frame_roll?: number;
|
|
215
|
+
align_frame_pitch?: number;
|
|
216
|
+
align_frame_yaw?: number;
|
|
213
217
|
[k: string]: unknown;
|
|
214
218
|
}
|
|
215
219
|
/**
|
|
@@ -351,6 +355,8 @@ export interface DataFormat1 {
|
|
|
351
355
|
distance_units?: DistanceUnitsConfig;
|
|
352
356
|
pose_type?: PoseConfig;
|
|
353
357
|
orientation?: OrientationConfig | null;
|
|
358
|
+
scale_position?: number;
|
|
359
|
+
scale_orientation?: number;
|
|
354
360
|
ee_pose_input_type?: EndEffectorPoseInputTypeConfig;
|
|
355
361
|
language_type?: LanguageConfig;
|
|
356
362
|
normalize?: NormalizeConfig | null;
|
|
@@ -363,7 +369,6 @@ export interface DataFormat1 {
|
|
|
363
369
|
extrinsics_format?: PoseConfig1;
|
|
364
370
|
extrinsics_orientation?: OrientationConfig | null;
|
|
365
371
|
intrinsics_format?: IntrinsicsConfig;
|
|
366
|
-
[k: string]: unknown;
|
|
367
372
|
}
|
|
368
373
|
/**
|
|
369
374
|
* Import configuration for DepthCameraData.
|
|
@@ -405,6 +410,8 @@ export interface DataFormat2 {
|
|
|
405
410
|
distance_units?: DistanceUnitsConfig;
|
|
406
411
|
pose_type?: PoseConfig;
|
|
407
412
|
orientation?: OrientationConfig | null;
|
|
413
|
+
scale_position?: number;
|
|
414
|
+
scale_orientation?: number;
|
|
408
415
|
ee_pose_input_type?: EndEffectorPoseInputTypeConfig;
|
|
409
416
|
language_type?: LanguageConfig;
|
|
410
417
|
normalize?: NormalizeConfig | null;
|
|
@@ -417,7 +424,6 @@ export interface DataFormat2 {
|
|
|
417
424
|
extrinsics_format?: PoseConfig1;
|
|
418
425
|
extrinsics_orientation?: OrientationConfig | null;
|
|
419
426
|
intrinsics_format?: IntrinsicsConfig;
|
|
420
|
-
[k: string]: unknown;
|
|
421
427
|
}
|
|
422
428
|
/**
|
|
423
429
|
* Import configuration for PointCloudData.
|
|
@@ -459,6 +465,8 @@ export interface DataFormat3 {
|
|
|
459
465
|
distance_units?: DistanceUnitsConfig;
|
|
460
466
|
pose_type?: PoseConfig;
|
|
461
467
|
orientation?: OrientationConfig | null;
|
|
468
|
+
scale_position?: number;
|
|
469
|
+
scale_orientation?: number;
|
|
462
470
|
ee_pose_input_type?: EndEffectorPoseInputTypeConfig;
|
|
463
471
|
language_type?: LanguageConfig;
|
|
464
472
|
normalize?: NormalizeConfig | null;
|
|
@@ -471,7 +479,6 @@ export interface DataFormat3 {
|
|
|
471
479
|
extrinsics_format?: PoseConfig1;
|
|
472
480
|
extrinsics_orientation?: OrientationConfig | null;
|
|
473
481
|
intrinsics_format?: IntrinsicsConfig;
|
|
474
|
-
[k: string]: unknown;
|
|
475
482
|
}
|
|
476
483
|
/**
|
|
477
484
|
* Import configuration for JointPositionsData.
|
|
@@ -496,6 +503,8 @@ export interface DataFormat4 {
|
|
|
496
503
|
distance_units?: DistanceUnitsConfig;
|
|
497
504
|
pose_type?: PoseConfig;
|
|
498
505
|
orientation?: OrientationConfig | null;
|
|
506
|
+
scale_position?: number;
|
|
507
|
+
scale_orientation?: number;
|
|
499
508
|
ee_pose_input_type?: EndEffectorPoseInputTypeConfig;
|
|
500
509
|
language_type?: LanguageConfig;
|
|
501
510
|
normalize?: NormalizeConfig | null;
|
|
@@ -508,7 +517,6 @@ export interface DataFormat4 {
|
|
|
508
517
|
extrinsics_format?: PoseConfig1;
|
|
509
518
|
extrinsics_orientation?: OrientationConfig | null;
|
|
510
519
|
intrinsics_format?: IntrinsicsConfig;
|
|
511
|
-
[k: string]: unknown;
|
|
512
520
|
}
|
|
513
521
|
/**
|
|
514
522
|
* Import configuration for JointVelocitiesData.
|
|
@@ -533,6 +541,8 @@ export interface DataFormat5 {
|
|
|
533
541
|
distance_units?: DistanceUnitsConfig;
|
|
534
542
|
pose_type?: PoseConfig;
|
|
535
543
|
orientation?: OrientationConfig | null;
|
|
544
|
+
scale_position?: number;
|
|
545
|
+
scale_orientation?: number;
|
|
536
546
|
ee_pose_input_type?: EndEffectorPoseInputTypeConfig;
|
|
537
547
|
language_type?: LanguageConfig;
|
|
538
548
|
normalize?: NormalizeConfig | null;
|
|
@@ -545,7 +555,6 @@ export interface DataFormat5 {
|
|
|
545
555
|
extrinsics_format?: PoseConfig1;
|
|
546
556
|
extrinsics_orientation?: OrientationConfig | null;
|
|
547
557
|
intrinsics_format?: IntrinsicsConfig;
|
|
548
|
-
[k: string]: unknown;
|
|
549
558
|
}
|
|
550
559
|
/**
|
|
551
560
|
* Import configuration for JointTorquesData.
|
|
@@ -570,6 +579,8 @@ export interface DataFormat6 {
|
|
|
570
579
|
distance_units?: DistanceUnitsConfig;
|
|
571
580
|
pose_type?: PoseConfig;
|
|
572
581
|
orientation?: OrientationConfig | null;
|
|
582
|
+
scale_position?: number;
|
|
583
|
+
scale_orientation?: number;
|
|
573
584
|
ee_pose_input_type?: EndEffectorPoseInputTypeConfig;
|
|
574
585
|
language_type?: LanguageConfig;
|
|
575
586
|
normalize?: NormalizeConfig | null;
|
|
@@ -582,7 +593,6 @@ export interface DataFormat6 {
|
|
|
582
593
|
extrinsics_format?: PoseConfig1;
|
|
583
594
|
extrinsics_orientation?: OrientationConfig | null;
|
|
584
595
|
intrinsics_format?: IntrinsicsConfig;
|
|
585
|
-
[k: string]: unknown;
|
|
586
596
|
}
|
|
587
597
|
/**
|
|
588
598
|
* Import configuration for VisualJointPositionsData.
|
|
@@ -607,6 +617,8 @@ export interface DataFormat7 {
|
|
|
607
617
|
distance_units?: DistanceUnitsConfig;
|
|
608
618
|
pose_type?: PoseConfig;
|
|
609
619
|
orientation?: OrientationConfig | null;
|
|
620
|
+
scale_position?: number;
|
|
621
|
+
scale_orientation?: number;
|
|
610
622
|
ee_pose_input_type?: EndEffectorPoseInputTypeConfig;
|
|
611
623
|
language_type?: LanguageConfig;
|
|
612
624
|
normalize?: NormalizeConfig | null;
|
|
@@ -619,7 +631,6 @@ export interface DataFormat7 {
|
|
|
619
631
|
extrinsics_format?: PoseConfig1;
|
|
620
632
|
extrinsics_orientation?: OrientationConfig | null;
|
|
621
633
|
intrinsics_format?: IntrinsicsConfig;
|
|
622
|
-
[k: string]: unknown;
|
|
623
634
|
}
|
|
624
635
|
/**
|
|
625
636
|
* Import configuration for PoseData.
|
|
@@ -644,6 +655,8 @@ export interface DataFormat8 {
|
|
|
644
655
|
distance_units?: DistanceUnitsConfig;
|
|
645
656
|
pose_type?: PoseConfig;
|
|
646
657
|
orientation?: OrientationConfig | null;
|
|
658
|
+
scale_position?: number;
|
|
659
|
+
scale_orientation?: number;
|
|
647
660
|
ee_pose_input_type?: EndEffectorPoseInputTypeConfig;
|
|
648
661
|
language_type?: LanguageConfig;
|
|
649
662
|
normalize?: NormalizeConfig | null;
|
|
@@ -656,7 +669,6 @@ export interface DataFormat8 {
|
|
|
656
669
|
extrinsics_format?: PoseConfig1;
|
|
657
670
|
extrinsics_orientation?: OrientationConfig | null;
|
|
658
671
|
intrinsics_format?: IntrinsicsConfig;
|
|
659
|
-
[k: string]: unknown;
|
|
660
672
|
}
|
|
661
673
|
/**
|
|
662
674
|
* Import configuration for ParallelGripperOpenAmountData.
|
|
@@ -681,6 +693,8 @@ export interface DataFormat9 {
|
|
|
681
693
|
distance_units?: DistanceUnitsConfig;
|
|
682
694
|
pose_type?: PoseConfig;
|
|
683
695
|
orientation?: OrientationConfig | null;
|
|
696
|
+
scale_position?: number;
|
|
697
|
+
scale_orientation?: number;
|
|
684
698
|
ee_pose_input_type?: EndEffectorPoseInputTypeConfig;
|
|
685
699
|
language_type?: LanguageConfig;
|
|
686
700
|
normalize?: NormalizeConfig | null;
|
|
@@ -693,7 +707,6 @@ export interface DataFormat9 {
|
|
|
693
707
|
extrinsics_format?: PoseConfig1;
|
|
694
708
|
extrinsics_orientation?: OrientationConfig | null;
|
|
695
709
|
intrinsics_format?: IntrinsicsConfig;
|
|
696
|
-
[k: string]: unknown;
|
|
697
710
|
}
|
|
698
711
|
/**
|
|
699
712
|
* Import configuration for LanguageData.
|
|
@@ -718,6 +731,8 @@ export interface DataFormat10 {
|
|
|
718
731
|
distance_units?: DistanceUnitsConfig;
|
|
719
732
|
pose_type?: PoseConfig;
|
|
720
733
|
orientation?: OrientationConfig | null;
|
|
734
|
+
scale_position?: number;
|
|
735
|
+
scale_orientation?: number;
|
|
721
736
|
ee_pose_input_type?: EndEffectorPoseInputTypeConfig;
|
|
722
737
|
language_type?: LanguageConfig;
|
|
723
738
|
normalize?: NormalizeConfig | null;
|
|
@@ -730,7 +745,6 @@ export interface DataFormat10 {
|
|
|
730
745
|
extrinsics_format?: PoseConfig1;
|
|
731
746
|
extrinsics_orientation?: OrientationConfig | null;
|
|
732
747
|
intrinsics_format?: IntrinsicsConfig;
|
|
733
|
-
[k: string]: unknown;
|
|
734
748
|
}
|
|
735
749
|
/**
|
|
736
750
|
* Request model for dataset updates.
|
|
@@ -1089,6 +1103,8 @@ export interface DataFormat11 {
|
|
|
1089
1103
|
distance_units?: DistanceUnitsConfig;
|
|
1090
1104
|
pose_type?: PoseConfig;
|
|
1091
1105
|
orientation?: OrientationConfig | null;
|
|
1106
|
+
scale_position?: number;
|
|
1107
|
+
scale_orientation?: number;
|
|
1092
1108
|
ee_pose_input_type?: EndEffectorPoseInputTypeConfig;
|
|
1093
1109
|
language_type?: LanguageConfig;
|
|
1094
1110
|
normalize?: NormalizeConfig | null;
|
|
@@ -1101,7 +1117,6 @@ export interface DataFormat11 {
|
|
|
1101
1117
|
extrinsics_format?: PoseConfig1;
|
|
1102
1118
|
extrinsics_orientation?: OrientationConfig | null;
|
|
1103
1119
|
intrinsics_format?: IntrinsicsConfig;
|
|
1104
|
-
[k: string]: unknown;
|
|
1105
1120
|
}
|
|
1106
1121
|
/**
|
|
1107
1122
|
* Base class for statistics of Neuracore data types.
|
|
@@ -1163,7 +1178,6 @@ export interface ParallelGripperOpenAmountData {
|
|
|
1163
1178
|
* progress: Upload progress percentage (0-100)
|
|
1164
1179
|
* expected_trace_count: Number of traces expected (set by register_traces API)
|
|
1165
1180
|
* total_bytes: Total bytes expected across all traces (for progress bar)
|
|
1166
|
-
* upload_method: Method used to upload recording data (streaming or daemon)
|
|
1167
1181
|
*/
|
|
1168
1182
|
export interface PendingRecording {
|
|
1169
1183
|
id: string;
|
|
@@ -1181,7 +1195,6 @@ export interface PendingRecording {
|
|
|
1181
1195
|
status: PendingRecordingStatus;
|
|
1182
1196
|
progress: number;
|
|
1183
1197
|
expected_trace_count: number;
|
|
1184
|
-
upload_method: RecordingUploadMethod;
|
|
1185
1198
|
}
|
|
1186
1199
|
/**
|
|
1187
1200
|
* Metadata details for a recording.
|
|
@@ -1854,15 +1867,6 @@ export declare enum PendingRecordingStatus {
|
|
|
1854
1867
|
UPLOADING = "UPLOADING",
|
|
1855
1868
|
UPLOADED = "UPLOADED"
|
|
1856
1869
|
}
|
|
1857
|
-
/**
|
|
1858
|
-
* Method used to upload recording data.
|
|
1859
|
-
*
|
|
1860
|
-
* Indicates how the recording data is being uploaded to the backend.
|
|
1861
|
-
*/
|
|
1862
|
-
export declare enum RecordingUploadMethod {
|
|
1863
|
-
streaming = "streaming",
|
|
1864
|
-
data_daemon = "data_daemon"
|
|
1865
|
-
}
|
|
1866
1870
|
export declare enum Type14 {
|
|
1867
1871
|
PointCloudData = "PointCloudData"
|
|
1868
1872
|
}
|
package/dist/neuracore_types.js
CHANGED
|
@@ -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.
|
|
9
|
+
exports.GPUType2 = exports.TrainingJobStatus = exports.RecordingNotificationType = exports.RecordingDataTraceStatus = exports.Type16 = exports.Type15 = exports.Type14 = 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.ActionSpaceConfig = exports.ActionTypeConfig = exports.JointPositionInputTypeConfig = exports.VisualJointInputTypeConfig = exports.LanguageConfig = exports.EndEffectorPoseInputTypeConfig = 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
|
*
|
|
@@ -343,16 +343,6 @@ var PendingRecordingStatus;
|
|
|
343
343
|
PendingRecordingStatus["UPLOADING"] = "UPLOADING";
|
|
344
344
|
PendingRecordingStatus["UPLOADED"] = "UPLOADED";
|
|
345
345
|
})(PendingRecordingStatus || (exports.PendingRecordingStatus = PendingRecordingStatus = {}));
|
|
346
|
-
/**
|
|
347
|
-
* Method used to upload recording data.
|
|
348
|
-
*
|
|
349
|
-
* Indicates how the recording data is being uploaded to the backend.
|
|
350
|
-
*/
|
|
351
|
-
var RecordingUploadMethod;
|
|
352
|
-
(function (RecordingUploadMethod) {
|
|
353
|
-
RecordingUploadMethod["streaming"] = "streaming";
|
|
354
|
-
RecordingUploadMethod["data_daemon"] = "data_daemon";
|
|
355
|
-
})(RecordingUploadMethod || (exports.RecordingUploadMethod = RecordingUploadMethod = {}));
|
|
356
346
|
var Type14;
|
|
357
347
|
(function (Type14) {
|
|
358
348
|
Type14["PointCloudData"] = "PointCloudData";
|