@neuracore/types 1.2.1 → 1.2.2
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 +34 -34
- package/package.json +1 -1
|
@@ -559,16 +559,16 @@ export interface SyncedDataset {
|
|
|
559
559
|
* Enumerates the supported track kinds for streaming.
|
|
560
560
|
*/
|
|
561
561
|
export declare const enum TrackKind {
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
562
|
+
JOINTS = "JOINTS",
|
|
563
|
+
RGB = "RGB",
|
|
564
|
+
DEPTH = "DEPTH",
|
|
565
|
+
LANGUAGE = "LANGUAGE",
|
|
566
|
+
GRIPPER = "GRIPPER",
|
|
567
|
+
END_EFFECTOR_POSE = "END_EFFECTOR_POSE",
|
|
568
|
+
PARALLEL_GRIPPER_OPEN_AMOUNT = "PARALLEL_GRIPPER_OPEN_AMOUNT",
|
|
569
|
+
POINT_CLOUD = "POINT_CLOUD",
|
|
570
|
+
POSE = "POSE",
|
|
571
|
+
CUSTOM = "CUSTOM"
|
|
572
572
|
}
|
|
573
573
|
/**
|
|
574
574
|
* Enumerates the types of signaling messages for WebRTC handshakes.
|
|
@@ -577,10 +577,10 @@ export declare const enum TrackKind {
|
|
|
577
577
|
* the signaling server during connection establishment.
|
|
578
578
|
*/
|
|
579
579
|
export declare const enum MessageType {
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
580
|
+
SDP_OFFER = "SDP_OFFER",
|
|
581
|
+
SDP_ANSWER = "SDP_ANSWER",
|
|
582
|
+
ICE_CANDIDATE = "ICE_CANDIDATE",
|
|
583
|
+
OPEN_CONNECTION = "OPEN_CONNECTION"
|
|
584
584
|
}
|
|
585
585
|
/**
|
|
586
586
|
* Enumeration of supported data types in the Neuracore system.
|
|
@@ -589,19 +589,19 @@ export declare const enum MessageType {
|
|
|
589
589
|
* model training, and data processing pipelines.
|
|
590
590
|
*/
|
|
591
591
|
export declare const enum DataType {
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
592
|
+
JOINT_POSITIONS = "JOINT_POSITIONS",
|
|
593
|
+
JOINT_VELOCITIES = "JOINT_VELOCITIES",
|
|
594
|
+
JOINT_TORQUES = "JOINT_TORQUES",
|
|
595
|
+
JOINT_TARGET_POSITIONS = "JOINT_TARGET_POSITIONS",
|
|
596
|
+
END_EFFECTORS = "END_EFFECTORS",
|
|
597
|
+
END_EFFECTOR_POSES = "END_EFFECTOR_POSES",
|
|
598
|
+
PARALLEL_GRIPPER_OPEN_AMOUNTS = "PARALLEL_GRIPPER_OPEN_AMOUNTS",
|
|
599
|
+
RGB_IMAGE = "RGB_IMAGE",
|
|
600
|
+
DEPTH_IMAGE = "DEPTH_IMAGE",
|
|
601
|
+
POINT_CLOUD = "POINT_CLOUD",
|
|
602
|
+
POSES = "POSES",
|
|
603
|
+
LANGUAGE = "LANGUAGE",
|
|
604
|
+
CUSTOM = "CUSTOM"
|
|
605
605
|
}
|
|
606
606
|
/**
|
|
607
607
|
* Enumerates video format styles over a WebRTC connection.
|
|
@@ -614,11 +614,11 @@ export declare const enum VideoFormat {
|
|
|
614
614
|
* Types of recording lifecycle notifications.
|
|
615
615
|
*/
|
|
616
616
|
export declare const enum RecordingNotificationType {
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
617
|
+
INIT = "INIT",
|
|
618
|
+
REQUESTED = "REQUESTED",
|
|
619
|
+
START = "START",
|
|
620
|
+
STOP = "STOP",
|
|
621
|
+
SAVED = "SAVED",
|
|
622
|
+
DISCARDED = "DISCARDED",
|
|
623
|
+
EXPIRED = "EXPIRED"
|
|
624
624
|
}
|