@projectqai/proto 0.0.12 → 0.0.16

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.
@@ -12,6 +12,8 @@ import type { Timestamp } from "@bufbuild/protobuf/wkt";
12
12
  export declare const file_world: GenFile;
13
13
 
14
14
  /**
15
+ * metadata
16
+ *
15
17
  * @generated from message world.Entity
16
18
  */
17
19
  export declare type Entity = Message<"world.Entity"> & {
@@ -26,9 +28,9 @@ export declare type Entity = Message<"world.Entity"> & {
26
28
  label?: string;
27
29
 
28
30
  /**
29
- * @generated from field: optional world.ControllerRef controller = 3;
31
+ * @generated from field: optional world.Controller controller = 3;
30
32
  */
31
- controller?: ControllerRef;
33
+ controller?: Controller;
32
34
 
33
35
  /**
34
36
  * @generated from field: optional world.Lifetime lifetime = 4;
@@ -65,11 +67,6 @@ export declare type Entity = Message<"world.Entity"> & {
65
67
  */
66
68
  bearing?: BearingComponent;
67
69
 
68
- /**
69
- * @generated from field: optional world.LocationUncertaintyComponent locationUncertainty = 20;
70
- */
71
- locationUncertainty?: LocationUncertaintyComponent;
72
-
73
70
  /**
74
71
  * @generated from field: optional world.TrackComponent track = 21;
75
72
  */
@@ -80,11 +77,6 @@ export declare type Entity = Message<"world.Entity"> & {
80
77
  */
81
78
  locator?: LocatorComponent;
82
79
 
83
- /**
84
- * @generated from field: optional world.TaskableComponent taskable = 23;
85
- */
86
- taskable?: TaskableComponent;
87
-
88
80
  /**
89
81
  * @generated from field: optional world.KinematicsComponent kinematics = 24;
90
82
  */
@@ -100,15 +92,57 @@ export declare type Entity = Message<"world.Entity"> & {
100
92
  */
101
93
  classification?: ClassificationComponent;
102
94
 
95
+ /**
96
+ * @generated from field: optional world.TransponderComponent transponder = 27;
97
+ */
98
+ transponder?: TransponderComponent;
99
+
100
+ /**
101
+ * @generated from field: optional world.AdministrativeComponent administrative = 28;
102
+ */
103
+ administrative?: AdministrativeComponent;
104
+
103
105
  /**
104
106
  * @generated from field: optional world.OrientationComponent orientation = 30;
105
107
  */
106
108
  orientation?: OrientationComponent;
107
109
 
110
+ /**
111
+ * @generated from field: optional world.NavigationComponent navigation = 34;
112
+ */
113
+ navigation?: NavigationComponent;
114
+
115
+ /**
116
+ * @generated from field: optional world.PowerComponent power = 33;
117
+ */
118
+ power?: PowerComponent;
119
+
120
+ /**
121
+ * experimental, dont use yet externally
122
+ *
123
+ * @generated from field: optional world.TaskableComponent taskable = 23;
124
+ */
125
+ taskable?: TaskableComponent;
126
+
127
+ /**
128
+ * @generated from field: optional world.DeviceComponent device = 50;
129
+ */
130
+ device?: DeviceComponent;
131
+
108
132
  /**
109
133
  * @generated from field: optional world.ConfigurationComponent config = 51;
110
134
  */
111
135
  config?: ConfigurationComponent;
136
+
137
+ /**
138
+ * @generated from field: optional world.MissionComponent mission = 31;
139
+ */
140
+ mission?: MissionComponent;
141
+
142
+ /**
143
+ * @generated from field: optional world.LinkComponent link = 32;
144
+ */
145
+ link?: LinkComponent;
112
146
  };
113
147
 
114
148
  /**
@@ -118,39 +152,57 @@ export declare type Entity = Message<"world.Entity"> & {
118
152
  export declare const EntitySchema: GenMessage<Entity>;
119
153
 
120
154
  /**
121
- * @generated from message world.ControllerRef
155
+ * A controller owns an entity.
156
+ * The engine normally rejects changes to the entity from non owners,
157
+ * but some future work might ask the controller to merge the change.
158
+ * in that case it MUST NOT be sent via push since push is eventually consistent
159
+ *
160
+ * @generated from message world.Controller
122
161
  */
123
- export declare type ControllerRef = Message<"world.ControllerRef"> & {
162
+ export declare type Controller = Message<"world.Controller"> & {
124
163
  /**
125
- * @generated from field: string id = 1;
164
+ * @generated from field: optional string id = 1;
126
165
  */
127
- id: string;
166
+ id?: string;
128
167
 
129
168
  /**
130
- * @generated from field: string name = 2;
169
+ * @generated from field: optional string node = 2;
131
170
  */
132
- name: string;
171
+ node?: string;
133
172
  };
134
173
 
135
174
  /**
136
- * Describes the message world.ControllerRef.
137
- * Use `create(ControllerRefSchema)` to create a new message.
175
+ * Describes the message world.Controller.
176
+ * Use `create(ControllerSchema)` to create a new message.
138
177
  */
139
- export declare const ControllerRefSchema: GenMessage<ControllerRef>;
178
+ export declare const ControllerSchema: GenMessage<Controller>;
140
179
 
141
180
  /**
142
181
  * @generated from message world.Lifetime
143
182
  */
144
183
  export declare type Lifetime = Message<"world.Lifetime"> & {
145
184
  /**
185
+ * time this entity should become valid.
186
+ * will be set to now automatically if omited
187
+ *
146
188
  * @generated from field: optional google.protobuf.Timestamp from = 1;
147
189
  */
148
190
  from?: Timestamp;
149
191
 
150
192
  /**
193
+ * entities with until after or at now are considered expired / deleted
194
+ *
151
195
  * @generated from field: optional google.protobuf.Timestamp until = 2;
152
196
  */
153
197
  until?: Timestamp;
198
+
199
+ /**
200
+ * last time we have seen this entity, normally between from and until
201
+ * if set, updates to an entity with older fresh value are ignored by default
202
+ *
203
+ * @generated from field: optional google.protobuf.Timestamp fresh = 3;
204
+ */
205
+ fresh?: Timestamp;
154
206
  };
155
207
 
156
208
  /**
@@ -382,43 +434,53 @@ export declare type OrientationComponent = Message<"world.OrientationComponent">
382
434
  * @generated from field: optional world.CovarianceMatrix covariance = 2;
383
435
  */
384
436
  covariance?: CovarianceMatrix;
385
- };
386
437
 
387
- /**
388
- * Describes the message world.OrientationComponent.
389
- * Use `create(OrientationComponentSchema)` to create a new message.
390
- */
391
- export declare const OrientationComponentSchema: GenMessage<OrientationComponent>;
438
+ /**
439
+ * angular velocity in radians per second (body frame)
440
+ *
441
+ * @generated from field: optional double roll_rate = 3;
442
+ */
443
+ rollRate?: number;
392
444
 
393
- /**
394
- * DEPRECATED: CovarianceMatrix is now included in every message
395
- *
396
- * @generated from message world.LocationUncertaintyComponent
397
- * @deprecated
398
- */
399
- export declare type LocationUncertaintyComponent = Message<"world.LocationUncertaintyComponent"> & {
400
445
  /**
401
- * @generated from field: optional world.CovarianceMatrix positionEnuCov = 1;
446
+ * @generated from field: optional double pitch_rate = 4;
402
447
  */
403
- positionEnuCov?: CovarianceMatrix;
448
+ pitchRate?: number;
404
449
 
405
450
  /**
406
- * @generated from field: optional world.CovarianceMatrix velocityEnuCov = 2;
451
+ * @generated from field: optional double yaw_rate = 5;
407
452
  */
408
- velocityEnuCov?: CovarianceMatrix;
453
+ yawRate?: number;
409
454
  };
410
455
 
411
456
  /**
412
- * Describes the message world.LocationUncertaintyComponent.
413
- * Use `create(LocationUncertaintyComponentSchema)` to create a new message.
414
- * @deprecated
457
+ * Describes the message world.OrientationComponent.
458
+ * Use `create(OrientationComponentSchema)` to create a new message.
415
459
  */
416
- export declare const LocationUncertaintyComponentSchema: GenMessage<LocationUncertaintyComponent>;
460
+ export declare const OrientationComponentSchema: GenMessage<OrientationComponent>;
417
461
 
418
462
  /**
419
463
  * @generated from message world.TrackComponent
420
464
  */
421
465
  export declare type TrackComponent = Message<"world.TrackComponent"> & {
466
+ /**
467
+ * @generated from field: optional string tracker = 1;
468
+ */
469
+ tracker?: string;
470
+
471
+ /**
472
+ * entity ID of a GeoShapeComponent containing the track history
473
+ *
474
+ * @generated from field: optional string history = 2;
475
+ */
476
+ history?: string;
477
+
478
+ /**
479
+ * entity ID of a GeoShapeComponent containing the predicted forward track
480
+ *
481
+ * @generated from field: optional string prediction = 3;
482
+ */
483
+ prediction?: string;
422
484
  };
423
485
 
424
486
  /**
@@ -538,90 +600,612 @@ export declare type KinematicsEnu = Message<"world.KinematicsEnu"> & {
538
600
  *
539
601
  * @generated from field: optional double north = 2;
540
602
  */
541
- north?: number;
603
+ north?: number;
604
+
605
+ /**
606
+ * m/s
607
+ *
608
+ * @generated from field: optional double up = 3;
609
+ */
610
+ up?: number;
611
+
612
+ /**
613
+ * @generated from field: optional world.CovarianceMatrix covariance = 4;
614
+ */
615
+ covariance?: CovarianceMatrix;
616
+ };
617
+
618
+ /**
619
+ * Describes the message world.KinematicsEnu.
620
+ * Use `create(KinematicsEnuSchema)` to create a new message.
621
+ */
622
+ export declare const KinematicsEnuSchema: GenMessage<KinematicsEnu>;
623
+
624
+ /**
625
+ * @generated from message world.KinematicsComponent
626
+ */
627
+ export declare type KinematicsComponent = Message<"world.KinematicsComponent"> & {
628
+ /**
629
+ * Velocity in local ENU frame (see KinematicsEnu for frame definition)
630
+ *
631
+ * @generated from field: optional world.KinematicsEnu velocityEnu = 1;
632
+ */
633
+ velocityEnu?: KinematicsEnu;
634
+
635
+ /**
636
+ * Acceleration in local ENU frame (m/s²)
637
+ *
638
+ * @generated from field: optional world.KinematicsEnu accelerationEnu = 2;
639
+ */
640
+ accelerationEnu?: KinematicsEnu;
641
+ };
642
+
643
+ /**
644
+ * Describes the message world.KinematicsComponent.
645
+ * Use `create(KinematicsComponentSchema)` to create a new message.
646
+ */
647
+ export declare const KinematicsComponentSchema: GenMessage<KinematicsComponent>;
648
+
649
+ /**
650
+ * @generated from message world.GeoShapeComponent
651
+ */
652
+ export declare type GeoShapeComponent = Message<"world.GeoShapeComponent"> & {
653
+ /**
654
+ * @generated from field: optional world.Geometry geometry = 1;
655
+ */
656
+ geometry?: Geometry;
657
+ };
658
+
659
+ /**
660
+ * Describes the message world.GeoShapeComponent.
661
+ * Use `create(GeoShapeComponentSchema)` to create a new message.
662
+ */
663
+ export declare const GeoShapeComponentSchema: GenMessage<GeoShapeComponent>;
664
+
665
+ /**
666
+ * @generated from message world.ClassificationComponent
667
+ */
668
+ export declare type ClassificationComponent = Message<"world.ClassificationComponent"> & {
669
+ /**
670
+ * @generated from field: optional world.ClassificationBattleDimension dimension = 1;
671
+ */
672
+ dimension?: ClassificationBattleDimension;
673
+
674
+ /**
675
+ * @generated from field: optional world.ClassificationIdentity identity = 2;
676
+ */
677
+ identity?: ClassificationIdentity;
678
+ };
679
+
680
+ /**
681
+ * Describes the message world.ClassificationComponent.
682
+ * Use `create(ClassificationComponentSchema)` to create a new message.
683
+ */
684
+ export declare const ClassificationComponentSchema: GenMessage<ClassificationComponent>;
685
+
686
+ /**
687
+ * @generated from message world.TransponderAIS
688
+ */
689
+ export declare type TransponderAIS = Message<"world.TransponderAIS"> & {
690
+ /**
691
+ * @generated from field: optional uint32 mmsi = 1;
692
+ */
693
+ mmsi?: number;
694
+
695
+ /**
696
+ * @generated from field: optional uint32 imo = 2;
697
+ */
698
+ imo?: number;
699
+
700
+ /**
701
+ * @generated from field: optional string callsign = 3;
702
+ */
703
+ callsign?: string;
704
+
705
+ /**
706
+ * @generated from field: optional string vessel_name = 4;
707
+ */
708
+ vesselName?: string;
709
+ };
710
+
711
+ /**
712
+ * Describes the message world.TransponderAIS.
713
+ * Use `create(TransponderAISSchema)` to create a new message.
714
+ */
715
+ export declare const TransponderAISSchema: GenMessage<TransponderAIS>;
716
+
717
+ /**
718
+ * @generated from message world.TransponderADSB
719
+ */
720
+ export declare type TransponderADSB = Message<"world.TransponderADSB"> & {
721
+ /**
722
+ * @generated from field: optional uint32 icao_address = 1;
723
+ */
724
+ icaoAddress?: number;
725
+
726
+ /**
727
+ * @generated from field: optional string flight_id = 2;
728
+ */
729
+ flightId?: string;
730
+ };
731
+
732
+ /**
733
+ * Describes the message world.TransponderADSB.
734
+ * Use `create(TransponderADSBSchema)` to create a new message.
735
+ */
736
+ export declare const TransponderADSBSchema: GenMessage<TransponderADSB>;
737
+
738
+ /**
739
+ * @generated from message world.TransponderComponent
740
+ */
741
+ export declare type TransponderComponent = Message<"world.TransponderComponent"> & {
742
+ /**
743
+ * @generated from field: optional world.TransponderAIS ais = 1;
744
+ */
745
+ ais?: TransponderAIS;
746
+
747
+ /**
748
+ * @generated from field: optional world.TransponderADSB adsb = 2;
749
+ */
750
+ adsb?: TransponderADSB;
751
+ };
752
+
753
+ /**
754
+ * Describes the message world.TransponderComponent.
755
+ * Use `create(TransponderComponentSchema)` to create a new message.
756
+ */
757
+ export declare const TransponderComponentSchema: GenMessage<TransponderComponent>;
758
+
759
+ /**
760
+ * @generated from message world.AdministrativeComponent
761
+ */
762
+ export declare type AdministrativeComponent = Message<"world.AdministrativeComponent"> & {
763
+ /**
764
+ * @generated from field: optional string id = 1;
765
+ */
766
+ id?: string;
767
+
768
+ /**
769
+ * @generated from field: optional string flag = 2;
770
+ */
771
+ flag?: string;
772
+
773
+ /**
774
+ * @generated from field: optional string owner = 3;
775
+ */
776
+ owner?: string;
777
+
778
+ /**
779
+ * @generated from field: optional string manufacturer = 4;
780
+ */
781
+ manufacturer?: string;
782
+
783
+ /**
784
+ * @generated from field: optional string model = 5;
785
+ */
786
+ model?: string;
787
+
788
+ /**
789
+ * @generated from field: optional uint32 year_built = 6;
790
+ */
791
+ yearBuilt?: number;
792
+
793
+ /**
794
+ * @generated from field: optional float length_m = 7;
795
+ */
796
+ lengthM?: number;
797
+
798
+ /**
799
+ * @generated from field: optional float tonnage_gt = 8;
800
+ */
801
+ tonnageGt?: number;
802
+
803
+ /**
804
+ * @generated from field: optional float engine_power_kw = 9;
805
+ */
806
+ enginePowerKw?: number;
807
+ };
808
+
809
+ /**
810
+ * Describes the message world.AdministrativeComponent.
811
+ * Use `create(AdministrativeComponentSchema)` to create a new message.
812
+ */
813
+ export declare const AdministrativeComponentSchema: GenMessage<AdministrativeComponent>;
814
+
815
+ /**
816
+ * Live navigation telemetry of an asset
817
+ *
818
+ * @generated from message world.NavigationComponent
819
+ */
820
+ export declare type NavigationComponent = Message<"world.NavigationComponent"> & {
821
+ /**
822
+ * @generated from field: optional world.NavigationMode mode = 1;
823
+ */
824
+ mode?: NavigationMode;
825
+
826
+ /**
827
+ * @generated from field: optional bool armed = 2;
828
+ */
829
+ armed?: boolean;
830
+
831
+ /**
832
+ * @generated from field: optional bool emergency = 3;
833
+ */
834
+ emergency?: boolean;
835
+
836
+ /**
837
+ * current waypoint index in the active mission
838
+ *
839
+ * @generated from field: optional uint32 waypoint_current = 4;
840
+ */
841
+ waypointCurrent?: number;
842
+
843
+ /**
844
+ * total number of waypoints in the active mission
845
+ *
846
+ * @generated from field: optional uint32 waypoint_total = 5;
847
+ */
848
+ waypointTotal?: number;
849
+ };
850
+
851
+ /**
852
+ * Describes the message world.NavigationComponent.
853
+ * Use `create(NavigationComponentSchema)` to create a new message.
854
+ */
855
+ export declare const NavigationComponentSchema: GenMessage<NavigationComponent>;
856
+
857
+ /**
858
+ * @generated from message world.MissionComponent
859
+ */
860
+ export declare type MissionComponent = Message<"world.MissionComponent"> & {
861
+ /**
862
+ * asset entity IDs participating in this mission
863
+ *
864
+ * @generated from field: repeated string members = 1;
865
+ */
866
+ members: string[];
867
+
868
+ /**
869
+ * human-readable status from the source system. can be multi line / markdown
870
+ *
871
+ * @generated from field: optional string description = 2;
872
+ */
873
+ description?: string;
874
+
875
+ /**
876
+ * human-readable destination (e.g. port name)
877
+ *
878
+ * @generated from field: optional string destination = 3;
879
+ */
880
+ destination?: string;
881
+
882
+ /**
883
+ * estimated time of arrival
884
+ *
885
+ * @generated from field: optional google.protobuf.Timestamp eta = 4;
886
+ */
887
+ eta?: Timestamp;
888
+ };
889
+
890
+ /**
891
+ * Describes the message world.MissionComponent.
892
+ * Use `create(MissionComponentSchema)` to create a new message.
893
+ */
894
+ export declare const MissionComponentSchema: GenMessage<MissionComponent>;
895
+
896
+ /**
897
+ * @generated from message world.LinkComponent
898
+ */
899
+ export declare type LinkComponent = Message<"world.LinkComponent"> & {
900
+ /**
901
+ * @generated from field: optional world.LinkStatus status = 1;
902
+ */
903
+ status?: LinkStatus;
904
+
905
+ /**
906
+ * received signal strength indicator in dBm
907
+ *
908
+ * @generated from field: optional sint32 rssi_dbm = 2;
909
+ */
910
+ rssiDbm?: number;
911
+
912
+ /**
913
+ * signal-to-noise ratio in dB
914
+ *
915
+ * @generated from field: optional uint32 snr_db = 3;
916
+ */
917
+ snrDb?: number;
918
+
919
+ /**
920
+ * entity id of the device that manages the link to this entity
921
+ *
922
+ * @generated from field: optional string via = 5;
923
+ */
924
+ via?: string;
925
+ };
926
+
927
+ /**
928
+ * Describes the message world.LinkComponent.
929
+ * Use `create(LinkComponentSchema)` to create a new message.
930
+ */
931
+ export declare const LinkComponentSchema: GenMessage<LinkComponent>;
932
+
933
+ /**
934
+ * @generated from message world.PowerComponent
935
+ */
936
+ export declare type PowerComponent = Message<"world.PowerComponent"> & {
937
+ /**
938
+ * battery charge remaining (0.0 - 1.0)
939
+ *
940
+ * @generated from field: optional float battery_charge_remaining = 1;
941
+ */
942
+ batteryChargeRemaining?: number;
943
+
944
+ /**
945
+ * battery or board voltage in volts
946
+ *
947
+ * @generated from field: optional float voltage = 2;
948
+ */
949
+ voltage?: number;
950
+
951
+ /**
952
+ * estimated remaining operating time in seconds
953
+ *
954
+ * @generated from field: optional uint32 remaining_seconds = 3;
955
+ */
956
+ remainingSeconds?: number;
957
+ };
958
+
959
+ /**
960
+ * Describes the message world.PowerComponent.
961
+ * Use `create(PowerComponentSchema)` to create a new message.
962
+ */
963
+ export declare const PowerComponentSchema: GenMessage<PowerComponent>;
964
+
965
+ /**
966
+ * @generated from message world.Configurable
967
+ */
968
+ export declare type Configurable = Message<"world.Configurable"> & {
969
+ /**
970
+ * @generated from field: string key = 1;
971
+ */
972
+ key: string;
973
+
974
+ /**
975
+ * @generated from field: google.protobuf.Struct schema = 2;
976
+ */
977
+ schema?: JsonObject;
978
+
979
+ /**
980
+ * @generated from field: google.protobuf.Struct value = 3;
981
+ */
982
+ value?: JsonObject;
983
+
984
+ /**
985
+ * @generated from field: world.ConfigurationState state = 4;
986
+ */
987
+ state: ConfigurationState;
988
+
989
+ /**
990
+ * @generated from field: optional string error = 5;
991
+ */
992
+ error?: string;
993
+ };
994
+
995
+ /**
996
+ * Describes the message world.Configurable.
997
+ * Use `create(ConfigurableSchema)` to create a new message.
998
+ */
999
+ export declare const ConfigurableSchema: GenMessage<Configurable>;
1000
+
1001
+ /**
1002
+ * @generated from message world.DeviceComponent
1003
+ */
1004
+ export declare type DeviceComponent = Message<"world.DeviceComponent"> & {
1005
+ /**
1006
+ * parent device entity, forming the device tree. unset for root (node).
1007
+ *
1008
+ * @generated from field: optional string parent = 1;
1009
+ */
1010
+ parent?: string;
1011
+
1012
+ /**
1013
+ * list of non-direct ancestors this device is made of
1014
+ *
1015
+ * @generated from field: repeated string composition = 2;
1016
+ */
1017
+ composition: string[];
1018
+
1019
+ /**
1020
+ * configurable keys, their current state and schema
1021
+ *
1022
+ * @generated from field: repeated world.Configurable configurable = 3;
1023
+ */
1024
+ configurable: Configurable[];
1025
+
1026
+ /**
1027
+ * a stable identifier that remains the same no matter where the asset is connected to
1028
+ * generally used to match a specific device within the hydris network
1029
+ *
1030
+ * @generated from field: optional string unique_hardware_id = 4;
1031
+ */
1032
+ uniqueHardwareId?: string;
1033
+
1034
+ /**
1035
+ * unstructured controller specific labels that can be matched to configure
1036
+ * all devices with these properties at the same time
1037
+ * when not using unique_hardware_id
1038
+ *
1039
+ * @generated from field: map<string, string> labels = 5;
1040
+ */
1041
+ labels: { [key: string]: string };
1042
+
1043
+ /**
1044
+ * @generated from field: world.DeviceState state = 6;
1045
+ */
1046
+ state: DeviceState;
1047
+
1048
+ /**
1049
+ * @generated from field: optional string error = 7;
1050
+ */
1051
+ error?: string;
1052
+
1053
+ /**
1054
+ * subsystem-specific descriptors
1055
+ *
1056
+ * @generated from field: optional world.NodeDevice node = 9;
1057
+ */
1058
+ node?: NodeDevice;
1059
+
1060
+ /**
1061
+ * @generated from field: optional world.UsbDevice usb = 10;
1062
+ */
1063
+ usb?: UsbDevice;
1064
+
1065
+ /**
1066
+ * @generated from field: optional world.IpDevice ip = 11;
1067
+ */
1068
+ ip?: IpDevice;
1069
+
1070
+ /**
1071
+ * @generated from field: optional world.SerialDevice serial = 12;
1072
+ */
1073
+ serial?: SerialDevice;
1074
+ };
1075
+
1076
+ /**
1077
+ * Describes the message world.DeviceComponent.
1078
+ * Use `create(DeviceComponentSchema)` to create a new message.
1079
+ */
1080
+ export declare const DeviceComponentSchema: GenMessage<DeviceComponent>;
1081
+
1082
+ /**
1083
+ * @generated from message world.NodeDevice
1084
+ */
1085
+ export declare type NodeDevice = Message<"world.NodeDevice"> & {
1086
+ /**
1087
+ * @generated from field: optional string hostname = 1;
1088
+ */
1089
+ hostname?: string;
1090
+
1091
+ /**
1092
+ * @generated from field: optional string os = 2;
1093
+ */
1094
+ os?: string;
1095
+
1096
+ /**
1097
+ * @generated from field: optional string arch = 3;
1098
+ */
1099
+ arch?: string;
1100
+
1101
+ /**
1102
+ * @generated from field: optional uint32 num_cpu = 4;
1103
+ */
1104
+ numCpu?: number;
1105
+ };
1106
+
1107
+ /**
1108
+ * Describes the message world.NodeDevice.
1109
+ * Use `create(NodeDeviceSchema)` to create a new message.
1110
+ */
1111
+ export declare const NodeDeviceSchema: GenMessage<NodeDevice>;
1112
+
1113
+ /**
1114
+ * @generated from message world.UsbDevice
1115
+ */
1116
+ export declare type UsbDevice = Message<"world.UsbDevice"> & {
1117
+ /**
1118
+ * @generated from field: optional uint32 vendor_id = 1;
1119
+ */
1120
+ vendorId?: number;
1121
+
1122
+ /**
1123
+ * @generated from field: optional uint32 product_id = 2;
1124
+ */
1125
+ productId?: number;
1126
+
1127
+ /**
1128
+ * @generated from field: optional uint32 device_class = 3;
1129
+ */
1130
+ deviceClass?: number;
542
1131
 
543
1132
  /**
544
- * m/s
545
- *
546
- * @generated from field: optional double up = 3;
1133
+ * @generated from field: optional uint32 device_subclass = 4;
547
1134
  */
548
- up?: number;
1135
+ deviceSubclass?: number;
549
1136
 
550
1137
  /**
551
- * @generated from field: optional world.CovarianceMatrix covariance = 4;
1138
+ * @generated from field: optional uint32 device_protocol = 5;
552
1139
  */
553
- covariance?: CovarianceMatrix;
554
- };
1140
+ deviceProtocol?: number;
555
1141
 
556
- /**
557
- * Describes the message world.KinematicsEnu.
558
- * Use `create(KinematicsEnuSchema)` to create a new message.
559
- */
560
- export declare const KinematicsEnuSchema: GenMessage<KinematicsEnu>;
1142
+ /**
1143
+ * @generated from field: optional string manufacturer_name = 6;
1144
+ */
1145
+ manufacturerName?: string;
561
1146
 
562
- /**
563
- * @generated from message world.KinematicsComponent
564
- */
565
- export declare type KinematicsComponent = Message<"world.KinematicsComponent"> & {
566
1147
  /**
567
- * Velocity in local ENU frame (see KinematicsEnu for frame definition)
568
- *
569
- * @generated from field: optional world.KinematicsEnu velocityEnu = 1;
1148
+ * @generated from field: optional string product_name = 7;
570
1149
  */
571
- velocityEnu?: KinematicsEnu;
1150
+ productName?: string;
572
1151
 
573
1152
  /**
574
- * Acceleration in local ENU frame (m/s²)
575
- *
576
- * @generated from field: optional world.KinematicsEnu accelerationEnu = 2;
1153
+ * @generated from field: optional string serial_number = 8;
577
1154
  */
578
- accelerationEnu?: KinematicsEnu;
1155
+ serialNumber?: string;
579
1156
  };
580
1157
 
581
1158
  /**
582
- * Describes the message world.KinematicsComponent.
583
- * Use `create(KinematicsComponentSchema)` to create a new message.
1159
+ * Describes the message world.UsbDevice.
1160
+ * Use `create(UsbDeviceSchema)` to create a new message.
584
1161
  */
585
- export declare const KinematicsComponentSchema: GenMessage<KinematicsComponent>;
1162
+ export declare const UsbDeviceSchema: GenMessage<UsbDevice>;
586
1163
 
587
1164
  /**
588
- * @generated from message world.GeoShapeComponent
1165
+ * @generated from message world.IpDevice
589
1166
  */
590
- export declare type GeoShapeComponent = Message<"world.GeoShapeComponent"> & {
1167
+ export declare type IpDevice = Message<"world.IpDevice"> & {
591
1168
  /**
592
- * @generated from field: optional world.Geometry geometry = 1;
1169
+ * @generated from field: optional string host = 1;
593
1170
  */
594
- geometry?: Geometry;
1171
+ host?: string;
1172
+
1173
+ /**
1174
+ * @generated from field: optional uint32 port = 2;
1175
+ */
1176
+ port?: number;
595
1177
  };
596
1178
 
597
1179
  /**
598
- * Describes the message world.GeoShapeComponent.
599
- * Use `create(GeoShapeComponentSchema)` to create a new message.
1180
+ * Describes the message world.IpDevice.
1181
+ * Use `create(IpDeviceSchema)` to create a new message.
600
1182
  */
601
- export declare const GeoShapeComponentSchema: GenMessage<GeoShapeComponent>;
1183
+ export declare const IpDeviceSchema: GenMessage<IpDevice>;
602
1184
 
603
1185
  /**
604
- * @generated from message world.ClassificationComponent
1186
+ * @generated from message world.SerialDevice
605
1187
  */
606
- export declare type ClassificationComponent = Message<"world.ClassificationComponent"> & {
1188
+ export declare type SerialDevice = Message<"world.SerialDevice"> & {
607
1189
  /**
608
- * @generated from field: optional world.ClassificationBattleDimension dimension = 1;
1190
+ * @generated from field: optional string path = 1;
609
1191
  */
610
- dimension?: ClassificationBattleDimension;
1192
+ path?: string;
611
1193
 
612
1194
  /**
613
- * @generated from field: optional world.ClassificationIdentity identity = 2;
1195
+ * @generated from field: optional uint32 baud_rate = 2;
614
1196
  */
615
- identity?: ClassificationIdentity;
1197
+ baudRate?: number;
616
1198
  };
617
1199
 
618
1200
  /**
619
- * Describes the message world.ClassificationComponent.
620
- * Use `create(ClassificationComponentSchema)` to create a new message.
1201
+ * Describes the message world.SerialDevice.
1202
+ * Use `create(SerialDeviceSchema)` to create a new message.
621
1203
  */
622
- export declare const ClassificationComponentSchema: GenMessage<ClassificationComponent>;
1204
+ export declare const SerialDeviceSchema: GenMessage<SerialDevice>;
623
1205
 
624
1206
  /**
1207
+ * Desired/target configuration, created by the user/UI.
1208
+ *
625
1209
  * @generated from message world.ConfigurationComponent
626
1210
  */
627
1211
  export declare type ConfigurationComponent = Message<"world.ConfigurationComponent"> & {
@@ -639,6 +1223,14 @@ export declare type ConfigurationComponent = Message<"world.ConfigurationCompone
639
1223
  * @generated from field: google.protobuf.Struct value = 3;
640
1224
  */
641
1225
  value?: JsonObject;
1226
+
1227
+ /**
1228
+ * apply to a specific or a subset of devices
1229
+ * if empty, applies to all devices from this controller that advertise this key.
1230
+ *
1231
+ * @generated from field: world.EntityFilter selector = 4;
1232
+ */
1233
+ selector?: EntityFilter;
642
1234
  };
643
1235
 
644
1236
  /**
@@ -815,6 +1407,26 @@ export declare type EntityFilter = Message<"world.EntityFilter"> & {
815
1407
  */
816
1408
  component: number[];
817
1409
 
1410
+ /**
1411
+ * @generated from field: optional world.ControllerFilter controller = 7;
1412
+ */
1413
+ controller?: ControllerFilter;
1414
+
1415
+ /**
1416
+ * @generated from field: optional world.TrackFilter track = 8;
1417
+ */
1418
+ track?: TrackFilter;
1419
+
1420
+ /**
1421
+ * @generated from field: optional world.MissionFilter mission = 9;
1422
+ */
1423
+ mission?: MissionFilter;
1424
+
1425
+ /**
1426
+ * @generated from field: optional world.DeviceFilter device = 50;
1427
+ */
1428
+ device?: DeviceFilter;
1429
+
818
1430
  /**
819
1431
  * @generated from field: optional world.ConfigurationFilter config = 51;
820
1432
  */
@@ -841,6 +1453,63 @@ export declare type EntityFilter = Message<"world.EntityFilter"> & {
841
1453
  */
842
1454
  export declare const EntityFilterSchema: GenMessage<EntityFilter>;
843
1455
 
1456
+ /**
1457
+ * @generated from message world.ControllerFilter
1458
+ */
1459
+ export declare type ControllerFilter = Message<"world.ControllerFilter"> & {
1460
+ /**
1461
+ * @generated from field: optional string id = 1;
1462
+ */
1463
+ id?: string;
1464
+ };
1465
+
1466
+ /**
1467
+ * Describes the message world.ControllerFilter.
1468
+ * Use `create(ControllerFilterSchema)` to create a new message.
1469
+ */
1470
+ export declare const ControllerFilterSchema: GenMessage<ControllerFilter>;
1471
+
1472
+ /**
1473
+ * @generated from message world.TrackFilter
1474
+ */
1475
+ export declare type TrackFilter = Message<"world.TrackFilter"> & {
1476
+ /**
1477
+ * @generated from field: optional string tracker = 1;
1478
+ */
1479
+ tracker?: string;
1480
+ };
1481
+
1482
+ /**
1483
+ * Describes the message world.TrackFilter.
1484
+ * Use `create(TrackFilterSchema)` to create a new message.
1485
+ */
1486
+ export declare const TrackFilterSchema: GenMessage<TrackFilter>;
1487
+
1488
+ /**
1489
+ * @generated from message world.MissionFilter
1490
+ */
1491
+ export declare type MissionFilter = Message<"world.MissionFilter"> & {
1492
+ /**
1493
+ * find member assets of this mission
1494
+ *
1495
+ * @generated from field: optional string mission_id = 1;
1496
+ */
1497
+ missionId?: string;
1498
+
1499
+ /**
1500
+ * find missions containing this asset
1501
+ *
1502
+ * @generated from field: optional string member_id = 2;
1503
+ */
1504
+ memberId?: string;
1505
+ };
1506
+
1507
+ /**
1508
+ * Describes the message world.MissionFilter.
1509
+ * Use `create(MissionFilterSchema)` to create a new message.
1510
+ */
1511
+ export declare const MissionFilterSchema: GenMessage<MissionFilter>;
1512
+
844
1513
  /**
845
1514
  * @generated from message world.TaskableFilter
846
1515
  */
@@ -895,16 +1564,49 @@ export declare type GeoFilter = Message<"world.GeoFilter"> & {
895
1564
  export declare const GeoFilterSchema: GenMessage<GeoFilter>;
896
1565
 
897
1566
  /**
898
- * @generated from message world.ConfigurationFilter
1567
+ * @generated from message world.DeviceFilter
899
1568
  */
900
- export declare type ConfigurationFilter = Message<"world.ConfigurationFilter"> & {
1569
+ export declare type DeviceFilter = Message<"world.DeviceFilter"> & {
1570
+ /**
1571
+ * subset match against device.labels
1572
+ *
1573
+ * @generated from field: map<string, string> labels = 1;
1574
+ */
1575
+ labels: { [key: string]: string };
1576
+
1577
+ /**
1578
+ * @generated from field: optional string unique_hardware_id = 4;
1579
+ */
1580
+ uniqueHardwareId?: string;
1581
+
1582
+ /**
1583
+ * @generated from field: optional world.UsbDevice usb = 10;
1584
+ */
1585
+ usb?: UsbDevice;
1586
+
1587
+ /**
1588
+ * @generated from field: optional world.IpDevice ip = 11;
1589
+ */
1590
+ ip?: IpDevice;
1591
+
901
1592
  /**
902
- * @generated from field: optional string controller = 1;
1593
+ * @generated from field: optional world.SerialDevice serial = 12;
903
1594
  */
904
- controller?: string;
1595
+ serial?: SerialDevice;
1596
+ };
1597
+
1598
+ /**
1599
+ * Describes the message world.DeviceFilter.
1600
+ * Use `create(DeviceFilterSchema)` to create a new message.
1601
+ */
1602
+ export declare const DeviceFilterSchema: GenMessage<DeviceFilter>;
905
1603
 
1604
+ /**
1605
+ * @generated from message world.ConfigurationFilter
1606
+ */
1607
+ export declare type ConfigurationFilter = Message<"world.ConfigurationFilter"> & {
906
1608
  /**
907
- * @generated from field: optional string key = 2;
1609
+ * @generated from field: optional string key = 1;
908
1610
  */
909
1611
  key?: string;
910
1612
  };
@@ -922,7 +1624,7 @@ export declare type WatchBehavior = Message<"world.WatchBehavior"> & {
922
1624
  /**
923
1625
  * Maximum non-flash message rate this consumer can handle (0 = unlimited)
924
1626
  *
925
- * @generated from field: optional double max_rate_hz = 1;
1627
+ * @generated from field: optional float max_rate_hz = 1;
926
1628
  */
927
1629
  maxRateHz?: number;
928
1630
 
@@ -1004,6 +1706,34 @@ export declare type EntityChangeRequest = Message<"world.EntityChangeRequest"> &
1004
1706
  */
1005
1707
  export declare const EntityChangeRequestSchema: GenMessage<EntityChangeRequest>;
1006
1708
 
1709
+ /**
1710
+ * @generated from message world.ExpireEntityRequest
1711
+ */
1712
+ export declare type ExpireEntityRequest = Message<"world.ExpireEntityRequest"> & {
1713
+ /**
1714
+ * @generated from field: string id = 1;
1715
+ */
1716
+ id: string;
1717
+ };
1718
+
1719
+ /**
1720
+ * Describes the message world.ExpireEntityRequest.
1721
+ * Use `create(ExpireEntityRequestSchema)` to create a new message.
1722
+ */
1723
+ export declare const ExpireEntityRequestSchema: GenMessage<ExpireEntityRequest>;
1724
+
1725
+ /**
1726
+ * @generated from message world.ExpireEntityResponse
1727
+ */
1728
+ export declare type ExpireEntityResponse = Message<"world.ExpireEntityResponse"> & {
1729
+ };
1730
+
1731
+ /**
1732
+ * Describes the message world.ExpireEntityResponse.
1733
+ * Use `create(ExpireEntityResponseSchema)` to create a new message.
1734
+ */
1735
+ export declare const ExpireEntityResponseSchema: GenMessage<ExpireEntityResponse>;
1736
+
1007
1737
  /**
1008
1738
  * @generated from message world.EntityChangeResponse
1009
1739
  */
@@ -1094,6 +1824,34 @@ export declare type GetEntityResponse = Message<"world.GetEntityResponse"> & {
1094
1824
  */
1095
1825
  export declare const GetEntityResponseSchema: GenMessage<GetEntityResponse>;
1096
1826
 
1827
+ /**
1828
+ * @generated from message world.GetLocalNodeRequest
1829
+ */
1830
+ export declare type GetLocalNodeRequest = Message<"world.GetLocalNodeRequest"> & {
1831
+ };
1832
+
1833
+ /**
1834
+ * Describes the message world.GetLocalNodeRequest.
1835
+ * Use `create(GetLocalNodeRequestSchema)` to create a new message.
1836
+ */
1837
+ export declare const GetLocalNodeRequestSchema: GenMessage<GetLocalNodeRequest>;
1838
+
1839
+ /**
1840
+ * @generated from message world.GetLocalNodeResponse
1841
+ */
1842
+ export declare type GetLocalNodeResponse = Message<"world.GetLocalNodeResponse"> & {
1843
+ /**
1844
+ * @generated from field: world.Entity entity = 1;
1845
+ */
1846
+ entity?: Entity;
1847
+ };
1848
+
1849
+ /**
1850
+ * Describes the message world.GetLocalNodeResponse.
1851
+ * Use `create(GetLocalNodeResponseSchema)` to create a new message.
1852
+ */
1853
+ export declare const GetLocalNodeResponseSchema: GenMessage<GetLocalNodeResponse>;
1854
+
1097
1855
  /**
1098
1856
  * @generated from message world.ObserverRequest
1099
1857
  */
@@ -1358,6 +2116,150 @@ export enum ClassificationBattleDimension {
1358
2116
  */
1359
2117
  export declare const ClassificationBattleDimensionSchema: GenEnum<ClassificationBattleDimension>;
1360
2118
 
2119
+ /**
2120
+ * @generated from enum world.NavigationMode
2121
+ */
2122
+ export enum NavigationMode {
2123
+ /**
2124
+ * @generated from enum value: NavigationModeUnspecified = 0;
2125
+ */
2126
+ NavigationModeUnspecified = 0,
2127
+
2128
+ /**
2129
+ * planned but not yet active
2130
+ *
2131
+ * @generated from enum value: NavigationModePlanned = 1;
2132
+ */
2133
+ NavigationModePlanned = 1,
2134
+
2135
+ /**
2136
+ * anchored, moored, landed
2137
+ *
2138
+ * @generated from enum value: NavigationModeStationary = 2;
2139
+ */
2140
+ NavigationModeStationary = 2,
2141
+
2142
+ /**
2143
+ * might be human-controlled or we dont know
2144
+ *
2145
+ * @generated from enum value: NavigationModeUnderway = 3;
2146
+ */
2147
+ NavigationModeUnderway = 3,
2148
+
2149
+ /**
2150
+ * executing a known mission / auto
2151
+ *
2152
+ * @generated from enum value: NavigationModeAutonomous = 4;
2153
+ */
2154
+ NavigationModeAutonomous = 4,
2155
+
2156
+ /**
2157
+ * externally guided waypoint by a known system
2158
+ *
2159
+ * @generated from enum value: NavigationModeGuided = 5;
2160
+ */
2161
+ NavigationModeGuided = 5,
2162
+
2163
+ /**
2164
+ * orbiting/holding pattern around a point
2165
+ *
2166
+ * @generated from enum value: NavigationModeLoitering = 6;
2167
+ */
2168
+ NavigationModeLoitering = 6,
2169
+
2170
+ /**
2171
+ * RTL / RTB
2172
+ *
2173
+ * @generated from enum value: NavigationModeReturning = 7;
2174
+ */
2175
+ NavigationModeReturning = 7,
2176
+ }
2177
+
2178
+ /**
2179
+ * Describes the enum world.NavigationMode.
2180
+ */
2181
+ export declare const NavigationModeSchema: GenEnum<NavigationMode>;
2182
+
2183
+ /**
2184
+ * @generated from enum world.LinkStatus
2185
+ */
2186
+ export enum LinkStatus {
2187
+ /**
2188
+ * @generated from enum value: LinkStatusUnspecified = 0;
2189
+ */
2190
+ LinkStatusUnspecified = 0,
2191
+
2192
+ /**
2193
+ * @generated from enum value: LinkStatusConnected = 1;
2194
+ */
2195
+ LinkStatusConnected = 1,
2196
+
2197
+ /**
2198
+ * @generated from enum value: LinkStatusDegraded = 2;
2199
+ */
2200
+ LinkStatusDegraded = 2,
2201
+
2202
+ /**
2203
+ * @generated from enum value: LinkStatusLost = 3;
2204
+ */
2205
+ LinkStatusLost = 3,
2206
+ }
2207
+
2208
+ /**
2209
+ * Describes the enum world.LinkStatus.
2210
+ */
2211
+ export declare const LinkStatusSchema: GenEnum<LinkStatus>;
2212
+
2213
+ /**
2214
+ * @generated from enum world.DeviceState
2215
+ */
2216
+ export enum DeviceState {
2217
+ /**
2218
+ * @generated from enum value: DeviceStatePending = 0;
2219
+ */
2220
+ DeviceStatePending = 0,
2221
+
2222
+ /**
2223
+ * @generated from enum value: DeviceStateActive = 1;
2224
+ */
2225
+ DeviceStateActive = 1,
2226
+
2227
+ /**
2228
+ * @generated from enum value: DeviceStateFailed = 2;
2229
+ */
2230
+ DeviceStateFailed = 2,
2231
+ }
2232
+
2233
+ /**
2234
+ * Describes the enum world.DeviceState.
2235
+ */
2236
+ export declare const DeviceStateSchema: GenEnum<DeviceState>;
2237
+
2238
+ /**
2239
+ * @generated from enum world.ConfigurationState
2240
+ */
2241
+ export enum ConfigurationState {
2242
+ /**
2243
+ * @generated from enum value: ConfigurationStatePending = 0;
2244
+ */
2245
+ ConfigurationStatePending = 0,
2246
+
2247
+ /**
2248
+ * @generated from enum value: ConfigurationStateActive = 1;
2249
+ */
2250
+ ConfigurationStateActive = 1,
2251
+
2252
+ /**
2253
+ * @generated from enum value: ConfigurationStateFailed = 2;
2254
+ */
2255
+ ConfigurationStateFailed = 2,
2256
+ }
2257
+
2258
+ /**
2259
+ * Describes the enum world.ConfigurationState.
2260
+ */
2261
+ export declare const ConfigurationStateSchema: GenEnum<ConfigurationState>;
2262
+
1361
2263
  /**
1362
2264
  * @generated from enum world.EntityChange
1363
2265
  */
@@ -1455,7 +2357,11 @@ export declare const WorldService: GenService<{
1455
2357
  output: typeof EntityChangeEventSchema;
1456
2358
  },
1457
2359
  /**
1458
- * create or update an entity. used by capabilities
2360
+ * Create or update an entity. Used by capabilities.
2361
+ *
2362
+ * Push uses merge semantics: only components present (set) in the pushed entity
2363
+ * are updated. Components not included in the message are left unchanged.
2364
+ * Components cannot be removed once set.
1459
2365
  *
1460
2366
  * @generated from rpc world.WorldService.Push
1461
2367
  */
@@ -1464,6 +2370,26 @@ export declare const WorldService: GenService<{
1464
2370
  input: typeof EntityChangeRequestSchema;
1465
2371
  output: typeof EntityChangeResponseSchema;
1466
2372
  },
2373
+ /**
2374
+ * expire an entity, setting its lifetime.until to now
2375
+ *
2376
+ * @generated from rpc world.WorldService.ExpireEntity
2377
+ */
2378
+ expireEntity: {
2379
+ methodKind: "unary";
2380
+ input: typeof ExpireEntityRequestSchema;
2381
+ output: typeof ExpireEntityResponseSchema;
2382
+ },
2383
+ /**
2384
+ * get information about the local node the client is connected to
2385
+ *
2386
+ * @generated from rpc world.WorldService.GetLocalNode
2387
+ */
2388
+ getLocalNode: {
2389
+ methodKind: "unary";
2390
+ input: typeof GetLocalNodeRequestSchema;
2391
+ output: typeof GetLocalNodeResponseSchema;
2392
+ },
1467
2393
  /**
1468
2394
  * create an instance of a specific task entity
1469
2395
  *