@neuracore/types 7.1.0 → 7.2.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 +12 -0
- package/package.json +1 -1
|
@@ -874,6 +874,8 @@ export interface EndEffectorPoseDataStats {
|
|
|
874
874
|
* expiration_time: Timestamp when the endpoint expires (if set)
|
|
875
875
|
* cloud_compute_job_id: ID of the cloud compute job running this endpoint
|
|
876
876
|
* zone: The GCP zone where the endpoint is running
|
|
877
|
+
* input_embodiment_description: Optional model input data order
|
|
878
|
+
* output_embodiment_description: Optional model output data order
|
|
877
879
|
*/
|
|
878
880
|
export interface Endpoint {
|
|
879
881
|
id: string;
|
|
@@ -889,6 +891,16 @@ export interface Endpoint {
|
|
|
889
891
|
error_code?: number | null;
|
|
890
892
|
expiration_time?: number | null;
|
|
891
893
|
cloud_compute_job_id?: string | null;
|
|
894
|
+
input_embodiment_description?: {
|
|
895
|
+
[k: string]: {
|
|
896
|
+
[k: string]: string;
|
|
897
|
+
};
|
|
898
|
+
} | null;
|
|
899
|
+
output_embodiment_description?: {
|
|
900
|
+
[k: string]: {
|
|
901
|
+
[k: string]: string;
|
|
902
|
+
};
|
|
903
|
+
} | null;
|
|
892
904
|
}
|
|
893
905
|
/**
|
|
894
906
|
* Description of a single episode with statistics and counts.
|