rclnodejs 0.26.0 → 0.26.1
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/types/interfaces.d.ts
CHANGED
|
@@ -39,6 +39,14 @@ declare module 'rclnodejs' {
|
|
|
39
39
|
readonly Request: CancelGoal_RequestConstructor;
|
|
40
40
|
readonly Response: CancelGoal_ResponseConstructor;
|
|
41
41
|
}
|
|
42
|
+
export interface CancelGoal_Event {
|
|
43
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
44
|
+
request: action_msgs.srv.CancelGoal_Request[];
|
|
45
|
+
response: action_msgs.srv.CancelGoal_Response[];
|
|
46
|
+
}
|
|
47
|
+
export interface CancelGoal_EventConstructor {
|
|
48
|
+
new(other?: CancelGoal_Event): CancelGoal_Event;
|
|
49
|
+
}
|
|
42
50
|
export interface CancelGoal_Request {
|
|
43
51
|
goal_info: action_msgs.msg.GoalInfo;
|
|
44
52
|
}
|
|
@@ -166,6 +174,33 @@ declare module 'rclnodejs' {
|
|
|
166
174
|
}
|
|
167
175
|
}
|
|
168
176
|
|
|
177
|
+
namespace bond {
|
|
178
|
+
namespace msg {
|
|
179
|
+
export interface Constants {
|
|
180
|
+
}
|
|
181
|
+
export interface ConstantsConstructor {
|
|
182
|
+
readonly DEAD_PUBLISH_PERIOD: number;
|
|
183
|
+
readonly DEFAULT_CONNECT_TIMEOUT: number;
|
|
184
|
+
readonly DEFAULT_HEARTBEAT_TIMEOUT: number;
|
|
185
|
+
readonly DEFAULT_DISCONNECT_TIMEOUT: number;
|
|
186
|
+
readonly DEFAULT_HEARTBEAT_PERIOD: number;
|
|
187
|
+
readonly DISABLE_HEARTBEAT_TIMEOUT_PARAM: string;
|
|
188
|
+
new(other?: Constants): Constants;
|
|
189
|
+
}
|
|
190
|
+
export interface Status {
|
|
191
|
+
header: std_msgs.msg.Header;
|
|
192
|
+
id: string;
|
|
193
|
+
instance_id: string;
|
|
194
|
+
active: boolean;
|
|
195
|
+
heartbeat_timeout: number;
|
|
196
|
+
heartbeat_period: number;
|
|
197
|
+
}
|
|
198
|
+
export interface StatusConstructor {
|
|
199
|
+
new(other?: Status): Status;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
169
204
|
namespace builtin_interfaces {
|
|
170
205
|
namespace msg {
|
|
171
206
|
export interface Duration {
|
|
@@ -191,6 +226,14 @@ declare module 'rclnodejs' {
|
|
|
191
226
|
readonly Request: ListNodes_RequestConstructor;
|
|
192
227
|
readonly Response: ListNodes_ResponseConstructor;
|
|
193
228
|
}
|
|
229
|
+
export interface ListNodes_Event {
|
|
230
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
231
|
+
request: composition_interfaces.srv.ListNodes_Request[];
|
|
232
|
+
response: composition_interfaces.srv.ListNodes_Response[];
|
|
233
|
+
}
|
|
234
|
+
export interface ListNodes_EventConstructor {
|
|
235
|
+
new(other?: ListNodes_Event): ListNodes_Event;
|
|
236
|
+
}
|
|
194
237
|
export interface ListNodes_Request {
|
|
195
238
|
}
|
|
196
239
|
export interface ListNodes_RequestConstructor {
|
|
@@ -207,6 +250,14 @@ declare module 'rclnodejs' {
|
|
|
207
250
|
readonly Request: LoadNode_RequestConstructor;
|
|
208
251
|
readonly Response: LoadNode_ResponseConstructor;
|
|
209
252
|
}
|
|
253
|
+
export interface LoadNode_Event {
|
|
254
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
255
|
+
request: composition_interfaces.srv.LoadNode_Request[];
|
|
256
|
+
response: composition_interfaces.srv.LoadNode_Response[];
|
|
257
|
+
}
|
|
258
|
+
export interface LoadNode_EventConstructor {
|
|
259
|
+
new(other?: LoadNode_Event): LoadNode_Event;
|
|
260
|
+
}
|
|
210
261
|
export interface LoadNode_Request {
|
|
211
262
|
package_name: string;
|
|
212
263
|
plugin_name: string;
|
|
@@ -233,6 +284,14 @@ declare module 'rclnodejs' {
|
|
|
233
284
|
readonly Request: UnloadNode_RequestConstructor;
|
|
234
285
|
readonly Response: UnloadNode_ResponseConstructor;
|
|
235
286
|
}
|
|
287
|
+
export interface UnloadNode_Event {
|
|
288
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
289
|
+
request: composition_interfaces.srv.UnloadNode_Request[];
|
|
290
|
+
response: composition_interfaces.srv.UnloadNode_Response[];
|
|
291
|
+
}
|
|
292
|
+
export interface UnloadNode_EventConstructor {
|
|
293
|
+
new(other?: UnloadNode_Event): UnloadNode_Event;
|
|
294
|
+
}
|
|
236
295
|
export interface UnloadNode_Request {
|
|
237
296
|
unique_id: number;
|
|
238
297
|
}
|
|
@@ -285,6 +344,14 @@ declare module 'rclnodejs' {
|
|
|
285
344
|
readonly Request: AddDiagnostics_RequestConstructor;
|
|
286
345
|
readonly Response: AddDiagnostics_ResponseConstructor;
|
|
287
346
|
}
|
|
347
|
+
export interface AddDiagnostics_Event {
|
|
348
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
349
|
+
request: diagnostic_msgs.srv.AddDiagnostics_Request[];
|
|
350
|
+
response: diagnostic_msgs.srv.AddDiagnostics_Response[];
|
|
351
|
+
}
|
|
352
|
+
export interface AddDiagnostics_EventConstructor {
|
|
353
|
+
new(other?: AddDiagnostics_Event): AddDiagnostics_Event;
|
|
354
|
+
}
|
|
288
355
|
export interface AddDiagnostics_Request {
|
|
289
356
|
load_namespace: string;
|
|
290
357
|
}
|
|
@@ -302,6 +369,14 @@ declare module 'rclnodejs' {
|
|
|
302
369
|
readonly Request: SelfTest_RequestConstructor;
|
|
303
370
|
readonly Response: SelfTest_ResponseConstructor;
|
|
304
371
|
}
|
|
372
|
+
export interface SelfTest_Event {
|
|
373
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
374
|
+
request: diagnostic_msgs.srv.SelfTest_Request[];
|
|
375
|
+
response: diagnostic_msgs.srv.SelfTest_Response[];
|
|
376
|
+
}
|
|
377
|
+
export interface SelfTest_EventConstructor {
|
|
378
|
+
new(other?: SelfTest_Event): SelfTest_Event;
|
|
379
|
+
}
|
|
305
380
|
export interface SelfTest_Request {
|
|
306
381
|
}
|
|
307
382
|
export interface SelfTest_RequestConstructor {
|
|
@@ -580,6 +655,14 @@ declare module 'rclnodejs' {
|
|
|
580
655
|
readonly Request: AddTwoInts_RequestConstructor;
|
|
581
656
|
readonly Response: AddTwoInts_ResponseConstructor;
|
|
582
657
|
}
|
|
658
|
+
export interface AddTwoInts_Event {
|
|
659
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
660
|
+
request: example_interfaces.srv.AddTwoInts_Request[];
|
|
661
|
+
response: example_interfaces.srv.AddTwoInts_Response[];
|
|
662
|
+
}
|
|
663
|
+
export interface AddTwoInts_EventConstructor {
|
|
664
|
+
new(other?: AddTwoInts_Event): AddTwoInts_Event;
|
|
665
|
+
}
|
|
583
666
|
export interface AddTwoInts_Request {
|
|
584
667
|
a: number;
|
|
585
668
|
b: number;
|
|
@@ -597,6 +680,14 @@ declare module 'rclnodejs' {
|
|
|
597
680
|
readonly Request: SetBool_RequestConstructor;
|
|
598
681
|
readonly Response: SetBool_ResponseConstructor;
|
|
599
682
|
}
|
|
683
|
+
export interface SetBool_Event {
|
|
684
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
685
|
+
request: example_interfaces.srv.SetBool_Request[];
|
|
686
|
+
response: example_interfaces.srv.SetBool_Response[];
|
|
687
|
+
}
|
|
688
|
+
export interface SetBool_EventConstructor {
|
|
689
|
+
new(other?: SetBool_Event): SetBool_Event;
|
|
690
|
+
}
|
|
600
691
|
export interface SetBool_Request {
|
|
601
692
|
data: boolean;
|
|
602
693
|
}
|
|
@@ -614,6 +705,14 @@ declare module 'rclnodejs' {
|
|
|
614
705
|
readonly Request: Trigger_RequestConstructor;
|
|
615
706
|
readonly Response: Trigger_ResponseConstructor;
|
|
616
707
|
}
|
|
708
|
+
export interface Trigger_Event {
|
|
709
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
710
|
+
request: example_interfaces.srv.Trigger_Request[];
|
|
711
|
+
response: example_interfaces.srv.Trigger_Response[];
|
|
712
|
+
}
|
|
713
|
+
export interface Trigger_EventConstructor {
|
|
714
|
+
new(other?: Trigger_Event): Trigger_Event;
|
|
715
|
+
}
|
|
617
716
|
export interface Trigger_Request {
|
|
618
717
|
}
|
|
619
718
|
export interface Trigger_RequestConstructor {
|
|
@@ -629,6 +728,252 @@ declare module 'rclnodejs' {
|
|
|
629
728
|
}
|
|
630
729
|
}
|
|
631
730
|
|
|
731
|
+
namespace geographic_msgs {
|
|
732
|
+
namespace msg {
|
|
733
|
+
export interface BoundingBox {
|
|
734
|
+
min_pt: geographic_msgs.msg.GeoPoint;
|
|
735
|
+
max_pt: geographic_msgs.msg.GeoPoint;
|
|
736
|
+
}
|
|
737
|
+
export interface BoundingBoxConstructor {
|
|
738
|
+
new(other?: BoundingBox): BoundingBox;
|
|
739
|
+
}
|
|
740
|
+
export interface GeoPath {
|
|
741
|
+
header: std_msgs.msg.Header;
|
|
742
|
+
poses: geographic_msgs.msg.GeoPoseStamped[];
|
|
743
|
+
}
|
|
744
|
+
export interface GeoPathConstructor {
|
|
745
|
+
new(other?: GeoPath): GeoPath;
|
|
746
|
+
}
|
|
747
|
+
export interface GeoPoint {
|
|
748
|
+
latitude: number;
|
|
749
|
+
longitude: number;
|
|
750
|
+
altitude: number;
|
|
751
|
+
}
|
|
752
|
+
export interface GeoPointConstructor {
|
|
753
|
+
new(other?: GeoPoint): GeoPoint;
|
|
754
|
+
}
|
|
755
|
+
export interface GeoPointStamped {
|
|
756
|
+
header: std_msgs.msg.Header;
|
|
757
|
+
position: geographic_msgs.msg.GeoPoint;
|
|
758
|
+
}
|
|
759
|
+
export interface GeoPointStampedConstructor {
|
|
760
|
+
new(other?: GeoPointStamped): GeoPointStamped;
|
|
761
|
+
}
|
|
762
|
+
export interface GeoPose {
|
|
763
|
+
position: geographic_msgs.msg.GeoPoint;
|
|
764
|
+
orientation: geometry_msgs.msg.Quaternion;
|
|
765
|
+
}
|
|
766
|
+
export interface GeoPoseConstructor {
|
|
767
|
+
new(other?: GeoPose): GeoPose;
|
|
768
|
+
}
|
|
769
|
+
export interface GeoPoseStamped {
|
|
770
|
+
header: std_msgs.msg.Header;
|
|
771
|
+
pose: geographic_msgs.msg.GeoPose;
|
|
772
|
+
}
|
|
773
|
+
export interface GeoPoseStampedConstructor {
|
|
774
|
+
new(other?: GeoPoseStamped): GeoPoseStamped;
|
|
775
|
+
}
|
|
776
|
+
export interface GeoPoseWithCovariance {
|
|
777
|
+
pose: geographic_msgs.msg.GeoPose;
|
|
778
|
+
covariance: number[] | Float64Array;
|
|
779
|
+
}
|
|
780
|
+
export interface GeoPoseWithCovarianceConstructor {
|
|
781
|
+
new(other?: GeoPoseWithCovariance): GeoPoseWithCovariance;
|
|
782
|
+
}
|
|
783
|
+
export interface GeoPoseWithCovarianceStamped {
|
|
784
|
+
header: std_msgs.msg.Header;
|
|
785
|
+
pose: geographic_msgs.msg.GeoPoseWithCovariance;
|
|
786
|
+
}
|
|
787
|
+
export interface GeoPoseWithCovarianceStampedConstructor {
|
|
788
|
+
new(other?: GeoPoseWithCovarianceStamped): GeoPoseWithCovarianceStamped;
|
|
789
|
+
}
|
|
790
|
+
export interface GeographicMap {
|
|
791
|
+
header: std_msgs.msg.Header;
|
|
792
|
+
id: unique_identifier_msgs.msg.UUID;
|
|
793
|
+
bounds: geographic_msgs.msg.BoundingBox;
|
|
794
|
+
points: geographic_msgs.msg.WayPoint[];
|
|
795
|
+
features: geographic_msgs.msg.MapFeature[];
|
|
796
|
+
props: geographic_msgs.msg.KeyValue[];
|
|
797
|
+
}
|
|
798
|
+
export interface GeographicMapConstructor {
|
|
799
|
+
new(other?: GeographicMap): GeographicMap;
|
|
800
|
+
}
|
|
801
|
+
export interface GeographicMapChanges {
|
|
802
|
+
header: std_msgs.msg.Header;
|
|
803
|
+
diffs: geographic_msgs.msg.GeographicMap;
|
|
804
|
+
deletes: unique_identifier_msgs.msg.UUID[];
|
|
805
|
+
}
|
|
806
|
+
export interface GeographicMapChangesConstructor {
|
|
807
|
+
new(other?: GeographicMapChanges): GeographicMapChanges;
|
|
808
|
+
}
|
|
809
|
+
export interface KeyValue {
|
|
810
|
+
key: string;
|
|
811
|
+
value: string;
|
|
812
|
+
}
|
|
813
|
+
export interface KeyValueConstructor {
|
|
814
|
+
new(other?: KeyValue): KeyValue;
|
|
815
|
+
}
|
|
816
|
+
export interface MapFeature {
|
|
817
|
+
id: unique_identifier_msgs.msg.UUID;
|
|
818
|
+
components: unique_identifier_msgs.msg.UUID[];
|
|
819
|
+
props: geographic_msgs.msg.KeyValue[];
|
|
820
|
+
}
|
|
821
|
+
export interface MapFeatureConstructor {
|
|
822
|
+
new(other?: MapFeature): MapFeature;
|
|
823
|
+
}
|
|
824
|
+
export interface RouteNetwork {
|
|
825
|
+
header: std_msgs.msg.Header;
|
|
826
|
+
id: unique_identifier_msgs.msg.UUID;
|
|
827
|
+
bounds: geographic_msgs.msg.BoundingBox;
|
|
828
|
+
points: geographic_msgs.msg.WayPoint[];
|
|
829
|
+
segments: geographic_msgs.msg.RouteSegment[];
|
|
830
|
+
props: geographic_msgs.msg.KeyValue[];
|
|
831
|
+
}
|
|
832
|
+
export interface RouteNetworkConstructor {
|
|
833
|
+
new(other?: RouteNetwork): RouteNetwork;
|
|
834
|
+
}
|
|
835
|
+
export interface RoutePath {
|
|
836
|
+
header: std_msgs.msg.Header;
|
|
837
|
+
network: unique_identifier_msgs.msg.UUID;
|
|
838
|
+
segments: unique_identifier_msgs.msg.UUID[];
|
|
839
|
+
props: geographic_msgs.msg.KeyValue[];
|
|
840
|
+
}
|
|
841
|
+
export interface RoutePathConstructor {
|
|
842
|
+
new(other?: RoutePath): RoutePath;
|
|
843
|
+
}
|
|
844
|
+
export interface RouteSegment {
|
|
845
|
+
id: unique_identifier_msgs.msg.UUID;
|
|
846
|
+
start: unique_identifier_msgs.msg.UUID;
|
|
847
|
+
end: unique_identifier_msgs.msg.UUID;
|
|
848
|
+
props: geographic_msgs.msg.KeyValue[];
|
|
849
|
+
}
|
|
850
|
+
export interface RouteSegmentConstructor {
|
|
851
|
+
new(other?: RouteSegment): RouteSegment;
|
|
852
|
+
}
|
|
853
|
+
export interface WayPoint {
|
|
854
|
+
id: unique_identifier_msgs.msg.UUID;
|
|
855
|
+
position: geographic_msgs.msg.GeoPoint;
|
|
856
|
+
props: geographic_msgs.msg.KeyValue[];
|
|
857
|
+
}
|
|
858
|
+
export interface WayPointConstructor {
|
|
859
|
+
new(other?: WayPoint): WayPoint;
|
|
860
|
+
}
|
|
861
|
+
}
|
|
862
|
+
namespace srv {
|
|
863
|
+
export interface GetGeoPathConstructor extends ROSService {
|
|
864
|
+
readonly Request: GetGeoPath_RequestConstructor;
|
|
865
|
+
readonly Response: GetGeoPath_ResponseConstructor;
|
|
866
|
+
}
|
|
867
|
+
export interface GetGeoPath_Event {
|
|
868
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
869
|
+
request: geographic_msgs.srv.GetGeoPath_Request[];
|
|
870
|
+
response: geographic_msgs.srv.GetGeoPath_Response[];
|
|
871
|
+
}
|
|
872
|
+
export interface GetGeoPath_EventConstructor {
|
|
873
|
+
new(other?: GetGeoPath_Event): GetGeoPath_Event;
|
|
874
|
+
}
|
|
875
|
+
export interface GetGeoPath_Request {
|
|
876
|
+
start: geographic_msgs.msg.GeoPoint;
|
|
877
|
+
goal: geographic_msgs.msg.GeoPoint;
|
|
878
|
+
}
|
|
879
|
+
export interface GetGeoPath_RequestConstructor {
|
|
880
|
+
new(other?: GetGeoPath_Request): GetGeoPath_Request;
|
|
881
|
+
}
|
|
882
|
+
export interface GetGeoPath_Response {
|
|
883
|
+
success: boolean;
|
|
884
|
+
status: string;
|
|
885
|
+
plan: geographic_msgs.msg.GeoPath;
|
|
886
|
+
network: unique_identifier_msgs.msg.UUID;
|
|
887
|
+
start_seg: unique_identifier_msgs.msg.UUID;
|
|
888
|
+
goal_seg: unique_identifier_msgs.msg.UUID;
|
|
889
|
+
distance: number;
|
|
890
|
+
}
|
|
891
|
+
export interface GetGeoPath_ResponseConstructor {
|
|
892
|
+
new(other?: GetGeoPath_Response): GetGeoPath_Response;
|
|
893
|
+
}
|
|
894
|
+
export interface GetGeographicMapConstructor extends ROSService {
|
|
895
|
+
readonly Request: GetGeographicMap_RequestConstructor;
|
|
896
|
+
readonly Response: GetGeographicMap_ResponseConstructor;
|
|
897
|
+
}
|
|
898
|
+
export interface GetGeographicMap_Event {
|
|
899
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
900
|
+
request: geographic_msgs.srv.GetGeographicMap_Request[];
|
|
901
|
+
response: geographic_msgs.srv.GetGeographicMap_Response[];
|
|
902
|
+
}
|
|
903
|
+
export interface GetGeographicMap_EventConstructor {
|
|
904
|
+
new(other?: GetGeographicMap_Event): GetGeographicMap_Event;
|
|
905
|
+
}
|
|
906
|
+
export interface GetGeographicMap_Request {
|
|
907
|
+
url: string;
|
|
908
|
+
bounds: geographic_msgs.msg.BoundingBox;
|
|
909
|
+
}
|
|
910
|
+
export interface GetGeographicMap_RequestConstructor {
|
|
911
|
+
new(other?: GetGeographicMap_Request): GetGeographicMap_Request;
|
|
912
|
+
}
|
|
913
|
+
export interface GetGeographicMap_Response {
|
|
914
|
+
success: boolean;
|
|
915
|
+
status: string;
|
|
916
|
+
map: geographic_msgs.msg.GeographicMap;
|
|
917
|
+
}
|
|
918
|
+
export interface GetGeographicMap_ResponseConstructor {
|
|
919
|
+
new(other?: GetGeographicMap_Response): GetGeographicMap_Response;
|
|
920
|
+
}
|
|
921
|
+
export interface GetRoutePlanConstructor extends ROSService {
|
|
922
|
+
readonly Request: GetRoutePlan_RequestConstructor;
|
|
923
|
+
readonly Response: GetRoutePlan_ResponseConstructor;
|
|
924
|
+
}
|
|
925
|
+
export interface GetRoutePlan_Event {
|
|
926
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
927
|
+
request: geographic_msgs.srv.GetRoutePlan_Request[];
|
|
928
|
+
response: geographic_msgs.srv.GetRoutePlan_Response[];
|
|
929
|
+
}
|
|
930
|
+
export interface GetRoutePlan_EventConstructor {
|
|
931
|
+
new(other?: GetRoutePlan_Event): GetRoutePlan_Event;
|
|
932
|
+
}
|
|
933
|
+
export interface GetRoutePlan_Request {
|
|
934
|
+
network: unique_identifier_msgs.msg.UUID;
|
|
935
|
+
start: unique_identifier_msgs.msg.UUID;
|
|
936
|
+
goal: unique_identifier_msgs.msg.UUID;
|
|
937
|
+
}
|
|
938
|
+
export interface GetRoutePlan_RequestConstructor {
|
|
939
|
+
new(other?: GetRoutePlan_Request): GetRoutePlan_Request;
|
|
940
|
+
}
|
|
941
|
+
export interface GetRoutePlan_Response {
|
|
942
|
+
success: boolean;
|
|
943
|
+
status: string;
|
|
944
|
+
plan: geographic_msgs.msg.RoutePath;
|
|
945
|
+
}
|
|
946
|
+
export interface GetRoutePlan_ResponseConstructor {
|
|
947
|
+
new(other?: GetRoutePlan_Response): GetRoutePlan_Response;
|
|
948
|
+
}
|
|
949
|
+
export interface UpdateGeographicMapConstructor extends ROSService {
|
|
950
|
+
readonly Request: UpdateGeographicMap_RequestConstructor;
|
|
951
|
+
readonly Response: UpdateGeographicMap_ResponseConstructor;
|
|
952
|
+
}
|
|
953
|
+
export interface UpdateGeographicMap_Event {
|
|
954
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
955
|
+
request: geographic_msgs.srv.UpdateGeographicMap_Request[];
|
|
956
|
+
response: geographic_msgs.srv.UpdateGeographicMap_Response[];
|
|
957
|
+
}
|
|
958
|
+
export interface UpdateGeographicMap_EventConstructor {
|
|
959
|
+
new(other?: UpdateGeographicMap_Event): UpdateGeographicMap_Event;
|
|
960
|
+
}
|
|
961
|
+
export interface UpdateGeographicMap_Request {
|
|
962
|
+
updates: geographic_msgs.msg.GeographicMapChanges;
|
|
963
|
+
}
|
|
964
|
+
export interface UpdateGeographicMap_RequestConstructor {
|
|
965
|
+
new(other?: UpdateGeographicMap_Request): UpdateGeographicMap_Request;
|
|
966
|
+
}
|
|
967
|
+
export interface UpdateGeographicMap_Response {
|
|
968
|
+
success: boolean;
|
|
969
|
+
status: string;
|
|
970
|
+
}
|
|
971
|
+
export interface UpdateGeographicMap_ResponseConstructor {
|
|
972
|
+
new(other?: UpdateGeographicMap_Response): UpdateGeographicMap_Response;
|
|
973
|
+
}
|
|
974
|
+
}
|
|
975
|
+
}
|
|
976
|
+
|
|
632
977
|
namespace geometry_msgs {
|
|
633
978
|
namespace msg {
|
|
634
979
|
export interface Accel {
|
|
@@ -929,6 +1274,14 @@ declare module 'rclnodejs' {
|
|
|
929
1274
|
readonly Request: ChangeState_RequestConstructor;
|
|
930
1275
|
readonly Response: ChangeState_ResponseConstructor;
|
|
931
1276
|
}
|
|
1277
|
+
export interface ChangeState_Event {
|
|
1278
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
1279
|
+
request: lifecycle_msgs.srv.ChangeState_Request[];
|
|
1280
|
+
response: lifecycle_msgs.srv.ChangeState_Response[];
|
|
1281
|
+
}
|
|
1282
|
+
export interface ChangeState_EventConstructor {
|
|
1283
|
+
new(other?: ChangeState_Event): ChangeState_Event;
|
|
1284
|
+
}
|
|
932
1285
|
export interface ChangeState_Request {
|
|
933
1286
|
transition: lifecycle_msgs.msg.Transition;
|
|
934
1287
|
}
|
|
@@ -945,6 +1298,14 @@ declare module 'rclnodejs' {
|
|
|
945
1298
|
readonly Request: GetAvailableStates_RequestConstructor;
|
|
946
1299
|
readonly Response: GetAvailableStates_ResponseConstructor;
|
|
947
1300
|
}
|
|
1301
|
+
export interface GetAvailableStates_Event {
|
|
1302
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
1303
|
+
request: lifecycle_msgs.srv.GetAvailableStates_Request[];
|
|
1304
|
+
response: lifecycle_msgs.srv.GetAvailableStates_Response[];
|
|
1305
|
+
}
|
|
1306
|
+
export interface GetAvailableStates_EventConstructor {
|
|
1307
|
+
new(other?: GetAvailableStates_Event): GetAvailableStates_Event;
|
|
1308
|
+
}
|
|
948
1309
|
export interface GetAvailableStates_Request {
|
|
949
1310
|
}
|
|
950
1311
|
export interface GetAvailableStates_RequestConstructor {
|
|
@@ -960,6 +1321,14 @@ declare module 'rclnodejs' {
|
|
|
960
1321
|
readonly Request: GetAvailableTransitions_RequestConstructor;
|
|
961
1322
|
readonly Response: GetAvailableTransitions_ResponseConstructor;
|
|
962
1323
|
}
|
|
1324
|
+
export interface GetAvailableTransitions_Event {
|
|
1325
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
1326
|
+
request: lifecycle_msgs.srv.GetAvailableTransitions_Request[];
|
|
1327
|
+
response: lifecycle_msgs.srv.GetAvailableTransitions_Response[];
|
|
1328
|
+
}
|
|
1329
|
+
export interface GetAvailableTransitions_EventConstructor {
|
|
1330
|
+
new(other?: GetAvailableTransitions_Event): GetAvailableTransitions_Event;
|
|
1331
|
+
}
|
|
963
1332
|
export interface GetAvailableTransitions_Request {
|
|
964
1333
|
}
|
|
965
1334
|
export interface GetAvailableTransitions_RequestConstructor {
|
|
@@ -975,6 +1344,14 @@ declare module 'rclnodejs' {
|
|
|
975
1344
|
readonly Request: GetState_RequestConstructor;
|
|
976
1345
|
readonly Response: GetState_ResponseConstructor;
|
|
977
1346
|
}
|
|
1347
|
+
export interface GetState_Event {
|
|
1348
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
1349
|
+
request: lifecycle_msgs.srv.GetState_Request[];
|
|
1350
|
+
response: lifecycle_msgs.srv.GetState_Response[];
|
|
1351
|
+
}
|
|
1352
|
+
export interface GetState_EventConstructor {
|
|
1353
|
+
new(other?: GetState_Event): GetState_Event;
|
|
1354
|
+
}
|
|
978
1355
|
export interface GetState_Request {
|
|
979
1356
|
}
|
|
980
1357
|
export interface GetState_RequestConstructor {
|
|
@@ -995,6 +1372,14 @@ declare module 'rclnodejs' {
|
|
|
995
1372
|
readonly Request: ConfigLogger_RequestConstructor;
|
|
996
1373
|
readonly Response: ConfigLogger_ResponseConstructor;
|
|
997
1374
|
}
|
|
1375
|
+
export interface ConfigLogger_Event {
|
|
1376
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
1377
|
+
request: logging_demo.srv.ConfigLogger_Request[];
|
|
1378
|
+
response: logging_demo.srv.ConfigLogger_Response[];
|
|
1379
|
+
}
|
|
1380
|
+
export interface ConfigLogger_EventConstructor {
|
|
1381
|
+
new(other?: ConfigLogger_Event): ConfigLogger_Event;
|
|
1382
|
+
}
|
|
998
1383
|
export interface ConfigLogger_Request {
|
|
999
1384
|
logger_name: string;
|
|
1000
1385
|
level: string;
|
|
@@ -1060,6 +1445,14 @@ declare module 'rclnodejs' {
|
|
|
1060
1445
|
readonly Request: GetMapROI_RequestConstructor;
|
|
1061
1446
|
readonly Response: GetMapROI_ResponseConstructor;
|
|
1062
1447
|
}
|
|
1448
|
+
export interface GetMapROI_Event {
|
|
1449
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
1450
|
+
request: map_msgs.srv.GetMapROI_Request[];
|
|
1451
|
+
response: map_msgs.srv.GetMapROI_Response[];
|
|
1452
|
+
}
|
|
1453
|
+
export interface GetMapROI_EventConstructor {
|
|
1454
|
+
new(other?: GetMapROI_Event): GetMapROI_Event;
|
|
1455
|
+
}
|
|
1063
1456
|
export interface GetMapROI_Request {
|
|
1064
1457
|
x: number;
|
|
1065
1458
|
y: number;
|
|
@@ -1083,6 +1476,14 @@ declare module 'rclnodejs' {
|
|
|
1083
1476
|
readonly Request: GetPointMapROI_RequestConstructor;
|
|
1084
1477
|
readonly Response: GetPointMapROI_ResponseConstructor;
|
|
1085
1478
|
}
|
|
1479
|
+
export interface GetPointMapROI_Event {
|
|
1480
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
1481
|
+
request: map_msgs.srv.GetPointMapROI_Request[];
|
|
1482
|
+
response: map_msgs.srv.GetPointMapROI_Response[];
|
|
1483
|
+
}
|
|
1484
|
+
export interface GetPointMapROI_EventConstructor {
|
|
1485
|
+
new(other?: GetPointMapROI_Event): GetPointMapROI_Event;
|
|
1486
|
+
}
|
|
1086
1487
|
export interface GetPointMapROI_Request {
|
|
1087
1488
|
x: number;
|
|
1088
1489
|
y: number;
|
|
@@ -1101,6 +1502,14 @@ declare module 'rclnodejs' {
|
|
|
1101
1502
|
export interface GetPointMapROI_ResponseConstructor {
|
|
1102
1503
|
new(other?: GetPointMapROI_Response): GetPointMapROI_Response;
|
|
1103
1504
|
}
|
|
1505
|
+
export interface GetPointMap_Event {
|
|
1506
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
1507
|
+
request: map_msgs.srv.GetPointMap_Request[];
|
|
1508
|
+
response: map_msgs.srv.GetPointMap_Response[];
|
|
1509
|
+
}
|
|
1510
|
+
export interface GetPointMap_EventConstructor {
|
|
1511
|
+
new(other?: GetPointMap_Event): GetPointMap_Event;
|
|
1512
|
+
}
|
|
1104
1513
|
export interface GetPointMap_Request {
|
|
1105
1514
|
}
|
|
1106
1515
|
export interface GetPointMap_RequestConstructor {
|
|
@@ -1116,6 +1525,14 @@ declare module 'rclnodejs' {
|
|
|
1116
1525
|
readonly Request: ProjectedMapsInfo_RequestConstructor;
|
|
1117
1526
|
readonly Response: ProjectedMapsInfo_ResponseConstructor;
|
|
1118
1527
|
}
|
|
1528
|
+
export interface ProjectedMapsInfo_Event {
|
|
1529
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
1530
|
+
request: map_msgs.srv.ProjectedMapsInfo_Request[];
|
|
1531
|
+
response: map_msgs.srv.ProjectedMapsInfo_Response[];
|
|
1532
|
+
}
|
|
1533
|
+
export interface ProjectedMapsInfo_EventConstructor {
|
|
1534
|
+
new(other?: ProjectedMapsInfo_Event): ProjectedMapsInfo_Event;
|
|
1535
|
+
}
|
|
1119
1536
|
export interface ProjectedMapsInfo_Request {
|
|
1120
1537
|
projected_maps_info: map_msgs.msg.ProjectedMapInfo[];
|
|
1121
1538
|
}
|
|
@@ -1131,6 +1548,14 @@ declare module 'rclnodejs' {
|
|
|
1131
1548
|
readonly Request: SaveMap_RequestConstructor;
|
|
1132
1549
|
readonly Response: SaveMap_ResponseConstructor;
|
|
1133
1550
|
}
|
|
1551
|
+
export interface SaveMap_Event {
|
|
1552
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
1553
|
+
request: map_msgs.srv.SaveMap_Request[];
|
|
1554
|
+
response: map_msgs.srv.SaveMap_Response[];
|
|
1555
|
+
}
|
|
1556
|
+
export interface SaveMap_EventConstructor {
|
|
1557
|
+
new(other?: SaveMap_Event): SaveMap_Event;
|
|
1558
|
+
}
|
|
1134
1559
|
export interface SaveMap_Request {
|
|
1135
1560
|
filename: std_msgs.msg.String;
|
|
1136
1561
|
}
|
|
@@ -1146,6 +1571,14 @@ declare module 'rclnodejs' {
|
|
|
1146
1571
|
readonly Request: SetMapProjections_RequestConstructor;
|
|
1147
1572
|
readonly Response: SetMapProjections_ResponseConstructor;
|
|
1148
1573
|
}
|
|
1574
|
+
export interface SetMapProjections_Event {
|
|
1575
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
1576
|
+
request: map_msgs.srv.SetMapProjections_Request[];
|
|
1577
|
+
response: map_msgs.srv.SetMapProjections_Response[];
|
|
1578
|
+
}
|
|
1579
|
+
export interface SetMapProjections_EventConstructor {
|
|
1580
|
+
new(other?: SetMapProjections_Event): SetMapProjections_Event;
|
|
1581
|
+
}
|
|
1149
1582
|
export interface SetMapProjections_Request {
|
|
1150
1583
|
}
|
|
1151
1584
|
export interface SetMapProjections_RequestConstructor {
|
|
@@ -1160,6 +1593,1348 @@ declare module 'rclnodejs' {
|
|
|
1160
1593
|
}
|
|
1161
1594
|
}
|
|
1162
1595
|
|
|
1596
|
+
namespace nav2_msgs {
|
|
1597
|
+
namespace action {
|
|
1598
|
+
export interface AssistedTeleopConstructor {
|
|
1599
|
+
readonly Goal: AssistedTeleop_GoalConstructor;
|
|
1600
|
+
readonly Result: AssistedTeleop_ResultConstructor;
|
|
1601
|
+
readonly Feedback: AssistedTeleop_FeedbackConstructor;
|
|
1602
|
+
}
|
|
1603
|
+
export interface AssistedTeleop_Feedback {
|
|
1604
|
+
current_teleop_duration: builtin_interfaces.msg.Duration;
|
|
1605
|
+
}
|
|
1606
|
+
export interface AssistedTeleop_FeedbackConstructor {
|
|
1607
|
+
new(other?: AssistedTeleop_Feedback): AssistedTeleop_Feedback;
|
|
1608
|
+
}
|
|
1609
|
+
export interface AssistedTeleop_FeedbackMessage {
|
|
1610
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1611
|
+
feedback: nav2_msgs.action.AssistedTeleop_Feedback;
|
|
1612
|
+
}
|
|
1613
|
+
export interface AssistedTeleop_FeedbackMessageConstructor {
|
|
1614
|
+
new(other?: AssistedTeleop_FeedbackMessage): AssistedTeleop_FeedbackMessage;
|
|
1615
|
+
}
|
|
1616
|
+
export interface AssistedTeleop_GetResultConstructor extends ROSService {
|
|
1617
|
+
readonly Request: AssistedTeleop_GetResult_RequestConstructor;
|
|
1618
|
+
readonly Response: AssistedTeleop_GetResult_ResponseConstructor;
|
|
1619
|
+
}
|
|
1620
|
+
export interface AssistedTeleop_GetResult_Request {
|
|
1621
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1622
|
+
}
|
|
1623
|
+
export interface AssistedTeleop_GetResult_RequestConstructor {
|
|
1624
|
+
new(other?: AssistedTeleop_GetResult_Request): AssistedTeleop_GetResult_Request;
|
|
1625
|
+
}
|
|
1626
|
+
export interface AssistedTeleop_GetResult_Response {
|
|
1627
|
+
status: number;
|
|
1628
|
+
result: nav2_msgs.action.AssistedTeleop_Result;
|
|
1629
|
+
}
|
|
1630
|
+
export interface AssistedTeleop_GetResult_ResponseConstructor {
|
|
1631
|
+
new(other?: AssistedTeleop_GetResult_Response): AssistedTeleop_GetResult_Response;
|
|
1632
|
+
}
|
|
1633
|
+
export interface AssistedTeleop_Goal {
|
|
1634
|
+
time_allowance: builtin_interfaces.msg.Duration;
|
|
1635
|
+
}
|
|
1636
|
+
export interface AssistedTeleop_GoalConstructor {
|
|
1637
|
+
readonly NONE: number;
|
|
1638
|
+
readonly UNKNOWN: number;
|
|
1639
|
+
readonly TIMEOUT: number;
|
|
1640
|
+
readonly TF_ERROR: number;
|
|
1641
|
+
new(other?: AssistedTeleop_Goal): AssistedTeleop_Goal;
|
|
1642
|
+
}
|
|
1643
|
+
export interface AssistedTeleop_Result {
|
|
1644
|
+
total_elapsed_time: builtin_interfaces.msg.Duration;
|
|
1645
|
+
error_code: number;
|
|
1646
|
+
}
|
|
1647
|
+
export interface AssistedTeleop_ResultConstructor {
|
|
1648
|
+
new(other?: AssistedTeleop_Result): AssistedTeleop_Result;
|
|
1649
|
+
}
|
|
1650
|
+
export interface AssistedTeleop_SendGoalConstructor extends ROSService {
|
|
1651
|
+
readonly Request: AssistedTeleop_SendGoal_RequestConstructor;
|
|
1652
|
+
readonly Response: AssistedTeleop_SendGoal_ResponseConstructor;
|
|
1653
|
+
}
|
|
1654
|
+
export interface AssistedTeleop_SendGoal_Request {
|
|
1655
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1656
|
+
goal: nav2_msgs.action.AssistedTeleop_Goal;
|
|
1657
|
+
}
|
|
1658
|
+
export interface AssistedTeleop_SendGoal_RequestConstructor {
|
|
1659
|
+
new(other?: AssistedTeleop_SendGoal_Request): AssistedTeleop_SendGoal_Request;
|
|
1660
|
+
}
|
|
1661
|
+
export interface AssistedTeleop_SendGoal_Response {
|
|
1662
|
+
accepted: boolean;
|
|
1663
|
+
stamp: builtin_interfaces.msg.Time;
|
|
1664
|
+
}
|
|
1665
|
+
export interface AssistedTeleop_SendGoal_ResponseConstructor {
|
|
1666
|
+
new(other?: AssistedTeleop_SendGoal_Response): AssistedTeleop_SendGoal_Response;
|
|
1667
|
+
}
|
|
1668
|
+
export interface BackUpConstructor {
|
|
1669
|
+
readonly Goal: BackUp_GoalConstructor;
|
|
1670
|
+
readonly Result: BackUp_ResultConstructor;
|
|
1671
|
+
readonly Feedback: BackUp_FeedbackConstructor;
|
|
1672
|
+
}
|
|
1673
|
+
export interface BackUp_Feedback {
|
|
1674
|
+
distance_traveled: number;
|
|
1675
|
+
}
|
|
1676
|
+
export interface BackUp_FeedbackConstructor {
|
|
1677
|
+
new(other?: BackUp_Feedback): BackUp_Feedback;
|
|
1678
|
+
}
|
|
1679
|
+
export interface BackUp_FeedbackMessage {
|
|
1680
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1681
|
+
feedback: nav2_msgs.action.BackUp_Feedback;
|
|
1682
|
+
}
|
|
1683
|
+
export interface BackUp_FeedbackMessageConstructor {
|
|
1684
|
+
new(other?: BackUp_FeedbackMessage): BackUp_FeedbackMessage;
|
|
1685
|
+
}
|
|
1686
|
+
export interface BackUp_GetResultConstructor extends ROSService {
|
|
1687
|
+
readonly Request: BackUp_GetResult_RequestConstructor;
|
|
1688
|
+
readonly Response: BackUp_GetResult_ResponseConstructor;
|
|
1689
|
+
}
|
|
1690
|
+
export interface BackUp_GetResult_Request {
|
|
1691
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1692
|
+
}
|
|
1693
|
+
export interface BackUp_GetResult_RequestConstructor {
|
|
1694
|
+
new(other?: BackUp_GetResult_Request): BackUp_GetResult_Request;
|
|
1695
|
+
}
|
|
1696
|
+
export interface BackUp_GetResult_Response {
|
|
1697
|
+
status: number;
|
|
1698
|
+
result: nav2_msgs.action.BackUp_Result;
|
|
1699
|
+
}
|
|
1700
|
+
export interface BackUp_GetResult_ResponseConstructor {
|
|
1701
|
+
new(other?: BackUp_GetResult_Response): BackUp_GetResult_Response;
|
|
1702
|
+
}
|
|
1703
|
+
export interface BackUp_Goal {
|
|
1704
|
+
target: geometry_msgs.msg.Point;
|
|
1705
|
+
speed: number;
|
|
1706
|
+
time_allowance: builtin_interfaces.msg.Duration;
|
|
1707
|
+
}
|
|
1708
|
+
export interface BackUp_GoalConstructor {
|
|
1709
|
+
readonly NONE: number;
|
|
1710
|
+
readonly UNKNOWN: number;
|
|
1711
|
+
readonly TIMEOUT: number;
|
|
1712
|
+
readonly TF_ERROR: number;
|
|
1713
|
+
readonly INVALID_INPUT: number;
|
|
1714
|
+
readonly COLLISION_AHEAD: number;
|
|
1715
|
+
new(other?: BackUp_Goal): BackUp_Goal;
|
|
1716
|
+
}
|
|
1717
|
+
export interface BackUp_Result {
|
|
1718
|
+
total_elapsed_time: builtin_interfaces.msg.Duration;
|
|
1719
|
+
error_code: number;
|
|
1720
|
+
}
|
|
1721
|
+
export interface BackUp_ResultConstructor {
|
|
1722
|
+
new(other?: BackUp_Result): BackUp_Result;
|
|
1723
|
+
}
|
|
1724
|
+
export interface BackUp_SendGoalConstructor extends ROSService {
|
|
1725
|
+
readonly Request: BackUp_SendGoal_RequestConstructor;
|
|
1726
|
+
readonly Response: BackUp_SendGoal_ResponseConstructor;
|
|
1727
|
+
}
|
|
1728
|
+
export interface BackUp_SendGoal_Request {
|
|
1729
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1730
|
+
goal: nav2_msgs.action.BackUp_Goal;
|
|
1731
|
+
}
|
|
1732
|
+
export interface BackUp_SendGoal_RequestConstructor {
|
|
1733
|
+
new(other?: BackUp_SendGoal_Request): BackUp_SendGoal_Request;
|
|
1734
|
+
}
|
|
1735
|
+
export interface BackUp_SendGoal_Response {
|
|
1736
|
+
accepted: boolean;
|
|
1737
|
+
stamp: builtin_interfaces.msg.Time;
|
|
1738
|
+
}
|
|
1739
|
+
export interface BackUp_SendGoal_ResponseConstructor {
|
|
1740
|
+
new(other?: BackUp_SendGoal_Response): BackUp_SendGoal_Response;
|
|
1741
|
+
}
|
|
1742
|
+
export interface ComputePathThroughPosesConstructor {
|
|
1743
|
+
readonly Goal: ComputePathThroughPoses_GoalConstructor;
|
|
1744
|
+
readonly Result: ComputePathThroughPoses_ResultConstructor;
|
|
1745
|
+
readonly Feedback: ComputePathThroughPoses_FeedbackConstructor;
|
|
1746
|
+
}
|
|
1747
|
+
export interface ComputePathThroughPoses_Feedback {
|
|
1748
|
+
}
|
|
1749
|
+
export interface ComputePathThroughPoses_FeedbackConstructor {
|
|
1750
|
+
new(other?: ComputePathThroughPoses_Feedback): ComputePathThroughPoses_Feedback;
|
|
1751
|
+
}
|
|
1752
|
+
export interface ComputePathThroughPoses_FeedbackMessage {
|
|
1753
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1754
|
+
feedback: nav2_msgs.action.ComputePathThroughPoses_Feedback;
|
|
1755
|
+
}
|
|
1756
|
+
export interface ComputePathThroughPoses_FeedbackMessageConstructor {
|
|
1757
|
+
new(other?: ComputePathThroughPoses_FeedbackMessage): ComputePathThroughPoses_FeedbackMessage;
|
|
1758
|
+
}
|
|
1759
|
+
export interface ComputePathThroughPoses_GetResultConstructor extends ROSService {
|
|
1760
|
+
readonly Request: ComputePathThroughPoses_GetResult_RequestConstructor;
|
|
1761
|
+
readonly Response: ComputePathThroughPoses_GetResult_ResponseConstructor;
|
|
1762
|
+
}
|
|
1763
|
+
export interface ComputePathThroughPoses_GetResult_Request {
|
|
1764
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1765
|
+
}
|
|
1766
|
+
export interface ComputePathThroughPoses_GetResult_RequestConstructor {
|
|
1767
|
+
new(other?: ComputePathThroughPoses_GetResult_Request): ComputePathThroughPoses_GetResult_Request;
|
|
1768
|
+
}
|
|
1769
|
+
export interface ComputePathThroughPoses_GetResult_Response {
|
|
1770
|
+
status: number;
|
|
1771
|
+
result: nav2_msgs.action.ComputePathThroughPoses_Result;
|
|
1772
|
+
}
|
|
1773
|
+
export interface ComputePathThroughPoses_GetResult_ResponseConstructor {
|
|
1774
|
+
new(other?: ComputePathThroughPoses_GetResult_Response): ComputePathThroughPoses_GetResult_Response;
|
|
1775
|
+
}
|
|
1776
|
+
export interface ComputePathThroughPoses_Goal {
|
|
1777
|
+
goals: geometry_msgs.msg.PoseStamped[];
|
|
1778
|
+
start: geometry_msgs.msg.PoseStamped;
|
|
1779
|
+
planner_id: string;
|
|
1780
|
+
use_start: boolean;
|
|
1781
|
+
}
|
|
1782
|
+
export interface ComputePathThroughPoses_GoalConstructor {
|
|
1783
|
+
readonly NONE: number;
|
|
1784
|
+
readonly UNKNOWN: number;
|
|
1785
|
+
readonly INVALID_PLANNER: number;
|
|
1786
|
+
readonly TF_ERROR: number;
|
|
1787
|
+
readonly START_OUTSIDE_MAP: number;
|
|
1788
|
+
readonly GOAL_OUTSIDE_MAP: number;
|
|
1789
|
+
readonly START_OCCUPIED: number;
|
|
1790
|
+
readonly GOAL_OCCUPIED: number;
|
|
1791
|
+
readonly TIMEOUT: number;
|
|
1792
|
+
readonly NO_VALID_PATH: number;
|
|
1793
|
+
readonly NO_VIAPOINTS_GIVEN: number;
|
|
1794
|
+
new(other?: ComputePathThroughPoses_Goal): ComputePathThroughPoses_Goal;
|
|
1795
|
+
}
|
|
1796
|
+
export interface ComputePathThroughPoses_Result {
|
|
1797
|
+
path: nav_msgs.msg.Path;
|
|
1798
|
+
planning_time: builtin_interfaces.msg.Duration;
|
|
1799
|
+
error_code: number;
|
|
1800
|
+
}
|
|
1801
|
+
export interface ComputePathThroughPoses_ResultConstructor {
|
|
1802
|
+
new(other?: ComputePathThroughPoses_Result): ComputePathThroughPoses_Result;
|
|
1803
|
+
}
|
|
1804
|
+
export interface ComputePathThroughPoses_SendGoalConstructor extends ROSService {
|
|
1805
|
+
readonly Request: ComputePathThroughPoses_SendGoal_RequestConstructor;
|
|
1806
|
+
readonly Response: ComputePathThroughPoses_SendGoal_ResponseConstructor;
|
|
1807
|
+
}
|
|
1808
|
+
export interface ComputePathThroughPoses_SendGoal_Request {
|
|
1809
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1810
|
+
goal: nav2_msgs.action.ComputePathThroughPoses_Goal;
|
|
1811
|
+
}
|
|
1812
|
+
export interface ComputePathThroughPoses_SendGoal_RequestConstructor {
|
|
1813
|
+
new(other?: ComputePathThroughPoses_SendGoal_Request): ComputePathThroughPoses_SendGoal_Request;
|
|
1814
|
+
}
|
|
1815
|
+
export interface ComputePathThroughPoses_SendGoal_Response {
|
|
1816
|
+
accepted: boolean;
|
|
1817
|
+
stamp: builtin_interfaces.msg.Time;
|
|
1818
|
+
}
|
|
1819
|
+
export interface ComputePathThroughPoses_SendGoal_ResponseConstructor {
|
|
1820
|
+
new(other?: ComputePathThroughPoses_SendGoal_Response): ComputePathThroughPoses_SendGoal_Response;
|
|
1821
|
+
}
|
|
1822
|
+
export interface ComputePathToPoseConstructor {
|
|
1823
|
+
readonly Goal: ComputePathToPose_GoalConstructor;
|
|
1824
|
+
readonly Result: ComputePathToPose_ResultConstructor;
|
|
1825
|
+
readonly Feedback: ComputePathToPose_FeedbackConstructor;
|
|
1826
|
+
}
|
|
1827
|
+
export interface ComputePathToPose_Feedback {
|
|
1828
|
+
}
|
|
1829
|
+
export interface ComputePathToPose_FeedbackConstructor {
|
|
1830
|
+
new(other?: ComputePathToPose_Feedback): ComputePathToPose_Feedback;
|
|
1831
|
+
}
|
|
1832
|
+
export interface ComputePathToPose_FeedbackMessage {
|
|
1833
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1834
|
+
feedback: nav2_msgs.action.ComputePathToPose_Feedback;
|
|
1835
|
+
}
|
|
1836
|
+
export interface ComputePathToPose_FeedbackMessageConstructor {
|
|
1837
|
+
new(other?: ComputePathToPose_FeedbackMessage): ComputePathToPose_FeedbackMessage;
|
|
1838
|
+
}
|
|
1839
|
+
export interface ComputePathToPose_GetResultConstructor extends ROSService {
|
|
1840
|
+
readonly Request: ComputePathToPose_GetResult_RequestConstructor;
|
|
1841
|
+
readonly Response: ComputePathToPose_GetResult_ResponseConstructor;
|
|
1842
|
+
}
|
|
1843
|
+
export interface ComputePathToPose_GetResult_Request {
|
|
1844
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1845
|
+
}
|
|
1846
|
+
export interface ComputePathToPose_GetResult_RequestConstructor {
|
|
1847
|
+
new(other?: ComputePathToPose_GetResult_Request): ComputePathToPose_GetResult_Request;
|
|
1848
|
+
}
|
|
1849
|
+
export interface ComputePathToPose_GetResult_Response {
|
|
1850
|
+
status: number;
|
|
1851
|
+
result: nav2_msgs.action.ComputePathToPose_Result;
|
|
1852
|
+
}
|
|
1853
|
+
export interface ComputePathToPose_GetResult_ResponseConstructor {
|
|
1854
|
+
new(other?: ComputePathToPose_GetResult_Response): ComputePathToPose_GetResult_Response;
|
|
1855
|
+
}
|
|
1856
|
+
export interface ComputePathToPose_Goal {
|
|
1857
|
+
goal: geometry_msgs.msg.PoseStamped;
|
|
1858
|
+
start: geometry_msgs.msg.PoseStamped;
|
|
1859
|
+
planner_id: string;
|
|
1860
|
+
use_start: boolean;
|
|
1861
|
+
}
|
|
1862
|
+
export interface ComputePathToPose_GoalConstructor {
|
|
1863
|
+
readonly NONE: number;
|
|
1864
|
+
readonly UNKNOWN: number;
|
|
1865
|
+
readonly INVALID_PLANNER: number;
|
|
1866
|
+
readonly TF_ERROR: number;
|
|
1867
|
+
readonly START_OUTSIDE_MAP: number;
|
|
1868
|
+
readonly GOAL_OUTSIDE_MAP: number;
|
|
1869
|
+
readonly START_OCCUPIED: number;
|
|
1870
|
+
readonly GOAL_OCCUPIED: number;
|
|
1871
|
+
readonly TIMEOUT: number;
|
|
1872
|
+
readonly NO_VALID_PATH: number;
|
|
1873
|
+
new(other?: ComputePathToPose_Goal): ComputePathToPose_Goal;
|
|
1874
|
+
}
|
|
1875
|
+
export interface ComputePathToPose_Result {
|
|
1876
|
+
path: nav_msgs.msg.Path;
|
|
1877
|
+
planning_time: builtin_interfaces.msg.Duration;
|
|
1878
|
+
error_code: number;
|
|
1879
|
+
}
|
|
1880
|
+
export interface ComputePathToPose_ResultConstructor {
|
|
1881
|
+
new(other?: ComputePathToPose_Result): ComputePathToPose_Result;
|
|
1882
|
+
}
|
|
1883
|
+
export interface ComputePathToPose_SendGoalConstructor extends ROSService {
|
|
1884
|
+
readonly Request: ComputePathToPose_SendGoal_RequestConstructor;
|
|
1885
|
+
readonly Response: ComputePathToPose_SendGoal_ResponseConstructor;
|
|
1886
|
+
}
|
|
1887
|
+
export interface ComputePathToPose_SendGoal_Request {
|
|
1888
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1889
|
+
goal: nav2_msgs.action.ComputePathToPose_Goal;
|
|
1890
|
+
}
|
|
1891
|
+
export interface ComputePathToPose_SendGoal_RequestConstructor {
|
|
1892
|
+
new(other?: ComputePathToPose_SendGoal_Request): ComputePathToPose_SendGoal_Request;
|
|
1893
|
+
}
|
|
1894
|
+
export interface ComputePathToPose_SendGoal_Response {
|
|
1895
|
+
accepted: boolean;
|
|
1896
|
+
stamp: builtin_interfaces.msg.Time;
|
|
1897
|
+
}
|
|
1898
|
+
export interface ComputePathToPose_SendGoal_ResponseConstructor {
|
|
1899
|
+
new(other?: ComputePathToPose_SendGoal_Response): ComputePathToPose_SendGoal_Response;
|
|
1900
|
+
}
|
|
1901
|
+
export interface DriveOnHeadingConstructor {
|
|
1902
|
+
readonly Goal: DriveOnHeading_GoalConstructor;
|
|
1903
|
+
readonly Result: DriveOnHeading_ResultConstructor;
|
|
1904
|
+
readonly Feedback: DriveOnHeading_FeedbackConstructor;
|
|
1905
|
+
}
|
|
1906
|
+
export interface DriveOnHeading_Feedback {
|
|
1907
|
+
distance_traveled: number;
|
|
1908
|
+
}
|
|
1909
|
+
export interface DriveOnHeading_FeedbackConstructor {
|
|
1910
|
+
new(other?: DriveOnHeading_Feedback): DriveOnHeading_Feedback;
|
|
1911
|
+
}
|
|
1912
|
+
export interface DriveOnHeading_FeedbackMessage {
|
|
1913
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1914
|
+
feedback: nav2_msgs.action.DriveOnHeading_Feedback;
|
|
1915
|
+
}
|
|
1916
|
+
export interface DriveOnHeading_FeedbackMessageConstructor {
|
|
1917
|
+
new(other?: DriveOnHeading_FeedbackMessage): DriveOnHeading_FeedbackMessage;
|
|
1918
|
+
}
|
|
1919
|
+
export interface DriveOnHeading_GetResultConstructor extends ROSService {
|
|
1920
|
+
readonly Request: DriveOnHeading_GetResult_RequestConstructor;
|
|
1921
|
+
readonly Response: DriveOnHeading_GetResult_ResponseConstructor;
|
|
1922
|
+
}
|
|
1923
|
+
export interface DriveOnHeading_GetResult_Request {
|
|
1924
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1925
|
+
}
|
|
1926
|
+
export interface DriveOnHeading_GetResult_RequestConstructor {
|
|
1927
|
+
new(other?: DriveOnHeading_GetResult_Request): DriveOnHeading_GetResult_Request;
|
|
1928
|
+
}
|
|
1929
|
+
export interface DriveOnHeading_GetResult_Response {
|
|
1930
|
+
status: number;
|
|
1931
|
+
result: nav2_msgs.action.DriveOnHeading_Result;
|
|
1932
|
+
}
|
|
1933
|
+
export interface DriveOnHeading_GetResult_ResponseConstructor {
|
|
1934
|
+
new(other?: DriveOnHeading_GetResult_Response): DriveOnHeading_GetResult_Response;
|
|
1935
|
+
}
|
|
1936
|
+
export interface DriveOnHeading_Goal {
|
|
1937
|
+
target: geometry_msgs.msg.Point;
|
|
1938
|
+
speed: number;
|
|
1939
|
+
time_allowance: builtin_interfaces.msg.Duration;
|
|
1940
|
+
}
|
|
1941
|
+
export interface DriveOnHeading_GoalConstructor {
|
|
1942
|
+
readonly NONE: number;
|
|
1943
|
+
readonly UNKNOWN: number;
|
|
1944
|
+
readonly TIMEOUT: number;
|
|
1945
|
+
readonly TF_ERROR: number;
|
|
1946
|
+
readonly COLLISION_AHEAD: number;
|
|
1947
|
+
readonly INVALID_INPUT: number;
|
|
1948
|
+
new(other?: DriveOnHeading_Goal): DriveOnHeading_Goal;
|
|
1949
|
+
}
|
|
1950
|
+
export interface DriveOnHeading_Result {
|
|
1951
|
+
total_elapsed_time: builtin_interfaces.msg.Duration;
|
|
1952
|
+
error_code: number;
|
|
1953
|
+
}
|
|
1954
|
+
export interface DriveOnHeading_ResultConstructor {
|
|
1955
|
+
new(other?: DriveOnHeading_Result): DriveOnHeading_Result;
|
|
1956
|
+
}
|
|
1957
|
+
export interface DriveOnHeading_SendGoalConstructor extends ROSService {
|
|
1958
|
+
readonly Request: DriveOnHeading_SendGoal_RequestConstructor;
|
|
1959
|
+
readonly Response: DriveOnHeading_SendGoal_ResponseConstructor;
|
|
1960
|
+
}
|
|
1961
|
+
export interface DriveOnHeading_SendGoal_Request {
|
|
1962
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1963
|
+
goal: nav2_msgs.action.DriveOnHeading_Goal;
|
|
1964
|
+
}
|
|
1965
|
+
export interface DriveOnHeading_SendGoal_RequestConstructor {
|
|
1966
|
+
new(other?: DriveOnHeading_SendGoal_Request): DriveOnHeading_SendGoal_Request;
|
|
1967
|
+
}
|
|
1968
|
+
export interface DriveOnHeading_SendGoal_Response {
|
|
1969
|
+
accepted: boolean;
|
|
1970
|
+
stamp: builtin_interfaces.msg.Time;
|
|
1971
|
+
}
|
|
1972
|
+
export interface DriveOnHeading_SendGoal_ResponseConstructor {
|
|
1973
|
+
new(other?: DriveOnHeading_SendGoal_Response): DriveOnHeading_SendGoal_Response;
|
|
1974
|
+
}
|
|
1975
|
+
export interface DummyBehaviorConstructor {
|
|
1976
|
+
readonly Goal: DummyBehavior_GoalConstructor;
|
|
1977
|
+
readonly Result: DummyBehavior_ResultConstructor;
|
|
1978
|
+
readonly Feedback: DummyBehavior_FeedbackConstructor;
|
|
1979
|
+
}
|
|
1980
|
+
export interface DummyBehavior_Feedback {
|
|
1981
|
+
}
|
|
1982
|
+
export interface DummyBehavior_FeedbackConstructor {
|
|
1983
|
+
new(other?: DummyBehavior_Feedback): DummyBehavior_Feedback;
|
|
1984
|
+
}
|
|
1985
|
+
export interface DummyBehavior_FeedbackMessage {
|
|
1986
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1987
|
+
feedback: nav2_msgs.action.DummyBehavior_Feedback;
|
|
1988
|
+
}
|
|
1989
|
+
export interface DummyBehavior_FeedbackMessageConstructor {
|
|
1990
|
+
new(other?: DummyBehavior_FeedbackMessage): DummyBehavior_FeedbackMessage;
|
|
1991
|
+
}
|
|
1992
|
+
export interface DummyBehavior_GetResultConstructor extends ROSService {
|
|
1993
|
+
readonly Request: DummyBehavior_GetResult_RequestConstructor;
|
|
1994
|
+
readonly Response: DummyBehavior_GetResult_ResponseConstructor;
|
|
1995
|
+
}
|
|
1996
|
+
export interface DummyBehavior_GetResult_Request {
|
|
1997
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
1998
|
+
}
|
|
1999
|
+
export interface DummyBehavior_GetResult_RequestConstructor {
|
|
2000
|
+
new(other?: DummyBehavior_GetResult_Request): DummyBehavior_GetResult_Request;
|
|
2001
|
+
}
|
|
2002
|
+
export interface DummyBehavior_GetResult_Response {
|
|
2003
|
+
status: number;
|
|
2004
|
+
result: nav2_msgs.action.DummyBehavior_Result;
|
|
2005
|
+
}
|
|
2006
|
+
export interface DummyBehavior_GetResult_ResponseConstructor {
|
|
2007
|
+
new(other?: DummyBehavior_GetResult_Response): DummyBehavior_GetResult_Response;
|
|
2008
|
+
}
|
|
2009
|
+
export interface DummyBehavior_Goal {
|
|
2010
|
+
command: std_msgs.msg.String;
|
|
2011
|
+
}
|
|
2012
|
+
export interface DummyBehavior_GoalConstructor {
|
|
2013
|
+
new(other?: DummyBehavior_Goal): DummyBehavior_Goal;
|
|
2014
|
+
}
|
|
2015
|
+
export interface DummyBehavior_Result {
|
|
2016
|
+
total_elapsed_time: builtin_interfaces.msg.Duration;
|
|
2017
|
+
error_code: number;
|
|
2018
|
+
}
|
|
2019
|
+
export interface DummyBehavior_ResultConstructor {
|
|
2020
|
+
new(other?: DummyBehavior_Result): DummyBehavior_Result;
|
|
2021
|
+
}
|
|
2022
|
+
export interface DummyBehavior_SendGoalConstructor extends ROSService {
|
|
2023
|
+
readonly Request: DummyBehavior_SendGoal_RequestConstructor;
|
|
2024
|
+
readonly Response: DummyBehavior_SendGoal_ResponseConstructor;
|
|
2025
|
+
}
|
|
2026
|
+
export interface DummyBehavior_SendGoal_Request {
|
|
2027
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2028
|
+
goal: nav2_msgs.action.DummyBehavior_Goal;
|
|
2029
|
+
}
|
|
2030
|
+
export interface DummyBehavior_SendGoal_RequestConstructor {
|
|
2031
|
+
new(other?: DummyBehavior_SendGoal_Request): DummyBehavior_SendGoal_Request;
|
|
2032
|
+
}
|
|
2033
|
+
export interface DummyBehavior_SendGoal_Response {
|
|
2034
|
+
accepted: boolean;
|
|
2035
|
+
stamp: builtin_interfaces.msg.Time;
|
|
2036
|
+
}
|
|
2037
|
+
export interface DummyBehavior_SendGoal_ResponseConstructor {
|
|
2038
|
+
new(other?: DummyBehavior_SendGoal_Response): DummyBehavior_SendGoal_Response;
|
|
2039
|
+
}
|
|
2040
|
+
export interface FollowGPSWaypointsConstructor {
|
|
2041
|
+
readonly Goal: FollowGPSWaypoints_GoalConstructor;
|
|
2042
|
+
readonly Result: FollowGPSWaypoints_ResultConstructor;
|
|
2043
|
+
readonly Feedback: FollowGPSWaypoints_FeedbackConstructor;
|
|
2044
|
+
}
|
|
2045
|
+
export interface FollowGPSWaypoints_Feedback {
|
|
2046
|
+
current_waypoint: number;
|
|
2047
|
+
}
|
|
2048
|
+
export interface FollowGPSWaypoints_FeedbackConstructor {
|
|
2049
|
+
new(other?: FollowGPSWaypoints_Feedback): FollowGPSWaypoints_Feedback;
|
|
2050
|
+
}
|
|
2051
|
+
export interface FollowGPSWaypoints_FeedbackMessage {
|
|
2052
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2053
|
+
feedback: nav2_msgs.action.FollowGPSWaypoints_Feedback;
|
|
2054
|
+
}
|
|
2055
|
+
export interface FollowGPSWaypoints_FeedbackMessageConstructor {
|
|
2056
|
+
new(other?: FollowGPSWaypoints_FeedbackMessage): FollowGPSWaypoints_FeedbackMessage;
|
|
2057
|
+
}
|
|
2058
|
+
export interface FollowGPSWaypoints_GetResultConstructor extends ROSService {
|
|
2059
|
+
readonly Request: FollowGPSWaypoints_GetResult_RequestConstructor;
|
|
2060
|
+
readonly Response: FollowGPSWaypoints_GetResult_ResponseConstructor;
|
|
2061
|
+
}
|
|
2062
|
+
export interface FollowGPSWaypoints_GetResult_Request {
|
|
2063
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2064
|
+
}
|
|
2065
|
+
export interface FollowGPSWaypoints_GetResult_RequestConstructor {
|
|
2066
|
+
new(other?: FollowGPSWaypoints_GetResult_Request): FollowGPSWaypoints_GetResult_Request;
|
|
2067
|
+
}
|
|
2068
|
+
export interface FollowGPSWaypoints_GetResult_Response {
|
|
2069
|
+
status: number;
|
|
2070
|
+
result: nav2_msgs.action.FollowGPSWaypoints_Result;
|
|
2071
|
+
}
|
|
2072
|
+
export interface FollowGPSWaypoints_GetResult_ResponseConstructor {
|
|
2073
|
+
new(other?: FollowGPSWaypoints_GetResult_Response): FollowGPSWaypoints_GetResult_Response;
|
|
2074
|
+
}
|
|
2075
|
+
export interface FollowGPSWaypoints_Goal {
|
|
2076
|
+
number_of_loops: number;
|
|
2077
|
+
goal_index: number;
|
|
2078
|
+
gps_poses: geographic_msgs.msg.GeoPose[];
|
|
2079
|
+
}
|
|
2080
|
+
export interface FollowGPSWaypoints_GoalConstructor {
|
|
2081
|
+
new(other?: FollowGPSWaypoints_Goal): FollowGPSWaypoints_Goal;
|
|
2082
|
+
}
|
|
2083
|
+
export interface FollowGPSWaypoints_Result {
|
|
2084
|
+
missed_waypoints: nav2_msgs.msg.MissedWaypoint[];
|
|
2085
|
+
}
|
|
2086
|
+
export interface FollowGPSWaypoints_ResultConstructor {
|
|
2087
|
+
readonly NONE: number;
|
|
2088
|
+
readonly UNKNOWN: number;
|
|
2089
|
+
readonly TASK_EXECUTOR_FAILED: number;
|
|
2090
|
+
new(other?: FollowGPSWaypoints_Result): FollowGPSWaypoints_Result;
|
|
2091
|
+
}
|
|
2092
|
+
export interface FollowGPSWaypoints_SendGoalConstructor extends ROSService {
|
|
2093
|
+
readonly Request: FollowGPSWaypoints_SendGoal_RequestConstructor;
|
|
2094
|
+
readonly Response: FollowGPSWaypoints_SendGoal_ResponseConstructor;
|
|
2095
|
+
}
|
|
2096
|
+
export interface FollowGPSWaypoints_SendGoal_Request {
|
|
2097
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2098
|
+
goal: nav2_msgs.action.FollowGPSWaypoints_Goal;
|
|
2099
|
+
}
|
|
2100
|
+
export interface FollowGPSWaypoints_SendGoal_RequestConstructor {
|
|
2101
|
+
new(other?: FollowGPSWaypoints_SendGoal_Request): FollowGPSWaypoints_SendGoal_Request;
|
|
2102
|
+
}
|
|
2103
|
+
export interface FollowGPSWaypoints_SendGoal_Response {
|
|
2104
|
+
accepted: boolean;
|
|
2105
|
+
stamp: builtin_interfaces.msg.Time;
|
|
2106
|
+
}
|
|
2107
|
+
export interface FollowGPSWaypoints_SendGoal_ResponseConstructor {
|
|
2108
|
+
new(other?: FollowGPSWaypoints_SendGoal_Response): FollowGPSWaypoints_SendGoal_Response;
|
|
2109
|
+
}
|
|
2110
|
+
export interface FollowPathConstructor {
|
|
2111
|
+
readonly Goal: FollowPath_GoalConstructor;
|
|
2112
|
+
readonly Result: FollowPath_ResultConstructor;
|
|
2113
|
+
readonly Feedback: FollowPath_FeedbackConstructor;
|
|
2114
|
+
}
|
|
2115
|
+
export interface FollowPath_Feedback {
|
|
2116
|
+
distance_to_goal: number;
|
|
2117
|
+
speed: number;
|
|
2118
|
+
}
|
|
2119
|
+
export interface FollowPath_FeedbackConstructor {
|
|
2120
|
+
new(other?: FollowPath_Feedback): FollowPath_Feedback;
|
|
2121
|
+
}
|
|
2122
|
+
export interface FollowPath_FeedbackMessage {
|
|
2123
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2124
|
+
feedback: nav2_msgs.action.FollowPath_Feedback;
|
|
2125
|
+
}
|
|
2126
|
+
export interface FollowPath_FeedbackMessageConstructor {
|
|
2127
|
+
new(other?: FollowPath_FeedbackMessage): FollowPath_FeedbackMessage;
|
|
2128
|
+
}
|
|
2129
|
+
export interface FollowPath_GetResultConstructor extends ROSService {
|
|
2130
|
+
readonly Request: FollowPath_GetResult_RequestConstructor;
|
|
2131
|
+
readonly Response: FollowPath_GetResult_ResponseConstructor;
|
|
2132
|
+
}
|
|
2133
|
+
export interface FollowPath_GetResult_Request {
|
|
2134
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2135
|
+
}
|
|
2136
|
+
export interface FollowPath_GetResult_RequestConstructor {
|
|
2137
|
+
new(other?: FollowPath_GetResult_Request): FollowPath_GetResult_Request;
|
|
2138
|
+
}
|
|
2139
|
+
export interface FollowPath_GetResult_Response {
|
|
2140
|
+
status: number;
|
|
2141
|
+
result: nav2_msgs.action.FollowPath_Result;
|
|
2142
|
+
}
|
|
2143
|
+
export interface FollowPath_GetResult_ResponseConstructor {
|
|
2144
|
+
new(other?: FollowPath_GetResult_Response): FollowPath_GetResult_Response;
|
|
2145
|
+
}
|
|
2146
|
+
export interface FollowPath_Goal {
|
|
2147
|
+
path: nav_msgs.msg.Path;
|
|
2148
|
+
controller_id: string;
|
|
2149
|
+
goal_checker_id: string;
|
|
2150
|
+
progress_checker_id: string;
|
|
2151
|
+
}
|
|
2152
|
+
export interface FollowPath_GoalConstructor {
|
|
2153
|
+
readonly NONE: number;
|
|
2154
|
+
readonly UNKNOWN: number;
|
|
2155
|
+
readonly INVALID_CONTROLLER: number;
|
|
2156
|
+
readonly TF_ERROR: number;
|
|
2157
|
+
readonly INVALID_PATH: number;
|
|
2158
|
+
readonly PATIENCE_EXCEEDED: number;
|
|
2159
|
+
readonly FAILED_TO_MAKE_PROGRESS: number;
|
|
2160
|
+
readonly NO_VALID_CONTROL: number;
|
|
2161
|
+
new(other?: FollowPath_Goal): FollowPath_Goal;
|
|
2162
|
+
}
|
|
2163
|
+
export interface FollowPath_Result {
|
|
2164
|
+
result: std_msgs.msg.Empty;
|
|
2165
|
+
error_code: number;
|
|
2166
|
+
}
|
|
2167
|
+
export interface FollowPath_ResultConstructor {
|
|
2168
|
+
new(other?: FollowPath_Result): FollowPath_Result;
|
|
2169
|
+
}
|
|
2170
|
+
export interface FollowPath_SendGoalConstructor extends ROSService {
|
|
2171
|
+
readonly Request: FollowPath_SendGoal_RequestConstructor;
|
|
2172
|
+
readonly Response: FollowPath_SendGoal_ResponseConstructor;
|
|
2173
|
+
}
|
|
2174
|
+
export interface FollowPath_SendGoal_Request {
|
|
2175
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2176
|
+
goal: nav2_msgs.action.FollowPath_Goal;
|
|
2177
|
+
}
|
|
2178
|
+
export interface FollowPath_SendGoal_RequestConstructor {
|
|
2179
|
+
new(other?: FollowPath_SendGoal_Request): FollowPath_SendGoal_Request;
|
|
2180
|
+
}
|
|
2181
|
+
export interface FollowPath_SendGoal_Response {
|
|
2182
|
+
accepted: boolean;
|
|
2183
|
+
stamp: builtin_interfaces.msg.Time;
|
|
2184
|
+
}
|
|
2185
|
+
export interface FollowPath_SendGoal_ResponseConstructor {
|
|
2186
|
+
new(other?: FollowPath_SendGoal_Response): FollowPath_SendGoal_Response;
|
|
2187
|
+
}
|
|
2188
|
+
export interface FollowWaypointsConstructor {
|
|
2189
|
+
readonly Goal: FollowWaypoints_GoalConstructor;
|
|
2190
|
+
readonly Result: FollowWaypoints_ResultConstructor;
|
|
2191
|
+
readonly Feedback: FollowWaypoints_FeedbackConstructor;
|
|
2192
|
+
}
|
|
2193
|
+
export interface FollowWaypoints_Feedback {
|
|
2194
|
+
current_waypoint: number;
|
|
2195
|
+
}
|
|
2196
|
+
export interface FollowWaypoints_FeedbackConstructor {
|
|
2197
|
+
new(other?: FollowWaypoints_Feedback): FollowWaypoints_Feedback;
|
|
2198
|
+
}
|
|
2199
|
+
export interface FollowWaypoints_FeedbackMessage {
|
|
2200
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2201
|
+
feedback: nav2_msgs.action.FollowWaypoints_Feedback;
|
|
2202
|
+
}
|
|
2203
|
+
export interface FollowWaypoints_FeedbackMessageConstructor {
|
|
2204
|
+
new(other?: FollowWaypoints_FeedbackMessage): FollowWaypoints_FeedbackMessage;
|
|
2205
|
+
}
|
|
2206
|
+
export interface FollowWaypoints_GetResultConstructor extends ROSService {
|
|
2207
|
+
readonly Request: FollowWaypoints_GetResult_RequestConstructor;
|
|
2208
|
+
readonly Response: FollowWaypoints_GetResult_ResponseConstructor;
|
|
2209
|
+
}
|
|
2210
|
+
export interface FollowWaypoints_GetResult_Request {
|
|
2211
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2212
|
+
}
|
|
2213
|
+
export interface FollowWaypoints_GetResult_RequestConstructor {
|
|
2214
|
+
new(other?: FollowWaypoints_GetResult_Request): FollowWaypoints_GetResult_Request;
|
|
2215
|
+
}
|
|
2216
|
+
export interface FollowWaypoints_GetResult_Response {
|
|
2217
|
+
status: number;
|
|
2218
|
+
result: nav2_msgs.action.FollowWaypoints_Result;
|
|
2219
|
+
}
|
|
2220
|
+
export interface FollowWaypoints_GetResult_ResponseConstructor {
|
|
2221
|
+
new(other?: FollowWaypoints_GetResult_Response): FollowWaypoints_GetResult_Response;
|
|
2222
|
+
}
|
|
2223
|
+
export interface FollowWaypoints_Goal {
|
|
2224
|
+
number_of_loops: number;
|
|
2225
|
+
goal_index: number;
|
|
2226
|
+
poses: geometry_msgs.msg.PoseStamped[];
|
|
2227
|
+
}
|
|
2228
|
+
export interface FollowWaypoints_GoalConstructor {
|
|
2229
|
+
readonly NONE: number;
|
|
2230
|
+
readonly UNKNOWN: number;
|
|
2231
|
+
readonly TASK_EXECUTOR_FAILED: number;
|
|
2232
|
+
new(other?: FollowWaypoints_Goal): FollowWaypoints_Goal;
|
|
2233
|
+
}
|
|
2234
|
+
export interface FollowWaypoints_Result {
|
|
2235
|
+
missed_waypoints: nav2_msgs.msg.MissedWaypoint[];
|
|
2236
|
+
}
|
|
2237
|
+
export interface FollowWaypoints_ResultConstructor {
|
|
2238
|
+
new(other?: FollowWaypoints_Result): FollowWaypoints_Result;
|
|
2239
|
+
}
|
|
2240
|
+
export interface FollowWaypoints_SendGoalConstructor extends ROSService {
|
|
2241
|
+
readonly Request: FollowWaypoints_SendGoal_RequestConstructor;
|
|
2242
|
+
readonly Response: FollowWaypoints_SendGoal_ResponseConstructor;
|
|
2243
|
+
}
|
|
2244
|
+
export interface FollowWaypoints_SendGoal_Request {
|
|
2245
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2246
|
+
goal: nav2_msgs.action.FollowWaypoints_Goal;
|
|
2247
|
+
}
|
|
2248
|
+
export interface FollowWaypoints_SendGoal_RequestConstructor {
|
|
2249
|
+
new(other?: FollowWaypoints_SendGoal_Request): FollowWaypoints_SendGoal_Request;
|
|
2250
|
+
}
|
|
2251
|
+
export interface FollowWaypoints_SendGoal_Response {
|
|
2252
|
+
accepted: boolean;
|
|
2253
|
+
stamp: builtin_interfaces.msg.Time;
|
|
2254
|
+
}
|
|
2255
|
+
export interface FollowWaypoints_SendGoal_ResponseConstructor {
|
|
2256
|
+
new(other?: FollowWaypoints_SendGoal_Response): FollowWaypoints_SendGoal_Response;
|
|
2257
|
+
}
|
|
2258
|
+
export interface NavigateThroughPosesConstructor {
|
|
2259
|
+
readonly Goal: NavigateThroughPoses_GoalConstructor;
|
|
2260
|
+
readonly Result: NavigateThroughPoses_ResultConstructor;
|
|
2261
|
+
readonly Feedback: NavigateThroughPoses_FeedbackConstructor;
|
|
2262
|
+
}
|
|
2263
|
+
export interface NavigateThroughPoses_Feedback {
|
|
2264
|
+
current_pose: geometry_msgs.msg.PoseStamped;
|
|
2265
|
+
navigation_time: builtin_interfaces.msg.Duration;
|
|
2266
|
+
estimated_time_remaining: builtin_interfaces.msg.Duration;
|
|
2267
|
+
number_of_recoveries: number;
|
|
2268
|
+
distance_remaining: number;
|
|
2269
|
+
number_of_poses_remaining: number;
|
|
2270
|
+
}
|
|
2271
|
+
export interface NavigateThroughPoses_FeedbackConstructor {
|
|
2272
|
+
new(other?: NavigateThroughPoses_Feedback): NavigateThroughPoses_Feedback;
|
|
2273
|
+
}
|
|
2274
|
+
export interface NavigateThroughPoses_FeedbackMessage {
|
|
2275
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2276
|
+
feedback: nav2_msgs.action.NavigateThroughPoses_Feedback;
|
|
2277
|
+
}
|
|
2278
|
+
export interface NavigateThroughPoses_FeedbackMessageConstructor {
|
|
2279
|
+
new(other?: NavigateThroughPoses_FeedbackMessage): NavigateThroughPoses_FeedbackMessage;
|
|
2280
|
+
}
|
|
2281
|
+
export interface NavigateThroughPoses_GetResultConstructor extends ROSService {
|
|
2282
|
+
readonly Request: NavigateThroughPoses_GetResult_RequestConstructor;
|
|
2283
|
+
readonly Response: NavigateThroughPoses_GetResult_ResponseConstructor;
|
|
2284
|
+
}
|
|
2285
|
+
export interface NavigateThroughPoses_GetResult_Request {
|
|
2286
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2287
|
+
}
|
|
2288
|
+
export interface NavigateThroughPoses_GetResult_RequestConstructor {
|
|
2289
|
+
new(other?: NavigateThroughPoses_GetResult_Request): NavigateThroughPoses_GetResult_Request;
|
|
2290
|
+
}
|
|
2291
|
+
export interface NavigateThroughPoses_GetResult_Response {
|
|
2292
|
+
status: number;
|
|
2293
|
+
result: nav2_msgs.action.NavigateThroughPoses_Result;
|
|
2294
|
+
}
|
|
2295
|
+
export interface NavigateThroughPoses_GetResult_ResponseConstructor {
|
|
2296
|
+
new(other?: NavigateThroughPoses_GetResult_Response): NavigateThroughPoses_GetResult_Response;
|
|
2297
|
+
}
|
|
2298
|
+
export interface NavigateThroughPoses_Goal {
|
|
2299
|
+
poses: geometry_msgs.msg.PoseStamped[];
|
|
2300
|
+
behavior_tree: string;
|
|
2301
|
+
}
|
|
2302
|
+
export interface NavigateThroughPoses_GoalConstructor {
|
|
2303
|
+
readonly NONE: number;
|
|
2304
|
+
new(other?: NavigateThroughPoses_Goal): NavigateThroughPoses_Goal;
|
|
2305
|
+
}
|
|
2306
|
+
export interface NavigateThroughPoses_Result {
|
|
2307
|
+
error_code: number;
|
|
2308
|
+
}
|
|
2309
|
+
export interface NavigateThroughPoses_ResultConstructor {
|
|
2310
|
+
new(other?: NavigateThroughPoses_Result): NavigateThroughPoses_Result;
|
|
2311
|
+
}
|
|
2312
|
+
export interface NavigateThroughPoses_SendGoalConstructor extends ROSService {
|
|
2313
|
+
readonly Request: NavigateThroughPoses_SendGoal_RequestConstructor;
|
|
2314
|
+
readonly Response: NavigateThroughPoses_SendGoal_ResponseConstructor;
|
|
2315
|
+
}
|
|
2316
|
+
export interface NavigateThroughPoses_SendGoal_Request {
|
|
2317
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2318
|
+
goal: nav2_msgs.action.NavigateThroughPoses_Goal;
|
|
2319
|
+
}
|
|
2320
|
+
export interface NavigateThroughPoses_SendGoal_RequestConstructor {
|
|
2321
|
+
new(other?: NavigateThroughPoses_SendGoal_Request): NavigateThroughPoses_SendGoal_Request;
|
|
2322
|
+
}
|
|
2323
|
+
export interface NavigateThroughPoses_SendGoal_Response {
|
|
2324
|
+
accepted: boolean;
|
|
2325
|
+
stamp: builtin_interfaces.msg.Time;
|
|
2326
|
+
}
|
|
2327
|
+
export interface NavigateThroughPoses_SendGoal_ResponseConstructor {
|
|
2328
|
+
new(other?: NavigateThroughPoses_SendGoal_Response): NavigateThroughPoses_SendGoal_Response;
|
|
2329
|
+
}
|
|
2330
|
+
export interface NavigateToPoseConstructor {
|
|
2331
|
+
readonly Goal: NavigateToPose_GoalConstructor;
|
|
2332
|
+
readonly Result: NavigateToPose_ResultConstructor;
|
|
2333
|
+
readonly Feedback: NavigateToPose_FeedbackConstructor;
|
|
2334
|
+
}
|
|
2335
|
+
export interface NavigateToPose_Feedback {
|
|
2336
|
+
current_pose: geometry_msgs.msg.PoseStamped;
|
|
2337
|
+
navigation_time: builtin_interfaces.msg.Duration;
|
|
2338
|
+
estimated_time_remaining: builtin_interfaces.msg.Duration;
|
|
2339
|
+
number_of_recoveries: number;
|
|
2340
|
+
distance_remaining: number;
|
|
2341
|
+
}
|
|
2342
|
+
export interface NavigateToPose_FeedbackConstructor {
|
|
2343
|
+
new(other?: NavigateToPose_Feedback): NavigateToPose_Feedback;
|
|
2344
|
+
}
|
|
2345
|
+
export interface NavigateToPose_FeedbackMessage {
|
|
2346
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2347
|
+
feedback: nav2_msgs.action.NavigateToPose_Feedback;
|
|
2348
|
+
}
|
|
2349
|
+
export interface NavigateToPose_FeedbackMessageConstructor {
|
|
2350
|
+
new(other?: NavigateToPose_FeedbackMessage): NavigateToPose_FeedbackMessage;
|
|
2351
|
+
}
|
|
2352
|
+
export interface NavigateToPose_GetResultConstructor extends ROSService {
|
|
2353
|
+
readonly Request: NavigateToPose_GetResult_RequestConstructor;
|
|
2354
|
+
readonly Response: NavigateToPose_GetResult_ResponseConstructor;
|
|
2355
|
+
}
|
|
2356
|
+
export interface NavigateToPose_GetResult_Request {
|
|
2357
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2358
|
+
}
|
|
2359
|
+
export interface NavigateToPose_GetResult_RequestConstructor {
|
|
2360
|
+
new(other?: NavigateToPose_GetResult_Request): NavigateToPose_GetResult_Request;
|
|
2361
|
+
}
|
|
2362
|
+
export interface NavigateToPose_GetResult_Response {
|
|
2363
|
+
status: number;
|
|
2364
|
+
result: nav2_msgs.action.NavigateToPose_Result;
|
|
2365
|
+
}
|
|
2366
|
+
export interface NavigateToPose_GetResult_ResponseConstructor {
|
|
2367
|
+
new(other?: NavigateToPose_GetResult_Response): NavigateToPose_GetResult_Response;
|
|
2368
|
+
}
|
|
2369
|
+
export interface NavigateToPose_Goal {
|
|
2370
|
+
pose: geometry_msgs.msg.PoseStamped;
|
|
2371
|
+
behavior_tree: string;
|
|
2372
|
+
}
|
|
2373
|
+
export interface NavigateToPose_GoalConstructor {
|
|
2374
|
+
readonly NONE: number;
|
|
2375
|
+
new(other?: NavigateToPose_Goal): NavigateToPose_Goal;
|
|
2376
|
+
}
|
|
2377
|
+
export interface NavigateToPose_Result {
|
|
2378
|
+
error_code: number;
|
|
2379
|
+
}
|
|
2380
|
+
export interface NavigateToPose_ResultConstructor {
|
|
2381
|
+
new(other?: NavigateToPose_Result): NavigateToPose_Result;
|
|
2382
|
+
}
|
|
2383
|
+
export interface NavigateToPose_SendGoalConstructor extends ROSService {
|
|
2384
|
+
readonly Request: NavigateToPose_SendGoal_RequestConstructor;
|
|
2385
|
+
readonly Response: NavigateToPose_SendGoal_ResponseConstructor;
|
|
2386
|
+
}
|
|
2387
|
+
export interface NavigateToPose_SendGoal_Request {
|
|
2388
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2389
|
+
goal: nav2_msgs.action.NavigateToPose_Goal;
|
|
2390
|
+
}
|
|
2391
|
+
export interface NavigateToPose_SendGoal_RequestConstructor {
|
|
2392
|
+
new(other?: NavigateToPose_SendGoal_Request): NavigateToPose_SendGoal_Request;
|
|
2393
|
+
}
|
|
2394
|
+
export interface NavigateToPose_SendGoal_Response {
|
|
2395
|
+
accepted: boolean;
|
|
2396
|
+
stamp: builtin_interfaces.msg.Time;
|
|
2397
|
+
}
|
|
2398
|
+
export interface NavigateToPose_SendGoal_ResponseConstructor {
|
|
2399
|
+
new(other?: NavigateToPose_SendGoal_Response): NavigateToPose_SendGoal_Response;
|
|
2400
|
+
}
|
|
2401
|
+
export interface SmoothPathConstructor {
|
|
2402
|
+
readonly Goal: SmoothPath_GoalConstructor;
|
|
2403
|
+
readonly Result: SmoothPath_ResultConstructor;
|
|
2404
|
+
readonly Feedback: SmoothPath_FeedbackConstructor;
|
|
2405
|
+
}
|
|
2406
|
+
export interface SmoothPath_Feedback {
|
|
2407
|
+
}
|
|
2408
|
+
export interface SmoothPath_FeedbackConstructor {
|
|
2409
|
+
new(other?: SmoothPath_Feedback): SmoothPath_Feedback;
|
|
2410
|
+
}
|
|
2411
|
+
export interface SmoothPath_FeedbackMessage {
|
|
2412
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2413
|
+
feedback: nav2_msgs.action.SmoothPath_Feedback;
|
|
2414
|
+
}
|
|
2415
|
+
export interface SmoothPath_FeedbackMessageConstructor {
|
|
2416
|
+
new(other?: SmoothPath_FeedbackMessage): SmoothPath_FeedbackMessage;
|
|
2417
|
+
}
|
|
2418
|
+
export interface SmoothPath_GetResultConstructor extends ROSService {
|
|
2419
|
+
readonly Request: SmoothPath_GetResult_RequestConstructor;
|
|
2420
|
+
readonly Response: SmoothPath_GetResult_ResponseConstructor;
|
|
2421
|
+
}
|
|
2422
|
+
export interface SmoothPath_GetResult_Request {
|
|
2423
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2424
|
+
}
|
|
2425
|
+
export interface SmoothPath_GetResult_RequestConstructor {
|
|
2426
|
+
new(other?: SmoothPath_GetResult_Request): SmoothPath_GetResult_Request;
|
|
2427
|
+
}
|
|
2428
|
+
export interface SmoothPath_GetResult_Response {
|
|
2429
|
+
status: number;
|
|
2430
|
+
result: nav2_msgs.action.SmoothPath_Result;
|
|
2431
|
+
}
|
|
2432
|
+
export interface SmoothPath_GetResult_ResponseConstructor {
|
|
2433
|
+
new(other?: SmoothPath_GetResult_Response): SmoothPath_GetResult_Response;
|
|
2434
|
+
}
|
|
2435
|
+
export interface SmoothPath_Goal {
|
|
2436
|
+
path: nav_msgs.msg.Path;
|
|
2437
|
+
smoother_id: string;
|
|
2438
|
+
max_smoothing_duration: builtin_interfaces.msg.Duration;
|
|
2439
|
+
check_for_collisions: boolean;
|
|
2440
|
+
}
|
|
2441
|
+
export interface SmoothPath_GoalConstructor {
|
|
2442
|
+
readonly NONE: number;
|
|
2443
|
+
readonly UNKNOWN: number;
|
|
2444
|
+
readonly INVALID_SMOOTHER: number;
|
|
2445
|
+
readonly TIMEOUT: number;
|
|
2446
|
+
readonly SMOOTHED_PATH_IN_COLLISION: number;
|
|
2447
|
+
readonly FAILED_TO_SMOOTH_PATH: number;
|
|
2448
|
+
readonly INVALID_PATH: number;
|
|
2449
|
+
new(other?: SmoothPath_Goal): SmoothPath_Goal;
|
|
2450
|
+
}
|
|
2451
|
+
export interface SmoothPath_Result {
|
|
2452
|
+
path: nav_msgs.msg.Path;
|
|
2453
|
+
smoothing_duration: builtin_interfaces.msg.Duration;
|
|
2454
|
+
was_completed: boolean;
|
|
2455
|
+
error_code: number;
|
|
2456
|
+
}
|
|
2457
|
+
export interface SmoothPath_ResultConstructor {
|
|
2458
|
+
new(other?: SmoothPath_Result): SmoothPath_Result;
|
|
2459
|
+
}
|
|
2460
|
+
export interface SmoothPath_SendGoalConstructor extends ROSService {
|
|
2461
|
+
readonly Request: SmoothPath_SendGoal_RequestConstructor;
|
|
2462
|
+
readonly Response: SmoothPath_SendGoal_ResponseConstructor;
|
|
2463
|
+
}
|
|
2464
|
+
export interface SmoothPath_SendGoal_Request {
|
|
2465
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2466
|
+
goal: nav2_msgs.action.SmoothPath_Goal;
|
|
2467
|
+
}
|
|
2468
|
+
export interface SmoothPath_SendGoal_RequestConstructor {
|
|
2469
|
+
new(other?: SmoothPath_SendGoal_Request): SmoothPath_SendGoal_Request;
|
|
2470
|
+
}
|
|
2471
|
+
export interface SmoothPath_SendGoal_Response {
|
|
2472
|
+
accepted: boolean;
|
|
2473
|
+
stamp: builtin_interfaces.msg.Time;
|
|
2474
|
+
}
|
|
2475
|
+
export interface SmoothPath_SendGoal_ResponseConstructor {
|
|
2476
|
+
new(other?: SmoothPath_SendGoal_Response): SmoothPath_SendGoal_Response;
|
|
2477
|
+
}
|
|
2478
|
+
export interface SpinConstructor {
|
|
2479
|
+
readonly Goal: Spin_GoalConstructor;
|
|
2480
|
+
readonly Result: Spin_ResultConstructor;
|
|
2481
|
+
readonly Feedback: Spin_FeedbackConstructor;
|
|
2482
|
+
}
|
|
2483
|
+
export interface Spin_Feedback {
|
|
2484
|
+
angular_distance_traveled: number;
|
|
2485
|
+
}
|
|
2486
|
+
export interface Spin_FeedbackConstructor {
|
|
2487
|
+
new(other?: Spin_Feedback): Spin_Feedback;
|
|
2488
|
+
}
|
|
2489
|
+
export interface Spin_FeedbackMessage {
|
|
2490
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2491
|
+
feedback: nav2_msgs.action.Spin_Feedback;
|
|
2492
|
+
}
|
|
2493
|
+
export interface Spin_FeedbackMessageConstructor {
|
|
2494
|
+
new(other?: Spin_FeedbackMessage): Spin_FeedbackMessage;
|
|
2495
|
+
}
|
|
2496
|
+
export interface Spin_GetResultConstructor extends ROSService {
|
|
2497
|
+
readonly Request: Spin_GetResult_RequestConstructor;
|
|
2498
|
+
readonly Response: Spin_GetResult_ResponseConstructor;
|
|
2499
|
+
}
|
|
2500
|
+
export interface Spin_GetResult_Request {
|
|
2501
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2502
|
+
}
|
|
2503
|
+
export interface Spin_GetResult_RequestConstructor {
|
|
2504
|
+
new(other?: Spin_GetResult_Request): Spin_GetResult_Request;
|
|
2505
|
+
}
|
|
2506
|
+
export interface Spin_GetResult_Response {
|
|
2507
|
+
status: number;
|
|
2508
|
+
result: nav2_msgs.action.Spin_Result;
|
|
2509
|
+
}
|
|
2510
|
+
export interface Spin_GetResult_ResponseConstructor {
|
|
2511
|
+
new(other?: Spin_GetResult_Response): Spin_GetResult_Response;
|
|
2512
|
+
}
|
|
2513
|
+
export interface Spin_Goal {
|
|
2514
|
+
target_yaw: number;
|
|
2515
|
+
time_allowance: builtin_interfaces.msg.Duration;
|
|
2516
|
+
}
|
|
2517
|
+
export interface Spin_GoalConstructor {
|
|
2518
|
+
readonly NONE: number;
|
|
2519
|
+
readonly UNKNOWN: number;
|
|
2520
|
+
readonly TIMEOUT: number;
|
|
2521
|
+
readonly TF_ERROR: number;
|
|
2522
|
+
readonly COLLISION_AHEAD: number;
|
|
2523
|
+
new(other?: Spin_Goal): Spin_Goal;
|
|
2524
|
+
}
|
|
2525
|
+
export interface Spin_Result {
|
|
2526
|
+
total_elapsed_time: builtin_interfaces.msg.Duration;
|
|
2527
|
+
error_code: number;
|
|
2528
|
+
}
|
|
2529
|
+
export interface Spin_ResultConstructor {
|
|
2530
|
+
new(other?: Spin_Result): Spin_Result;
|
|
2531
|
+
}
|
|
2532
|
+
export interface Spin_SendGoalConstructor extends ROSService {
|
|
2533
|
+
readonly Request: Spin_SendGoal_RequestConstructor;
|
|
2534
|
+
readonly Response: Spin_SendGoal_ResponseConstructor;
|
|
2535
|
+
}
|
|
2536
|
+
export interface Spin_SendGoal_Request {
|
|
2537
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2538
|
+
goal: nav2_msgs.action.Spin_Goal;
|
|
2539
|
+
}
|
|
2540
|
+
export interface Spin_SendGoal_RequestConstructor {
|
|
2541
|
+
new(other?: Spin_SendGoal_Request): Spin_SendGoal_Request;
|
|
2542
|
+
}
|
|
2543
|
+
export interface Spin_SendGoal_Response {
|
|
2544
|
+
accepted: boolean;
|
|
2545
|
+
stamp: builtin_interfaces.msg.Time;
|
|
2546
|
+
}
|
|
2547
|
+
export interface Spin_SendGoal_ResponseConstructor {
|
|
2548
|
+
new(other?: Spin_SendGoal_Response): Spin_SendGoal_Response;
|
|
2549
|
+
}
|
|
2550
|
+
export interface WaitConstructor {
|
|
2551
|
+
readonly Goal: Wait_GoalConstructor;
|
|
2552
|
+
readonly Result: Wait_ResultConstructor;
|
|
2553
|
+
readonly Feedback: Wait_FeedbackConstructor;
|
|
2554
|
+
}
|
|
2555
|
+
export interface Wait_Feedback {
|
|
2556
|
+
time_left: builtin_interfaces.msg.Duration;
|
|
2557
|
+
}
|
|
2558
|
+
export interface Wait_FeedbackConstructor {
|
|
2559
|
+
new(other?: Wait_Feedback): Wait_Feedback;
|
|
2560
|
+
}
|
|
2561
|
+
export interface Wait_FeedbackMessage {
|
|
2562
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2563
|
+
feedback: nav2_msgs.action.Wait_Feedback;
|
|
2564
|
+
}
|
|
2565
|
+
export interface Wait_FeedbackMessageConstructor {
|
|
2566
|
+
new(other?: Wait_FeedbackMessage): Wait_FeedbackMessage;
|
|
2567
|
+
}
|
|
2568
|
+
export interface Wait_GetResultConstructor extends ROSService {
|
|
2569
|
+
readonly Request: Wait_GetResult_RequestConstructor;
|
|
2570
|
+
readonly Response: Wait_GetResult_ResponseConstructor;
|
|
2571
|
+
}
|
|
2572
|
+
export interface Wait_GetResult_Request {
|
|
2573
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2574
|
+
}
|
|
2575
|
+
export interface Wait_GetResult_RequestConstructor {
|
|
2576
|
+
new(other?: Wait_GetResult_Request): Wait_GetResult_Request;
|
|
2577
|
+
}
|
|
2578
|
+
export interface Wait_GetResult_Response {
|
|
2579
|
+
status: number;
|
|
2580
|
+
result: nav2_msgs.action.Wait_Result;
|
|
2581
|
+
}
|
|
2582
|
+
export interface Wait_GetResult_ResponseConstructor {
|
|
2583
|
+
new(other?: Wait_GetResult_Response): Wait_GetResult_Response;
|
|
2584
|
+
}
|
|
2585
|
+
export interface Wait_Goal {
|
|
2586
|
+
time: builtin_interfaces.msg.Duration;
|
|
2587
|
+
}
|
|
2588
|
+
export interface Wait_GoalConstructor {
|
|
2589
|
+
new(other?: Wait_Goal): Wait_Goal;
|
|
2590
|
+
}
|
|
2591
|
+
export interface Wait_Result {
|
|
2592
|
+
total_elapsed_time: builtin_interfaces.msg.Duration;
|
|
2593
|
+
error_code: number;
|
|
2594
|
+
}
|
|
2595
|
+
export interface Wait_ResultConstructor {
|
|
2596
|
+
new(other?: Wait_Result): Wait_Result;
|
|
2597
|
+
}
|
|
2598
|
+
export interface Wait_SendGoalConstructor extends ROSService {
|
|
2599
|
+
readonly Request: Wait_SendGoal_RequestConstructor;
|
|
2600
|
+
readonly Response: Wait_SendGoal_ResponseConstructor;
|
|
2601
|
+
}
|
|
2602
|
+
export interface Wait_SendGoal_Request {
|
|
2603
|
+
goal_id: unique_identifier_msgs.msg.UUID;
|
|
2604
|
+
goal: nav2_msgs.action.Wait_Goal;
|
|
2605
|
+
}
|
|
2606
|
+
export interface Wait_SendGoal_RequestConstructor {
|
|
2607
|
+
new(other?: Wait_SendGoal_Request): Wait_SendGoal_Request;
|
|
2608
|
+
}
|
|
2609
|
+
export interface Wait_SendGoal_Response {
|
|
2610
|
+
accepted: boolean;
|
|
2611
|
+
stamp: builtin_interfaces.msg.Time;
|
|
2612
|
+
}
|
|
2613
|
+
export interface Wait_SendGoal_ResponseConstructor {
|
|
2614
|
+
new(other?: Wait_SendGoal_Response): Wait_SendGoal_Response;
|
|
2615
|
+
}
|
|
2616
|
+
}
|
|
2617
|
+
namespace msg {
|
|
2618
|
+
export interface BehaviorTreeLog {
|
|
2619
|
+
timestamp: builtin_interfaces.msg.Time;
|
|
2620
|
+
event_log: nav2_msgs.msg.BehaviorTreeStatusChange[];
|
|
2621
|
+
}
|
|
2622
|
+
export interface BehaviorTreeLogConstructor {
|
|
2623
|
+
new(other?: BehaviorTreeLog): BehaviorTreeLog;
|
|
2624
|
+
}
|
|
2625
|
+
export interface BehaviorTreeStatusChange {
|
|
2626
|
+
timestamp: builtin_interfaces.msg.Time;
|
|
2627
|
+
node_name: string;
|
|
2628
|
+
previous_status: string;
|
|
2629
|
+
current_status: string;
|
|
2630
|
+
}
|
|
2631
|
+
export interface BehaviorTreeStatusChangeConstructor {
|
|
2632
|
+
new(other?: BehaviorTreeStatusChange): BehaviorTreeStatusChange;
|
|
2633
|
+
}
|
|
2634
|
+
export interface CollisionDetectorState {
|
|
2635
|
+
polygons: string[];
|
|
2636
|
+
detections: boolean[];
|
|
2637
|
+
}
|
|
2638
|
+
export interface CollisionDetectorStateConstructor {
|
|
2639
|
+
new(other?: CollisionDetectorState): CollisionDetectorState;
|
|
2640
|
+
}
|
|
2641
|
+
export interface CollisionMonitorState {
|
|
2642
|
+
action_type: number;
|
|
2643
|
+
polygon_name: string;
|
|
2644
|
+
}
|
|
2645
|
+
export interface CollisionMonitorStateConstructor {
|
|
2646
|
+
readonly DO_NOTHING: number;
|
|
2647
|
+
readonly STOP: number;
|
|
2648
|
+
readonly SLOWDOWN: number;
|
|
2649
|
+
readonly APPROACH: number;
|
|
2650
|
+
new(other?: CollisionMonitorState): CollisionMonitorState;
|
|
2651
|
+
}
|
|
2652
|
+
export interface Costmap {
|
|
2653
|
+
header: std_msgs.msg.Header;
|
|
2654
|
+
metadata: nav2_msgs.msg.CostmapMetaData;
|
|
2655
|
+
data: number[] | Uint8Array;
|
|
2656
|
+
}
|
|
2657
|
+
export interface CostmapConstructor {
|
|
2658
|
+
new(other?: Costmap): Costmap;
|
|
2659
|
+
}
|
|
2660
|
+
export interface CostmapFilterInfo {
|
|
2661
|
+
header: std_msgs.msg.Header;
|
|
2662
|
+
type: number;
|
|
2663
|
+
filter_mask_topic: string;
|
|
2664
|
+
base: number;
|
|
2665
|
+
multiplier: number;
|
|
2666
|
+
}
|
|
2667
|
+
export interface CostmapFilterInfoConstructor {
|
|
2668
|
+
new(other?: CostmapFilterInfo): CostmapFilterInfo;
|
|
2669
|
+
}
|
|
2670
|
+
export interface CostmapMetaData {
|
|
2671
|
+
map_load_time: builtin_interfaces.msg.Time;
|
|
2672
|
+
update_time: builtin_interfaces.msg.Time;
|
|
2673
|
+
layer: string;
|
|
2674
|
+
resolution: number;
|
|
2675
|
+
size_x: number;
|
|
2676
|
+
size_y: number;
|
|
2677
|
+
origin: geometry_msgs.msg.Pose;
|
|
2678
|
+
}
|
|
2679
|
+
export interface CostmapMetaDataConstructor {
|
|
2680
|
+
new(other?: CostmapMetaData): CostmapMetaData;
|
|
2681
|
+
}
|
|
2682
|
+
export interface MissedWaypoint {
|
|
2683
|
+
index: number;
|
|
2684
|
+
goal: geometry_msgs.msg.PoseStamped;
|
|
2685
|
+
error_code: number;
|
|
2686
|
+
}
|
|
2687
|
+
export interface MissedWaypointConstructor {
|
|
2688
|
+
new(other?: MissedWaypoint): MissedWaypoint;
|
|
2689
|
+
}
|
|
2690
|
+
export interface Particle {
|
|
2691
|
+
pose: geometry_msgs.msg.Pose;
|
|
2692
|
+
weight: number;
|
|
2693
|
+
}
|
|
2694
|
+
export interface ParticleConstructor {
|
|
2695
|
+
new(other?: Particle): Particle;
|
|
2696
|
+
}
|
|
2697
|
+
export interface ParticleCloud {
|
|
2698
|
+
header: std_msgs.msg.Header;
|
|
2699
|
+
particles: nav2_msgs.msg.Particle[];
|
|
2700
|
+
}
|
|
2701
|
+
export interface ParticleCloudConstructor {
|
|
2702
|
+
new(other?: ParticleCloud): ParticleCloud;
|
|
2703
|
+
}
|
|
2704
|
+
export interface SpeedLimit {
|
|
2705
|
+
header: std_msgs.msg.Header;
|
|
2706
|
+
percentage: boolean;
|
|
2707
|
+
speed_limit: number;
|
|
2708
|
+
}
|
|
2709
|
+
export interface SpeedLimitConstructor {
|
|
2710
|
+
new(other?: SpeedLimit): SpeedLimit;
|
|
2711
|
+
}
|
|
2712
|
+
export interface VoxelGrid {
|
|
2713
|
+
header: std_msgs.msg.Header;
|
|
2714
|
+
data: number[] | Uint32Array;
|
|
2715
|
+
origin: geometry_msgs.msg.Point32;
|
|
2716
|
+
resolutions: geometry_msgs.msg.Vector3;
|
|
2717
|
+
size_x: number;
|
|
2718
|
+
size_y: number;
|
|
2719
|
+
size_z: number;
|
|
2720
|
+
}
|
|
2721
|
+
export interface VoxelGridConstructor {
|
|
2722
|
+
new(other?: VoxelGrid): VoxelGrid;
|
|
2723
|
+
}
|
|
2724
|
+
}
|
|
2725
|
+
namespace srv {
|
|
2726
|
+
export interface ClearCostmapAroundRobotConstructor extends ROSService {
|
|
2727
|
+
readonly Request: ClearCostmapAroundRobot_RequestConstructor;
|
|
2728
|
+
readonly Response: ClearCostmapAroundRobot_ResponseConstructor;
|
|
2729
|
+
}
|
|
2730
|
+
export interface ClearCostmapAroundRobot_Event {
|
|
2731
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
2732
|
+
request: nav2_msgs.srv.ClearCostmapAroundRobot_Request[];
|
|
2733
|
+
response: nav2_msgs.srv.ClearCostmapAroundRobot_Response[];
|
|
2734
|
+
}
|
|
2735
|
+
export interface ClearCostmapAroundRobot_EventConstructor {
|
|
2736
|
+
new(other?: ClearCostmapAroundRobot_Event): ClearCostmapAroundRobot_Event;
|
|
2737
|
+
}
|
|
2738
|
+
export interface ClearCostmapAroundRobot_Request {
|
|
2739
|
+
reset_distance: number;
|
|
2740
|
+
}
|
|
2741
|
+
export interface ClearCostmapAroundRobot_RequestConstructor {
|
|
2742
|
+
new(other?: ClearCostmapAroundRobot_Request): ClearCostmapAroundRobot_Request;
|
|
2743
|
+
}
|
|
2744
|
+
export interface ClearCostmapAroundRobot_Response {
|
|
2745
|
+
response: std_msgs.msg.Empty;
|
|
2746
|
+
}
|
|
2747
|
+
export interface ClearCostmapAroundRobot_ResponseConstructor {
|
|
2748
|
+
new(other?: ClearCostmapAroundRobot_Response): ClearCostmapAroundRobot_Response;
|
|
2749
|
+
}
|
|
2750
|
+
export interface ClearCostmapExceptRegionConstructor extends ROSService {
|
|
2751
|
+
readonly Request: ClearCostmapExceptRegion_RequestConstructor;
|
|
2752
|
+
readonly Response: ClearCostmapExceptRegion_ResponseConstructor;
|
|
2753
|
+
}
|
|
2754
|
+
export interface ClearCostmapExceptRegion_Event {
|
|
2755
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
2756
|
+
request: nav2_msgs.srv.ClearCostmapExceptRegion_Request[];
|
|
2757
|
+
response: nav2_msgs.srv.ClearCostmapExceptRegion_Response[];
|
|
2758
|
+
}
|
|
2759
|
+
export interface ClearCostmapExceptRegion_EventConstructor {
|
|
2760
|
+
new(other?: ClearCostmapExceptRegion_Event): ClearCostmapExceptRegion_Event;
|
|
2761
|
+
}
|
|
2762
|
+
export interface ClearCostmapExceptRegion_Request {
|
|
2763
|
+
reset_distance: number;
|
|
2764
|
+
}
|
|
2765
|
+
export interface ClearCostmapExceptRegion_RequestConstructor {
|
|
2766
|
+
new(other?: ClearCostmapExceptRegion_Request): ClearCostmapExceptRegion_Request;
|
|
2767
|
+
}
|
|
2768
|
+
export interface ClearCostmapExceptRegion_Response {
|
|
2769
|
+
response: std_msgs.msg.Empty;
|
|
2770
|
+
}
|
|
2771
|
+
export interface ClearCostmapExceptRegion_ResponseConstructor {
|
|
2772
|
+
new(other?: ClearCostmapExceptRegion_Response): ClearCostmapExceptRegion_Response;
|
|
2773
|
+
}
|
|
2774
|
+
export interface ClearEntireCostmapConstructor extends ROSService {
|
|
2775
|
+
readonly Request: ClearEntireCostmap_RequestConstructor;
|
|
2776
|
+
readonly Response: ClearEntireCostmap_ResponseConstructor;
|
|
2777
|
+
}
|
|
2778
|
+
export interface ClearEntireCostmap_Event {
|
|
2779
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
2780
|
+
request: nav2_msgs.srv.ClearEntireCostmap_Request[];
|
|
2781
|
+
response: nav2_msgs.srv.ClearEntireCostmap_Response[];
|
|
2782
|
+
}
|
|
2783
|
+
export interface ClearEntireCostmap_EventConstructor {
|
|
2784
|
+
new(other?: ClearEntireCostmap_Event): ClearEntireCostmap_Event;
|
|
2785
|
+
}
|
|
2786
|
+
export interface ClearEntireCostmap_Request {
|
|
2787
|
+
request: std_msgs.msg.Empty;
|
|
2788
|
+
}
|
|
2789
|
+
export interface ClearEntireCostmap_RequestConstructor {
|
|
2790
|
+
new(other?: ClearEntireCostmap_Request): ClearEntireCostmap_Request;
|
|
2791
|
+
}
|
|
2792
|
+
export interface ClearEntireCostmap_Response {
|
|
2793
|
+
response: std_msgs.msg.Empty;
|
|
2794
|
+
}
|
|
2795
|
+
export interface ClearEntireCostmap_ResponseConstructor {
|
|
2796
|
+
new(other?: ClearEntireCostmap_Response): ClearEntireCostmap_Response;
|
|
2797
|
+
}
|
|
2798
|
+
export interface GetCostmapConstructor extends ROSService {
|
|
2799
|
+
readonly Request: GetCostmap_RequestConstructor;
|
|
2800
|
+
readonly Response: GetCostmap_ResponseConstructor;
|
|
2801
|
+
}
|
|
2802
|
+
export interface GetCostmap_Event {
|
|
2803
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
2804
|
+
request: nav2_msgs.srv.GetCostmap_Request[];
|
|
2805
|
+
response: nav2_msgs.srv.GetCostmap_Response[];
|
|
2806
|
+
}
|
|
2807
|
+
export interface GetCostmap_EventConstructor {
|
|
2808
|
+
new(other?: GetCostmap_Event): GetCostmap_Event;
|
|
2809
|
+
}
|
|
2810
|
+
export interface GetCostmap_Request {
|
|
2811
|
+
specs: nav2_msgs.msg.CostmapMetaData;
|
|
2812
|
+
}
|
|
2813
|
+
export interface GetCostmap_RequestConstructor {
|
|
2814
|
+
new(other?: GetCostmap_Request): GetCostmap_Request;
|
|
2815
|
+
}
|
|
2816
|
+
export interface GetCostmap_Response {
|
|
2817
|
+
map: nav2_msgs.msg.Costmap;
|
|
2818
|
+
}
|
|
2819
|
+
export interface GetCostmap_ResponseConstructor {
|
|
2820
|
+
new(other?: GetCostmap_Response): GetCostmap_Response;
|
|
2821
|
+
}
|
|
2822
|
+
export interface IsPathValidConstructor extends ROSService {
|
|
2823
|
+
readonly Request: IsPathValid_RequestConstructor;
|
|
2824
|
+
readonly Response: IsPathValid_ResponseConstructor;
|
|
2825
|
+
}
|
|
2826
|
+
export interface IsPathValid_Event {
|
|
2827
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
2828
|
+
request: nav2_msgs.srv.IsPathValid_Request[];
|
|
2829
|
+
response: nav2_msgs.srv.IsPathValid_Response[];
|
|
2830
|
+
}
|
|
2831
|
+
export interface IsPathValid_EventConstructor {
|
|
2832
|
+
new(other?: IsPathValid_Event): IsPathValid_Event;
|
|
2833
|
+
}
|
|
2834
|
+
export interface IsPathValid_Request {
|
|
2835
|
+
path: nav_msgs.msg.Path;
|
|
2836
|
+
}
|
|
2837
|
+
export interface IsPathValid_RequestConstructor {
|
|
2838
|
+
new(other?: IsPathValid_Request): IsPathValid_Request;
|
|
2839
|
+
}
|
|
2840
|
+
export interface IsPathValid_Response {
|
|
2841
|
+
is_valid: boolean;
|
|
2842
|
+
invalid_pose_indices: number[] | Int32Array;
|
|
2843
|
+
}
|
|
2844
|
+
export interface IsPathValid_ResponseConstructor {
|
|
2845
|
+
new(other?: IsPathValid_Response): IsPathValid_Response;
|
|
2846
|
+
}
|
|
2847
|
+
export interface LoadMapConstructor extends ROSService {
|
|
2848
|
+
readonly Request: LoadMap_RequestConstructor;
|
|
2849
|
+
readonly Response: LoadMap_ResponseConstructor;
|
|
2850
|
+
}
|
|
2851
|
+
export interface LoadMap_Event {
|
|
2852
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
2853
|
+
request: nav2_msgs.srv.LoadMap_Request[];
|
|
2854
|
+
response: nav2_msgs.srv.LoadMap_Response[];
|
|
2855
|
+
}
|
|
2856
|
+
export interface LoadMap_EventConstructor {
|
|
2857
|
+
new(other?: LoadMap_Event): LoadMap_Event;
|
|
2858
|
+
}
|
|
2859
|
+
export interface LoadMap_Request {
|
|
2860
|
+
map_url: string;
|
|
2861
|
+
}
|
|
2862
|
+
export interface LoadMap_RequestConstructor {
|
|
2863
|
+
new(other?: LoadMap_Request): LoadMap_Request;
|
|
2864
|
+
}
|
|
2865
|
+
export interface LoadMap_Response {
|
|
2866
|
+
map: nav_msgs.msg.OccupancyGrid;
|
|
2867
|
+
result: number;
|
|
2868
|
+
}
|
|
2869
|
+
export interface LoadMap_ResponseConstructor {
|
|
2870
|
+
readonly RESULT_SUCCESS: number;
|
|
2871
|
+
readonly RESULT_MAP_DOES_NOT_EXIST: number;
|
|
2872
|
+
readonly RESULT_INVALID_MAP_DATA: number;
|
|
2873
|
+
readonly RESULT_INVALID_MAP_METADATA: number;
|
|
2874
|
+
readonly RESULT_UNDEFINED_FAILURE: number;
|
|
2875
|
+
new(other?: LoadMap_Response): LoadMap_Response;
|
|
2876
|
+
}
|
|
2877
|
+
export interface ManageLifecycleNodesConstructor extends ROSService {
|
|
2878
|
+
readonly Request: ManageLifecycleNodes_RequestConstructor;
|
|
2879
|
+
readonly Response: ManageLifecycleNodes_ResponseConstructor;
|
|
2880
|
+
}
|
|
2881
|
+
export interface ManageLifecycleNodes_Event {
|
|
2882
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
2883
|
+
request: nav2_msgs.srv.ManageLifecycleNodes_Request[];
|
|
2884
|
+
response: nav2_msgs.srv.ManageLifecycleNodes_Response[];
|
|
2885
|
+
}
|
|
2886
|
+
export interface ManageLifecycleNodes_EventConstructor {
|
|
2887
|
+
new(other?: ManageLifecycleNodes_Event): ManageLifecycleNodes_Event;
|
|
2888
|
+
}
|
|
2889
|
+
export interface ManageLifecycleNodes_Request {
|
|
2890
|
+
command: number;
|
|
2891
|
+
}
|
|
2892
|
+
export interface ManageLifecycleNodes_RequestConstructor {
|
|
2893
|
+
readonly STARTUP: number;
|
|
2894
|
+
readonly PAUSE: number;
|
|
2895
|
+
readonly RESUME: number;
|
|
2896
|
+
readonly RESET: number;
|
|
2897
|
+
readonly SHUTDOWN: number;
|
|
2898
|
+
new(other?: ManageLifecycleNodes_Request): ManageLifecycleNodes_Request;
|
|
2899
|
+
}
|
|
2900
|
+
export interface ManageLifecycleNodes_Response {
|
|
2901
|
+
success: boolean;
|
|
2902
|
+
}
|
|
2903
|
+
export interface ManageLifecycleNodes_ResponseConstructor {
|
|
2904
|
+
new(other?: ManageLifecycleNodes_Response): ManageLifecycleNodes_Response;
|
|
2905
|
+
}
|
|
2906
|
+
export interface SaveMapConstructor extends ROSService {
|
|
2907
|
+
readonly Request: SaveMap_RequestConstructor;
|
|
2908
|
+
readonly Response: SaveMap_ResponseConstructor;
|
|
2909
|
+
}
|
|
2910
|
+
export interface SaveMap_Event {
|
|
2911
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
2912
|
+
request: nav2_msgs.srv.SaveMap_Request[];
|
|
2913
|
+
response: nav2_msgs.srv.SaveMap_Response[];
|
|
2914
|
+
}
|
|
2915
|
+
export interface SaveMap_EventConstructor {
|
|
2916
|
+
new(other?: SaveMap_Event): SaveMap_Event;
|
|
2917
|
+
}
|
|
2918
|
+
export interface SaveMap_Request {
|
|
2919
|
+
map_topic: string;
|
|
2920
|
+
map_url: string;
|
|
2921
|
+
image_format: string;
|
|
2922
|
+
map_mode: string;
|
|
2923
|
+
free_thresh: number;
|
|
2924
|
+
occupied_thresh: number;
|
|
2925
|
+
}
|
|
2926
|
+
export interface SaveMap_RequestConstructor {
|
|
2927
|
+
new(other?: SaveMap_Request): SaveMap_Request;
|
|
2928
|
+
}
|
|
2929
|
+
export interface SaveMap_Response {
|
|
2930
|
+
result: boolean;
|
|
2931
|
+
}
|
|
2932
|
+
export interface SaveMap_ResponseConstructor {
|
|
2933
|
+
new(other?: SaveMap_Response): SaveMap_Response;
|
|
2934
|
+
}
|
|
2935
|
+
}
|
|
2936
|
+
}
|
|
2937
|
+
|
|
1163
2938
|
namespace nav_msgs {
|
|
1164
2939
|
namespace msg {
|
|
1165
2940
|
export interface GridCells {
|
|
@@ -1211,6 +2986,14 @@ declare module 'rclnodejs' {
|
|
|
1211
2986
|
readonly Request: GetMap_RequestConstructor;
|
|
1212
2987
|
readonly Response: GetMap_ResponseConstructor;
|
|
1213
2988
|
}
|
|
2989
|
+
export interface GetMap_Event {
|
|
2990
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
2991
|
+
request: nav_msgs.srv.GetMap_Request[];
|
|
2992
|
+
response: nav_msgs.srv.GetMap_Response[];
|
|
2993
|
+
}
|
|
2994
|
+
export interface GetMap_EventConstructor {
|
|
2995
|
+
new(other?: GetMap_Event): GetMap_Event;
|
|
2996
|
+
}
|
|
1214
2997
|
export interface GetMap_Request {
|
|
1215
2998
|
}
|
|
1216
2999
|
export interface GetMap_RequestConstructor {
|
|
@@ -1226,6 +3009,14 @@ declare module 'rclnodejs' {
|
|
|
1226
3009
|
readonly Request: GetPlan_RequestConstructor;
|
|
1227
3010
|
readonly Response: GetPlan_ResponseConstructor;
|
|
1228
3011
|
}
|
|
3012
|
+
export interface GetPlan_Event {
|
|
3013
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3014
|
+
request: nav_msgs.srv.GetPlan_Request[];
|
|
3015
|
+
response: nav_msgs.srv.GetPlan_Response[];
|
|
3016
|
+
}
|
|
3017
|
+
export interface GetPlan_EventConstructor {
|
|
3018
|
+
new(other?: GetPlan_Event): GetPlan_Event;
|
|
3019
|
+
}
|
|
1229
3020
|
export interface GetPlan_Request {
|
|
1230
3021
|
start: geometry_msgs.msg.PoseStamped;
|
|
1231
3022
|
goal: geometry_msgs.msg.PoseStamped;
|
|
@@ -1244,6 +3035,14 @@ declare module 'rclnodejs' {
|
|
|
1244
3035
|
readonly Request: LoadMap_RequestConstructor;
|
|
1245
3036
|
readonly Response: LoadMap_ResponseConstructor;
|
|
1246
3037
|
}
|
|
3038
|
+
export interface LoadMap_Event {
|
|
3039
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3040
|
+
request: nav_msgs.srv.LoadMap_Request[];
|
|
3041
|
+
response: nav_msgs.srv.LoadMap_Response[];
|
|
3042
|
+
}
|
|
3043
|
+
export interface LoadMap_EventConstructor {
|
|
3044
|
+
new(other?: LoadMap_Event): LoadMap_Event;
|
|
3045
|
+
}
|
|
1247
3046
|
export interface LoadMap_Request {
|
|
1248
3047
|
map_url: string;
|
|
1249
3048
|
}
|
|
@@ -1266,6 +3065,14 @@ declare module 'rclnodejs' {
|
|
|
1266
3065
|
readonly Request: SetMap_RequestConstructor;
|
|
1267
3066
|
readonly Response: SetMap_ResponseConstructor;
|
|
1268
3067
|
}
|
|
3068
|
+
export interface SetMap_Event {
|
|
3069
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3070
|
+
request: nav_msgs.srv.SetMap_Request[];
|
|
3071
|
+
response: nav_msgs.srv.SetMap_Response[];
|
|
3072
|
+
}
|
|
3073
|
+
export interface SetMap_EventConstructor {
|
|
3074
|
+
new(other?: SetMap_Event): SetMap_Event;
|
|
3075
|
+
}
|
|
1269
3076
|
export interface SetMap_Request {
|
|
1270
3077
|
map: nav_msgs.msg.OccupancyGrid;
|
|
1271
3078
|
initial_pose: geometry_msgs.msg.PoseWithCovarianceStamped;
|
|
@@ -1357,6 +3164,19 @@ declare module 'rclnodejs' {
|
|
|
1357
3164
|
readonly FATAL: number;
|
|
1358
3165
|
new(other?: Log): Log;
|
|
1359
3166
|
}
|
|
3167
|
+
export interface LoggerLevel {
|
|
3168
|
+
name: string;
|
|
3169
|
+
level: number;
|
|
3170
|
+
}
|
|
3171
|
+
export interface LoggerLevelConstructor {
|
|
3172
|
+
readonly LOG_LEVEL_UNKNOWN: number;
|
|
3173
|
+
readonly LOG_LEVEL_DEBUG: number;
|
|
3174
|
+
readonly LOG_LEVEL_INFO: number;
|
|
3175
|
+
readonly LOG_LEVEL_WARN: number;
|
|
3176
|
+
readonly LOG_LEVEL_ERROR: number;
|
|
3177
|
+
readonly LOG_LEVEL_FATAL: number;
|
|
3178
|
+
new(other?: LoggerLevel): LoggerLevel;
|
|
3179
|
+
}
|
|
1360
3180
|
export interface Parameter {
|
|
1361
3181
|
name: string;
|
|
1362
3182
|
value: rcl_interfaces.msg.ParameterValue;
|
|
@@ -1425,6 +3245,13 @@ declare module 'rclnodejs' {
|
|
|
1425
3245
|
export interface ParameterValueConstructor {
|
|
1426
3246
|
new(other?: ParameterValue): ParameterValue;
|
|
1427
3247
|
}
|
|
3248
|
+
export interface SetLoggerLevelsResult {
|
|
3249
|
+
successful: boolean;
|
|
3250
|
+
reason: string;
|
|
3251
|
+
}
|
|
3252
|
+
export interface SetLoggerLevelsResultConstructor {
|
|
3253
|
+
new(other?: SetLoggerLevelsResult): SetLoggerLevelsResult;
|
|
3254
|
+
}
|
|
1428
3255
|
export interface SetParametersResult {
|
|
1429
3256
|
successful: boolean;
|
|
1430
3257
|
reason: string;
|
|
@@ -1438,6 +3265,14 @@ declare module 'rclnodejs' {
|
|
|
1438
3265
|
readonly Request: DescribeParameters_RequestConstructor;
|
|
1439
3266
|
readonly Response: DescribeParameters_ResponseConstructor;
|
|
1440
3267
|
}
|
|
3268
|
+
export interface DescribeParameters_Event {
|
|
3269
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3270
|
+
request: rcl_interfaces.srv.DescribeParameters_Request[];
|
|
3271
|
+
response: rcl_interfaces.srv.DescribeParameters_Response[];
|
|
3272
|
+
}
|
|
3273
|
+
export interface DescribeParameters_EventConstructor {
|
|
3274
|
+
new(other?: DescribeParameters_Event): DescribeParameters_Event;
|
|
3275
|
+
}
|
|
1441
3276
|
export interface DescribeParameters_Request {
|
|
1442
3277
|
names: string[];
|
|
1443
3278
|
}
|
|
@@ -1450,10 +3285,42 @@ declare module 'rclnodejs' {
|
|
|
1450
3285
|
export interface DescribeParameters_ResponseConstructor {
|
|
1451
3286
|
new(other?: DescribeParameters_Response): DescribeParameters_Response;
|
|
1452
3287
|
}
|
|
3288
|
+
export interface GetLoggerLevelsConstructor extends ROSService {
|
|
3289
|
+
readonly Request: GetLoggerLevels_RequestConstructor;
|
|
3290
|
+
readonly Response: GetLoggerLevels_ResponseConstructor;
|
|
3291
|
+
}
|
|
3292
|
+
export interface GetLoggerLevels_Event {
|
|
3293
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3294
|
+
request: rcl_interfaces.srv.GetLoggerLevels_Request[];
|
|
3295
|
+
response: rcl_interfaces.srv.GetLoggerLevels_Response[];
|
|
3296
|
+
}
|
|
3297
|
+
export interface GetLoggerLevels_EventConstructor {
|
|
3298
|
+
new(other?: GetLoggerLevels_Event): GetLoggerLevels_Event;
|
|
3299
|
+
}
|
|
3300
|
+
export interface GetLoggerLevels_Request {
|
|
3301
|
+
names: string[];
|
|
3302
|
+
}
|
|
3303
|
+
export interface GetLoggerLevels_RequestConstructor {
|
|
3304
|
+
new(other?: GetLoggerLevels_Request): GetLoggerLevels_Request;
|
|
3305
|
+
}
|
|
3306
|
+
export interface GetLoggerLevels_Response {
|
|
3307
|
+
levels: rcl_interfaces.msg.LoggerLevel[];
|
|
3308
|
+
}
|
|
3309
|
+
export interface GetLoggerLevels_ResponseConstructor {
|
|
3310
|
+
new(other?: GetLoggerLevels_Response): GetLoggerLevels_Response;
|
|
3311
|
+
}
|
|
1453
3312
|
export interface GetParameterTypesConstructor extends ROSService {
|
|
1454
3313
|
readonly Request: GetParameterTypes_RequestConstructor;
|
|
1455
3314
|
readonly Response: GetParameterTypes_ResponseConstructor;
|
|
1456
3315
|
}
|
|
3316
|
+
export interface GetParameterTypes_Event {
|
|
3317
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3318
|
+
request: rcl_interfaces.srv.GetParameterTypes_Request[];
|
|
3319
|
+
response: rcl_interfaces.srv.GetParameterTypes_Response[];
|
|
3320
|
+
}
|
|
3321
|
+
export interface GetParameterTypes_EventConstructor {
|
|
3322
|
+
new(other?: GetParameterTypes_Event): GetParameterTypes_Event;
|
|
3323
|
+
}
|
|
1457
3324
|
export interface GetParameterTypes_Request {
|
|
1458
3325
|
names: string[];
|
|
1459
3326
|
}
|
|
@@ -1470,6 +3337,14 @@ declare module 'rclnodejs' {
|
|
|
1470
3337
|
readonly Request: GetParameters_RequestConstructor;
|
|
1471
3338
|
readonly Response: GetParameters_ResponseConstructor;
|
|
1472
3339
|
}
|
|
3340
|
+
export interface GetParameters_Event {
|
|
3341
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3342
|
+
request: rcl_interfaces.srv.GetParameters_Request[];
|
|
3343
|
+
response: rcl_interfaces.srv.GetParameters_Response[];
|
|
3344
|
+
}
|
|
3345
|
+
export interface GetParameters_EventConstructor {
|
|
3346
|
+
new(other?: GetParameters_Event): GetParameters_Event;
|
|
3347
|
+
}
|
|
1473
3348
|
export interface GetParameters_Request {
|
|
1474
3349
|
names: string[];
|
|
1475
3350
|
}
|
|
@@ -1486,6 +3361,14 @@ declare module 'rclnodejs' {
|
|
|
1486
3361
|
readonly Request: ListParameters_RequestConstructor;
|
|
1487
3362
|
readonly Response: ListParameters_ResponseConstructor;
|
|
1488
3363
|
}
|
|
3364
|
+
export interface ListParameters_Event {
|
|
3365
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3366
|
+
request: rcl_interfaces.srv.ListParameters_Request[];
|
|
3367
|
+
response: rcl_interfaces.srv.ListParameters_Response[];
|
|
3368
|
+
}
|
|
3369
|
+
export interface ListParameters_EventConstructor {
|
|
3370
|
+
new(other?: ListParameters_Event): ListParameters_Event;
|
|
3371
|
+
}
|
|
1489
3372
|
export interface ListParameters_Request {
|
|
1490
3373
|
prefixes: string[];
|
|
1491
3374
|
depth: number;
|
|
@@ -1500,6 +3383,30 @@ declare module 'rclnodejs' {
|
|
|
1500
3383
|
export interface ListParameters_ResponseConstructor {
|
|
1501
3384
|
new(other?: ListParameters_Response): ListParameters_Response;
|
|
1502
3385
|
}
|
|
3386
|
+
export interface SetLoggerLevelsConstructor extends ROSService {
|
|
3387
|
+
readonly Request: SetLoggerLevels_RequestConstructor;
|
|
3388
|
+
readonly Response: SetLoggerLevels_ResponseConstructor;
|
|
3389
|
+
}
|
|
3390
|
+
export interface SetLoggerLevels_Event {
|
|
3391
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3392
|
+
request: rcl_interfaces.srv.SetLoggerLevels_Request[];
|
|
3393
|
+
response: rcl_interfaces.srv.SetLoggerLevels_Response[];
|
|
3394
|
+
}
|
|
3395
|
+
export interface SetLoggerLevels_EventConstructor {
|
|
3396
|
+
new(other?: SetLoggerLevels_Event): SetLoggerLevels_Event;
|
|
3397
|
+
}
|
|
3398
|
+
export interface SetLoggerLevels_Request {
|
|
3399
|
+
levels: rcl_interfaces.msg.LoggerLevel[];
|
|
3400
|
+
}
|
|
3401
|
+
export interface SetLoggerLevels_RequestConstructor {
|
|
3402
|
+
new(other?: SetLoggerLevels_Request): SetLoggerLevels_Request;
|
|
3403
|
+
}
|
|
3404
|
+
export interface SetLoggerLevels_Response {
|
|
3405
|
+
results: rcl_interfaces.msg.SetLoggerLevelsResult[];
|
|
3406
|
+
}
|
|
3407
|
+
export interface SetLoggerLevels_ResponseConstructor {
|
|
3408
|
+
new(other?: SetLoggerLevels_Response): SetLoggerLevels_Response;
|
|
3409
|
+
}
|
|
1503
3410
|
export interface SetParametersConstructor extends ROSService {
|
|
1504
3411
|
readonly Request: SetParameters_RequestConstructor;
|
|
1505
3412
|
readonly Response: SetParameters_ResponseConstructor;
|
|
@@ -1508,6 +3415,14 @@ declare module 'rclnodejs' {
|
|
|
1508
3415
|
readonly Request: SetParametersAtomically_RequestConstructor;
|
|
1509
3416
|
readonly Response: SetParametersAtomically_ResponseConstructor;
|
|
1510
3417
|
}
|
|
3418
|
+
export interface SetParametersAtomically_Event {
|
|
3419
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3420
|
+
request: rcl_interfaces.srv.SetParametersAtomically_Request[];
|
|
3421
|
+
response: rcl_interfaces.srv.SetParametersAtomically_Response[];
|
|
3422
|
+
}
|
|
3423
|
+
export interface SetParametersAtomically_EventConstructor {
|
|
3424
|
+
new(other?: SetParametersAtomically_Event): SetParametersAtomically_Event;
|
|
3425
|
+
}
|
|
1511
3426
|
export interface SetParametersAtomically_Request {
|
|
1512
3427
|
parameters: rcl_interfaces.msg.Parameter[];
|
|
1513
3428
|
}
|
|
@@ -1520,6 +3435,14 @@ declare module 'rclnodejs' {
|
|
|
1520
3435
|
export interface SetParametersAtomically_ResponseConstructor {
|
|
1521
3436
|
new(other?: SetParametersAtomically_Response): SetParametersAtomically_Response;
|
|
1522
3437
|
}
|
|
3438
|
+
export interface SetParameters_Event {
|
|
3439
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3440
|
+
request: rcl_interfaces.srv.SetParameters_Request[];
|
|
3441
|
+
response: rcl_interfaces.srv.SetParameters_Response[];
|
|
3442
|
+
}
|
|
3443
|
+
export interface SetParameters_EventConstructor {
|
|
3444
|
+
new(other?: SetParameters_Event): SetParameters_Event;
|
|
3445
|
+
}
|
|
1523
3446
|
export interface SetParameters_Request {
|
|
1524
3447
|
parameters: rcl_interfaces.msg.Parameter[];
|
|
1525
3448
|
}
|
|
@@ -1657,6 +3580,14 @@ declare module 'rclnodejs' {
|
|
|
1657
3580
|
readonly Request: ShortVariedMultiNested_RequestConstructor;
|
|
1658
3581
|
readonly Response: ShortVariedMultiNested_ResponseConstructor;
|
|
1659
3582
|
}
|
|
3583
|
+
export interface ShortVariedMultiNested_Event {
|
|
3584
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3585
|
+
request: ros2cli_test_interfaces.srv.ShortVariedMultiNested_Request[];
|
|
3586
|
+
response: ros2cli_test_interfaces.srv.ShortVariedMultiNested_Response[];
|
|
3587
|
+
}
|
|
3588
|
+
export interface ShortVariedMultiNested_EventConstructor {
|
|
3589
|
+
new(other?: ShortVariedMultiNested_Event): ShortVariedMultiNested_Event;
|
|
3590
|
+
}
|
|
1660
3591
|
export interface ShortVariedMultiNested_Request {
|
|
1661
3592
|
short_varied_nested: ros2cli_test_interfaces.msg.ShortVariedNested;
|
|
1662
3593
|
}
|
|
@@ -1694,6 +3625,14 @@ declare module 'rclnodejs' {
|
|
|
1694
3625
|
readonly Request: Burst_RequestConstructor;
|
|
1695
3626
|
readonly Response: Burst_ResponseConstructor;
|
|
1696
3627
|
}
|
|
3628
|
+
export interface Burst_Event {
|
|
3629
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3630
|
+
request: rosbag2_interfaces.srv.Burst_Request[];
|
|
3631
|
+
response: rosbag2_interfaces.srv.Burst_Response[];
|
|
3632
|
+
}
|
|
3633
|
+
export interface Burst_EventConstructor {
|
|
3634
|
+
new(other?: Burst_Event): Burst_Event;
|
|
3635
|
+
}
|
|
1697
3636
|
export interface Burst_Request {
|
|
1698
3637
|
num_messages: number;
|
|
1699
3638
|
}
|
|
@@ -1710,6 +3649,14 @@ declare module 'rclnodejs' {
|
|
|
1710
3649
|
readonly Request: GetRate_RequestConstructor;
|
|
1711
3650
|
readonly Response: GetRate_ResponseConstructor;
|
|
1712
3651
|
}
|
|
3652
|
+
export interface GetRate_Event {
|
|
3653
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3654
|
+
request: rosbag2_interfaces.srv.GetRate_Request[];
|
|
3655
|
+
response: rosbag2_interfaces.srv.GetRate_Response[];
|
|
3656
|
+
}
|
|
3657
|
+
export interface GetRate_EventConstructor {
|
|
3658
|
+
new(other?: GetRate_Event): GetRate_Event;
|
|
3659
|
+
}
|
|
1713
3660
|
export interface GetRate_Request {
|
|
1714
3661
|
}
|
|
1715
3662
|
export interface GetRate_RequestConstructor {
|
|
@@ -1725,6 +3672,14 @@ declare module 'rclnodejs' {
|
|
|
1725
3672
|
readonly Request: IsPaused_RequestConstructor;
|
|
1726
3673
|
readonly Response: IsPaused_ResponseConstructor;
|
|
1727
3674
|
}
|
|
3675
|
+
export interface IsPaused_Event {
|
|
3676
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3677
|
+
request: rosbag2_interfaces.srv.IsPaused_Request[];
|
|
3678
|
+
response: rosbag2_interfaces.srv.IsPaused_Response[];
|
|
3679
|
+
}
|
|
3680
|
+
export interface IsPaused_EventConstructor {
|
|
3681
|
+
new(other?: IsPaused_Event): IsPaused_Event;
|
|
3682
|
+
}
|
|
1728
3683
|
export interface IsPaused_Request {
|
|
1729
3684
|
}
|
|
1730
3685
|
export interface IsPaused_RequestConstructor {
|
|
@@ -1740,6 +3695,14 @@ declare module 'rclnodejs' {
|
|
|
1740
3695
|
readonly Request: Pause_RequestConstructor;
|
|
1741
3696
|
readonly Response: Pause_ResponseConstructor;
|
|
1742
3697
|
}
|
|
3698
|
+
export interface Pause_Event {
|
|
3699
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3700
|
+
request: rosbag2_interfaces.srv.Pause_Request[];
|
|
3701
|
+
response: rosbag2_interfaces.srv.Pause_Response[];
|
|
3702
|
+
}
|
|
3703
|
+
export interface Pause_EventConstructor {
|
|
3704
|
+
new(other?: Pause_Event): Pause_Event;
|
|
3705
|
+
}
|
|
1743
3706
|
export interface Pause_Request {
|
|
1744
3707
|
}
|
|
1745
3708
|
export interface Pause_RequestConstructor {
|
|
@@ -1750,10 +3713,22 @@ declare module 'rclnodejs' {
|
|
|
1750
3713
|
export interface Pause_ResponseConstructor {
|
|
1751
3714
|
new(other?: Pause_Response): Pause_Response;
|
|
1752
3715
|
}
|
|
3716
|
+
export interface PlayConstructor extends ROSService {
|
|
3717
|
+
readonly Request: Play_RequestConstructor;
|
|
3718
|
+
readonly Response: Play_ResponseConstructor;
|
|
3719
|
+
}
|
|
1753
3720
|
export interface PlayNextConstructor extends ROSService {
|
|
1754
3721
|
readonly Request: PlayNext_RequestConstructor;
|
|
1755
3722
|
readonly Response: PlayNext_ResponseConstructor;
|
|
1756
3723
|
}
|
|
3724
|
+
export interface PlayNext_Event {
|
|
3725
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3726
|
+
request: rosbag2_interfaces.srv.PlayNext_Request[];
|
|
3727
|
+
response: rosbag2_interfaces.srv.PlayNext_Response[];
|
|
3728
|
+
}
|
|
3729
|
+
export interface PlayNext_EventConstructor {
|
|
3730
|
+
new(other?: PlayNext_Event): PlayNext_Event;
|
|
3731
|
+
}
|
|
1757
3732
|
export interface PlayNext_Request {
|
|
1758
3733
|
}
|
|
1759
3734
|
export interface PlayNext_RequestConstructor {
|
|
@@ -1765,10 +3740,40 @@ declare module 'rclnodejs' {
|
|
|
1765
3740
|
export interface PlayNext_ResponseConstructor {
|
|
1766
3741
|
new(other?: PlayNext_Response): PlayNext_Response;
|
|
1767
3742
|
}
|
|
3743
|
+
export interface Play_Event {
|
|
3744
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3745
|
+
request: rosbag2_interfaces.srv.Play_Request[];
|
|
3746
|
+
response: rosbag2_interfaces.srv.Play_Response[];
|
|
3747
|
+
}
|
|
3748
|
+
export interface Play_EventConstructor {
|
|
3749
|
+
new(other?: Play_Event): Play_Event;
|
|
3750
|
+
}
|
|
3751
|
+
export interface Play_Request {
|
|
3752
|
+
start_offset: builtin_interfaces.msg.Time;
|
|
3753
|
+
playback_duration: builtin_interfaces.msg.Duration;
|
|
3754
|
+
playback_until_timestamp: builtin_interfaces.msg.Time;
|
|
3755
|
+
}
|
|
3756
|
+
export interface Play_RequestConstructor {
|
|
3757
|
+
new(other?: Play_Request): Play_Request;
|
|
3758
|
+
}
|
|
3759
|
+
export interface Play_Response {
|
|
3760
|
+
success: boolean;
|
|
3761
|
+
}
|
|
3762
|
+
export interface Play_ResponseConstructor {
|
|
3763
|
+
new(other?: Play_Response): Play_Response;
|
|
3764
|
+
}
|
|
1768
3765
|
export interface ResumeConstructor extends ROSService {
|
|
1769
3766
|
readonly Request: Resume_RequestConstructor;
|
|
1770
3767
|
readonly Response: Resume_ResponseConstructor;
|
|
1771
3768
|
}
|
|
3769
|
+
export interface Resume_Event {
|
|
3770
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3771
|
+
request: rosbag2_interfaces.srv.Resume_Request[];
|
|
3772
|
+
response: rosbag2_interfaces.srv.Resume_Response[];
|
|
3773
|
+
}
|
|
3774
|
+
export interface Resume_EventConstructor {
|
|
3775
|
+
new(other?: Resume_Event): Resume_Event;
|
|
3776
|
+
}
|
|
1772
3777
|
export interface Resume_Request {
|
|
1773
3778
|
}
|
|
1774
3779
|
export interface Resume_RequestConstructor {
|
|
@@ -1783,6 +3788,14 @@ declare module 'rclnodejs' {
|
|
|
1783
3788
|
readonly Request: Seek_RequestConstructor;
|
|
1784
3789
|
readonly Response: Seek_ResponseConstructor;
|
|
1785
3790
|
}
|
|
3791
|
+
export interface Seek_Event {
|
|
3792
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3793
|
+
request: rosbag2_interfaces.srv.Seek_Request[];
|
|
3794
|
+
response: rosbag2_interfaces.srv.Seek_Response[];
|
|
3795
|
+
}
|
|
3796
|
+
export interface Seek_EventConstructor {
|
|
3797
|
+
new(other?: Seek_Event): Seek_Event;
|
|
3798
|
+
}
|
|
1786
3799
|
export interface Seek_Request {
|
|
1787
3800
|
time: builtin_interfaces.msg.Time;
|
|
1788
3801
|
}
|
|
@@ -1799,6 +3812,14 @@ declare module 'rclnodejs' {
|
|
|
1799
3812
|
readonly Request: SetRate_RequestConstructor;
|
|
1800
3813
|
readonly Response: SetRate_ResponseConstructor;
|
|
1801
3814
|
}
|
|
3815
|
+
export interface SetRate_Event {
|
|
3816
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3817
|
+
request: rosbag2_interfaces.srv.SetRate_Request[];
|
|
3818
|
+
response: rosbag2_interfaces.srv.SetRate_Response[];
|
|
3819
|
+
}
|
|
3820
|
+
export interface SetRate_EventConstructor {
|
|
3821
|
+
new(other?: SetRate_Event): SetRate_Event;
|
|
3822
|
+
}
|
|
1802
3823
|
export interface SetRate_Request {
|
|
1803
3824
|
rate: number;
|
|
1804
3825
|
}
|
|
@@ -1815,6 +3836,14 @@ declare module 'rclnodejs' {
|
|
|
1815
3836
|
readonly Request: Snapshot_RequestConstructor;
|
|
1816
3837
|
readonly Response: Snapshot_ResponseConstructor;
|
|
1817
3838
|
}
|
|
3839
|
+
export interface Snapshot_Event {
|
|
3840
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3841
|
+
request: rosbag2_interfaces.srv.Snapshot_Request[];
|
|
3842
|
+
response: rosbag2_interfaces.srv.Snapshot_Response[];
|
|
3843
|
+
}
|
|
3844
|
+
export interface Snapshot_EventConstructor {
|
|
3845
|
+
new(other?: Snapshot_Event): Snapshot_Event;
|
|
3846
|
+
}
|
|
1818
3847
|
export interface Snapshot_Request {
|
|
1819
3848
|
}
|
|
1820
3849
|
export interface Snapshot_RequestConstructor {
|
|
@@ -1826,10 +3855,62 @@ declare module 'rclnodejs' {
|
|
|
1826
3855
|
export interface Snapshot_ResponseConstructor {
|
|
1827
3856
|
new(other?: Snapshot_Response): Snapshot_Response;
|
|
1828
3857
|
}
|
|
3858
|
+
export interface SplitBagfileConstructor extends ROSService {
|
|
3859
|
+
readonly Request: SplitBagfile_RequestConstructor;
|
|
3860
|
+
readonly Response: SplitBagfile_ResponseConstructor;
|
|
3861
|
+
}
|
|
3862
|
+
export interface SplitBagfile_Event {
|
|
3863
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3864
|
+
request: rosbag2_interfaces.srv.SplitBagfile_Request[];
|
|
3865
|
+
response: rosbag2_interfaces.srv.SplitBagfile_Response[];
|
|
3866
|
+
}
|
|
3867
|
+
export interface SplitBagfile_EventConstructor {
|
|
3868
|
+
new(other?: SplitBagfile_Event): SplitBagfile_Event;
|
|
3869
|
+
}
|
|
3870
|
+
export interface SplitBagfile_Request {
|
|
3871
|
+
}
|
|
3872
|
+
export interface SplitBagfile_RequestConstructor {
|
|
3873
|
+
new(other?: SplitBagfile_Request): SplitBagfile_Request;
|
|
3874
|
+
}
|
|
3875
|
+
export interface SplitBagfile_Response {
|
|
3876
|
+
}
|
|
3877
|
+
export interface SplitBagfile_ResponseConstructor {
|
|
3878
|
+
new(other?: SplitBagfile_Response): SplitBagfile_Response;
|
|
3879
|
+
}
|
|
3880
|
+
export interface StopConstructor extends ROSService {
|
|
3881
|
+
readonly Request: Stop_RequestConstructor;
|
|
3882
|
+
readonly Response: Stop_ResponseConstructor;
|
|
3883
|
+
}
|
|
3884
|
+
export interface Stop_Event {
|
|
3885
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3886
|
+
request: rosbag2_interfaces.srv.Stop_Request[];
|
|
3887
|
+
response: rosbag2_interfaces.srv.Stop_Response[];
|
|
3888
|
+
}
|
|
3889
|
+
export interface Stop_EventConstructor {
|
|
3890
|
+
new(other?: Stop_Event): Stop_Event;
|
|
3891
|
+
}
|
|
3892
|
+
export interface Stop_Request {
|
|
3893
|
+
}
|
|
3894
|
+
export interface Stop_RequestConstructor {
|
|
3895
|
+
new(other?: Stop_Request): Stop_Request;
|
|
3896
|
+
}
|
|
3897
|
+
export interface Stop_Response {
|
|
3898
|
+
}
|
|
3899
|
+
export interface Stop_ResponseConstructor {
|
|
3900
|
+
new(other?: Stop_Response): Stop_Response;
|
|
3901
|
+
}
|
|
1829
3902
|
export interface TogglePausedConstructor extends ROSService {
|
|
1830
3903
|
readonly Request: TogglePaused_RequestConstructor;
|
|
1831
3904
|
readonly Response: TogglePaused_ResponseConstructor;
|
|
1832
3905
|
}
|
|
3906
|
+
export interface TogglePaused_Event {
|
|
3907
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
3908
|
+
request: rosbag2_interfaces.srv.TogglePaused_Request[];
|
|
3909
|
+
response: rosbag2_interfaces.srv.TogglePaused_Response[];
|
|
3910
|
+
}
|
|
3911
|
+
export interface TogglePaused_EventConstructor {
|
|
3912
|
+
new(other?: TogglePaused_Event): TogglePaused_Event;
|
|
3913
|
+
}
|
|
1833
3914
|
export interface TogglePaused_Request {
|
|
1834
3915
|
}
|
|
1835
3916
|
export interface TogglePaused_RequestConstructor {
|
|
@@ -1896,6 +3977,8 @@ declare module 'rclnodejs' {
|
|
|
1896
3977
|
readonly POWER_SUPPLY_TECHNOLOGY_LIFE: number;
|
|
1897
3978
|
readonly POWER_SUPPLY_TECHNOLOGY_NICD: number;
|
|
1898
3979
|
readonly POWER_SUPPLY_TECHNOLOGY_LIMN: number;
|
|
3980
|
+
readonly POWER_SUPPLY_TECHNOLOGY_TERNARY: number;
|
|
3981
|
+
readonly POWER_SUPPLY_TECHNOLOGY_VRLA: number;
|
|
1899
3982
|
new(other?: BatteryState): BatteryState;
|
|
1900
3983
|
}
|
|
1901
3984
|
export interface CameraInfo {
|
|
@@ -2135,6 +4218,7 @@ declare module 'rclnodejs' {
|
|
|
2135
4218
|
min_range: number;
|
|
2136
4219
|
max_range: number;
|
|
2137
4220
|
range: number;
|
|
4221
|
+
variance: number;
|
|
2138
4222
|
}
|
|
2139
4223
|
export interface RangeConstructor {
|
|
2140
4224
|
readonly ULTRASOUND: number;
|
|
@@ -2181,6 +4265,14 @@ declare module 'rclnodejs' {
|
|
|
2181
4265
|
readonly Request: SetCameraInfo_RequestConstructor;
|
|
2182
4266
|
readonly Response: SetCameraInfo_ResponseConstructor;
|
|
2183
4267
|
}
|
|
4268
|
+
export interface SetCameraInfo_Event {
|
|
4269
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4270
|
+
request: sensor_msgs.srv.SetCameraInfo_Request[];
|
|
4271
|
+
response: sensor_msgs.srv.SetCameraInfo_Response[];
|
|
4272
|
+
}
|
|
4273
|
+
export interface SetCameraInfo_EventConstructor {
|
|
4274
|
+
new(other?: SetCameraInfo_Event): SetCameraInfo_Event;
|
|
4275
|
+
}
|
|
2184
4276
|
export interface SetCameraInfo_Request {
|
|
2185
4277
|
camera_info: sensor_msgs.msg.CameraInfo;
|
|
2186
4278
|
}
|
|
@@ -2197,6 +4289,24 @@ declare module 'rclnodejs' {
|
|
|
2197
4289
|
}
|
|
2198
4290
|
}
|
|
2199
4291
|
|
|
4292
|
+
namespace service_msgs {
|
|
4293
|
+
namespace msg {
|
|
4294
|
+
export interface ServiceEventInfo {
|
|
4295
|
+
event_type: number;
|
|
4296
|
+
stamp: builtin_interfaces.msg.Time;
|
|
4297
|
+
client_gid: number[] | Int8Array;
|
|
4298
|
+
sequence_number: number;
|
|
4299
|
+
}
|
|
4300
|
+
export interface ServiceEventInfoConstructor {
|
|
4301
|
+
readonly REQUEST_SENT: number;
|
|
4302
|
+
readonly REQUEST_RECEIVED: number;
|
|
4303
|
+
readonly RESPONSE_SENT: number;
|
|
4304
|
+
readonly RESPONSE_RECEIVED: number;
|
|
4305
|
+
new(other?: ServiceEventInfo): ServiceEventInfo;
|
|
4306
|
+
}
|
|
4307
|
+
}
|
|
4308
|
+
}
|
|
4309
|
+
|
|
2200
4310
|
namespace shape_msgs {
|
|
2201
4311
|
namespace msg {
|
|
2202
4312
|
export interface Mesh {
|
|
@@ -2243,6 +4353,250 @@ declare module 'rclnodejs' {
|
|
|
2243
4353
|
}
|
|
2244
4354
|
}
|
|
2245
4355
|
|
|
4356
|
+
namespace slam_toolbox {
|
|
4357
|
+
namespace srvs {
|
|
4358
|
+
export interface AddSubmapConstructor extends ROSService {
|
|
4359
|
+
readonly Request: AddSubmap_RequestConstructor;
|
|
4360
|
+
readonly Response: AddSubmap_ResponseConstructor;
|
|
4361
|
+
}
|
|
4362
|
+
export interface AddSubmap_Event {
|
|
4363
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4364
|
+
request: slam_toolbox.msg.AddSubmap_Request[];
|
|
4365
|
+
response: slam_toolbox.msg.AddSubmap_Response[];
|
|
4366
|
+
}
|
|
4367
|
+
export interface AddSubmap_EventConstructor {
|
|
4368
|
+
new(other?: AddSubmap_Event): AddSubmap_Event;
|
|
4369
|
+
}
|
|
4370
|
+
export interface AddSubmap_Request {
|
|
4371
|
+
filename: string;
|
|
4372
|
+
}
|
|
4373
|
+
export interface AddSubmap_RequestConstructor {
|
|
4374
|
+
new(other?: AddSubmap_Request): AddSubmap_Request;
|
|
4375
|
+
}
|
|
4376
|
+
export interface AddSubmap_Response {
|
|
4377
|
+
}
|
|
4378
|
+
export interface AddSubmap_ResponseConstructor {
|
|
4379
|
+
new(other?: AddSubmap_Response): AddSubmap_Response;
|
|
4380
|
+
}
|
|
4381
|
+
export interface ClearConstructor extends ROSService {
|
|
4382
|
+
readonly Request: Clear_RequestConstructor;
|
|
4383
|
+
readonly Response: Clear_ResponseConstructor;
|
|
4384
|
+
}
|
|
4385
|
+
export interface ClearQueueConstructor extends ROSService {
|
|
4386
|
+
readonly Request: ClearQueue_RequestConstructor;
|
|
4387
|
+
readonly Response: ClearQueue_ResponseConstructor;
|
|
4388
|
+
}
|
|
4389
|
+
export interface ClearQueue_Event {
|
|
4390
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4391
|
+
request: slam_toolbox.msg.ClearQueue_Request[];
|
|
4392
|
+
response: slam_toolbox.msg.ClearQueue_Response[];
|
|
4393
|
+
}
|
|
4394
|
+
export interface ClearQueue_EventConstructor {
|
|
4395
|
+
new(other?: ClearQueue_Event): ClearQueue_Event;
|
|
4396
|
+
}
|
|
4397
|
+
export interface ClearQueue_Request {
|
|
4398
|
+
}
|
|
4399
|
+
export interface ClearQueue_RequestConstructor {
|
|
4400
|
+
new(other?: ClearQueue_Request): ClearQueue_Request;
|
|
4401
|
+
}
|
|
4402
|
+
export interface ClearQueue_Response {
|
|
4403
|
+
status: boolean;
|
|
4404
|
+
}
|
|
4405
|
+
export interface ClearQueue_ResponseConstructor {
|
|
4406
|
+
new(other?: ClearQueue_Response): ClearQueue_Response;
|
|
4407
|
+
}
|
|
4408
|
+
export interface Clear_Event {
|
|
4409
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4410
|
+
request: slam_toolbox.msg.Clear_Request[];
|
|
4411
|
+
response: slam_toolbox.msg.Clear_Response[];
|
|
4412
|
+
}
|
|
4413
|
+
export interface Clear_EventConstructor {
|
|
4414
|
+
new(other?: Clear_Event): Clear_Event;
|
|
4415
|
+
}
|
|
4416
|
+
export interface Clear_Request {
|
|
4417
|
+
}
|
|
4418
|
+
export interface Clear_RequestConstructor {
|
|
4419
|
+
new(other?: Clear_Request): Clear_Request;
|
|
4420
|
+
}
|
|
4421
|
+
export interface Clear_Response {
|
|
4422
|
+
}
|
|
4423
|
+
export interface Clear_ResponseConstructor {
|
|
4424
|
+
new(other?: Clear_Response): Clear_Response;
|
|
4425
|
+
}
|
|
4426
|
+
export interface DeserializePoseGraphConstructor extends ROSService {
|
|
4427
|
+
readonly Request: DeserializePoseGraph_RequestConstructor;
|
|
4428
|
+
readonly Response: DeserializePoseGraph_ResponseConstructor;
|
|
4429
|
+
}
|
|
4430
|
+
export interface DeserializePoseGraph_Event {
|
|
4431
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4432
|
+
request: slam_toolbox.msg.DeserializePoseGraph_Request[];
|
|
4433
|
+
response: slam_toolbox.msg.DeserializePoseGraph_Response[];
|
|
4434
|
+
}
|
|
4435
|
+
export interface DeserializePoseGraph_EventConstructor {
|
|
4436
|
+
new(other?: DeserializePoseGraph_Event): DeserializePoseGraph_Event;
|
|
4437
|
+
}
|
|
4438
|
+
export interface DeserializePoseGraph_Request {
|
|
4439
|
+
filename: string;
|
|
4440
|
+
match_type: number;
|
|
4441
|
+
initial_pose: geometry_msgs.msg.Pose2D;
|
|
4442
|
+
}
|
|
4443
|
+
export interface DeserializePoseGraph_RequestConstructor {
|
|
4444
|
+
readonly UNSET: number;
|
|
4445
|
+
readonly START_AT_FIRST_NODE: number;
|
|
4446
|
+
readonly START_AT_GIVEN_POSE: number;
|
|
4447
|
+
readonly LOCALIZE_AT_POSE: number;
|
|
4448
|
+
new(other?: DeserializePoseGraph_Request): DeserializePoseGraph_Request;
|
|
4449
|
+
}
|
|
4450
|
+
export interface DeserializePoseGraph_Response {
|
|
4451
|
+
}
|
|
4452
|
+
export interface DeserializePoseGraph_ResponseConstructor {
|
|
4453
|
+
new(other?: DeserializePoseGraph_Response): DeserializePoseGraph_Response;
|
|
4454
|
+
}
|
|
4455
|
+
export interface LoopClosureConstructor extends ROSService {
|
|
4456
|
+
readonly Request: LoopClosure_RequestConstructor;
|
|
4457
|
+
readonly Response: LoopClosure_ResponseConstructor;
|
|
4458
|
+
}
|
|
4459
|
+
export interface LoopClosure_Event {
|
|
4460
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4461
|
+
request: slam_toolbox.msg.LoopClosure_Request[];
|
|
4462
|
+
response: slam_toolbox.msg.LoopClosure_Response[];
|
|
4463
|
+
}
|
|
4464
|
+
export interface LoopClosure_EventConstructor {
|
|
4465
|
+
new(other?: LoopClosure_Event): LoopClosure_Event;
|
|
4466
|
+
}
|
|
4467
|
+
export interface LoopClosure_Request {
|
|
4468
|
+
}
|
|
4469
|
+
export interface LoopClosure_RequestConstructor {
|
|
4470
|
+
new(other?: LoopClosure_Request): LoopClosure_Request;
|
|
4471
|
+
}
|
|
4472
|
+
export interface LoopClosure_Response {
|
|
4473
|
+
}
|
|
4474
|
+
export interface LoopClosure_ResponseConstructor {
|
|
4475
|
+
new(other?: LoopClosure_Response): LoopClosure_Response;
|
|
4476
|
+
}
|
|
4477
|
+
export interface MergeMapsConstructor extends ROSService {
|
|
4478
|
+
readonly Request: MergeMaps_RequestConstructor;
|
|
4479
|
+
readonly Response: MergeMaps_ResponseConstructor;
|
|
4480
|
+
}
|
|
4481
|
+
export interface MergeMaps_Event {
|
|
4482
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4483
|
+
request: slam_toolbox.msg.MergeMaps_Request[];
|
|
4484
|
+
response: slam_toolbox.msg.MergeMaps_Response[];
|
|
4485
|
+
}
|
|
4486
|
+
export interface MergeMaps_EventConstructor {
|
|
4487
|
+
new(other?: MergeMaps_Event): MergeMaps_Event;
|
|
4488
|
+
}
|
|
4489
|
+
export interface MergeMaps_Request {
|
|
4490
|
+
}
|
|
4491
|
+
export interface MergeMaps_RequestConstructor {
|
|
4492
|
+
new(other?: MergeMaps_Request): MergeMaps_Request;
|
|
4493
|
+
}
|
|
4494
|
+
export interface MergeMaps_Response {
|
|
4495
|
+
}
|
|
4496
|
+
export interface MergeMaps_ResponseConstructor {
|
|
4497
|
+
new(other?: MergeMaps_Response): MergeMaps_Response;
|
|
4498
|
+
}
|
|
4499
|
+
export interface PauseConstructor extends ROSService {
|
|
4500
|
+
readonly Request: Pause_RequestConstructor;
|
|
4501
|
+
readonly Response: Pause_ResponseConstructor;
|
|
4502
|
+
}
|
|
4503
|
+
export interface Pause_Event {
|
|
4504
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4505
|
+
request: slam_toolbox.msg.Pause_Request[];
|
|
4506
|
+
response: slam_toolbox.msg.Pause_Response[];
|
|
4507
|
+
}
|
|
4508
|
+
export interface Pause_EventConstructor {
|
|
4509
|
+
new(other?: Pause_Event): Pause_Event;
|
|
4510
|
+
}
|
|
4511
|
+
export interface Pause_Request {
|
|
4512
|
+
}
|
|
4513
|
+
export interface Pause_RequestConstructor {
|
|
4514
|
+
new(other?: Pause_Request): Pause_Request;
|
|
4515
|
+
}
|
|
4516
|
+
export interface Pause_Response {
|
|
4517
|
+
status: boolean;
|
|
4518
|
+
}
|
|
4519
|
+
export interface Pause_ResponseConstructor {
|
|
4520
|
+
new(other?: Pause_Response): Pause_Response;
|
|
4521
|
+
}
|
|
4522
|
+
export interface SaveMapConstructor extends ROSService {
|
|
4523
|
+
readonly Request: SaveMap_RequestConstructor;
|
|
4524
|
+
readonly Response: SaveMap_ResponseConstructor;
|
|
4525
|
+
}
|
|
4526
|
+
export interface SaveMap_Event {
|
|
4527
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4528
|
+
request: slam_toolbox.msg.SaveMap_Request[];
|
|
4529
|
+
response: slam_toolbox.msg.SaveMap_Response[];
|
|
4530
|
+
}
|
|
4531
|
+
export interface SaveMap_EventConstructor {
|
|
4532
|
+
new(other?: SaveMap_Event): SaveMap_Event;
|
|
4533
|
+
}
|
|
4534
|
+
export interface SaveMap_Request {
|
|
4535
|
+
name: std_msgs.msg.String;
|
|
4536
|
+
}
|
|
4537
|
+
export interface SaveMap_RequestConstructor {
|
|
4538
|
+
new(other?: SaveMap_Request): SaveMap_Request;
|
|
4539
|
+
}
|
|
4540
|
+
export interface SaveMap_Response {
|
|
4541
|
+
result: number;
|
|
4542
|
+
}
|
|
4543
|
+
export interface SaveMap_ResponseConstructor {
|
|
4544
|
+
readonly RESULT_SUCCESS: number;
|
|
4545
|
+
readonly RESULT_NO_MAP_RECEIEVD: number;
|
|
4546
|
+
readonly RESULT_UNDEFINED_FAILURE: number;
|
|
4547
|
+
new(other?: SaveMap_Response): SaveMap_Response;
|
|
4548
|
+
}
|
|
4549
|
+
export interface SerializePoseGraphConstructor extends ROSService {
|
|
4550
|
+
readonly Request: SerializePoseGraph_RequestConstructor;
|
|
4551
|
+
readonly Response: SerializePoseGraph_ResponseConstructor;
|
|
4552
|
+
}
|
|
4553
|
+
export interface SerializePoseGraph_Event {
|
|
4554
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4555
|
+
request: slam_toolbox.msg.SerializePoseGraph_Request[];
|
|
4556
|
+
response: slam_toolbox.msg.SerializePoseGraph_Response[];
|
|
4557
|
+
}
|
|
4558
|
+
export interface SerializePoseGraph_EventConstructor {
|
|
4559
|
+
new(other?: SerializePoseGraph_Event): SerializePoseGraph_Event;
|
|
4560
|
+
}
|
|
4561
|
+
export interface SerializePoseGraph_Request {
|
|
4562
|
+
filename: string;
|
|
4563
|
+
}
|
|
4564
|
+
export interface SerializePoseGraph_RequestConstructor {
|
|
4565
|
+
new(other?: SerializePoseGraph_Request): SerializePoseGraph_Request;
|
|
4566
|
+
}
|
|
4567
|
+
export interface SerializePoseGraph_Response {
|
|
4568
|
+
result: number;
|
|
4569
|
+
}
|
|
4570
|
+
export interface SerializePoseGraph_ResponseConstructor {
|
|
4571
|
+
readonly RESULT_SUCCESS: number;
|
|
4572
|
+
readonly RESULT_FAILED_TO_WRITE_FILE: number;
|
|
4573
|
+
new(other?: SerializePoseGraph_Response): SerializePoseGraph_Response;
|
|
4574
|
+
}
|
|
4575
|
+
export interface ToggleInteractiveConstructor extends ROSService {
|
|
4576
|
+
readonly Request: ToggleInteractive_RequestConstructor;
|
|
4577
|
+
readonly Response: ToggleInteractive_ResponseConstructor;
|
|
4578
|
+
}
|
|
4579
|
+
export interface ToggleInteractive_Event {
|
|
4580
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4581
|
+
request: slam_toolbox.msg.ToggleInteractive_Request[];
|
|
4582
|
+
response: slam_toolbox.msg.ToggleInteractive_Response[];
|
|
4583
|
+
}
|
|
4584
|
+
export interface ToggleInteractive_EventConstructor {
|
|
4585
|
+
new(other?: ToggleInteractive_Event): ToggleInteractive_Event;
|
|
4586
|
+
}
|
|
4587
|
+
export interface ToggleInteractive_Request {
|
|
4588
|
+
}
|
|
4589
|
+
export interface ToggleInteractive_RequestConstructor {
|
|
4590
|
+
new(other?: ToggleInteractive_Request): ToggleInteractive_Request;
|
|
4591
|
+
}
|
|
4592
|
+
export interface ToggleInteractive_Response {
|
|
4593
|
+
}
|
|
4594
|
+
export interface ToggleInteractive_ResponseConstructor {
|
|
4595
|
+
new(other?: ToggleInteractive_Response): ToggleInteractive_Response;
|
|
4596
|
+
}
|
|
4597
|
+
}
|
|
4598
|
+
}
|
|
4599
|
+
|
|
2246
4600
|
namespace statistics_msgs {
|
|
2247
4601
|
namespace msg {
|
|
2248
4602
|
export interface MetricsMessage {
|
|
@@ -2485,6 +4839,14 @@ declare module 'rclnodejs' {
|
|
|
2485
4839
|
readonly Request: Empty_RequestConstructor;
|
|
2486
4840
|
readonly Response: Empty_ResponseConstructor;
|
|
2487
4841
|
}
|
|
4842
|
+
export interface Empty_Event {
|
|
4843
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4844
|
+
request: std_srvs.srv.Empty_Request[];
|
|
4845
|
+
response: std_srvs.srv.Empty_Response[];
|
|
4846
|
+
}
|
|
4847
|
+
export interface Empty_EventConstructor {
|
|
4848
|
+
new(other?: Empty_Event): Empty_Event;
|
|
4849
|
+
}
|
|
2488
4850
|
export interface Empty_Request {
|
|
2489
4851
|
}
|
|
2490
4852
|
export interface Empty_RequestConstructor {
|
|
@@ -2499,6 +4861,14 @@ declare module 'rclnodejs' {
|
|
|
2499
4861
|
readonly Request: SetBool_RequestConstructor;
|
|
2500
4862
|
readonly Response: SetBool_ResponseConstructor;
|
|
2501
4863
|
}
|
|
4864
|
+
export interface SetBool_Event {
|
|
4865
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4866
|
+
request: std_srvs.srv.SetBool_Request[];
|
|
4867
|
+
response: std_srvs.srv.SetBool_Response[];
|
|
4868
|
+
}
|
|
4869
|
+
export interface SetBool_EventConstructor {
|
|
4870
|
+
new(other?: SetBool_Event): SetBool_Event;
|
|
4871
|
+
}
|
|
2502
4872
|
export interface SetBool_Request {
|
|
2503
4873
|
data: boolean;
|
|
2504
4874
|
}
|
|
@@ -2516,6 +4886,14 @@ declare module 'rclnodejs' {
|
|
|
2516
4886
|
readonly Request: Trigger_RequestConstructor;
|
|
2517
4887
|
readonly Response: Trigger_ResponseConstructor;
|
|
2518
4888
|
}
|
|
4889
|
+
export interface Trigger_Event {
|
|
4890
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
4891
|
+
request: std_srvs.srv.Trigger_Request[];
|
|
4892
|
+
response: std_srvs.srv.Trigger_Response[];
|
|
4893
|
+
}
|
|
4894
|
+
export interface Trigger_EventConstructor {
|
|
4895
|
+
new(other?: Trigger_Event): Trigger_Event;
|
|
4896
|
+
}
|
|
2519
4897
|
export interface Trigger_Request {
|
|
2520
4898
|
}
|
|
2521
4899
|
export interface Trigger_RequestConstructor {
|
|
@@ -2957,6 +5335,14 @@ declare module 'rclnodejs' {
|
|
|
2957
5335
|
readonly Request: Arrays_RequestConstructor;
|
|
2958
5336
|
readonly Response: Arrays_ResponseConstructor;
|
|
2959
5337
|
}
|
|
5338
|
+
export interface Arrays_Event {
|
|
5339
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
5340
|
+
request: test_msgs.srv.Arrays_Request[];
|
|
5341
|
+
response: test_msgs.srv.Arrays_Response[];
|
|
5342
|
+
}
|
|
5343
|
+
export interface Arrays_EventConstructor {
|
|
5344
|
+
new(other?: Arrays_Event): Arrays_Event;
|
|
5345
|
+
}
|
|
2960
5346
|
export interface Arrays_Request {
|
|
2961
5347
|
bool_values: boolean[];
|
|
2962
5348
|
byte_values: number[] | Uint8Array;
|
|
@@ -3033,6 +5419,14 @@ declare module 'rclnodejs' {
|
|
|
3033
5419
|
readonly Request: BasicTypes_RequestConstructor;
|
|
3034
5420
|
readonly Response: BasicTypes_ResponseConstructor;
|
|
3035
5421
|
}
|
|
5422
|
+
export interface BasicTypes_Event {
|
|
5423
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
5424
|
+
request: test_msgs.srv.BasicTypes_Request[];
|
|
5425
|
+
response: test_msgs.srv.BasicTypes_Response[];
|
|
5426
|
+
}
|
|
5427
|
+
export interface BasicTypes_EventConstructor {
|
|
5428
|
+
new(other?: BasicTypes_Event): BasicTypes_Event;
|
|
5429
|
+
}
|
|
3036
5430
|
export interface BasicTypes_Request {
|
|
3037
5431
|
bool_value: boolean;
|
|
3038
5432
|
byte_value: number;
|
|
@@ -3075,6 +5469,14 @@ declare module 'rclnodejs' {
|
|
|
3075
5469
|
readonly Request: Empty_RequestConstructor;
|
|
3076
5470
|
readonly Response: Empty_ResponseConstructor;
|
|
3077
5471
|
}
|
|
5472
|
+
export interface Empty_Event {
|
|
5473
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
5474
|
+
request: test_msgs.srv.Empty_Request[];
|
|
5475
|
+
response: test_msgs.srv.Empty_Response[];
|
|
5476
|
+
}
|
|
5477
|
+
export interface Empty_EventConstructor {
|
|
5478
|
+
new(other?: Empty_Event): Empty_Event;
|
|
5479
|
+
}
|
|
3078
5480
|
export interface Empty_Request {
|
|
3079
5481
|
}
|
|
3080
5482
|
export interface Empty_RequestConstructor {
|
|
@@ -3189,6 +5591,14 @@ declare module 'rclnodejs' {
|
|
|
3189
5591
|
readonly Request: FrameGraph_RequestConstructor;
|
|
3190
5592
|
readonly Response: FrameGraph_ResponseConstructor;
|
|
3191
5593
|
}
|
|
5594
|
+
export interface FrameGraph_Event {
|
|
5595
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
5596
|
+
request: tf2_msgs.srv.FrameGraph_Request[];
|
|
5597
|
+
response: tf2_msgs.srv.FrameGraph_Response[];
|
|
5598
|
+
}
|
|
5599
|
+
export interface FrameGraph_EventConstructor {
|
|
5600
|
+
new(other?: FrameGraph_Event): FrameGraph_Event;
|
|
5601
|
+
}
|
|
3192
5602
|
export interface FrameGraph_Request {
|
|
3193
5603
|
}
|
|
3194
5604
|
export interface FrameGraph_RequestConstructor {
|
|
@@ -3336,6 +5746,14 @@ declare module 'rclnodejs' {
|
|
|
3336
5746
|
readonly Request: Kill_RequestConstructor;
|
|
3337
5747
|
readonly Response: Kill_ResponseConstructor;
|
|
3338
5748
|
}
|
|
5749
|
+
export interface Kill_Event {
|
|
5750
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
5751
|
+
request: turtlesim.srv.Kill_Request[];
|
|
5752
|
+
response: turtlesim.srv.Kill_Response[];
|
|
5753
|
+
}
|
|
5754
|
+
export interface Kill_EventConstructor {
|
|
5755
|
+
new(other?: Kill_Event): Kill_Event;
|
|
5756
|
+
}
|
|
3339
5757
|
export interface Kill_Request {
|
|
3340
5758
|
name: string;
|
|
3341
5759
|
}
|
|
@@ -3351,6 +5769,14 @@ declare module 'rclnodejs' {
|
|
|
3351
5769
|
readonly Request: SetPen_RequestConstructor;
|
|
3352
5770
|
readonly Response: SetPen_ResponseConstructor;
|
|
3353
5771
|
}
|
|
5772
|
+
export interface SetPen_Event {
|
|
5773
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
5774
|
+
request: turtlesim.srv.SetPen_Request[];
|
|
5775
|
+
response: turtlesim.srv.SetPen_Response[];
|
|
5776
|
+
}
|
|
5777
|
+
export interface SetPen_EventConstructor {
|
|
5778
|
+
new(other?: SetPen_Event): SetPen_Event;
|
|
5779
|
+
}
|
|
3354
5780
|
export interface SetPen_Request {
|
|
3355
5781
|
r: number;
|
|
3356
5782
|
g: number;
|
|
@@ -3370,6 +5796,14 @@ declare module 'rclnodejs' {
|
|
|
3370
5796
|
readonly Request: Spawn_RequestConstructor;
|
|
3371
5797
|
readonly Response: Spawn_ResponseConstructor;
|
|
3372
5798
|
}
|
|
5799
|
+
export interface Spawn_Event {
|
|
5800
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
5801
|
+
request: turtlesim.srv.Spawn_Request[];
|
|
5802
|
+
response: turtlesim.srv.Spawn_Response[];
|
|
5803
|
+
}
|
|
5804
|
+
export interface Spawn_EventConstructor {
|
|
5805
|
+
new(other?: Spawn_Event): Spawn_Event;
|
|
5806
|
+
}
|
|
3373
5807
|
export interface Spawn_Request {
|
|
3374
5808
|
x: number;
|
|
3375
5809
|
y: number;
|
|
@@ -3389,6 +5823,14 @@ declare module 'rclnodejs' {
|
|
|
3389
5823
|
readonly Request: TeleportAbsolute_RequestConstructor;
|
|
3390
5824
|
readonly Response: TeleportAbsolute_ResponseConstructor;
|
|
3391
5825
|
}
|
|
5826
|
+
export interface TeleportAbsolute_Event {
|
|
5827
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
5828
|
+
request: turtlesim.srv.TeleportAbsolute_Request[];
|
|
5829
|
+
response: turtlesim.srv.TeleportAbsolute_Response[];
|
|
5830
|
+
}
|
|
5831
|
+
export interface TeleportAbsolute_EventConstructor {
|
|
5832
|
+
new(other?: TeleportAbsolute_Event): TeleportAbsolute_Event;
|
|
5833
|
+
}
|
|
3392
5834
|
export interface TeleportAbsolute_Request {
|
|
3393
5835
|
x: number;
|
|
3394
5836
|
y: number;
|
|
@@ -3406,6 +5848,14 @@ declare module 'rclnodejs' {
|
|
|
3406
5848
|
readonly Request: TeleportRelative_RequestConstructor;
|
|
3407
5849
|
readonly Response: TeleportRelative_ResponseConstructor;
|
|
3408
5850
|
}
|
|
5851
|
+
export interface TeleportRelative_Event {
|
|
5852
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
5853
|
+
request: turtlesim.srv.TeleportRelative_Request[];
|
|
5854
|
+
response: turtlesim.srv.TeleportRelative_Response[];
|
|
5855
|
+
}
|
|
5856
|
+
export interface TeleportRelative_EventConstructor {
|
|
5857
|
+
new(other?: TeleportRelative_Event): TeleportRelative_Event;
|
|
5858
|
+
}
|
|
3409
5859
|
export interface TeleportRelative_Request {
|
|
3410
5860
|
linear: number;
|
|
3411
5861
|
angular: number;
|
|
@@ -3421,6 +5871,178 @@ declare module 'rclnodejs' {
|
|
|
3421
5871
|
}
|
|
3422
5872
|
}
|
|
3423
5873
|
|
|
5874
|
+
namespace type_description_interfaces {
|
|
5875
|
+
namespace msg {
|
|
5876
|
+
export interface Field {
|
|
5877
|
+
name: string;
|
|
5878
|
+
type: type_description_interfaces.msg.FieldType;
|
|
5879
|
+
default_value: string;
|
|
5880
|
+
}
|
|
5881
|
+
export interface FieldConstructor {
|
|
5882
|
+
new(other?: Field): Field;
|
|
5883
|
+
}
|
|
5884
|
+
export interface FieldType {
|
|
5885
|
+
type_id: number;
|
|
5886
|
+
capacity: number;
|
|
5887
|
+
string_capacity: number;
|
|
5888
|
+
nested_type_name: string;
|
|
5889
|
+
}
|
|
5890
|
+
export interface FieldTypeConstructor {
|
|
5891
|
+
readonly FIELD_TYPE_NOT_SET: number;
|
|
5892
|
+
readonly FIELD_TYPE_NESTED_TYPE: number;
|
|
5893
|
+
readonly FIELD_TYPE_INT8: number;
|
|
5894
|
+
readonly FIELD_TYPE_UINT8: number;
|
|
5895
|
+
readonly FIELD_TYPE_INT16: number;
|
|
5896
|
+
readonly FIELD_TYPE_UINT16: number;
|
|
5897
|
+
readonly FIELD_TYPE_INT32: number;
|
|
5898
|
+
readonly FIELD_TYPE_UINT32: number;
|
|
5899
|
+
readonly FIELD_TYPE_INT64: number;
|
|
5900
|
+
readonly FIELD_TYPE_UINT64: number;
|
|
5901
|
+
readonly FIELD_TYPE_FLOAT: number;
|
|
5902
|
+
readonly FIELD_TYPE_DOUBLE: number;
|
|
5903
|
+
readonly FIELD_TYPE_LONG_DOUBLE: number;
|
|
5904
|
+
readonly FIELD_TYPE_CHAR: number;
|
|
5905
|
+
readonly FIELD_TYPE_WCHAR: number;
|
|
5906
|
+
readonly FIELD_TYPE_BOOLEAN: number;
|
|
5907
|
+
readonly FIELD_TYPE_BYTE: number;
|
|
5908
|
+
readonly FIELD_TYPE_STRING: number;
|
|
5909
|
+
readonly FIELD_TYPE_WSTRING: number;
|
|
5910
|
+
readonly FIELD_TYPE_FIXED_STRING: number;
|
|
5911
|
+
readonly FIELD_TYPE_FIXED_WSTRING: number;
|
|
5912
|
+
readonly FIELD_TYPE_BOUNDED_STRING: number;
|
|
5913
|
+
readonly FIELD_TYPE_BOUNDED_WSTRING: number;
|
|
5914
|
+
readonly FIELD_TYPE_NESTED_TYPE_ARRAY: number;
|
|
5915
|
+
readonly FIELD_TYPE_INT8_ARRAY: number;
|
|
5916
|
+
readonly FIELD_TYPE_UINT8_ARRAY: number;
|
|
5917
|
+
readonly FIELD_TYPE_INT16_ARRAY: number;
|
|
5918
|
+
readonly FIELD_TYPE_UINT16_ARRAY: number;
|
|
5919
|
+
readonly FIELD_TYPE_INT32_ARRAY: number;
|
|
5920
|
+
readonly FIELD_TYPE_UINT32_ARRAY: number;
|
|
5921
|
+
readonly FIELD_TYPE_INT64_ARRAY: number;
|
|
5922
|
+
readonly FIELD_TYPE_UINT64_ARRAY: number;
|
|
5923
|
+
readonly FIELD_TYPE_FLOAT_ARRAY: number;
|
|
5924
|
+
readonly FIELD_TYPE_DOUBLE_ARRAY: number;
|
|
5925
|
+
readonly FIELD_TYPE_LONG_DOUBLE_ARRAY: number;
|
|
5926
|
+
readonly FIELD_TYPE_CHAR_ARRAY: number;
|
|
5927
|
+
readonly FIELD_TYPE_WCHAR_ARRAY: number;
|
|
5928
|
+
readonly FIELD_TYPE_BOOLEAN_ARRAY: number;
|
|
5929
|
+
readonly FIELD_TYPE_BYTE_ARRAY: number;
|
|
5930
|
+
readonly FIELD_TYPE_STRING_ARRAY: number;
|
|
5931
|
+
readonly FIELD_TYPE_WSTRING_ARRAY: number;
|
|
5932
|
+
readonly FIELD_TYPE_FIXED_STRING_ARRAY: number;
|
|
5933
|
+
readonly FIELD_TYPE_FIXED_WSTRING_ARRAY: number;
|
|
5934
|
+
readonly FIELD_TYPE_BOUNDED_STRING_ARRAY: number;
|
|
5935
|
+
readonly FIELD_TYPE_BOUNDED_WSTRING_ARRAY: number;
|
|
5936
|
+
readonly FIELD_TYPE_NESTED_TYPE_BOUNDED_SEQUENCE: number;
|
|
5937
|
+
readonly FIELD_TYPE_INT8_BOUNDED_SEQUENCE: number;
|
|
5938
|
+
readonly FIELD_TYPE_UINT8_BOUNDED_SEQUENCE: number;
|
|
5939
|
+
readonly FIELD_TYPE_INT16_BOUNDED_SEQUENCE: number;
|
|
5940
|
+
readonly FIELD_TYPE_UINT16_BOUNDED_SEQUENCE: number;
|
|
5941
|
+
readonly FIELD_TYPE_INT32_BOUNDED_SEQUENCE: number;
|
|
5942
|
+
readonly FIELD_TYPE_UINT32_BOUNDED_SEQUENCE: number;
|
|
5943
|
+
readonly FIELD_TYPE_INT64_BOUNDED_SEQUENCE: number;
|
|
5944
|
+
readonly FIELD_TYPE_UINT64_BOUNDED_SEQUENCE: number;
|
|
5945
|
+
readonly FIELD_TYPE_FLOAT_BOUNDED_SEQUENCE: number;
|
|
5946
|
+
readonly FIELD_TYPE_DOUBLE_BOUNDED_SEQUENCE: number;
|
|
5947
|
+
readonly FIELD_TYPE_LONG_DOUBLE_BOUNDED_SEQUENCE: number;
|
|
5948
|
+
readonly FIELD_TYPE_CHAR_BOUNDED_SEQUENCE: number;
|
|
5949
|
+
readonly FIELD_TYPE_WCHAR_BOUNDED_SEQUENCE: number;
|
|
5950
|
+
readonly FIELD_TYPE_BOOLEAN_BOUNDED_SEQUENCE: number;
|
|
5951
|
+
readonly FIELD_TYPE_BYTE_BOUNDED_SEQUENCE: number;
|
|
5952
|
+
readonly FIELD_TYPE_STRING_BOUNDED_SEQUENCE: number;
|
|
5953
|
+
readonly FIELD_TYPE_WSTRING_BOUNDED_SEQUENCE: number;
|
|
5954
|
+
readonly FIELD_TYPE_FIXED_STRING_BOUNDED_SEQUENCE: number;
|
|
5955
|
+
readonly FIELD_TYPE_FIXED_WSTRING_BOUNDED_SEQUENCE: number;
|
|
5956
|
+
readonly FIELD_TYPE_BOUNDED_STRING_BOUNDED_SEQUENCE: number;
|
|
5957
|
+
readonly FIELD_TYPE_BOUNDED_WSTRING_BOUNDED_SEQUENCE: number;
|
|
5958
|
+
readonly FIELD_TYPE_NESTED_TYPE_UNBOUNDED_SEQUENCE: number;
|
|
5959
|
+
readonly FIELD_TYPE_INT8_UNBOUNDED_SEQUENCE: number;
|
|
5960
|
+
readonly FIELD_TYPE_UINT8_UNBOUNDED_SEQUENCE: number;
|
|
5961
|
+
readonly FIELD_TYPE_INT16_UNBOUNDED_SEQUENCE: number;
|
|
5962
|
+
readonly FIELD_TYPE_UINT16_UNBOUNDED_SEQUENCE: number;
|
|
5963
|
+
readonly FIELD_TYPE_INT32_UNBOUNDED_SEQUENCE: number;
|
|
5964
|
+
readonly FIELD_TYPE_UINT32_UNBOUNDED_SEQUENCE: number;
|
|
5965
|
+
readonly FIELD_TYPE_INT64_UNBOUNDED_SEQUENCE: number;
|
|
5966
|
+
readonly FIELD_TYPE_UINT64_UNBOUNDED_SEQUENCE: number;
|
|
5967
|
+
readonly FIELD_TYPE_FLOAT_UNBOUNDED_SEQUENCE: number;
|
|
5968
|
+
readonly FIELD_TYPE_DOUBLE_UNBOUNDED_SEQUENCE: number;
|
|
5969
|
+
readonly FIELD_TYPE_LONG_DOUBLE_UNBOUNDED_SEQUENCE: number;
|
|
5970
|
+
readonly FIELD_TYPE_CHAR_UNBOUNDED_SEQUENCE: number;
|
|
5971
|
+
readonly FIELD_TYPE_WCHAR_UNBOUNDED_SEQUENCE: number;
|
|
5972
|
+
readonly FIELD_TYPE_BOOLEAN_UNBOUNDED_SEQUENCE: number;
|
|
5973
|
+
readonly FIELD_TYPE_BYTE_UNBOUNDED_SEQUENCE: number;
|
|
5974
|
+
readonly FIELD_TYPE_STRING_UNBOUNDED_SEQUENCE: number;
|
|
5975
|
+
readonly FIELD_TYPE_WSTRING_UNBOUNDED_SEQUENCE: number;
|
|
5976
|
+
readonly FIELD_TYPE_FIXED_STRING_UNBOUNDED_SEQUENCE: number;
|
|
5977
|
+
readonly FIELD_TYPE_FIXED_WSTRING_UNBOUNDED_SEQUENCE: number;
|
|
5978
|
+
readonly FIELD_TYPE_BOUNDED_STRING_UNBOUNDED_SEQUENCE: number;
|
|
5979
|
+
readonly FIELD_TYPE_BOUNDED_WSTRING_UNBOUNDED_SEQUENCE: number;
|
|
5980
|
+
new(other?: FieldType): FieldType;
|
|
5981
|
+
}
|
|
5982
|
+
export interface IndividualTypeDescription {
|
|
5983
|
+
type_name: string;
|
|
5984
|
+
fields: type_description_interfaces.msg.Field[];
|
|
5985
|
+
}
|
|
5986
|
+
export interface IndividualTypeDescriptionConstructor {
|
|
5987
|
+
new(other?: IndividualTypeDescription): IndividualTypeDescription;
|
|
5988
|
+
}
|
|
5989
|
+
export interface KeyValue {
|
|
5990
|
+
key: string;
|
|
5991
|
+
value: string;
|
|
5992
|
+
}
|
|
5993
|
+
export interface KeyValueConstructor {
|
|
5994
|
+
new(other?: KeyValue): KeyValue;
|
|
5995
|
+
}
|
|
5996
|
+
export interface TypeDescription {
|
|
5997
|
+
type_description: type_description_interfaces.msg.IndividualTypeDescription;
|
|
5998
|
+
referenced_type_descriptions: type_description_interfaces.msg.IndividualTypeDescription[];
|
|
5999
|
+
}
|
|
6000
|
+
export interface TypeDescriptionConstructor {
|
|
6001
|
+
new(other?: TypeDescription): TypeDescription;
|
|
6002
|
+
}
|
|
6003
|
+
export interface TypeSource {
|
|
6004
|
+
type_name: string;
|
|
6005
|
+
encoding: string;
|
|
6006
|
+
raw_file_contents: string;
|
|
6007
|
+
}
|
|
6008
|
+
export interface TypeSourceConstructor {
|
|
6009
|
+
new(other?: TypeSource): TypeSource;
|
|
6010
|
+
}
|
|
6011
|
+
}
|
|
6012
|
+
namespace srv {
|
|
6013
|
+
export interface GetTypeDescriptionConstructor extends ROSService {
|
|
6014
|
+
readonly Request: GetTypeDescription_RequestConstructor;
|
|
6015
|
+
readonly Response: GetTypeDescription_ResponseConstructor;
|
|
6016
|
+
}
|
|
6017
|
+
export interface GetTypeDescription_Event {
|
|
6018
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
6019
|
+
request: type_description_interfaces.srv.GetTypeDescription_Request[];
|
|
6020
|
+
response: type_description_interfaces.srv.GetTypeDescription_Response[];
|
|
6021
|
+
}
|
|
6022
|
+
export interface GetTypeDescription_EventConstructor {
|
|
6023
|
+
new(other?: GetTypeDescription_Event): GetTypeDescription_Event;
|
|
6024
|
+
}
|
|
6025
|
+
export interface GetTypeDescription_Request {
|
|
6026
|
+
type_name: string;
|
|
6027
|
+
type_hash: string;
|
|
6028
|
+
include_type_sources: boolean;
|
|
6029
|
+
}
|
|
6030
|
+
export interface GetTypeDescription_RequestConstructor {
|
|
6031
|
+
new(other?: GetTypeDescription_Request): GetTypeDescription_Request;
|
|
6032
|
+
}
|
|
6033
|
+
export interface GetTypeDescription_Response {
|
|
6034
|
+
successful: boolean;
|
|
6035
|
+
failure_reason: string;
|
|
6036
|
+
type_description: type_description_interfaces.msg.TypeDescription;
|
|
6037
|
+
type_sources: type_description_interfaces.msg.TypeSource[];
|
|
6038
|
+
extra_information: type_description_interfaces.msg.KeyValue[];
|
|
6039
|
+
}
|
|
6040
|
+
export interface GetTypeDescription_ResponseConstructor {
|
|
6041
|
+
new(other?: GetTypeDescription_Response): GetTypeDescription_Response;
|
|
6042
|
+
}
|
|
6043
|
+
}
|
|
6044
|
+
}
|
|
6045
|
+
|
|
3424
6046
|
namespace unique_identifier_msgs {
|
|
3425
6047
|
namespace msg {
|
|
3426
6048
|
export interface UUID {
|
|
@@ -3625,6 +6247,14 @@ declare module 'rclnodejs' {
|
|
|
3625
6247
|
readonly Request: GetInteractiveMarkers_RequestConstructor;
|
|
3626
6248
|
readonly Response: GetInteractiveMarkers_ResponseConstructor;
|
|
3627
6249
|
}
|
|
6250
|
+
export interface GetInteractiveMarkers_Event {
|
|
6251
|
+
info: service_msgs.msg.ServiceEventInfo;
|
|
6252
|
+
request: visualization_msgs.srv.GetInteractiveMarkers_Request[];
|
|
6253
|
+
response: visualization_msgs.srv.GetInteractiveMarkers_Response[];
|
|
6254
|
+
}
|
|
6255
|
+
export interface GetInteractiveMarkers_EventConstructor {
|
|
6256
|
+
new(other?: GetInteractiveMarkers_Event): GetInteractiveMarkers_Event;
|
|
6257
|
+
}
|
|
3628
6258
|
export interface GetInteractiveMarkers_Request {
|
|
3629
6259
|
}
|
|
3630
6260
|
export interface GetInteractiveMarkers_RequestConstructor {
|
|
@@ -3645,6 +6275,7 @@ declare module 'rclnodejs' {
|
|
|
3645
6275
|
'action_msgs/msg/GoalInfo': action_msgs.msg.GoalInfo,
|
|
3646
6276
|
'action_msgs/msg/GoalStatus': action_msgs.msg.GoalStatus,
|
|
3647
6277
|
'action_msgs/msg/GoalStatusArray': action_msgs.msg.GoalStatusArray,
|
|
6278
|
+
'action_msgs/srv/CancelGoal_Event': action_msgs.srv.CancelGoal_Event,
|
|
3648
6279
|
'action_msgs/srv/CancelGoal_Request': action_msgs.srv.CancelGoal_Request,
|
|
3649
6280
|
'action_msgs/srv/CancelGoal_Response': action_msgs.srv.CancelGoal_Response,
|
|
3650
6281
|
'action_tutorials_interfaces/action/Fibonacci_Feedback': action_tutorials_interfaces.action.Fibonacci_Feedback,
|
|
@@ -3658,19 +6289,26 @@ declare module 'rclnodejs' {
|
|
|
3658
6289
|
'actionlib_msgs/msg/GoalID': actionlib_msgs.msg.GoalID,
|
|
3659
6290
|
'actionlib_msgs/msg/GoalStatus': actionlib_msgs.msg.GoalStatus,
|
|
3660
6291
|
'actionlib_msgs/msg/GoalStatusArray': actionlib_msgs.msg.GoalStatusArray,
|
|
6292
|
+
'bond/msg/Constants': bond.msg.Constants,
|
|
6293
|
+
'bond/msg/Status': bond.msg.Status,
|
|
3661
6294
|
'builtin_interfaces/msg/Duration': builtin_interfaces.msg.Duration,
|
|
3662
6295
|
'builtin_interfaces/msg/Time': builtin_interfaces.msg.Time,
|
|
6296
|
+
'composition_interfaces/srv/ListNodes_Event': composition_interfaces.srv.ListNodes_Event,
|
|
3663
6297
|
'composition_interfaces/srv/ListNodes_Request': composition_interfaces.srv.ListNodes_Request,
|
|
3664
6298
|
'composition_interfaces/srv/ListNodes_Response': composition_interfaces.srv.ListNodes_Response,
|
|
6299
|
+
'composition_interfaces/srv/LoadNode_Event': composition_interfaces.srv.LoadNode_Event,
|
|
3665
6300
|
'composition_interfaces/srv/LoadNode_Request': composition_interfaces.srv.LoadNode_Request,
|
|
3666
6301
|
'composition_interfaces/srv/LoadNode_Response': composition_interfaces.srv.LoadNode_Response,
|
|
6302
|
+
'composition_interfaces/srv/UnloadNode_Event': composition_interfaces.srv.UnloadNode_Event,
|
|
3667
6303
|
'composition_interfaces/srv/UnloadNode_Request': composition_interfaces.srv.UnloadNode_Request,
|
|
3668
6304
|
'composition_interfaces/srv/UnloadNode_Response': composition_interfaces.srv.UnloadNode_Response,
|
|
3669
6305
|
'diagnostic_msgs/msg/DiagnosticArray': diagnostic_msgs.msg.DiagnosticArray,
|
|
3670
6306
|
'diagnostic_msgs/msg/DiagnosticStatus': diagnostic_msgs.msg.DiagnosticStatus,
|
|
3671
6307
|
'diagnostic_msgs/msg/KeyValue': diagnostic_msgs.msg.KeyValue,
|
|
6308
|
+
'diagnostic_msgs/srv/AddDiagnostics_Event': diagnostic_msgs.srv.AddDiagnostics_Event,
|
|
3672
6309
|
'diagnostic_msgs/srv/AddDiagnostics_Request': diagnostic_msgs.srv.AddDiagnostics_Request,
|
|
3673
6310
|
'diagnostic_msgs/srv/AddDiagnostics_Response': diagnostic_msgs.srv.AddDiagnostics_Response,
|
|
6311
|
+
'diagnostic_msgs/srv/SelfTest_Event': diagnostic_msgs.srv.SelfTest_Event,
|
|
3674
6312
|
'diagnostic_msgs/srv/SelfTest_Request': diagnostic_msgs.srv.SelfTest_Request,
|
|
3675
6313
|
'diagnostic_msgs/srv/SelfTest_Response': diagnostic_msgs.srv.SelfTest_Response,
|
|
3676
6314
|
'example_interfaces/action/Fibonacci_Feedback': example_interfaces.action.Fibonacci_Feedback,
|
|
@@ -3710,12 +6348,43 @@ declare module 'rclnodejs' {
|
|
|
3710
6348
|
'example_interfaces/msg/UInt8': example_interfaces.msg.UInt8,
|
|
3711
6349
|
'example_interfaces/msg/UInt8MultiArray': example_interfaces.msg.UInt8MultiArray,
|
|
3712
6350
|
'example_interfaces/msg/WString': example_interfaces.msg.WString,
|
|
6351
|
+
'example_interfaces/srv/AddTwoInts_Event': example_interfaces.srv.AddTwoInts_Event,
|
|
3713
6352
|
'example_interfaces/srv/AddTwoInts_Request': example_interfaces.srv.AddTwoInts_Request,
|
|
3714
6353
|
'example_interfaces/srv/AddTwoInts_Response': example_interfaces.srv.AddTwoInts_Response,
|
|
6354
|
+
'example_interfaces/srv/SetBool_Event': example_interfaces.srv.SetBool_Event,
|
|
3715
6355
|
'example_interfaces/srv/SetBool_Request': example_interfaces.srv.SetBool_Request,
|
|
3716
6356
|
'example_interfaces/srv/SetBool_Response': example_interfaces.srv.SetBool_Response,
|
|
6357
|
+
'example_interfaces/srv/Trigger_Event': example_interfaces.srv.Trigger_Event,
|
|
3717
6358
|
'example_interfaces/srv/Trigger_Request': example_interfaces.srv.Trigger_Request,
|
|
3718
6359
|
'example_interfaces/srv/Trigger_Response': example_interfaces.srv.Trigger_Response,
|
|
6360
|
+
'geographic_msgs/msg/BoundingBox': geographic_msgs.msg.BoundingBox,
|
|
6361
|
+
'geographic_msgs/msg/GeoPath': geographic_msgs.msg.GeoPath,
|
|
6362
|
+
'geographic_msgs/msg/GeoPoint': geographic_msgs.msg.GeoPoint,
|
|
6363
|
+
'geographic_msgs/msg/GeoPointStamped': geographic_msgs.msg.GeoPointStamped,
|
|
6364
|
+
'geographic_msgs/msg/GeoPose': geographic_msgs.msg.GeoPose,
|
|
6365
|
+
'geographic_msgs/msg/GeoPoseStamped': geographic_msgs.msg.GeoPoseStamped,
|
|
6366
|
+
'geographic_msgs/msg/GeoPoseWithCovariance': geographic_msgs.msg.GeoPoseWithCovariance,
|
|
6367
|
+
'geographic_msgs/msg/GeoPoseWithCovarianceStamped': geographic_msgs.msg.GeoPoseWithCovarianceStamped,
|
|
6368
|
+
'geographic_msgs/msg/GeographicMap': geographic_msgs.msg.GeographicMap,
|
|
6369
|
+
'geographic_msgs/msg/GeographicMapChanges': geographic_msgs.msg.GeographicMapChanges,
|
|
6370
|
+
'geographic_msgs/msg/KeyValue': geographic_msgs.msg.KeyValue,
|
|
6371
|
+
'geographic_msgs/msg/MapFeature': geographic_msgs.msg.MapFeature,
|
|
6372
|
+
'geographic_msgs/msg/RouteNetwork': geographic_msgs.msg.RouteNetwork,
|
|
6373
|
+
'geographic_msgs/msg/RoutePath': geographic_msgs.msg.RoutePath,
|
|
6374
|
+
'geographic_msgs/msg/RouteSegment': geographic_msgs.msg.RouteSegment,
|
|
6375
|
+
'geographic_msgs/msg/WayPoint': geographic_msgs.msg.WayPoint,
|
|
6376
|
+
'geographic_msgs/srv/GetGeoPath_Event': geographic_msgs.srv.GetGeoPath_Event,
|
|
6377
|
+
'geographic_msgs/srv/GetGeoPath_Request': geographic_msgs.srv.GetGeoPath_Request,
|
|
6378
|
+
'geographic_msgs/srv/GetGeoPath_Response': geographic_msgs.srv.GetGeoPath_Response,
|
|
6379
|
+
'geographic_msgs/srv/GetGeographicMap_Event': geographic_msgs.srv.GetGeographicMap_Event,
|
|
6380
|
+
'geographic_msgs/srv/GetGeographicMap_Request': geographic_msgs.srv.GetGeographicMap_Request,
|
|
6381
|
+
'geographic_msgs/srv/GetGeographicMap_Response': geographic_msgs.srv.GetGeographicMap_Response,
|
|
6382
|
+
'geographic_msgs/srv/GetRoutePlan_Event': geographic_msgs.srv.GetRoutePlan_Event,
|
|
6383
|
+
'geographic_msgs/srv/GetRoutePlan_Request': geographic_msgs.srv.GetRoutePlan_Request,
|
|
6384
|
+
'geographic_msgs/srv/GetRoutePlan_Response': geographic_msgs.srv.GetRoutePlan_Response,
|
|
6385
|
+
'geographic_msgs/srv/UpdateGeographicMap_Event': geographic_msgs.srv.UpdateGeographicMap_Event,
|
|
6386
|
+
'geographic_msgs/srv/UpdateGeographicMap_Request': geographic_msgs.srv.UpdateGeographicMap_Request,
|
|
6387
|
+
'geographic_msgs/srv/UpdateGeographicMap_Response': geographic_msgs.srv.UpdateGeographicMap_Response,
|
|
3719
6388
|
'geometry_msgs/msg/Accel': geometry_msgs.msg.Accel,
|
|
3720
6389
|
'geometry_msgs/msg/AccelStamped': geometry_msgs.msg.AccelStamped,
|
|
3721
6390
|
'geometry_msgs/msg/AccelWithCovariance': geometry_msgs.msg.AccelWithCovariance,
|
|
@@ -3749,43 +6418,206 @@ declare module 'rclnodejs' {
|
|
|
3749
6418
|
'lifecycle_msgs/msg/Transition': lifecycle_msgs.msg.Transition,
|
|
3750
6419
|
'lifecycle_msgs/msg/TransitionDescription': lifecycle_msgs.msg.TransitionDescription,
|
|
3751
6420
|
'lifecycle_msgs/msg/TransitionEvent': lifecycle_msgs.msg.TransitionEvent,
|
|
6421
|
+
'lifecycle_msgs/srv/ChangeState_Event': lifecycle_msgs.srv.ChangeState_Event,
|
|
3752
6422
|
'lifecycle_msgs/srv/ChangeState_Request': lifecycle_msgs.srv.ChangeState_Request,
|
|
3753
6423
|
'lifecycle_msgs/srv/ChangeState_Response': lifecycle_msgs.srv.ChangeState_Response,
|
|
6424
|
+
'lifecycle_msgs/srv/GetAvailableStates_Event': lifecycle_msgs.srv.GetAvailableStates_Event,
|
|
3754
6425
|
'lifecycle_msgs/srv/GetAvailableStates_Request': lifecycle_msgs.srv.GetAvailableStates_Request,
|
|
3755
6426
|
'lifecycle_msgs/srv/GetAvailableStates_Response': lifecycle_msgs.srv.GetAvailableStates_Response,
|
|
6427
|
+
'lifecycle_msgs/srv/GetAvailableTransitions_Event': lifecycle_msgs.srv.GetAvailableTransitions_Event,
|
|
3756
6428
|
'lifecycle_msgs/srv/GetAvailableTransitions_Request': lifecycle_msgs.srv.GetAvailableTransitions_Request,
|
|
3757
6429
|
'lifecycle_msgs/srv/GetAvailableTransitions_Response': lifecycle_msgs.srv.GetAvailableTransitions_Response,
|
|
6430
|
+
'lifecycle_msgs/srv/GetState_Event': lifecycle_msgs.srv.GetState_Event,
|
|
3758
6431
|
'lifecycle_msgs/srv/GetState_Request': lifecycle_msgs.srv.GetState_Request,
|
|
3759
6432
|
'lifecycle_msgs/srv/GetState_Response': lifecycle_msgs.srv.GetState_Response,
|
|
6433
|
+
'logging_demo/srv/ConfigLogger_Event': logging_demo.srv.ConfigLogger_Event,
|
|
3760
6434
|
'logging_demo/srv/ConfigLogger_Request': logging_demo.srv.ConfigLogger_Request,
|
|
3761
6435
|
'logging_demo/srv/ConfigLogger_Response': logging_demo.srv.ConfigLogger_Response,
|
|
3762
6436
|
'map_msgs/msg/OccupancyGridUpdate': map_msgs.msg.OccupancyGridUpdate,
|
|
3763
6437
|
'map_msgs/msg/PointCloud2Update': map_msgs.msg.PointCloud2Update,
|
|
3764
6438
|
'map_msgs/msg/ProjectedMap': map_msgs.msg.ProjectedMap,
|
|
3765
6439
|
'map_msgs/msg/ProjectedMapInfo': map_msgs.msg.ProjectedMapInfo,
|
|
6440
|
+
'map_msgs/srv/GetMapROI_Event': map_msgs.srv.GetMapROI_Event,
|
|
3766
6441
|
'map_msgs/srv/GetMapROI_Request': map_msgs.srv.GetMapROI_Request,
|
|
3767
6442
|
'map_msgs/srv/GetMapROI_Response': map_msgs.srv.GetMapROI_Response,
|
|
6443
|
+
'map_msgs/srv/GetPointMapROI_Event': map_msgs.srv.GetPointMapROI_Event,
|
|
3768
6444
|
'map_msgs/srv/GetPointMapROI_Request': map_msgs.srv.GetPointMapROI_Request,
|
|
3769
6445
|
'map_msgs/srv/GetPointMapROI_Response': map_msgs.srv.GetPointMapROI_Response,
|
|
6446
|
+
'map_msgs/srv/GetPointMap_Event': map_msgs.srv.GetPointMap_Event,
|
|
3770
6447
|
'map_msgs/srv/GetPointMap_Request': map_msgs.srv.GetPointMap_Request,
|
|
3771
6448
|
'map_msgs/srv/GetPointMap_Response': map_msgs.srv.GetPointMap_Response,
|
|
6449
|
+
'map_msgs/srv/ProjectedMapsInfo_Event': map_msgs.srv.ProjectedMapsInfo_Event,
|
|
3772
6450
|
'map_msgs/srv/ProjectedMapsInfo_Request': map_msgs.srv.ProjectedMapsInfo_Request,
|
|
3773
6451
|
'map_msgs/srv/ProjectedMapsInfo_Response': map_msgs.srv.ProjectedMapsInfo_Response,
|
|
6452
|
+
'map_msgs/srv/SaveMap_Event': map_msgs.srv.SaveMap_Event,
|
|
3774
6453
|
'map_msgs/srv/SaveMap_Request': map_msgs.srv.SaveMap_Request,
|
|
3775
6454
|
'map_msgs/srv/SaveMap_Response': map_msgs.srv.SaveMap_Response,
|
|
6455
|
+
'map_msgs/srv/SetMapProjections_Event': map_msgs.srv.SetMapProjections_Event,
|
|
3776
6456
|
'map_msgs/srv/SetMapProjections_Request': map_msgs.srv.SetMapProjections_Request,
|
|
3777
6457
|
'map_msgs/srv/SetMapProjections_Response': map_msgs.srv.SetMapProjections_Response,
|
|
6458
|
+
'nav2_msgs/action/AssistedTeleop_Feedback': nav2_msgs.action.AssistedTeleop_Feedback,
|
|
6459
|
+
'nav2_msgs/action/AssistedTeleop_FeedbackMessage': nav2_msgs.action.AssistedTeleop_FeedbackMessage,
|
|
6460
|
+
'nav2_msgs/action/AssistedTeleop_GetResult_Request': nav2_msgs.action.AssistedTeleop_GetResult_Request,
|
|
6461
|
+
'nav2_msgs/action/AssistedTeleop_GetResult_Response': nav2_msgs.action.AssistedTeleop_GetResult_Response,
|
|
6462
|
+
'nav2_msgs/action/AssistedTeleop_Goal': nav2_msgs.action.AssistedTeleop_Goal,
|
|
6463
|
+
'nav2_msgs/action/AssistedTeleop_Result': nav2_msgs.action.AssistedTeleop_Result,
|
|
6464
|
+
'nav2_msgs/action/AssistedTeleop_SendGoal_Request': nav2_msgs.action.AssistedTeleop_SendGoal_Request,
|
|
6465
|
+
'nav2_msgs/action/AssistedTeleop_SendGoal_Response': nav2_msgs.action.AssistedTeleop_SendGoal_Response,
|
|
6466
|
+
'nav2_msgs/action/BackUp_Feedback': nav2_msgs.action.BackUp_Feedback,
|
|
6467
|
+
'nav2_msgs/action/BackUp_FeedbackMessage': nav2_msgs.action.BackUp_FeedbackMessage,
|
|
6468
|
+
'nav2_msgs/action/BackUp_GetResult_Request': nav2_msgs.action.BackUp_GetResult_Request,
|
|
6469
|
+
'nav2_msgs/action/BackUp_GetResult_Response': nav2_msgs.action.BackUp_GetResult_Response,
|
|
6470
|
+
'nav2_msgs/action/BackUp_Goal': nav2_msgs.action.BackUp_Goal,
|
|
6471
|
+
'nav2_msgs/action/BackUp_Result': nav2_msgs.action.BackUp_Result,
|
|
6472
|
+
'nav2_msgs/action/BackUp_SendGoal_Request': nav2_msgs.action.BackUp_SendGoal_Request,
|
|
6473
|
+
'nav2_msgs/action/BackUp_SendGoal_Response': nav2_msgs.action.BackUp_SendGoal_Response,
|
|
6474
|
+
'nav2_msgs/action/ComputePathThroughPoses_Feedback': nav2_msgs.action.ComputePathThroughPoses_Feedback,
|
|
6475
|
+
'nav2_msgs/action/ComputePathThroughPoses_FeedbackMessage': nav2_msgs.action.ComputePathThroughPoses_FeedbackMessage,
|
|
6476
|
+
'nav2_msgs/action/ComputePathThroughPoses_GetResult_Request': nav2_msgs.action.ComputePathThroughPoses_GetResult_Request,
|
|
6477
|
+
'nav2_msgs/action/ComputePathThroughPoses_GetResult_Response': nav2_msgs.action.ComputePathThroughPoses_GetResult_Response,
|
|
6478
|
+
'nav2_msgs/action/ComputePathThroughPoses_Goal': nav2_msgs.action.ComputePathThroughPoses_Goal,
|
|
6479
|
+
'nav2_msgs/action/ComputePathThroughPoses_Result': nav2_msgs.action.ComputePathThroughPoses_Result,
|
|
6480
|
+
'nav2_msgs/action/ComputePathThroughPoses_SendGoal_Request': nav2_msgs.action.ComputePathThroughPoses_SendGoal_Request,
|
|
6481
|
+
'nav2_msgs/action/ComputePathThroughPoses_SendGoal_Response': nav2_msgs.action.ComputePathThroughPoses_SendGoal_Response,
|
|
6482
|
+
'nav2_msgs/action/ComputePathToPose_Feedback': nav2_msgs.action.ComputePathToPose_Feedback,
|
|
6483
|
+
'nav2_msgs/action/ComputePathToPose_FeedbackMessage': nav2_msgs.action.ComputePathToPose_FeedbackMessage,
|
|
6484
|
+
'nav2_msgs/action/ComputePathToPose_GetResult_Request': nav2_msgs.action.ComputePathToPose_GetResult_Request,
|
|
6485
|
+
'nav2_msgs/action/ComputePathToPose_GetResult_Response': nav2_msgs.action.ComputePathToPose_GetResult_Response,
|
|
6486
|
+
'nav2_msgs/action/ComputePathToPose_Goal': nav2_msgs.action.ComputePathToPose_Goal,
|
|
6487
|
+
'nav2_msgs/action/ComputePathToPose_Result': nav2_msgs.action.ComputePathToPose_Result,
|
|
6488
|
+
'nav2_msgs/action/ComputePathToPose_SendGoal_Request': nav2_msgs.action.ComputePathToPose_SendGoal_Request,
|
|
6489
|
+
'nav2_msgs/action/ComputePathToPose_SendGoal_Response': nav2_msgs.action.ComputePathToPose_SendGoal_Response,
|
|
6490
|
+
'nav2_msgs/action/DriveOnHeading_Feedback': nav2_msgs.action.DriveOnHeading_Feedback,
|
|
6491
|
+
'nav2_msgs/action/DriveOnHeading_FeedbackMessage': nav2_msgs.action.DriveOnHeading_FeedbackMessage,
|
|
6492
|
+
'nav2_msgs/action/DriveOnHeading_GetResult_Request': nav2_msgs.action.DriveOnHeading_GetResult_Request,
|
|
6493
|
+
'nav2_msgs/action/DriveOnHeading_GetResult_Response': nav2_msgs.action.DriveOnHeading_GetResult_Response,
|
|
6494
|
+
'nav2_msgs/action/DriveOnHeading_Goal': nav2_msgs.action.DriveOnHeading_Goal,
|
|
6495
|
+
'nav2_msgs/action/DriveOnHeading_Result': nav2_msgs.action.DriveOnHeading_Result,
|
|
6496
|
+
'nav2_msgs/action/DriveOnHeading_SendGoal_Request': nav2_msgs.action.DriveOnHeading_SendGoal_Request,
|
|
6497
|
+
'nav2_msgs/action/DriveOnHeading_SendGoal_Response': nav2_msgs.action.DriveOnHeading_SendGoal_Response,
|
|
6498
|
+
'nav2_msgs/action/DummyBehavior_Feedback': nav2_msgs.action.DummyBehavior_Feedback,
|
|
6499
|
+
'nav2_msgs/action/DummyBehavior_FeedbackMessage': nav2_msgs.action.DummyBehavior_FeedbackMessage,
|
|
6500
|
+
'nav2_msgs/action/DummyBehavior_GetResult_Request': nav2_msgs.action.DummyBehavior_GetResult_Request,
|
|
6501
|
+
'nav2_msgs/action/DummyBehavior_GetResult_Response': nav2_msgs.action.DummyBehavior_GetResult_Response,
|
|
6502
|
+
'nav2_msgs/action/DummyBehavior_Goal': nav2_msgs.action.DummyBehavior_Goal,
|
|
6503
|
+
'nav2_msgs/action/DummyBehavior_Result': nav2_msgs.action.DummyBehavior_Result,
|
|
6504
|
+
'nav2_msgs/action/DummyBehavior_SendGoal_Request': nav2_msgs.action.DummyBehavior_SendGoal_Request,
|
|
6505
|
+
'nav2_msgs/action/DummyBehavior_SendGoal_Response': nav2_msgs.action.DummyBehavior_SendGoal_Response,
|
|
6506
|
+
'nav2_msgs/action/FollowGPSWaypoints_Feedback': nav2_msgs.action.FollowGPSWaypoints_Feedback,
|
|
6507
|
+
'nav2_msgs/action/FollowGPSWaypoints_FeedbackMessage': nav2_msgs.action.FollowGPSWaypoints_FeedbackMessage,
|
|
6508
|
+
'nav2_msgs/action/FollowGPSWaypoints_GetResult_Request': nav2_msgs.action.FollowGPSWaypoints_GetResult_Request,
|
|
6509
|
+
'nav2_msgs/action/FollowGPSWaypoints_GetResult_Response': nav2_msgs.action.FollowGPSWaypoints_GetResult_Response,
|
|
6510
|
+
'nav2_msgs/action/FollowGPSWaypoints_Goal': nav2_msgs.action.FollowGPSWaypoints_Goal,
|
|
6511
|
+
'nav2_msgs/action/FollowGPSWaypoints_Result': nav2_msgs.action.FollowGPSWaypoints_Result,
|
|
6512
|
+
'nav2_msgs/action/FollowGPSWaypoints_SendGoal_Request': nav2_msgs.action.FollowGPSWaypoints_SendGoal_Request,
|
|
6513
|
+
'nav2_msgs/action/FollowGPSWaypoints_SendGoal_Response': nav2_msgs.action.FollowGPSWaypoints_SendGoal_Response,
|
|
6514
|
+
'nav2_msgs/action/FollowPath_Feedback': nav2_msgs.action.FollowPath_Feedback,
|
|
6515
|
+
'nav2_msgs/action/FollowPath_FeedbackMessage': nav2_msgs.action.FollowPath_FeedbackMessage,
|
|
6516
|
+
'nav2_msgs/action/FollowPath_GetResult_Request': nav2_msgs.action.FollowPath_GetResult_Request,
|
|
6517
|
+
'nav2_msgs/action/FollowPath_GetResult_Response': nav2_msgs.action.FollowPath_GetResult_Response,
|
|
6518
|
+
'nav2_msgs/action/FollowPath_Goal': nav2_msgs.action.FollowPath_Goal,
|
|
6519
|
+
'nav2_msgs/action/FollowPath_Result': nav2_msgs.action.FollowPath_Result,
|
|
6520
|
+
'nav2_msgs/action/FollowPath_SendGoal_Request': nav2_msgs.action.FollowPath_SendGoal_Request,
|
|
6521
|
+
'nav2_msgs/action/FollowPath_SendGoal_Response': nav2_msgs.action.FollowPath_SendGoal_Response,
|
|
6522
|
+
'nav2_msgs/action/FollowWaypoints_Feedback': nav2_msgs.action.FollowWaypoints_Feedback,
|
|
6523
|
+
'nav2_msgs/action/FollowWaypoints_FeedbackMessage': nav2_msgs.action.FollowWaypoints_FeedbackMessage,
|
|
6524
|
+
'nav2_msgs/action/FollowWaypoints_GetResult_Request': nav2_msgs.action.FollowWaypoints_GetResult_Request,
|
|
6525
|
+
'nav2_msgs/action/FollowWaypoints_GetResult_Response': nav2_msgs.action.FollowWaypoints_GetResult_Response,
|
|
6526
|
+
'nav2_msgs/action/FollowWaypoints_Goal': nav2_msgs.action.FollowWaypoints_Goal,
|
|
6527
|
+
'nav2_msgs/action/FollowWaypoints_Result': nav2_msgs.action.FollowWaypoints_Result,
|
|
6528
|
+
'nav2_msgs/action/FollowWaypoints_SendGoal_Request': nav2_msgs.action.FollowWaypoints_SendGoal_Request,
|
|
6529
|
+
'nav2_msgs/action/FollowWaypoints_SendGoal_Response': nav2_msgs.action.FollowWaypoints_SendGoal_Response,
|
|
6530
|
+
'nav2_msgs/action/NavigateThroughPoses_Feedback': nav2_msgs.action.NavigateThroughPoses_Feedback,
|
|
6531
|
+
'nav2_msgs/action/NavigateThroughPoses_FeedbackMessage': nav2_msgs.action.NavigateThroughPoses_FeedbackMessage,
|
|
6532
|
+
'nav2_msgs/action/NavigateThroughPoses_GetResult_Request': nav2_msgs.action.NavigateThroughPoses_GetResult_Request,
|
|
6533
|
+
'nav2_msgs/action/NavigateThroughPoses_GetResult_Response': nav2_msgs.action.NavigateThroughPoses_GetResult_Response,
|
|
6534
|
+
'nav2_msgs/action/NavigateThroughPoses_Goal': nav2_msgs.action.NavigateThroughPoses_Goal,
|
|
6535
|
+
'nav2_msgs/action/NavigateThroughPoses_Result': nav2_msgs.action.NavigateThroughPoses_Result,
|
|
6536
|
+
'nav2_msgs/action/NavigateThroughPoses_SendGoal_Request': nav2_msgs.action.NavigateThroughPoses_SendGoal_Request,
|
|
6537
|
+
'nav2_msgs/action/NavigateThroughPoses_SendGoal_Response': nav2_msgs.action.NavigateThroughPoses_SendGoal_Response,
|
|
6538
|
+
'nav2_msgs/action/NavigateToPose_Feedback': nav2_msgs.action.NavigateToPose_Feedback,
|
|
6539
|
+
'nav2_msgs/action/NavigateToPose_FeedbackMessage': nav2_msgs.action.NavigateToPose_FeedbackMessage,
|
|
6540
|
+
'nav2_msgs/action/NavigateToPose_GetResult_Request': nav2_msgs.action.NavigateToPose_GetResult_Request,
|
|
6541
|
+
'nav2_msgs/action/NavigateToPose_GetResult_Response': nav2_msgs.action.NavigateToPose_GetResult_Response,
|
|
6542
|
+
'nav2_msgs/action/NavigateToPose_Goal': nav2_msgs.action.NavigateToPose_Goal,
|
|
6543
|
+
'nav2_msgs/action/NavigateToPose_Result': nav2_msgs.action.NavigateToPose_Result,
|
|
6544
|
+
'nav2_msgs/action/NavigateToPose_SendGoal_Request': nav2_msgs.action.NavigateToPose_SendGoal_Request,
|
|
6545
|
+
'nav2_msgs/action/NavigateToPose_SendGoal_Response': nav2_msgs.action.NavigateToPose_SendGoal_Response,
|
|
6546
|
+
'nav2_msgs/action/SmoothPath_Feedback': nav2_msgs.action.SmoothPath_Feedback,
|
|
6547
|
+
'nav2_msgs/action/SmoothPath_FeedbackMessage': nav2_msgs.action.SmoothPath_FeedbackMessage,
|
|
6548
|
+
'nav2_msgs/action/SmoothPath_GetResult_Request': nav2_msgs.action.SmoothPath_GetResult_Request,
|
|
6549
|
+
'nav2_msgs/action/SmoothPath_GetResult_Response': nav2_msgs.action.SmoothPath_GetResult_Response,
|
|
6550
|
+
'nav2_msgs/action/SmoothPath_Goal': nav2_msgs.action.SmoothPath_Goal,
|
|
6551
|
+
'nav2_msgs/action/SmoothPath_Result': nav2_msgs.action.SmoothPath_Result,
|
|
6552
|
+
'nav2_msgs/action/SmoothPath_SendGoal_Request': nav2_msgs.action.SmoothPath_SendGoal_Request,
|
|
6553
|
+
'nav2_msgs/action/SmoothPath_SendGoal_Response': nav2_msgs.action.SmoothPath_SendGoal_Response,
|
|
6554
|
+
'nav2_msgs/action/Spin_Feedback': nav2_msgs.action.Spin_Feedback,
|
|
6555
|
+
'nav2_msgs/action/Spin_FeedbackMessage': nav2_msgs.action.Spin_FeedbackMessage,
|
|
6556
|
+
'nav2_msgs/action/Spin_GetResult_Request': nav2_msgs.action.Spin_GetResult_Request,
|
|
6557
|
+
'nav2_msgs/action/Spin_GetResult_Response': nav2_msgs.action.Spin_GetResult_Response,
|
|
6558
|
+
'nav2_msgs/action/Spin_Goal': nav2_msgs.action.Spin_Goal,
|
|
6559
|
+
'nav2_msgs/action/Spin_Result': nav2_msgs.action.Spin_Result,
|
|
6560
|
+
'nav2_msgs/action/Spin_SendGoal_Request': nav2_msgs.action.Spin_SendGoal_Request,
|
|
6561
|
+
'nav2_msgs/action/Spin_SendGoal_Response': nav2_msgs.action.Spin_SendGoal_Response,
|
|
6562
|
+
'nav2_msgs/action/Wait_Feedback': nav2_msgs.action.Wait_Feedback,
|
|
6563
|
+
'nav2_msgs/action/Wait_FeedbackMessage': nav2_msgs.action.Wait_FeedbackMessage,
|
|
6564
|
+
'nav2_msgs/action/Wait_GetResult_Request': nav2_msgs.action.Wait_GetResult_Request,
|
|
6565
|
+
'nav2_msgs/action/Wait_GetResult_Response': nav2_msgs.action.Wait_GetResult_Response,
|
|
6566
|
+
'nav2_msgs/action/Wait_Goal': nav2_msgs.action.Wait_Goal,
|
|
6567
|
+
'nav2_msgs/action/Wait_Result': nav2_msgs.action.Wait_Result,
|
|
6568
|
+
'nav2_msgs/action/Wait_SendGoal_Request': nav2_msgs.action.Wait_SendGoal_Request,
|
|
6569
|
+
'nav2_msgs/action/Wait_SendGoal_Response': nav2_msgs.action.Wait_SendGoal_Response,
|
|
6570
|
+
'nav2_msgs/msg/BehaviorTreeLog': nav2_msgs.msg.BehaviorTreeLog,
|
|
6571
|
+
'nav2_msgs/msg/BehaviorTreeStatusChange': nav2_msgs.msg.BehaviorTreeStatusChange,
|
|
6572
|
+
'nav2_msgs/msg/CollisionDetectorState': nav2_msgs.msg.CollisionDetectorState,
|
|
6573
|
+
'nav2_msgs/msg/CollisionMonitorState': nav2_msgs.msg.CollisionMonitorState,
|
|
6574
|
+
'nav2_msgs/msg/Costmap': nav2_msgs.msg.Costmap,
|
|
6575
|
+
'nav2_msgs/msg/CostmapFilterInfo': nav2_msgs.msg.CostmapFilterInfo,
|
|
6576
|
+
'nav2_msgs/msg/CostmapMetaData': nav2_msgs.msg.CostmapMetaData,
|
|
6577
|
+
'nav2_msgs/msg/MissedWaypoint': nav2_msgs.msg.MissedWaypoint,
|
|
6578
|
+
'nav2_msgs/msg/Particle': nav2_msgs.msg.Particle,
|
|
6579
|
+
'nav2_msgs/msg/ParticleCloud': nav2_msgs.msg.ParticleCloud,
|
|
6580
|
+
'nav2_msgs/msg/SpeedLimit': nav2_msgs.msg.SpeedLimit,
|
|
6581
|
+
'nav2_msgs/msg/VoxelGrid': nav2_msgs.msg.VoxelGrid,
|
|
6582
|
+
'nav2_msgs/srv/ClearCostmapAroundRobot_Event': nav2_msgs.srv.ClearCostmapAroundRobot_Event,
|
|
6583
|
+
'nav2_msgs/srv/ClearCostmapAroundRobot_Request': nav2_msgs.srv.ClearCostmapAroundRobot_Request,
|
|
6584
|
+
'nav2_msgs/srv/ClearCostmapAroundRobot_Response': nav2_msgs.srv.ClearCostmapAroundRobot_Response,
|
|
6585
|
+
'nav2_msgs/srv/ClearCostmapExceptRegion_Event': nav2_msgs.srv.ClearCostmapExceptRegion_Event,
|
|
6586
|
+
'nav2_msgs/srv/ClearCostmapExceptRegion_Request': nav2_msgs.srv.ClearCostmapExceptRegion_Request,
|
|
6587
|
+
'nav2_msgs/srv/ClearCostmapExceptRegion_Response': nav2_msgs.srv.ClearCostmapExceptRegion_Response,
|
|
6588
|
+
'nav2_msgs/srv/ClearEntireCostmap_Event': nav2_msgs.srv.ClearEntireCostmap_Event,
|
|
6589
|
+
'nav2_msgs/srv/ClearEntireCostmap_Request': nav2_msgs.srv.ClearEntireCostmap_Request,
|
|
6590
|
+
'nav2_msgs/srv/ClearEntireCostmap_Response': nav2_msgs.srv.ClearEntireCostmap_Response,
|
|
6591
|
+
'nav2_msgs/srv/GetCostmap_Event': nav2_msgs.srv.GetCostmap_Event,
|
|
6592
|
+
'nav2_msgs/srv/GetCostmap_Request': nav2_msgs.srv.GetCostmap_Request,
|
|
6593
|
+
'nav2_msgs/srv/GetCostmap_Response': nav2_msgs.srv.GetCostmap_Response,
|
|
6594
|
+
'nav2_msgs/srv/IsPathValid_Event': nav2_msgs.srv.IsPathValid_Event,
|
|
6595
|
+
'nav2_msgs/srv/IsPathValid_Request': nav2_msgs.srv.IsPathValid_Request,
|
|
6596
|
+
'nav2_msgs/srv/IsPathValid_Response': nav2_msgs.srv.IsPathValid_Response,
|
|
6597
|
+
'nav2_msgs/srv/LoadMap_Event': nav2_msgs.srv.LoadMap_Event,
|
|
6598
|
+
'nav2_msgs/srv/LoadMap_Request': nav2_msgs.srv.LoadMap_Request,
|
|
6599
|
+
'nav2_msgs/srv/LoadMap_Response': nav2_msgs.srv.LoadMap_Response,
|
|
6600
|
+
'nav2_msgs/srv/ManageLifecycleNodes_Event': nav2_msgs.srv.ManageLifecycleNodes_Event,
|
|
6601
|
+
'nav2_msgs/srv/ManageLifecycleNodes_Request': nav2_msgs.srv.ManageLifecycleNodes_Request,
|
|
6602
|
+
'nav2_msgs/srv/ManageLifecycleNodes_Response': nav2_msgs.srv.ManageLifecycleNodes_Response,
|
|
6603
|
+
'nav2_msgs/srv/SaveMap_Event': nav2_msgs.srv.SaveMap_Event,
|
|
6604
|
+
'nav2_msgs/srv/SaveMap_Request': nav2_msgs.srv.SaveMap_Request,
|
|
6605
|
+
'nav2_msgs/srv/SaveMap_Response': nav2_msgs.srv.SaveMap_Response,
|
|
3778
6606
|
'nav_msgs/msg/GridCells': nav_msgs.msg.GridCells,
|
|
3779
6607
|
'nav_msgs/msg/MapMetaData': nav_msgs.msg.MapMetaData,
|
|
3780
6608
|
'nav_msgs/msg/OccupancyGrid': nav_msgs.msg.OccupancyGrid,
|
|
3781
6609
|
'nav_msgs/msg/Odometry': nav_msgs.msg.Odometry,
|
|
3782
6610
|
'nav_msgs/msg/Path': nav_msgs.msg.Path,
|
|
6611
|
+
'nav_msgs/srv/GetMap_Event': nav_msgs.srv.GetMap_Event,
|
|
3783
6612
|
'nav_msgs/srv/GetMap_Request': nav_msgs.srv.GetMap_Request,
|
|
3784
6613
|
'nav_msgs/srv/GetMap_Response': nav_msgs.srv.GetMap_Response,
|
|
6614
|
+
'nav_msgs/srv/GetPlan_Event': nav_msgs.srv.GetPlan_Event,
|
|
3785
6615
|
'nav_msgs/srv/GetPlan_Request': nav_msgs.srv.GetPlan_Request,
|
|
3786
6616
|
'nav_msgs/srv/GetPlan_Response': nav_msgs.srv.GetPlan_Response,
|
|
6617
|
+
'nav_msgs/srv/LoadMap_Event': nav_msgs.srv.LoadMap_Event,
|
|
3787
6618
|
'nav_msgs/srv/LoadMap_Request': nav_msgs.srv.LoadMap_Request,
|
|
3788
6619
|
'nav_msgs/srv/LoadMap_Response': nav_msgs.srv.LoadMap_Response,
|
|
6620
|
+
'nav_msgs/srv/SetMap_Event': nav_msgs.srv.SetMap_Event,
|
|
3789
6621
|
'nav_msgs/srv/SetMap_Request': nav_msgs.srv.SetMap_Request,
|
|
3790
6622
|
'nav_msgs/srv/SetMap_Response': nav_msgs.srv.SetMap_Response,
|
|
3791
6623
|
'pendulum_msgs/msg/JointCommand': pendulum_msgs.msg.JointCommand,
|
|
@@ -3795,23 +6627,37 @@ declare module 'rclnodejs' {
|
|
|
3795
6627
|
'rcl_interfaces/msg/IntegerRange': rcl_interfaces.msg.IntegerRange,
|
|
3796
6628
|
'rcl_interfaces/msg/ListParametersResult': rcl_interfaces.msg.ListParametersResult,
|
|
3797
6629
|
'rcl_interfaces/msg/Log': rcl_interfaces.msg.Log,
|
|
6630
|
+
'rcl_interfaces/msg/LoggerLevel': rcl_interfaces.msg.LoggerLevel,
|
|
3798
6631
|
'rcl_interfaces/msg/Parameter': rcl_interfaces.msg.Parameter,
|
|
3799
6632
|
'rcl_interfaces/msg/ParameterDescriptor': rcl_interfaces.msg.ParameterDescriptor,
|
|
3800
6633
|
'rcl_interfaces/msg/ParameterEvent': rcl_interfaces.msg.ParameterEvent,
|
|
3801
6634
|
'rcl_interfaces/msg/ParameterEventDescriptors': rcl_interfaces.msg.ParameterEventDescriptors,
|
|
3802
6635
|
'rcl_interfaces/msg/ParameterType': rcl_interfaces.msg.ParameterType,
|
|
3803
6636
|
'rcl_interfaces/msg/ParameterValue': rcl_interfaces.msg.ParameterValue,
|
|
6637
|
+
'rcl_interfaces/msg/SetLoggerLevelsResult': rcl_interfaces.msg.SetLoggerLevelsResult,
|
|
3804
6638
|
'rcl_interfaces/msg/SetParametersResult': rcl_interfaces.msg.SetParametersResult,
|
|
6639
|
+
'rcl_interfaces/srv/DescribeParameters_Event': rcl_interfaces.srv.DescribeParameters_Event,
|
|
3805
6640
|
'rcl_interfaces/srv/DescribeParameters_Request': rcl_interfaces.srv.DescribeParameters_Request,
|
|
3806
6641
|
'rcl_interfaces/srv/DescribeParameters_Response': rcl_interfaces.srv.DescribeParameters_Response,
|
|
6642
|
+
'rcl_interfaces/srv/GetLoggerLevels_Event': rcl_interfaces.srv.GetLoggerLevels_Event,
|
|
6643
|
+
'rcl_interfaces/srv/GetLoggerLevels_Request': rcl_interfaces.srv.GetLoggerLevels_Request,
|
|
6644
|
+
'rcl_interfaces/srv/GetLoggerLevels_Response': rcl_interfaces.srv.GetLoggerLevels_Response,
|
|
6645
|
+
'rcl_interfaces/srv/GetParameterTypes_Event': rcl_interfaces.srv.GetParameterTypes_Event,
|
|
3807
6646
|
'rcl_interfaces/srv/GetParameterTypes_Request': rcl_interfaces.srv.GetParameterTypes_Request,
|
|
3808
6647
|
'rcl_interfaces/srv/GetParameterTypes_Response': rcl_interfaces.srv.GetParameterTypes_Response,
|
|
6648
|
+
'rcl_interfaces/srv/GetParameters_Event': rcl_interfaces.srv.GetParameters_Event,
|
|
3809
6649
|
'rcl_interfaces/srv/GetParameters_Request': rcl_interfaces.srv.GetParameters_Request,
|
|
3810
6650
|
'rcl_interfaces/srv/GetParameters_Response': rcl_interfaces.srv.GetParameters_Response,
|
|
6651
|
+
'rcl_interfaces/srv/ListParameters_Event': rcl_interfaces.srv.ListParameters_Event,
|
|
3811
6652
|
'rcl_interfaces/srv/ListParameters_Request': rcl_interfaces.srv.ListParameters_Request,
|
|
3812
6653
|
'rcl_interfaces/srv/ListParameters_Response': rcl_interfaces.srv.ListParameters_Response,
|
|
6654
|
+
'rcl_interfaces/srv/SetLoggerLevels_Event': rcl_interfaces.srv.SetLoggerLevels_Event,
|
|
6655
|
+
'rcl_interfaces/srv/SetLoggerLevels_Request': rcl_interfaces.srv.SetLoggerLevels_Request,
|
|
6656
|
+
'rcl_interfaces/srv/SetLoggerLevels_Response': rcl_interfaces.srv.SetLoggerLevels_Response,
|
|
6657
|
+
'rcl_interfaces/srv/SetParametersAtomically_Event': rcl_interfaces.srv.SetParametersAtomically_Event,
|
|
3813
6658
|
'rcl_interfaces/srv/SetParametersAtomically_Request': rcl_interfaces.srv.SetParametersAtomically_Request,
|
|
3814
6659
|
'rcl_interfaces/srv/SetParametersAtomically_Response': rcl_interfaces.srv.SetParametersAtomically_Response,
|
|
6660
|
+
'rcl_interfaces/srv/SetParameters_Event': rcl_interfaces.srv.SetParameters_Event,
|
|
3815
6661
|
'rcl_interfaces/srv/SetParameters_Request': rcl_interfaces.srv.SetParameters_Request,
|
|
3816
6662
|
'rcl_interfaces/srv/SetParameters_Response': rcl_interfaces.srv.SetParameters_Response,
|
|
3817
6663
|
'rmw_dds_common/msg/Gid': rmw_dds_common.msg.Gid,
|
|
@@ -3828,28 +6674,48 @@ declare module 'rclnodejs' {
|
|
|
3828
6674
|
'ros2cli_test_interfaces/msg/ShortVaried': ros2cli_test_interfaces.msg.ShortVaried,
|
|
3829
6675
|
'ros2cli_test_interfaces/msg/ShortVariedMultiNested': ros2cli_test_interfaces.msg.ShortVariedMultiNested,
|
|
3830
6676
|
'ros2cli_test_interfaces/msg/ShortVariedNested': ros2cli_test_interfaces.msg.ShortVariedNested,
|
|
6677
|
+
'ros2cli_test_interfaces/srv/ShortVariedMultiNested_Event': ros2cli_test_interfaces.srv.ShortVariedMultiNested_Event,
|
|
3831
6678
|
'ros2cli_test_interfaces/srv/ShortVariedMultiNested_Request': ros2cli_test_interfaces.srv.ShortVariedMultiNested_Request,
|
|
3832
6679
|
'ros2cli_test_interfaces/srv/ShortVariedMultiNested_Response': ros2cli_test_interfaces.srv.ShortVariedMultiNested_Response,
|
|
3833
6680
|
'rosbag2_interfaces/msg/ReadSplitEvent': rosbag2_interfaces.msg.ReadSplitEvent,
|
|
3834
6681
|
'rosbag2_interfaces/msg/WriteSplitEvent': rosbag2_interfaces.msg.WriteSplitEvent,
|
|
6682
|
+
'rosbag2_interfaces/srv/Burst_Event': rosbag2_interfaces.srv.Burst_Event,
|
|
3835
6683
|
'rosbag2_interfaces/srv/Burst_Request': rosbag2_interfaces.srv.Burst_Request,
|
|
3836
6684
|
'rosbag2_interfaces/srv/Burst_Response': rosbag2_interfaces.srv.Burst_Response,
|
|
6685
|
+
'rosbag2_interfaces/srv/GetRate_Event': rosbag2_interfaces.srv.GetRate_Event,
|
|
3837
6686
|
'rosbag2_interfaces/srv/GetRate_Request': rosbag2_interfaces.srv.GetRate_Request,
|
|
3838
6687
|
'rosbag2_interfaces/srv/GetRate_Response': rosbag2_interfaces.srv.GetRate_Response,
|
|
6688
|
+
'rosbag2_interfaces/srv/IsPaused_Event': rosbag2_interfaces.srv.IsPaused_Event,
|
|
3839
6689
|
'rosbag2_interfaces/srv/IsPaused_Request': rosbag2_interfaces.srv.IsPaused_Request,
|
|
3840
6690
|
'rosbag2_interfaces/srv/IsPaused_Response': rosbag2_interfaces.srv.IsPaused_Response,
|
|
6691
|
+
'rosbag2_interfaces/srv/Pause_Event': rosbag2_interfaces.srv.Pause_Event,
|
|
3841
6692
|
'rosbag2_interfaces/srv/Pause_Request': rosbag2_interfaces.srv.Pause_Request,
|
|
3842
6693
|
'rosbag2_interfaces/srv/Pause_Response': rosbag2_interfaces.srv.Pause_Response,
|
|
6694
|
+
'rosbag2_interfaces/srv/PlayNext_Event': rosbag2_interfaces.srv.PlayNext_Event,
|
|
3843
6695
|
'rosbag2_interfaces/srv/PlayNext_Request': rosbag2_interfaces.srv.PlayNext_Request,
|
|
3844
6696
|
'rosbag2_interfaces/srv/PlayNext_Response': rosbag2_interfaces.srv.PlayNext_Response,
|
|
6697
|
+
'rosbag2_interfaces/srv/Play_Event': rosbag2_interfaces.srv.Play_Event,
|
|
6698
|
+
'rosbag2_interfaces/srv/Play_Request': rosbag2_interfaces.srv.Play_Request,
|
|
6699
|
+
'rosbag2_interfaces/srv/Play_Response': rosbag2_interfaces.srv.Play_Response,
|
|
6700
|
+
'rosbag2_interfaces/srv/Resume_Event': rosbag2_interfaces.srv.Resume_Event,
|
|
3845
6701
|
'rosbag2_interfaces/srv/Resume_Request': rosbag2_interfaces.srv.Resume_Request,
|
|
3846
6702
|
'rosbag2_interfaces/srv/Resume_Response': rosbag2_interfaces.srv.Resume_Response,
|
|
6703
|
+
'rosbag2_interfaces/srv/Seek_Event': rosbag2_interfaces.srv.Seek_Event,
|
|
3847
6704
|
'rosbag2_interfaces/srv/Seek_Request': rosbag2_interfaces.srv.Seek_Request,
|
|
3848
6705
|
'rosbag2_interfaces/srv/Seek_Response': rosbag2_interfaces.srv.Seek_Response,
|
|
6706
|
+
'rosbag2_interfaces/srv/SetRate_Event': rosbag2_interfaces.srv.SetRate_Event,
|
|
3849
6707
|
'rosbag2_interfaces/srv/SetRate_Request': rosbag2_interfaces.srv.SetRate_Request,
|
|
3850
6708
|
'rosbag2_interfaces/srv/SetRate_Response': rosbag2_interfaces.srv.SetRate_Response,
|
|
6709
|
+
'rosbag2_interfaces/srv/Snapshot_Event': rosbag2_interfaces.srv.Snapshot_Event,
|
|
3851
6710
|
'rosbag2_interfaces/srv/Snapshot_Request': rosbag2_interfaces.srv.Snapshot_Request,
|
|
3852
6711
|
'rosbag2_interfaces/srv/Snapshot_Response': rosbag2_interfaces.srv.Snapshot_Response,
|
|
6712
|
+
'rosbag2_interfaces/srv/SplitBagfile_Event': rosbag2_interfaces.srv.SplitBagfile_Event,
|
|
6713
|
+
'rosbag2_interfaces/srv/SplitBagfile_Request': rosbag2_interfaces.srv.SplitBagfile_Request,
|
|
6714
|
+
'rosbag2_interfaces/srv/SplitBagfile_Response': rosbag2_interfaces.srv.SplitBagfile_Response,
|
|
6715
|
+
'rosbag2_interfaces/srv/Stop_Event': rosbag2_interfaces.srv.Stop_Event,
|
|
6716
|
+
'rosbag2_interfaces/srv/Stop_Request': rosbag2_interfaces.srv.Stop_Request,
|
|
6717
|
+
'rosbag2_interfaces/srv/Stop_Response': rosbag2_interfaces.srv.Stop_Response,
|
|
6718
|
+
'rosbag2_interfaces/srv/TogglePaused_Event': rosbag2_interfaces.srv.TogglePaused_Event,
|
|
3853
6719
|
'rosbag2_interfaces/srv/TogglePaused_Request': rosbag2_interfaces.srv.TogglePaused_Request,
|
|
3854
6720
|
'rosbag2_interfaces/srv/TogglePaused_Response': rosbag2_interfaces.srv.TogglePaused_Response,
|
|
3855
6721
|
'rosgraph_msgs/msg/Clock': rosgraph_msgs.msg.Clock,
|
|
@@ -3880,12 +6746,44 @@ declare module 'rclnodejs' {
|
|
|
3880
6746
|
'sensor_msgs/msg/RelativeHumidity': sensor_msgs.msg.RelativeHumidity,
|
|
3881
6747
|
'sensor_msgs/msg/Temperature': sensor_msgs.msg.Temperature,
|
|
3882
6748
|
'sensor_msgs/msg/TimeReference': sensor_msgs.msg.TimeReference,
|
|
6749
|
+
'sensor_msgs/srv/SetCameraInfo_Event': sensor_msgs.srv.SetCameraInfo_Event,
|
|
3883
6750
|
'sensor_msgs/srv/SetCameraInfo_Request': sensor_msgs.srv.SetCameraInfo_Request,
|
|
3884
6751
|
'sensor_msgs/srv/SetCameraInfo_Response': sensor_msgs.srv.SetCameraInfo_Response,
|
|
6752
|
+
'service_msgs/msg/ServiceEventInfo': service_msgs.msg.ServiceEventInfo,
|
|
3885
6753
|
'shape_msgs/msg/Mesh': shape_msgs.msg.Mesh,
|
|
3886
6754
|
'shape_msgs/msg/MeshTriangle': shape_msgs.msg.MeshTriangle,
|
|
3887
6755
|
'shape_msgs/msg/Plane': shape_msgs.msg.Plane,
|
|
3888
6756
|
'shape_msgs/msg/SolidPrimitive': shape_msgs.msg.SolidPrimitive,
|
|
6757
|
+
'slam_toolbox/srvs/AddSubmap_Event': slam_toolbox.srvs.AddSubmap_Event,
|
|
6758
|
+
'slam_toolbox/srvs/AddSubmap_Request': slam_toolbox.srvs.AddSubmap_Request,
|
|
6759
|
+
'slam_toolbox/srvs/AddSubmap_Response': slam_toolbox.srvs.AddSubmap_Response,
|
|
6760
|
+
'slam_toolbox/srvs/ClearQueue_Event': slam_toolbox.srvs.ClearQueue_Event,
|
|
6761
|
+
'slam_toolbox/srvs/ClearQueue_Request': slam_toolbox.srvs.ClearQueue_Request,
|
|
6762
|
+
'slam_toolbox/srvs/ClearQueue_Response': slam_toolbox.srvs.ClearQueue_Response,
|
|
6763
|
+
'slam_toolbox/srvs/Clear_Event': slam_toolbox.srvs.Clear_Event,
|
|
6764
|
+
'slam_toolbox/srvs/Clear_Request': slam_toolbox.srvs.Clear_Request,
|
|
6765
|
+
'slam_toolbox/srvs/Clear_Response': slam_toolbox.srvs.Clear_Response,
|
|
6766
|
+
'slam_toolbox/srvs/DeserializePoseGraph_Event': slam_toolbox.srvs.DeserializePoseGraph_Event,
|
|
6767
|
+
'slam_toolbox/srvs/DeserializePoseGraph_Request': slam_toolbox.srvs.DeserializePoseGraph_Request,
|
|
6768
|
+
'slam_toolbox/srvs/DeserializePoseGraph_Response': slam_toolbox.srvs.DeserializePoseGraph_Response,
|
|
6769
|
+
'slam_toolbox/srvs/LoopClosure_Event': slam_toolbox.srvs.LoopClosure_Event,
|
|
6770
|
+
'slam_toolbox/srvs/LoopClosure_Request': slam_toolbox.srvs.LoopClosure_Request,
|
|
6771
|
+
'slam_toolbox/srvs/LoopClosure_Response': slam_toolbox.srvs.LoopClosure_Response,
|
|
6772
|
+
'slam_toolbox/srvs/MergeMaps_Event': slam_toolbox.srvs.MergeMaps_Event,
|
|
6773
|
+
'slam_toolbox/srvs/MergeMaps_Request': slam_toolbox.srvs.MergeMaps_Request,
|
|
6774
|
+
'slam_toolbox/srvs/MergeMaps_Response': slam_toolbox.srvs.MergeMaps_Response,
|
|
6775
|
+
'slam_toolbox/srvs/Pause_Event': slam_toolbox.srvs.Pause_Event,
|
|
6776
|
+
'slam_toolbox/srvs/Pause_Request': slam_toolbox.srvs.Pause_Request,
|
|
6777
|
+
'slam_toolbox/srvs/Pause_Response': slam_toolbox.srvs.Pause_Response,
|
|
6778
|
+
'slam_toolbox/srvs/SaveMap_Event': slam_toolbox.srvs.SaveMap_Event,
|
|
6779
|
+
'slam_toolbox/srvs/SaveMap_Request': slam_toolbox.srvs.SaveMap_Request,
|
|
6780
|
+
'slam_toolbox/srvs/SaveMap_Response': slam_toolbox.srvs.SaveMap_Response,
|
|
6781
|
+
'slam_toolbox/srvs/SerializePoseGraph_Event': slam_toolbox.srvs.SerializePoseGraph_Event,
|
|
6782
|
+
'slam_toolbox/srvs/SerializePoseGraph_Request': slam_toolbox.srvs.SerializePoseGraph_Request,
|
|
6783
|
+
'slam_toolbox/srvs/SerializePoseGraph_Response': slam_toolbox.srvs.SerializePoseGraph_Response,
|
|
6784
|
+
'slam_toolbox/srvs/ToggleInteractive_Event': slam_toolbox.srvs.ToggleInteractive_Event,
|
|
6785
|
+
'slam_toolbox/srvs/ToggleInteractive_Request': slam_toolbox.srvs.ToggleInteractive_Request,
|
|
6786
|
+
'slam_toolbox/srvs/ToggleInteractive_Response': slam_toolbox.srvs.ToggleInteractive_Response,
|
|
3889
6787
|
'statistics_msgs/msg/MetricsMessage': statistics_msgs.msg.MetricsMessage,
|
|
3890
6788
|
'statistics_msgs/msg/StatisticDataPoint': statistics_msgs.msg.StatisticDataPoint,
|
|
3891
6789
|
'statistics_msgs/msg/StatisticDataType': statistics_msgs.msg.StatisticDataType,
|
|
@@ -3919,10 +6817,13 @@ declare module 'rclnodejs' {
|
|
|
3919
6817
|
'std_msgs/msg/UInt64MultiArray': std_msgs.msg.UInt64MultiArray,
|
|
3920
6818
|
'std_msgs/msg/UInt8': std_msgs.msg.UInt8,
|
|
3921
6819
|
'std_msgs/msg/UInt8MultiArray': std_msgs.msg.UInt8MultiArray,
|
|
6820
|
+
'std_srvs/srv/Empty_Event': std_srvs.srv.Empty_Event,
|
|
3922
6821
|
'std_srvs/srv/Empty_Request': std_srvs.srv.Empty_Request,
|
|
3923
6822
|
'std_srvs/srv/Empty_Response': std_srvs.srv.Empty_Response,
|
|
6823
|
+
'std_srvs/srv/SetBool_Event': std_srvs.srv.SetBool_Event,
|
|
3924
6824
|
'std_srvs/srv/SetBool_Request': std_srvs.srv.SetBool_Request,
|
|
3925
6825
|
'std_srvs/srv/SetBool_Response': std_srvs.srv.SetBool_Response,
|
|
6826
|
+
'std_srvs/srv/Trigger_Event': std_srvs.srv.Trigger_Event,
|
|
3926
6827
|
'std_srvs/srv/Trigger_Request': std_srvs.srv.Trigger_Request,
|
|
3927
6828
|
'std_srvs/srv/Trigger_Response': std_srvs.srv.Trigger_Response,
|
|
3928
6829
|
'stereo_msgs/msg/DisparityImage': stereo_msgs.msg.DisparityImage,
|
|
@@ -3955,10 +6856,13 @@ declare module 'rclnodejs' {
|
|
|
3955
6856
|
'test_msgs/msg/Strings': test_msgs.msg.Strings,
|
|
3956
6857
|
'test_msgs/msg/UnboundedSequences': test_msgs.msg.UnboundedSequences,
|
|
3957
6858
|
'test_msgs/msg/WStrings': test_msgs.msg.WStrings,
|
|
6859
|
+
'test_msgs/srv/Arrays_Event': test_msgs.srv.Arrays_Event,
|
|
3958
6860
|
'test_msgs/srv/Arrays_Request': test_msgs.srv.Arrays_Request,
|
|
3959
6861
|
'test_msgs/srv/Arrays_Response': test_msgs.srv.Arrays_Response,
|
|
6862
|
+
'test_msgs/srv/BasicTypes_Event': test_msgs.srv.BasicTypes_Event,
|
|
3960
6863
|
'test_msgs/srv/BasicTypes_Request': test_msgs.srv.BasicTypes_Request,
|
|
3961
6864
|
'test_msgs/srv/BasicTypes_Response': test_msgs.srv.BasicTypes_Response,
|
|
6865
|
+
'test_msgs/srv/Empty_Event': test_msgs.srv.Empty_Event,
|
|
3962
6866
|
'test_msgs/srv/Empty_Request': test_msgs.srv.Empty_Request,
|
|
3963
6867
|
'test_msgs/srv/Empty_Response': test_msgs.srv.Empty_Response,
|
|
3964
6868
|
'tf2_msgs/action/LookupTransform_Feedback': tf2_msgs.action.LookupTransform_Feedback,
|
|
@@ -3971,6 +6875,7 @@ declare module 'rclnodejs' {
|
|
|
3971
6875
|
'tf2_msgs/action/LookupTransform_SendGoal_Response': tf2_msgs.action.LookupTransform_SendGoal_Response,
|
|
3972
6876
|
'tf2_msgs/msg/TF2Error': tf2_msgs.msg.TF2Error,
|
|
3973
6877
|
'tf2_msgs/msg/TFMessage': tf2_msgs.msg.TFMessage,
|
|
6878
|
+
'tf2_msgs/srv/FrameGraph_Event': tf2_msgs.srv.FrameGraph_Event,
|
|
3974
6879
|
'tf2_msgs/srv/FrameGraph_Request': tf2_msgs.srv.FrameGraph_Request,
|
|
3975
6880
|
'tf2_msgs/srv/FrameGraph_Response': tf2_msgs.srv.FrameGraph_Response,
|
|
3976
6881
|
'trajectory_msgs/msg/JointTrajectory': trajectory_msgs.msg.JointTrajectory,
|
|
@@ -3987,16 +6892,30 @@ declare module 'rclnodejs' {
|
|
|
3987
6892
|
'turtlesim/action/RotateAbsolute_SendGoal_Response': turtlesim.action.RotateAbsolute_SendGoal_Response,
|
|
3988
6893
|
'turtlesim/msg/Color': turtlesim.msg.Color,
|
|
3989
6894
|
'turtlesim/msg/Pose': turtlesim.msg.Pose,
|
|
6895
|
+
'turtlesim/srv/Kill_Event': turtlesim.srv.Kill_Event,
|
|
3990
6896
|
'turtlesim/srv/Kill_Request': turtlesim.srv.Kill_Request,
|
|
3991
6897
|
'turtlesim/srv/Kill_Response': turtlesim.srv.Kill_Response,
|
|
6898
|
+
'turtlesim/srv/SetPen_Event': turtlesim.srv.SetPen_Event,
|
|
3992
6899
|
'turtlesim/srv/SetPen_Request': turtlesim.srv.SetPen_Request,
|
|
3993
6900
|
'turtlesim/srv/SetPen_Response': turtlesim.srv.SetPen_Response,
|
|
6901
|
+
'turtlesim/srv/Spawn_Event': turtlesim.srv.Spawn_Event,
|
|
3994
6902
|
'turtlesim/srv/Spawn_Request': turtlesim.srv.Spawn_Request,
|
|
3995
6903
|
'turtlesim/srv/Spawn_Response': turtlesim.srv.Spawn_Response,
|
|
6904
|
+
'turtlesim/srv/TeleportAbsolute_Event': turtlesim.srv.TeleportAbsolute_Event,
|
|
3996
6905
|
'turtlesim/srv/TeleportAbsolute_Request': turtlesim.srv.TeleportAbsolute_Request,
|
|
3997
6906
|
'turtlesim/srv/TeleportAbsolute_Response': turtlesim.srv.TeleportAbsolute_Response,
|
|
6907
|
+
'turtlesim/srv/TeleportRelative_Event': turtlesim.srv.TeleportRelative_Event,
|
|
3998
6908
|
'turtlesim/srv/TeleportRelative_Request': turtlesim.srv.TeleportRelative_Request,
|
|
3999
6909
|
'turtlesim/srv/TeleportRelative_Response': turtlesim.srv.TeleportRelative_Response,
|
|
6910
|
+
'type_description_interfaces/msg/Field': type_description_interfaces.msg.Field,
|
|
6911
|
+
'type_description_interfaces/msg/FieldType': type_description_interfaces.msg.FieldType,
|
|
6912
|
+
'type_description_interfaces/msg/IndividualTypeDescription': type_description_interfaces.msg.IndividualTypeDescription,
|
|
6913
|
+
'type_description_interfaces/msg/KeyValue': type_description_interfaces.msg.KeyValue,
|
|
6914
|
+
'type_description_interfaces/msg/TypeDescription': type_description_interfaces.msg.TypeDescription,
|
|
6915
|
+
'type_description_interfaces/msg/TypeSource': type_description_interfaces.msg.TypeSource,
|
|
6916
|
+
'type_description_interfaces/srv/GetTypeDescription_Event': type_description_interfaces.srv.GetTypeDescription_Event,
|
|
6917
|
+
'type_description_interfaces/srv/GetTypeDescription_Request': type_description_interfaces.srv.GetTypeDescription_Request,
|
|
6918
|
+
'type_description_interfaces/srv/GetTypeDescription_Response': type_description_interfaces.srv.GetTypeDescription_Response,
|
|
4000
6919
|
'unique_identifier_msgs/msg/UUID': unique_identifier_msgs.msg.UUID,
|
|
4001
6920
|
'visualization_msgs/msg/ImageMarker': visualization_msgs.msg.ImageMarker,
|
|
4002
6921
|
'visualization_msgs/msg/InteractiveMarker': visualization_msgs.msg.InteractiveMarker,
|
|
@@ -4010,6 +6929,7 @@ declare module 'rclnodejs' {
|
|
|
4010
6929
|
'visualization_msgs/msg/MenuEntry': visualization_msgs.msg.MenuEntry,
|
|
4011
6930
|
'visualization_msgs/msg/MeshFile': visualization_msgs.msg.MeshFile,
|
|
4012
6931
|
'visualization_msgs/msg/UVCoordinate': visualization_msgs.msg.UVCoordinate,
|
|
6932
|
+
'visualization_msgs/srv/GetInteractiveMarkers_Event': visualization_msgs.srv.GetInteractiveMarkers_Event,
|
|
4013
6933
|
'visualization_msgs/srv/GetInteractiveMarkers_Request': visualization_msgs.srv.GetInteractiveMarkers_Request,
|
|
4014
6934
|
'visualization_msgs/srv/GetInteractiveMarkers_Response': visualization_msgs.srv.GetInteractiveMarkers_Response,
|
|
4015
6935
|
};
|
|
@@ -4022,6 +6942,7 @@ declare module 'rclnodejs' {
|
|
|
4022
6942
|
'action_msgs/msg/GoalInfo': action_msgs.msg.GoalInfoConstructor,
|
|
4023
6943
|
'action_msgs/msg/GoalStatus': action_msgs.msg.GoalStatusConstructor,
|
|
4024
6944
|
'action_msgs/msg/GoalStatusArray': action_msgs.msg.GoalStatusArrayConstructor,
|
|
6945
|
+
'action_msgs/srv/CancelGoal_Event': action_msgs.srv.CancelGoal_EventConstructor,
|
|
4025
6946
|
'action_msgs/srv/CancelGoal_Request': action_msgs.srv.CancelGoal_RequestConstructor,
|
|
4026
6947
|
'action_msgs/srv/CancelGoal_Response': action_msgs.srv.CancelGoal_ResponseConstructor,
|
|
4027
6948
|
'action_tutorials_interfaces/action/Fibonacci_Feedback': action_tutorials_interfaces.action.Fibonacci_FeedbackConstructor,
|
|
@@ -4035,19 +6956,26 @@ declare module 'rclnodejs' {
|
|
|
4035
6956
|
'actionlib_msgs/msg/GoalID': actionlib_msgs.msg.GoalIDConstructor,
|
|
4036
6957
|
'actionlib_msgs/msg/GoalStatus': actionlib_msgs.msg.GoalStatusConstructor,
|
|
4037
6958
|
'actionlib_msgs/msg/GoalStatusArray': actionlib_msgs.msg.GoalStatusArrayConstructor,
|
|
6959
|
+
'bond/msg/Constants': bond.msg.ConstantsConstructor,
|
|
6960
|
+
'bond/msg/Status': bond.msg.StatusConstructor,
|
|
4038
6961
|
'builtin_interfaces/msg/Duration': builtin_interfaces.msg.DurationConstructor,
|
|
4039
6962
|
'builtin_interfaces/msg/Time': builtin_interfaces.msg.TimeConstructor,
|
|
6963
|
+
'composition_interfaces/srv/ListNodes_Event': composition_interfaces.srv.ListNodes_EventConstructor,
|
|
4040
6964
|
'composition_interfaces/srv/ListNodes_Request': composition_interfaces.srv.ListNodes_RequestConstructor,
|
|
4041
6965
|
'composition_interfaces/srv/ListNodes_Response': composition_interfaces.srv.ListNodes_ResponseConstructor,
|
|
6966
|
+
'composition_interfaces/srv/LoadNode_Event': composition_interfaces.srv.LoadNode_EventConstructor,
|
|
4042
6967
|
'composition_interfaces/srv/LoadNode_Request': composition_interfaces.srv.LoadNode_RequestConstructor,
|
|
4043
6968
|
'composition_interfaces/srv/LoadNode_Response': composition_interfaces.srv.LoadNode_ResponseConstructor,
|
|
6969
|
+
'composition_interfaces/srv/UnloadNode_Event': composition_interfaces.srv.UnloadNode_EventConstructor,
|
|
4044
6970
|
'composition_interfaces/srv/UnloadNode_Request': composition_interfaces.srv.UnloadNode_RequestConstructor,
|
|
4045
6971
|
'composition_interfaces/srv/UnloadNode_Response': composition_interfaces.srv.UnloadNode_ResponseConstructor,
|
|
4046
6972
|
'diagnostic_msgs/msg/DiagnosticArray': diagnostic_msgs.msg.DiagnosticArrayConstructor,
|
|
4047
6973
|
'diagnostic_msgs/msg/DiagnosticStatus': diagnostic_msgs.msg.DiagnosticStatusConstructor,
|
|
4048
6974
|
'diagnostic_msgs/msg/KeyValue': diagnostic_msgs.msg.KeyValueConstructor,
|
|
6975
|
+
'diagnostic_msgs/srv/AddDiagnostics_Event': diagnostic_msgs.srv.AddDiagnostics_EventConstructor,
|
|
4049
6976
|
'diagnostic_msgs/srv/AddDiagnostics_Request': diagnostic_msgs.srv.AddDiagnostics_RequestConstructor,
|
|
4050
6977
|
'diagnostic_msgs/srv/AddDiagnostics_Response': diagnostic_msgs.srv.AddDiagnostics_ResponseConstructor,
|
|
6978
|
+
'diagnostic_msgs/srv/SelfTest_Event': diagnostic_msgs.srv.SelfTest_EventConstructor,
|
|
4051
6979
|
'diagnostic_msgs/srv/SelfTest_Request': diagnostic_msgs.srv.SelfTest_RequestConstructor,
|
|
4052
6980
|
'diagnostic_msgs/srv/SelfTest_Response': diagnostic_msgs.srv.SelfTest_ResponseConstructor,
|
|
4053
6981
|
'example_interfaces/action/Fibonacci_Feedback': example_interfaces.action.Fibonacci_FeedbackConstructor,
|
|
@@ -4087,12 +7015,43 @@ declare module 'rclnodejs' {
|
|
|
4087
7015
|
'example_interfaces/msg/UInt8': example_interfaces.msg.UInt8Constructor,
|
|
4088
7016
|
'example_interfaces/msg/UInt8MultiArray': example_interfaces.msg.UInt8MultiArrayConstructor,
|
|
4089
7017
|
'example_interfaces/msg/WString': example_interfaces.msg.WStringConstructor,
|
|
7018
|
+
'example_interfaces/srv/AddTwoInts_Event': example_interfaces.srv.AddTwoInts_EventConstructor,
|
|
4090
7019
|
'example_interfaces/srv/AddTwoInts_Request': example_interfaces.srv.AddTwoInts_RequestConstructor,
|
|
4091
7020
|
'example_interfaces/srv/AddTwoInts_Response': example_interfaces.srv.AddTwoInts_ResponseConstructor,
|
|
7021
|
+
'example_interfaces/srv/SetBool_Event': example_interfaces.srv.SetBool_EventConstructor,
|
|
4092
7022
|
'example_interfaces/srv/SetBool_Request': example_interfaces.srv.SetBool_RequestConstructor,
|
|
4093
7023
|
'example_interfaces/srv/SetBool_Response': example_interfaces.srv.SetBool_ResponseConstructor,
|
|
7024
|
+
'example_interfaces/srv/Trigger_Event': example_interfaces.srv.Trigger_EventConstructor,
|
|
4094
7025
|
'example_interfaces/srv/Trigger_Request': example_interfaces.srv.Trigger_RequestConstructor,
|
|
4095
7026
|
'example_interfaces/srv/Trigger_Response': example_interfaces.srv.Trigger_ResponseConstructor,
|
|
7027
|
+
'geographic_msgs/msg/BoundingBox': geographic_msgs.msg.BoundingBoxConstructor,
|
|
7028
|
+
'geographic_msgs/msg/GeoPath': geographic_msgs.msg.GeoPathConstructor,
|
|
7029
|
+
'geographic_msgs/msg/GeoPoint': geographic_msgs.msg.GeoPointConstructor,
|
|
7030
|
+
'geographic_msgs/msg/GeoPointStamped': geographic_msgs.msg.GeoPointStampedConstructor,
|
|
7031
|
+
'geographic_msgs/msg/GeoPose': geographic_msgs.msg.GeoPoseConstructor,
|
|
7032
|
+
'geographic_msgs/msg/GeoPoseStamped': geographic_msgs.msg.GeoPoseStampedConstructor,
|
|
7033
|
+
'geographic_msgs/msg/GeoPoseWithCovariance': geographic_msgs.msg.GeoPoseWithCovarianceConstructor,
|
|
7034
|
+
'geographic_msgs/msg/GeoPoseWithCovarianceStamped': geographic_msgs.msg.GeoPoseWithCovarianceStampedConstructor,
|
|
7035
|
+
'geographic_msgs/msg/GeographicMap': geographic_msgs.msg.GeographicMapConstructor,
|
|
7036
|
+
'geographic_msgs/msg/GeographicMapChanges': geographic_msgs.msg.GeographicMapChangesConstructor,
|
|
7037
|
+
'geographic_msgs/msg/KeyValue': geographic_msgs.msg.KeyValueConstructor,
|
|
7038
|
+
'geographic_msgs/msg/MapFeature': geographic_msgs.msg.MapFeatureConstructor,
|
|
7039
|
+
'geographic_msgs/msg/RouteNetwork': geographic_msgs.msg.RouteNetworkConstructor,
|
|
7040
|
+
'geographic_msgs/msg/RoutePath': geographic_msgs.msg.RoutePathConstructor,
|
|
7041
|
+
'geographic_msgs/msg/RouteSegment': geographic_msgs.msg.RouteSegmentConstructor,
|
|
7042
|
+
'geographic_msgs/msg/WayPoint': geographic_msgs.msg.WayPointConstructor,
|
|
7043
|
+
'geographic_msgs/srv/GetGeoPath_Event': geographic_msgs.srv.GetGeoPath_EventConstructor,
|
|
7044
|
+
'geographic_msgs/srv/GetGeoPath_Request': geographic_msgs.srv.GetGeoPath_RequestConstructor,
|
|
7045
|
+
'geographic_msgs/srv/GetGeoPath_Response': geographic_msgs.srv.GetGeoPath_ResponseConstructor,
|
|
7046
|
+
'geographic_msgs/srv/GetGeographicMap_Event': geographic_msgs.srv.GetGeographicMap_EventConstructor,
|
|
7047
|
+
'geographic_msgs/srv/GetGeographicMap_Request': geographic_msgs.srv.GetGeographicMap_RequestConstructor,
|
|
7048
|
+
'geographic_msgs/srv/GetGeographicMap_Response': geographic_msgs.srv.GetGeographicMap_ResponseConstructor,
|
|
7049
|
+
'geographic_msgs/srv/GetRoutePlan_Event': geographic_msgs.srv.GetRoutePlan_EventConstructor,
|
|
7050
|
+
'geographic_msgs/srv/GetRoutePlan_Request': geographic_msgs.srv.GetRoutePlan_RequestConstructor,
|
|
7051
|
+
'geographic_msgs/srv/GetRoutePlan_Response': geographic_msgs.srv.GetRoutePlan_ResponseConstructor,
|
|
7052
|
+
'geographic_msgs/srv/UpdateGeographicMap_Event': geographic_msgs.srv.UpdateGeographicMap_EventConstructor,
|
|
7053
|
+
'geographic_msgs/srv/UpdateGeographicMap_Request': geographic_msgs.srv.UpdateGeographicMap_RequestConstructor,
|
|
7054
|
+
'geographic_msgs/srv/UpdateGeographicMap_Response': geographic_msgs.srv.UpdateGeographicMap_ResponseConstructor,
|
|
4096
7055
|
'geometry_msgs/msg/Accel': geometry_msgs.msg.AccelConstructor,
|
|
4097
7056
|
'geometry_msgs/msg/AccelStamped': geometry_msgs.msg.AccelStampedConstructor,
|
|
4098
7057
|
'geometry_msgs/msg/AccelWithCovariance': geometry_msgs.msg.AccelWithCovarianceConstructor,
|
|
@@ -4126,43 +7085,206 @@ declare module 'rclnodejs' {
|
|
|
4126
7085
|
'lifecycle_msgs/msg/Transition': lifecycle_msgs.msg.TransitionConstructor,
|
|
4127
7086
|
'lifecycle_msgs/msg/TransitionDescription': lifecycle_msgs.msg.TransitionDescriptionConstructor,
|
|
4128
7087
|
'lifecycle_msgs/msg/TransitionEvent': lifecycle_msgs.msg.TransitionEventConstructor,
|
|
7088
|
+
'lifecycle_msgs/srv/ChangeState_Event': lifecycle_msgs.srv.ChangeState_EventConstructor,
|
|
4129
7089
|
'lifecycle_msgs/srv/ChangeState_Request': lifecycle_msgs.srv.ChangeState_RequestConstructor,
|
|
4130
7090
|
'lifecycle_msgs/srv/ChangeState_Response': lifecycle_msgs.srv.ChangeState_ResponseConstructor,
|
|
7091
|
+
'lifecycle_msgs/srv/GetAvailableStates_Event': lifecycle_msgs.srv.GetAvailableStates_EventConstructor,
|
|
4131
7092
|
'lifecycle_msgs/srv/GetAvailableStates_Request': lifecycle_msgs.srv.GetAvailableStates_RequestConstructor,
|
|
4132
7093
|
'lifecycle_msgs/srv/GetAvailableStates_Response': lifecycle_msgs.srv.GetAvailableStates_ResponseConstructor,
|
|
7094
|
+
'lifecycle_msgs/srv/GetAvailableTransitions_Event': lifecycle_msgs.srv.GetAvailableTransitions_EventConstructor,
|
|
4133
7095
|
'lifecycle_msgs/srv/GetAvailableTransitions_Request': lifecycle_msgs.srv.GetAvailableTransitions_RequestConstructor,
|
|
4134
7096
|
'lifecycle_msgs/srv/GetAvailableTransitions_Response': lifecycle_msgs.srv.GetAvailableTransitions_ResponseConstructor,
|
|
7097
|
+
'lifecycle_msgs/srv/GetState_Event': lifecycle_msgs.srv.GetState_EventConstructor,
|
|
4135
7098
|
'lifecycle_msgs/srv/GetState_Request': lifecycle_msgs.srv.GetState_RequestConstructor,
|
|
4136
7099
|
'lifecycle_msgs/srv/GetState_Response': lifecycle_msgs.srv.GetState_ResponseConstructor,
|
|
7100
|
+
'logging_demo/srv/ConfigLogger_Event': logging_demo.srv.ConfigLogger_EventConstructor,
|
|
4137
7101
|
'logging_demo/srv/ConfigLogger_Request': logging_demo.srv.ConfigLogger_RequestConstructor,
|
|
4138
7102
|
'logging_demo/srv/ConfigLogger_Response': logging_demo.srv.ConfigLogger_ResponseConstructor,
|
|
4139
7103
|
'map_msgs/msg/OccupancyGridUpdate': map_msgs.msg.OccupancyGridUpdateConstructor,
|
|
4140
7104
|
'map_msgs/msg/PointCloud2Update': map_msgs.msg.PointCloud2UpdateConstructor,
|
|
4141
7105
|
'map_msgs/msg/ProjectedMap': map_msgs.msg.ProjectedMapConstructor,
|
|
4142
7106
|
'map_msgs/msg/ProjectedMapInfo': map_msgs.msg.ProjectedMapInfoConstructor,
|
|
7107
|
+
'map_msgs/srv/GetMapROI_Event': map_msgs.srv.GetMapROI_EventConstructor,
|
|
4143
7108
|
'map_msgs/srv/GetMapROI_Request': map_msgs.srv.GetMapROI_RequestConstructor,
|
|
4144
7109
|
'map_msgs/srv/GetMapROI_Response': map_msgs.srv.GetMapROI_ResponseConstructor,
|
|
7110
|
+
'map_msgs/srv/GetPointMapROI_Event': map_msgs.srv.GetPointMapROI_EventConstructor,
|
|
4145
7111
|
'map_msgs/srv/GetPointMapROI_Request': map_msgs.srv.GetPointMapROI_RequestConstructor,
|
|
4146
7112
|
'map_msgs/srv/GetPointMapROI_Response': map_msgs.srv.GetPointMapROI_ResponseConstructor,
|
|
7113
|
+
'map_msgs/srv/GetPointMap_Event': map_msgs.srv.GetPointMap_EventConstructor,
|
|
4147
7114
|
'map_msgs/srv/GetPointMap_Request': map_msgs.srv.GetPointMap_RequestConstructor,
|
|
4148
7115
|
'map_msgs/srv/GetPointMap_Response': map_msgs.srv.GetPointMap_ResponseConstructor,
|
|
7116
|
+
'map_msgs/srv/ProjectedMapsInfo_Event': map_msgs.srv.ProjectedMapsInfo_EventConstructor,
|
|
4149
7117
|
'map_msgs/srv/ProjectedMapsInfo_Request': map_msgs.srv.ProjectedMapsInfo_RequestConstructor,
|
|
4150
7118
|
'map_msgs/srv/ProjectedMapsInfo_Response': map_msgs.srv.ProjectedMapsInfo_ResponseConstructor,
|
|
7119
|
+
'map_msgs/srv/SaveMap_Event': map_msgs.srv.SaveMap_EventConstructor,
|
|
4151
7120
|
'map_msgs/srv/SaveMap_Request': map_msgs.srv.SaveMap_RequestConstructor,
|
|
4152
7121
|
'map_msgs/srv/SaveMap_Response': map_msgs.srv.SaveMap_ResponseConstructor,
|
|
7122
|
+
'map_msgs/srv/SetMapProjections_Event': map_msgs.srv.SetMapProjections_EventConstructor,
|
|
4153
7123
|
'map_msgs/srv/SetMapProjections_Request': map_msgs.srv.SetMapProjections_RequestConstructor,
|
|
4154
7124
|
'map_msgs/srv/SetMapProjections_Response': map_msgs.srv.SetMapProjections_ResponseConstructor,
|
|
7125
|
+
'nav2_msgs/action/AssistedTeleop_Feedback': nav2_msgs.action.AssistedTeleop_FeedbackConstructor,
|
|
7126
|
+
'nav2_msgs/action/AssistedTeleop_FeedbackMessage': nav2_msgs.action.AssistedTeleop_FeedbackMessageConstructor,
|
|
7127
|
+
'nav2_msgs/action/AssistedTeleop_GetResult_Request': nav2_msgs.action.AssistedTeleop_GetResult_RequestConstructor,
|
|
7128
|
+
'nav2_msgs/action/AssistedTeleop_GetResult_Response': nav2_msgs.action.AssistedTeleop_GetResult_ResponseConstructor,
|
|
7129
|
+
'nav2_msgs/action/AssistedTeleop_Goal': nav2_msgs.action.AssistedTeleop_GoalConstructor,
|
|
7130
|
+
'nav2_msgs/action/AssistedTeleop_Result': nav2_msgs.action.AssistedTeleop_ResultConstructor,
|
|
7131
|
+
'nav2_msgs/action/AssistedTeleop_SendGoal_Request': nav2_msgs.action.AssistedTeleop_SendGoal_RequestConstructor,
|
|
7132
|
+
'nav2_msgs/action/AssistedTeleop_SendGoal_Response': nav2_msgs.action.AssistedTeleop_SendGoal_ResponseConstructor,
|
|
7133
|
+
'nav2_msgs/action/BackUp_Feedback': nav2_msgs.action.BackUp_FeedbackConstructor,
|
|
7134
|
+
'nav2_msgs/action/BackUp_FeedbackMessage': nav2_msgs.action.BackUp_FeedbackMessageConstructor,
|
|
7135
|
+
'nav2_msgs/action/BackUp_GetResult_Request': nav2_msgs.action.BackUp_GetResult_RequestConstructor,
|
|
7136
|
+
'nav2_msgs/action/BackUp_GetResult_Response': nav2_msgs.action.BackUp_GetResult_ResponseConstructor,
|
|
7137
|
+
'nav2_msgs/action/BackUp_Goal': nav2_msgs.action.BackUp_GoalConstructor,
|
|
7138
|
+
'nav2_msgs/action/BackUp_Result': nav2_msgs.action.BackUp_ResultConstructor,
|
|
7139
|
+
'nav2_msgs/action/BackUp_SendGoal_Request': nav2_msgs.action.BackUp_SendGoal_RequestConstructor,
|
|
7140
|
+
'nav2_msgs/action/BackUp_SendGoal_Response': nav2_msgs.action.BackUp_SendGoal_ResponseConstructor,
|
|
7141
|
+
'nav2_msgs/action/ComputePathThroughPoses_Feedback': nav2_msgs.action.ComputePathThroughPoses_FeedbackConstructor,
|
|
7142
|
+
'nav2_msgs/action/ComputePathThroughPoses_FeedbackMessage': nav2_msgs.action.ComputePathThroughPoses_FeedbackMessageConstructor,
|
|
7143
|
+
'nav2_msgs/action/ComputePathThroughPoses_GetResult_Request': nav2_msgs.action.ComputePathThroughPoses_GetResult_RequestConstructor,
|
|
7144
|
+
'nav2_msgs/action/ComputePathThroughPoses_GetResult_Response': nav2_msgs.action.ComputePathThroughPoses_GetResult_ResponseConstructor,
|
|
7145
|
+
'nav2_msgs/action/ComputePathThroughPoses_Goal': nav2_msgs.action.ComputePathThroughPoses_GoalConstructor,
|
|
7146
|
+
'nav2_msgs/action/ComputePathThroughPoses_Result': nav2_msgs.action.ComputePathThroughPoses_ResultConstructor,
|
|
7147
|
+
'nav2_msgs/action/ComputePathThroughPoses_SendGoal_Request': nav2_msgs.action.ComputePathThroughPoses_SendGoal_RequestConstructor,
|
|
7148
|
+
'nav2_msgs/action/ComputePathThroughPoses_SendGoal_Response': nav2_msgs.action.ComputePathThroughPoses_SendGoal_ResponseConstructor,
|
|
7149
|
+
'nav2_msgs/action/ComputePathToPose_Feedback': nav2_msgs.action.ComputePathToPose_FeedbackConstructor,
|
|
7150
|
+
'nav2_msgs/action/ComputePathToPose_FeedbackMessage': nav2_msgs.action.ComputePathToPose_FeedbackMessageConstructor,
|
|
7151
|
+
'nav2_msgs/action/ComputePathToPose_GetResult_Request': nav2_msgs.action.ComputePathToPose_GetResult_RequestConstructor,
|
|
7152
|
+
'nav2_msgs/action/ComputePathToPose_GetResult_Response': nav2_msgs.action.ComputePathToPose_GetResult_ResponseConstructor,
|
|
7153
|
+
'nav2_msgs/action/ComputePathToPose_Goal': nav2_msgs.action.ComputePathToPose_GoalConstructor,
|
|
7154
|
+
'nav2_msgs/action/ComputePathToPose_Result': nav2_msgs.action.ComputePathToPose_ResultConstructor,
|
|
7155
|
+
'nav2_msgs/action/ComputePathToPose_SendGoal_Request': nav2_msgs.action.ComputePathToPose_SendGoal_RequestConstructor,
|
|
7156
|
+
'nav2_msgs/action/ComputePathToPose_SendGoal_Response': nav2_msgs.action.ComputePathToPose_SendGoal_ResponseConstructor,
|
|
7157
|
+
'nav2_msgs/action/DriveOnHeading_Feedback': nav2_msgs.action.DriveOnHeading_FeedbackConstructor,
|
|
7158
|
+
'nav2_msgs/action/DriveOnHeading_FeedbackMessage': nav2_msgs.action.DriveOnHeading_FeedbackMessageConstructor,
|
|
7159
|
+
'nav2_msgs/action/DriveOnHeading_GetResult_Request': nav2_msgs.action.DriveOnHeading_GetResult_RequestConstructor,
|
|
7160
|
+
'nav2_msgs/action/DriveOnHeading_GetResult_Response': nav2_msgs.action.DriveOnHeading_GetResult_ResponseConstructor,
|
|
7161
|
+
'nav2_msgs/action/DriveOnHeading_Goal': nav2_msgs.action.DriveOnHeading_GoalConstructor,
|
|
7162
|
+
'nav2_msgs/action/DriveOnHeading_Result': nav2_msgs.action.DriveOnHeading_ResultConstructor,
|
|
7163
|
+
'nav2_msgs/action/DriveOnHeading_SendGoal_Request': nav2_msgs.action.DriveOnHeading_SendGoal_RequestConstructor,
|
|
7164
|
+
'nav2_msgs/action/DriveOnHeading_SendGoal_Response': nav2_msgs.action.DriveOnHeading_SendGoal_ResponseConstructor,
|
|
7165
|
+
'nav2_msgs/action/DummyBehavior_Feedback': nav2_msgs.action.DummyBehavior_FeedbackConstructor,
|
|
7166
|
+
'nav2_msgs/action/DummyBehavior_FeedbackMessage': nav2_msgs.action.DummyBehavior_FeedbackMessageConstructor,
|
|
7167
|
+
'nav2_msgs/action/DummyBehavior_GetResult_Request': nav2_msgs.action.DummyBehavior_GetResult_RequestConstructor,
|
|
7168
|
+
'nav2_msgs/action/DummyBehavior_GetResult_Response': nav2_msgs.action.DummyBehavior_GetResult_ResponseConstructor,
|
|
7169
|
+
'nav2_msgs/action/DummyBehavior_Goal': nav2_msgs.action.DummyBehavior_GoalConstructor,
|
|
7170
|
+
'nav2_msgs/action/DummyBehavior_Result': nav2_msgs.action.DummyBehavior_ResultConstructor,
|
|
7171
|
+
'nav2_msgs/action/DummyBehavior_SendGoal_Request': nav2_msgs.action.DummyBehavior_SendGoal_RequestConstructor,
|
|
7172
|
+
'nav2_msgs/action/DummyBehavior_SendGoal_Response': nav2_msgs.action.DummyBehavior_SendGoal_ResponseConstructor,
|
|
7173
|
+
'nav2_msgs/action/FollowGPSWaypoints_Feedback': nav2_msgs.action.FollowGPSWaypoints_FeedbackConstructor,
|
|
7174
|
+
'nav2_msgs/action/FollowGPSWaypoints_FeedbackMessage': nav2_msgs.action.FollowGPSWaypoints_FeedbackMessageConstructor,
|
|
7175
|
+
'nav2_msgs/action/FollowGPSWaypoints_GetResult_Request': nav2_msgs.action.FollowGPSWaypoints_GetResult_RequestConstructor,
|
|
7176
|
+
'nav2_msgs/action/FollowGPSWaypoints_GetResult_Response': nav2_msgs.action.FollowGPSWaypoints_GetResult_ResponseConstructor,
|
|
7177
|
+
'nav2_msgs/action/FollowGPSWaypoints_Goal': nav2_msgs.action.FollowGPSWaypoints_GoalConstructor,
|
|
7178
|
+
'nav2_msgs/action/FollowGPSWaypoints_Result': nav2_msgs.action.FollowGPSWaypoints_ResultConstructor,
|
|
7179
|
+
'nav2_msgs/action/FollowGPSWaypoints_SendGoal_Request': nav2_msgs.action.FollowGPSWaypoints_SendGoal_RequestConstructor,
|
|
7180
|
+
'nav2_msgs/action/FollowGPSWaypoints_SendGoal_Response': nav2_msgs.action.FollowGPSWaypoints_SendGoal_ResponseConstructor,
|
|
7181
|
+
'nav2_msgs/action/FollowPath_Feedback': nav2_msgs.action.FollowPath_FeedbackConstructor,
|
|
7182
|
+
'nav2_msgs/action/FollowPath_FeedbackMessage': nav2_msgs.action.FollowPath_FeedbackMessageConstructor,
|
|
7183
|
+
'nav2_msgs/action/FollowPath_GetResult_Request': nav2_msgs.action.FollowPath_GetResult_RequestConstructor,
|
|
7184
|
+
'nav2_msgs/action/FollowPath_GetResult_Response': nav2_msgs.action.FollowPath_GetResult_ResponseConstructor,
|
|
7185
|
+
'nav2_msgs/action/FollowPath_Goal': nav2_msgs.action.FollowPath_GoalConstructor,
|
|
7186
|
+
'nav2_msgs/action/FollowPath_Result': nav2_msgs.action.FollowPath_ResultConstructor,
|
|
7187
|
+
'nav2_msgs/action/FollowPath_SendGoal_Request': nav2_msgs.action.FollowPath_SendGoal_RequestConstructor,
|
|
7188
|
+
'nav2_msgs/action/FollowPath_SendGoal_Response': nav2_msgs.action.FollowPath_SendGoal_ResponseConstructor,
|
|
7189
|
+
'nav2_msgs/action/FollowWaypoints_Feedback': nav2_msgs.action.FollowWaypoints_FeedbackConstructor,
|
|
7190
|
+
'nav2_msgs/action/FollowWaypoints_FeedbackMessage': nav2_msgs.action.FollowWaypoints_FeedbackMessageConstructor,
|
|
7191
|
+
'nav2_msgs/action/FollowWaypoints_GetResult_Request': nav2_msgs.action.FollowWaypoints_GetResult_RequestConstructor,
|
|
7192
|
+
'nav2_msgs/action/FollowWaypoints_GetResult_Response': nav2_msgs.action.FollowWaypoints_GetResult_ResponseConstructor,
|
|
7193
|
+
'nav2_msgs/action/FollowWaypoints_Goal': nav2_msgs.action.FollowWaypoints_GoalConstructor,
|
|
7194
|
+
'nav2_msgs/action/FollowWaypoints_Result': nav2_msgs.action.FollowWaypoints_ResultConstructor,
|
|
7195
|
+
'nav2_msgs/action/FollowWaypoints_SendGoal_Request': nav2_msgs.action.FollowWaypoints_SendGoal_RequestConstructor,
|
|
7196
|
+
'nav2_msgs/action/FollowWaypoints_SendGoal_Response': nav2_msgs.action.FollowWaypoints_SendGoal_ResponseConstructor,
|
|
7197
|
+
'nav2_msgs/action/NavigateThroughPoses_Feedback': nav2_msgs.action.NavigateThroughPoses_FeedbackConstructor,
|
|
7198
|
+
'nav2_msgs/action/NavigateThroughPoses_FeedbackMessage': nav2_msgs.action.NavigateThroughPoses_FeedbackMessageConstructor,
|
|
7199
|
+
'nav2_msgs/action/NavigateThroughPoses_GetResult_Request': nav2_msgs.action.NavigateThroughPoses_GetResult_RequestConstructor,
|
|
7200
|
+
'nav2_msgs/action/NavigateThroughPoses_GetResult_Response': nav2_msgs.action.NavigateThroughPoses_GetResult_ResponseConstructor,
|
|
7201
|
+
'nav2_msgs/action/NavigateThroughPoses_Goal': nav2_msgs.action.NavigateThroughPoses_GoalConstructor,
|
|
7202
|
+
'nav2_msgs/action/NavigateThroughPoses_Result': nav2_msgs.action.NavigateThroughPoses_ResultConstructor,
|
|
7203
|
+
'nav2_msgs/action/NavigateThroughPoses_SendGoal_Request': nav2_msgs.action.NavigateThroughPoses_SendGoal_RequestConstructor,
|
|
7204
|
+
'nav2_msgs/action/NavigateThroughPoses_SendGoal_Response': nav2_msgs.action.NavigateThroughPoses_SendGoal_ResponseConstructor,
|
|
7205
|
+
'nav2_msgs/action/NavigateToPose_Feedback': nav2_msgs.action.NavigateToPose_FeedbackConstructor,
|
|
7206
|
+
'nav2_msgs/action/NavigateToPose_FeedbackMessage': nav2_msgs.action.NavigateToPose_FeedbackMessageConstructor,
|
|
7207
|
+
'nav2_msgs/action/NavigateToPose_GetResult_Request': nav2_msgs.action.NavigateToPose_GetResult_RequestConstructor,
|
|
7208
|
+
'nav2_msgs/action/NavigateToPose_GetResult_Response': nav2_msgs.action.NavigateToPose_GetResult_ResponseConstructor,
|
|
7209
|
+
'nav2_msgs/action/NavigateToPose_Goal': nav2_msgs.action.NavigateToPose_GoalConstructor,
|
|
7210
|
+
'nav2_msgs/action/NavigateToPose_Result': nav2_msgs.action.NavigateToPose_ResultConstructor,
|
|
7211
|
+
'nav2_msgs/action/NavigateToPose_SendGoal_Request': nav2_msgs.action.NavigateToPose_SendGoal_RequestConstructor,
|
|
7212
|
+
'nav2_msgs/action/NavigateToPose_SendGoal_Response': nav2_msgs.action.NavigateToPose_SendGoal_ResponseConstructor,
|
|
7213
|
+
'nav2_msgs/action/SmoothPath_Feedback': nav2_msgs.action.SmoothPath_FeedbackConstructor,
|
|
7214
|
+
'nav2_msgs/action/SmoothPath_FeedbackMessage': nav2_msgs.action.SmoothPath_FeedbackMessageConstructor,
|
|
7215
|
+
'nav2_msgs/action/SmoothPath_GetResult_Request': nav2_msgs.action.SmoothPath_GetResult_RequestConstructor,
|
|
7216
|
+
'nav2_msgs/action/SmoothPath_GetResult_Response': nav2_msgs.action.SmoothPath_GetResult_ResponseConstructor,
|
|
7217
|
+
'nav2_msgs/action/SmoothPath_Goal': nav2_msgs.action.SmoothPath_GoalConstructor,
|
|
7218
|
+
'nav2_msgs/action/SmoothPath_Result': nav2_msgs.action.SmoothPath_ResultConstructor,
|
|
7219
|
+
'nav2_msgs/action/SmoothPath_SendGoal_Request': nav2_msgs.action.SmoothPath_SendGoal_RequestConstructor,
|
|
7220
|
+
'nav2_msgs/action/SmoothPath_SendGoal_Response': nav2_msgs.action.SmoothPath_SendGoal_ResponseConstructor,
|
|
7221
|
+
'nav2_msgs/action/Spin_Feedback': nav2_msgs.action.Spin_FeedbackConstructor,
|
|
7222
|
+
'nav2_msgs/action/Spin_FeedbackMessage': nav2_msgs.action.Spin_FeedbackMessageConstructor,
|
|
7223
|
+
'nav2_msgs/action/Spin_GetResult_Request': nav2_msgs.action.Spin_GetResult_RequestConstructor,
|
|
7224
|
+
'nav2_msgs/action/Spin_GetResult_Response': nav2_msgs.action.Spin_GetResult_ResponseConstructor,
|
|
7225
|
+
'nav2_msgs/action/Spin_Goal': nav2_msgs.action.Spin_GoalConstructor,
|
|
7226
|
+
'nav2_msgs/action/Spin_Result': nav2_msgs.action.Spin_ResultConstructor,
|
|
7227
|
+
'nav2_msgs/action/Spin_SendGoal_Request': nav2_msgs.action.Spin_SendGoal_RequestConstructor,
|
|
7228
|
+
'nav2_msgs/action/Spin_SendGoal_Response': nav2_msgs.action.Spin_SendGoal_ResponseConstructor,
|
|
7229
|
+
'nav2_msgs/action/Wait_Feedback': nav2_msgs.action.Wait_FeedbackConstructor,
|
|
7230
|
+
'nav2_msgs/action/Wait_FeedbackMessage': nav2_msgs.action.Wait_FeedbackMessageConstructor,
|
|
7231
|
+
'nav2_msgs/action/Wait_GetResult_Request': nav2_msgs.action.Wait_GetResult_RequestConstructor,
|
|
7232
|
+
'nav2_msgs/action/Wait_GetResult_Response': nav2_msgs.action.Wait_GetResult_ResponseConstructor,
|
|
7233
|
+
'nav2_msgs/action/Wait_Goal': nav2_msgs.action.Wait_GoalConstructor,
|
|
7234
|
+
'nav2_msgs/action/Wait_Result': nav2_msgs.action.Wait_ResultConstructor,
|
|
7235
|
+
'nav2_msgs/action/Wait_SendGoal_Request': nav2_msgs.action.Wait_SendGoal_RequestConstructor,
|
|
7236
|
+
'nav2_msgs/action/Wait_SendGoal_Response': nav2_msgs.action.Wait_SendGoal_ResponseConstructor,
|
|
7237
|
+
'nav2_msgs/msg/BehaviorTreeLog': nav2_msgs.msg.BehaviorTreeLogConstructor,
|
|
7238
|
+
'nav2_msgs/msg/BehaviorTreeStatusChange': nav2_msgs.msg.BehaviorTreeStatusChangeConstructor,
|
|
7239
|
+
'nav2_msgs/msg/CollisionDetectorState': nav2_msgs.msg.CollisionDetectorStateConstructor,
|
|
7240
|
+
'nav2_msgs/msg/CollisionMonitorState': nav2_msgs.msg.CollisionMonitorStateConstructor,
|
|
7241
|
+
'nav2_msgs/msg/Costmap': nav2_msgs.msg.CostmapConstructor,
|
|
7242
|
+
'nav2_msgs/msg/CostmapFilterInfo': nav2_msgs.msg.CostmapFilterInfoConstructor,
|
|
7243
|
+
'nav2_msgs/msg/CostmapMetaData': nav2_msgs.msg.CostmapMetaDataConstructor,
|
|
7244
|
+
'nav2_msgs/msg/MissedWaypoint': nav2_msgs.msg.MissedWaypointConstructor,
|
|
7245
|
+
'nav2_msgs/msg/Particle': nav2_msgs.msg.ParticleConstructor,
|
|
7246
|
+
'nav2_msgs/msg/ParticleCloud': nav2_msgs.msg.ParticleCloudConstructor,
|
|
7247
|
+
'nav2_msgs/msg/SpeedLimit': nav2_msgs.msg.SpeedLimitConstructor,
|
|
7248
|
+
'nav2_msgs/msg/VoxelGrid': nav2_msgs.msg.VoxelGridConstructor,
|
|
7249
|
+
'nav2_msgs/srv/ClearCostmapAroundRobot_Event': nav2_msgs.srv.ClearCostmapAroundRobot_EventConstructor,
|
|
7250
|
+
'nav2_msgs/srv/ClearCostmapAroundRobot_Request': nav2_msgs.srv.ClearCostmapAroundRobot_RequestConstructor,
|
|
7251
|
+
'nav2_msgs/srv/ClearCostmapAroundRobot_Response': nav2_msgs.srv.ClearCostmapAroundRobot_ResponseConstructor,
|
|
7252
|
+
'nav2_msgs/srv/ClearCostmapExceptRegion_Event': nav2_msgs.srv.ClearCostmapExceptRegion_EventConstructor,
|
|
7253
|
+
'nav2_msgs/srv/ClearCostmapExceptRegion_Request': nav2_msgs.srv.ClearCostmapExceptRegion_RequestConstructor,
|
|
7254
|
+
'nav2_msgs/srv/ClearCostmapExceptRegion_Response': nav2_msgs.srv.ClearCostmapExceptRegion_ResponseConstructor,
|
|
7255
|
+
'nav2_msgs/srv/ClearEntireCostmap_Event': nav2_msgs.srv.ClearEntireCostmap_EventConstructor,
|
|
7256
|
+
'nav2_msgs/srv/ClearEntireCostmap_Request': nav2_msgs.srv.ClearEntireCostmap_RequestConstructor,
|
|
7257
|
+
'nav2_msgs/srv/ClearEntireCostmap_Response': nav2_msgs.srv.ClearEntireCostmap_ResponseConstructor,
|
|
7258
|
+
'nav2_msgs/srv/GetCostmap_Event': nav2_msgs.srv.GetCostmap_EventConstructor,
|
|
7259
|
+
'nav2_msgs/srv/GetCostmap_Request': nav2_msgs.srv.GetCostmap_RequestConstructor,
|
|
7260
|
+
'nav2_msgs/srv/GetCostmap_Response': nav2_msgs.srv.GetCostmap_ResponseConstructor,
|
|
7261
|
+
'nav2_msgs/srv/IsPathValid_Event': nav2_msgs.srv.IsPathValid_EventConstructor,
|
|
7262
|
+
'nav2_msgs/srv/IsPathValid_Request': nav2_msgs.srv.IsPathValid_RequestConstructor,
|
|
7263
|
+
'nav2_msgs/srv/IsPathValid_Response': nav2_msgs.srv.IsPathValid_ResponseConstructor,
|
|
7264
|
+
'nav2_msgs/srv/LoadMap_Event': nav2_msgs.srv.LoadMap_EventConstructor,
|
|
7265
|
+
'nav2_msgs/srv/LoadMap_Request': nav2_msgs.srv.LoadMap_RequestConstructor,
|
|
7266
|
+
'nav2_msgs/srv/LoadMap_Response': nav2_msgs.srv.LoadMap_ResponseConstructor,
|
|
7267
|
+
'nav2_msgs/srv/ManageLifecycleNodes_Event': nav2_msgs.srv.ManageLifecycleNodes_EventConstructor,
|
|
7268
|
+
'nav2_msgs/srv/ManageLifecycleNodes_Request': nav2_msgs.srv.ManageLifecycleNodes_RequestConstructor,
|
|
7269
|
+
'nav2_msgs/srv/ManageLifecycleNodes_Response': nav2_msgs.srv.ManageLifecycleNodes_ResponseConstructor,
|
|
7270
|
+
'nav2_msgs/srv/SaveMap_Event': nav2_msgs.srv.SaveMap_EventConstructor,
|
|
7271
|
+
'nav2_msgs/srv/SaveMap_Request': nav2_msgs.srv.SaveMap_RequestConstructor,
|
|
7272
|
+
'nav2_msgs/srv/SaveMap_Response': nav2_msgs.srv.SaveMap_ResponseConstructor,
|
|
4155
7273
|
'nav_msgs/msg/GridCells': nav_msgs.msg.GridCellsConstructor,
|
|
4156
7274
|
'nav_msgs/msg/MapMetaData': nav_msgs.msg.MapMetaDataConstructor,
|
|
4157
7275
|
'nav_msgs/msg/OccupancyGrid': nav_msgs.msg.OccupancyGridConstructor,
|
|
4158
7276
|
'nav_msgs/msg/Odometry': nav_msgs.msg.OdometryConstructor,
|
|
4159
7277
|
'nav_msgs/msg/Path': nav_msgs.msg.PathConstructor,
|
|
7278
|
+
'nav_msgs/srv/GetMap_Event': nav_msgs.srv.GetMap_EventConstructor,
|
|
4160
7279
|
'nav_msgs/srv/GetMap_Request': nav_msgs.srv.GetMap_RequestConstructor,
|
|
4161
7280
|
'nav_msgs/srv/GetMap_Response': nav_msgs.srv.GetMap_ResponseConstructor,
|
|
7281
|
+
'nav_msgs/srv/GetPlan_Event': nav_msgs.srv.GetPlan_EventConstructor,
|
|
4162
7282
|
'nav_msgs/srv/GetPlan_Request': nav_msgs.srv.GetPlan_RequestConstructor,
|
|
4163
7283
|
'nav_msgs/srv/GetPlan_Response': nav_msgs.srv.GetPlan_ResponseConstructor,
|
|
7284
|
+
'nav_msgs/srv/LoadMap_Event': nav_msgs.srv.LoadMap_EventConstructor,
|
|
4164
7285
|
'nav_msgs/srv/LoadMap_Request': nav_msgs.srv.LoadMap_RequestConstructor,
|
|
4165
7286
|
'nav_msgs/srv/LoadMap_Response': nav_msgs.srv.LoadMap_ResponseConstructor,
|
|
7287
|
+
'nav_msgs/srv/SetMap_Event': nav_msgs.srv.SetMap_EventConstructor,
|
|
4166
7288
|
'nav_msgs/srv/SetMap_Request': nav_msgs.srv.SetMap_RequestConstructor,
|
|
4167
7289
|
'nav_msgs/srv/SetMap_Response': nav_msgs.srv.SetMap_ResponseConstructor,
|
|
4168
7290
|
'pendulum_msgs/msg/JointCommand': pendulum_msgs.msg.JointCommandConstructor,
|
|
@@ -4172,23 +7294,37 @@ declare module 'rclnodejs' {
|
|
|
4172
7294
|
'rcl_interfaces/msg/IntegerRange': rcl_interfaces.msg.IntegerRangeConstructor,
|
|
4173
7295
|
'rcl_interfaces/msg/ListParametersResult': rcl_interfaces.msg.ListParametersResultConstructor,
|
|
4174
7296
|
'rcl_interfaces/msg/Log': rcl_interfaces.msg.LogConstructor,
|
|
7297
|
+
'rcl_interfaces/msg/LoggerLevel': rcl_interfaces.msg.LoggerLevelConstructor,
|
|
4175
7298
|
'rcl_interfaces/msg/Parameter': rcl_interfaces.msg.ParameterConstructor,
|
|
4176
7299
|
'rcl_interfaces/msg/ParameterDescriptor': rcl_interfaces.msg.ParameterDescriptorConstructor,
|
|
4177
7300
|
'rcl_interfaces/msg/ParameterEvent': rcl_interfaces.msg.ParameterEventConstructor,
|
|
4178
7301
|
'rcl_interfaces/msg/ParameterEventDescriptors': rcl_interfaces.msg.ParameterEventDescriptorsConstructor,
|
|
4179
7302
|
'rcl_interfaces/msg/ParameterType': rcl_interfaces.msg.ParameterTypeConstructor,
|
|
4180
7303
|
'rcl_interfaces/msg/ParameterValue': rcl_interfaces.msg.ParameterValueConstructor,
|
|
7304
|
+
'rcl_interfaces/msg/SetLoggerLevelsResult': rcl_interfaces.msg.SetLoggerLevelsResultConstructor,
|
|
4181
7305
|
'rcl_interfaces/msg/SetParametersResult': rcl_interfaces.msg.SetParametersResultConstructor,
|
|
7306
|
+
'rcl_interfaces/srv/DescribeParameters_Event': rcl_interfaces.srv.DescribeParameters_EventConstructor,
|
|
4182
7307
|
'rcl_interfaces/srv/DescribeParameters_Request': rcl_interfaces.srv.DescribeParameters_RequestConstructor,
|
|
4183
7308
|
'rcl_interfaces/srv/DescribeParameters_Response': rcl_interfaces.srv.DescribeParameters_ResponseConstructor,
|
|
7309
|
+
'rcl_interfaces/srv/GetLoggerLevels_Event': rcl_interfaces.srv.GetLoggerLevels_EventConstructor,
|
|
7310
|
+
'rcl_interfaces/srv/GetLoggerLevels_Request': rcl_interfaces.srv.GetLoggerLevels_RequestConstructor,
|
|
7311
|
+
'rcl_interfaces/srv/GetLoggerLevels_Response': rcl_interfaces.srv.GetLoggerLevels_ResponseConstructor,
|
|
7312
|
+
'rcl_interfaces/srv/GetParameterTypes_Event': rcl_interfaces.srv.GetParameterTypes_EventConstructor,
|
|
4184
7313
|
'rcl_interfaces/srv/GetParameterTypes_Request': rcl_interfaces.srv.GetParameterTypes_RequestConstructor,
|
|
4185
7314
|
'rcl_interfaces/srv/GetParameterTypes_Response': rcl_interfaces.srv.GetParameterTypes_ResponseConstructor,
|
|
7315
|
+
'rcl_interfaces/srv/GetParameters_Event': rcl_interfaces.srv.GetParameters_EventConstructor,
|
|
4186
7316
|
'rcl_interfaces/srv/GetParameters_Request': rcl_interfaces.srv.GetParameters_RequestConstructor,
|
|
4187
7317
|
'rcl_interfaces/srv/GetParameters_Response': rcl_interfaces.srv.GetParameters_ResponseConstructor,
|
|
7318
|
+
'rcl_interfaces/srv/ListParameters_Event': rcl_interfaces.srv.ListParameters_EventConstructor,
|
|
4188
7319
|
'rcl_interfaces/srv/ListParameters_Request': rcl_interfaces.srv.ListParameters_RequestConstructor,
|
|
4189
7320
|
'rcl_interfaces/srv/ListParameters_Response': rcl_interfaces.srv.ListParameters_ResponseConstructor,
|
|
7321
|
+
'rcl_interfaces/srv/SetLoggerLevels_Event': rcl_interfaces.srv.SetLoggerLevels_EventConstructor,
|
|
7322
|
+
'rcl_interfaces/srv/SetLoggerLevels_Request': rcl_interfaces.srv.SetLoggerLevels_RequestConstructor,
|
|
7323
|
+
'rcl_interfaces/srv/SetLoggerLevels_Response': rcl_interfaces.srv.SetLoggerLevels_ResponseConstructor,
|
|
7324
|
+
'rcl_interfaces/srv/SetParametersAtomically_Event': rcl_interfaces.srv.SetParametersAtomically_EventConstructor,
|
|
4190
7325
|
'rcl_interfaces/srv/SetParametersAtomically_Request': rcl_interfaces.srv.SetParametersAtomically_RequestConstructor,
|
|
4191
7326
|
'rcl_interfaces/srv/SetParametersAtomically_Response': rcl_interfaces.srv.SetParametersAtomically_ResponseConstructor,
|
|
7327
|
+
'rcl_interfaces/srv/SetParameters_Event': rcl_interfaces.srv.SetParameters_EventConstructor,
|
|
4192
7328
|
'rcl_interfaces/srv/SetParameters_Request': rcl_interfaces.srv.SetParameters_RequestConstructor,
|
|
4193
7329
|
'rcl_interfaces/srv/SetParameters_Response': rcl_interfaces.srv.SetParameters_ResponseConstructor,
|
|
4194
7330
|
'rmw_dds_common/msg/Gid': rmw_dds_common.msg.GidConstructor,
|
|
@@ -4205,28 +7341,48 @@ declare module 'rclnodejs' {
|
|
|
4205
7341
|
'ros2cli_test_interfaces/msg/ShortVaried': ros2cli_test_interfaces.msg.ShortVariedConstructor,
|
|
4206
7342
|
'ros2cli_test_interfaces/msg/ShortVariedMultiNested': ros2cli_test_interfaces.msg.ShortVariedMultiNestedConstructor,
|
|
4207
7343
|
'ros2cli_test_interfaces/msg/ShortVariedNested': ros2cli_test_interfaces.msg.ShortVariedNestedConstructor,
|
|
7344
|
+
'ros2cli_test_interfaces/srv/ShortVariedMultiNested_Event': ros2cli_test_interfaces.srv.ShortVariedMultiNested_EventConstructor,
|
|
4208
7345
|
'ros2cli_test_interfaces/srv/ShortVariedMultiNested_Request': ros2cli_test_interfaces.srv.ShortVariedMultiNested_RequestConstructor,
|
|
4209
7346
|
'ros2cli_test_interfaces/srv/ShortVariedMultiNested_Response': ros2cli_test_interfaces.srv.ShortVariedMultiNested_ResponseConstructor,
|
|
4210
7347
|
'rosbag2_interfaces/msg/ReadSplitEvent': rosbag2_interfaces.msg.ReadSplitEventConstructor,
|
|
4211
7348
|
'rosbag2_interfaces/msg/WriteSplitEvent': rosbag2_interfaces.msg.WriteSplitEventConstructor,
|
|
7349
|
+
'rosbag2_interfaces/srv/Burst_Event': rosbag2_interfaces.srv.Burst_EventConstructor,
|
|
4212
7350
|
'rosbag2_interfaces/srv/Burst_Request': rosbag2_interfaces.srv.Burst_RequestConstructor,
|
|
4213
7351
|
'rosbag2_interfaces/srv/Burst_Response': rosbag2_interfaces.srv.Burst_ResponseConstructor,
|
|
7352
|
+
'rosbag2_interfaces/srv/GetRate_Event': rosbag2_interfaces.srv.GetRate_EventConstructor,
|
|
4214
7353
|
'rosbag2_interfaces/srv/GetRate_Request': rosbag2_interfaces.srv.GetRate_RequestConstructor,
|
|
4215
7354
|
'rosbag2_interfaces/srv/GetRate_Response': rosbag2_interfaces.srv.GetRate_ResponseConstructor,
|
|
7355
|
+
'rosbag2_interfaces/srv/IsPaused_Event': rosbag2_interfaces.srv.IsPaused_EventConstructor,
|
|
4216
7356
|
'rosbag2_interfaces/srv/IsPaused_Request': rosbag2_interfaces.srv.IsPaused_RequestConstructor,
|
|
4217
7357
|
'rosbag2_interfaces/srv/IsPaused_Response': rosbag2_interfaces.srv.IsPaused_ResponseConstructor,
|
|
7358
|
+
'rosbag2_interfaces/srv/Pause_Event': rosbag2_interfaces.srv.Pause_EventConstructor,
|
|
4218
7359
|
'rosbag2_interfaces/srv/Pause_Request': rosbag2_interfaces.srv.Pause_RequestConstructor,
|
|
4219
7360
|
'rosbag2_interfaces/srv/Pause_Response': rosbag2_interfaces.srv.Pause_ResponseConstructor,
|
|
7361
|
+
'rosbag2_interfaces/srv/PlayNext_Event': rosbag2_interfaces.srv.PlayNext_EventConstructor,
|
|
4220
7362
|
'rosbag2_interfaces/srv/PlayNext_Request': rosbag2_interfaces.srv.PlayNext_RequestConstructor,
|
|
4221
7363
|
'rosbag2_interfaces/srv/PlayNext_Response': rosbag2_interfaces.srv.PlayNext_ResponseConstructor,
|
|
7364
|
+
'rosbag2_interfaces/srv/Play_Event': rosbag2_interfaces.srv.Play_EventConstructor,
|
|
7365
|
+
'rosbag2_interfaces/srv/Play_Request': rosbag2_interfaces.srv.Play_RequestConstructor,
|
|
7366
|
+
'rosbag2_interfaces/srv/Play_Response': rosbag2_interfaces.srv.Play_ResponseConstructor,
|
|
7367
|
+
'rosbag2_interfaces/srv/Resume_Event': rosbag2_interfaces.srv.Resume_EventConstructor,
|
|
4222
7368
|
'rosbag2_interfaces/srv/Resume_Request': rosbag2_interfaces.srv.Resume_RequestConstructor,
|
|
4223
7369
|
'rosbag2_interfaces/srv/Resume_Response': rosbag2_interfaces.srv.Resume_ResponseConstructor,
|
|
7370
|
+
'rosbag2_interfaces/srv/Seek_Event': rosbag2_interfaces.srv.Seek_EventConstructor,
|
|
4224
7371
|
'rosbag2_interfaces/srv/Seek_Request': rosbag2_interfaces.srv.Seek_RequestConstructor,
|
|
4225
7372
|
'rosbag2_interfaces/srv/Seek_Response': rosbag2_interfaces.srv.Seek_ResponseConstructor,
|
|
7373
|
+
'rosbag2_interfaces/srv/SetRate_Event': rosbag2_interfaces.srv.SetRate_EventConstructor,
|
|
4226
7374
|
'rosbag2_interfaces/srv/SetRate_Request': rosbag2_interfaces.srv.SetRate_RequestConstructor,
|
|
4227
7375
|
'rosbag2_interfaces/srv/SetRate_Response': rosbag2_interfaces.srv.SetRate_ResponseConstructor,
|
|
7376
|
+
'rosbag2_interfaces/srv/Snapshot_Event': rosbag2_interfaces.srv.Snapshot_EventConstructor,
|
|
4228
7377
|
'rosbag2_interfaces/srv/Snapshot_Request': rosbag2_interfaces.srv.Snapshot_RequestConstructor,
|
|
4229
7378
|
'rosbag2_interfaces/srv/Snapshot_Response': rosbag2_interfaces.srv.Snapshot_ResponseConstructor,
|
|
7379
|
+
'rosbag2_interfaces/srv/SplitBagfile_Event': rosbag2_interfaces.srv.SplitBagfile_EventConstructor,
|
|
7380
|
+
'rosbag2_interfaces/srv/SplitBagfile_Request': rosbag2_interfaces.srv.SplitBagfile_RequestConstructor,
|
|
7381
|
+
'rosbag2_interfaces/srv/SplitBagfile_Response': rosbag2_interfaces.srv.SplitBagfile_ResponseConstructor,
|
|
7382
|
+
'rosbag2_interfaces/srv/Stop_Event': rosbag2_interfaces.srv.Stop_EventConstructor,
|
|
7383
|
+
'rosbag2_interfaces/srv/Stop_Request': rosbag2_interfaces.srv.Stop_RequestConstructor,
|
|
7384
|
+
'rosbag2_interfaces/srv/Stop_Response': rosbag2_interfaces.srv.Stop_ResponseConstructor,
|
|
7385
|
+
'rosbag2_interfaces/srv/TogglePaused_Event': rosbag2_interfaces.srv.TogglePaused_EventConstructor,
|
|
4230
7386
|
'rosbag2_interfaces/srv/TogglePaused_Request': rosbag2_interfaces.srv.TogglePaused_RequestConstructor,
|
|
4231
7387
|
'rosbag2_interfaces/srv/TogglePaused_Response': rosbag2_interfaces.srv.TogglePaused_ResponseConstructor,
|
|
4232
7388
|
'rosgraph_msgs/msg/Clock': rosgraph_msgs.msg.ClockConstructor,
|
|
@@ -4257,12 +7413,44 @@ declare module 'rclnodejs' {
|
|
|
4257
7413
|
'sensor_msgs/msg/RelativeHumidity': sensor_msgs.msg.RelativeHumidityConstructor,
|
|
4258
7414
|
'sensor_msgs/msg/Temperature': sensor_msgs.msg.TemperatureConstructor,
|
|
4259
7415
|
'sensor_msgs/msg/TimeReference': sensor_msgs.msg.TimeReferenceConstructor,
|
|
7416
|
+
'sensor_msgs/srv/SetCameraInfo_Event': sensor_msgs.srv.SetCameraInfo_EventConstructor,
|
|
4260
7417
|
'sensor_msgs/srv/SetCameraInfo_Request': sensor_msgs.srv.SetCameraInfo_RequestConstructor,
|
|
4261
7418
|
'sensor_msgs/srv/SetCameraInfo_Response': sensor_msgs.srv.SetCameraInfo_ResponseConstructor,
|
|
7419
|
+
'service_msgs/msg/ServiceEventInfo': service_msgs.msg.ServiceEventInfoConstructor,
|
|
4262
7420
|
'shape_msgs/msg/Mesh': shape_msgs.msg.MeshConstructor,
|
|
4263
7421
|
'shape_msgs/msg/MeshTriangle': shape_msgs.msg.MeshTriangleConstructor,
|
|
4264
7422
|
'shape_msgs/msg/Plane': shape_msgs.msg.PlaneConstructor,
|
|
4265
7423
|
'shape_msgs/msg/SolidPrimitive': shape_msgs.msg.SolidPrimitiveConstructor,
|
|
7424
|
+
'slam_toolbox/srvs/AddSubmap_Event': slam_toolbox.srvs.AddSubmap_EventConstructor,
|
|
7425
|
+
'slam_toolbox/srvs/AddSubmap_Request': slam_toolbox.srvs.AddSubmap_RequestConstructor,
|
|
7426
|
+
'slam_toolbox/srvs/AddSubmap_Response': slam_toolbox.srvs.AddSubmap_ResponseConstructor,
|
|
7427
|
+
'slam_toolbox/srvs/ClearQueue_Event': slam_toolbox.srvs.ClearQueue_EventConstructor,
|
|
7428
|
+
'slam_toolbox/srvs/ClearQueue_Request': slam_toolbox.srvs.ClearQueue_RequestConstructor,
|
|
7429
|
+
'slam_toolbox/srvs/ClearQueue_Response': slam_toolbox.srvs.ClearQueue_ResponseConstructor,
|
|
7430
|
+
'slam_toolbox/srvs/Clear_Event': slam_toolbox.srvs.Clear_EventConstructor,
|
|
7431
|
+
'slam_toolbox/srvs/Clear_Request': slam_toolbox.srvs.Clear_RequestConstructor,
|
|
7432
|
+
'slam_toolbox/srvs/Clear_Response': slam_toolbox.srvs.Clear_ResponseConstructor,
|
|
7433
|
+
'slam_toolbox/srvs/DeserializePoseGraph_Event': slam_toolbox.srvs.DeserializePoseGraph_EventConstructor,
|
|
7434
|
+
'slam_toolbox/srvs/DeserializePoseGraph_Request': slam_toolbox.srvs.DeserializePoseGraph_RequestConstructor,
|
|
7435
|
+
'slam_toolbox/srvs/DeserializePoseGraph_Response': slam_toolbox.srvs.DeserializePoseGraph_ResponseConstructor,
|
|
7436
|
+
'slam_toolbox/srvs/LoopClosure_Event': slam_toolbox.srvs.LoopClosure_EventConstructor,
|
|
7437
|
+
'slam_toolbox/srvs/LoopClosure_Request': slam_toolbox.srvs.LoopClosure_RequestConstructor,
|
|
7438
|
+
'slam_toolbox/srvs/LoopClosure_Response': slam_toolbox.srvs.LoopClosure_ResponseConstructor,
|
|
7439
|
+
'slam_toolbox/srvs/MergeMaps_Event': slam_toolbox.srvs.MergeMaps_EventConstructor,
|
|
7440
|
+
'slam_toolbox/srvs/MergeMaps_Request': slam_toolbox.srvs.MergeMaps_RequestConstructor,
|
|
7441
|
+
'slam_toolbox/srvs/MergeMaps_Response': slam_toolbox.srvs.MergeMaps_ResponseConstructor,
|
|
7442
|
+
'slam_toolbox/srvs/Pause_Event': slam_toolbox.srvs.Pause_EventConstructor,
|
|
7443
|
+
'slam_toolbox/srvs/Pause_Request': slam_toolbox.srvs.Pause_RequestConstructor,
|
|
7444
|
+
'slam_toolbox/srvs/Pause_Response': slam_toolbox.srvs.Pause_ResponseConstructor,
|
|
7445
|
+
'slam_toolbox/srvs/SaveMap_Event': slam_toolbox.srvs.SaveMap_EventConstructor,
|
|
7446
|
+
'slam_toolbox/srvs/SaveMap_Request': slam_toolbox.srvs.SaveMap_RequestConstructor,
|
|
7447
|
+
'slam_toolbox/srvs/SaveMap_Response': slam_toolbox.srvs.SaveMap_ResponseConstructor,
|
|
7448
|
+
'slam_toolbox/srvs/SerializePoseGraph_Event': slam_toolbox.srvs.SerializePoseGraph_EventConstructor,
|
|
7449
|
+
'slam_toolbox/srvs/SerializePoseGraph_Request': slam_toolbox.srvs.SerializePoseGraph_RequestConstructor,
|
|
7450
|
+
'slam_toolbox/srvs/SerializePoseGraph_Response': slam_toolbox.srvs.SerializePoseGraph_ResponseConstructor,
|
|
7451
|
+
'slam_toolbox/srvs/ToggleInteractive_Event': slam_toolbox.srvs.ToggleInteractive_EventConstructor,
|
|
7452
|
+
'slam_toolbox/srvs/ToggleInteractive_Request': slam_toolbox.srvs.ToggleInteractive_RequestConstructor,
|
|
7453
|
+
'slam_toolbox/srvs/ToggleInteractive_Response': slam_toolbox.srvs.ToggleInteractive_ResponseConstructor,
|
|
4266
7454
|
'statistics_msgs/msg/MetricsMessage': statistics_msgs.msg.MetricsMessageConstructor,
|
|
4267
7455
|
'statistics_msgs/msg/StatisticDataPoint': statistics_msgs.msg.StatisticDataPointConstructor,
|
|
4268
7456
|
'statistics_msgs/msg/StatisticDataType': statistics_msgs.msg.StatisticDataTypeConstructor,
|
|
@@ -4296,10 +7484,13 @@ declare module 'rclnodejs' {
|
|
|
4296
7484
|
'std_msgs/msg/UInt64MultiArray': std_msgs.msg.UInt64MultiArrayConstructor,
|
|
4297
7485
|
'std_msgs/msg/UInt8': std_msgs.msg.UInt8Constructor,
|
|
4298
7486
|
'std_msgs/msg/UInt8MultiArray': std_msgs.msg.UInt8MultiArrayConstructor,
|
|
7487
|
+
'std_srvs/srv/Empty_Event': std_srvs.srv.Empty_EventConstructor,
|
|
4299
7488
|
'std_srvs/srv/Empty_Request': std_srvs.srv.Empty_RequestConstructor,
|
|
4300
7489
|
'std_srvs/srv/Empty_Response': std_srvs.srv.Empty_ResponseConstructor,
|
|
7490
|
+
'std_srvs/srv/SetBool_Event': std_srvs.srv.SetBool_EventConstructor,
|
|
4301
7491
|
'std_srvs/srv/SetBool_Request': std_srvs.srv.SetBool_RequestConstructor,
|
|
4302
7492
|
'std_srvs/srv/SetBool_Response': std_srvs.srv.SetBool_ResponseConstructor,
|
|
7493
|
+
'std_srvs/srv/Trigger_Event': std_srvs.srv.Trigger_EventConstructor,
|
|
4303
7494
|
'std_srvs/srv/Trigger_Request': std_srvs.srv.Trigger_RequestConstructor,
|
|
4304
7495
|
'std_srvs/srv/Trigger_Response': std_srvs.srv.Trigger_ResponseConstructor,
|
|
4305
7496
|
'stereo_msgs/msg/DisparityImage': stereo_msgs.msg.DisparityImageConstructor,
|
|
@@ -4332,10 +7523,13 @@ declare module 'rclnodejs' {
|
|
|
4332
7523
|
'test_msgs/msg/Strings': test_msgs.msg.StringsConstructor,
|
|
4333
7524
|
'test_msgs/msg/UnboundedSequences': test_msgs.msg.UnboundedSequencesConstructor,
|
|
4334
7525
|
'test_msgs/msg/WStrings': test_msgs.msg.WStringsConstructor,
|
|
7526
|
+
'test_msgs/srv/Arrays_Event': test_msgs.srv.Arrays_EventConstructor,
|
|
4335
7527
|
'test_msgs/srv/Arrays_Request': test_msgs.srv.Arrays_RequestConstructor,
|
|
4336
7528
|
'test_msgs/srv/Arrays_Response': test_msgs.srv.Arrays_ResponseConstructor,
|
|
7529
|
+
'test_msgs/srv/BasicTypes_Event': test_msgs.srv.BasicTypes_EventConstructor,
|
|
4337
7530
|
'test_msgs/srv/BasicTypes_Request': test_msgs.srv.BasicTypes_RequestConstructor,
|
|
4338
7531
|
'test_msgs/srv/BasicTypes_Response': test_msgs.srv.BasicTypes_ResponseConstructor,
|
|
7532
|
+
'test_msgs/srv/Empty_Event': test_msgs.srv.Empty_EventConstructor,
|
|
4339
7533
|
'test_msgs/srv/Empty_Request': test_msgs.srv.Empty_RequestConstructor,
|
|
4340
7534
|
'test_msgs/srv/Empty_Response': test_msgs.srv.Empty_ResponseConstructor,
|
|
4341
7535
|
'tf2_msgs/action/LookupTransform_Feedback': tf2_msgs.action.LookupTransform_FeedbackConstructor,
|
|
@@ -4348,6 +7542,7 @@ declare module 'rclnodejs' {
|
|
|
4348
7542
|
'tf2_msgs/action/LookupTransform_SendGoal_Response': tf2_msgs.action.LookupTransform_SendGoal_ResponseConstructor,
|
|
4349
7543
|
'tf2_msgs/msg/TF2Error': tf2_msgs.msg.TF2ErrorConstructor,
|
|
4350
7544
|
'tf2_msgs/msg/TFMessage': tf2_msgs.msg.TFMessageConstructor,
|
|
7545
|
+
'tf2_msgs/srv/FrameGraph_Event': tf2_msgs.srv.FrameGraph_EventConstructor,
|
|
4351
7546
|
'tf2_msgs/srv/FrameGraph_Request': tf2_msgs.srv.FrameGraph_RequestConstructor,
|
|
4352
7547
|
'tf2_msgs/srv/FrameGraph_Response': tf2_msgs.srv.FrameGraph_ResponseConstructor,
|
|
4353
7548
|
'trajectory_msgs/msg/JointTrajectory': trajectory_msgs.msg.JointTrajectoryConstructor,
|
|
@@ -4364,16 +7559,30 @@ declare module 'rclnodejs' {
|
|
|
4364
7559
|
'turtlesim/action/RotateAbsolute_SendGoal_Response': turtlesim.action.RotateAbsolute_SendGoal_ResponseConstructor,
|
|
4365
7560
|
'turtlesim/msg/Color': turtlesim.msg.ColorConstructor,
|
|
4366
7561
|
'turtlesim/msg/Pose': turtlesim.msg.PoseConstructor,
|
|
7562
|
+
'turtlesim/srv/Kill_Event': turtlesim.srv.Kill_EventConstructor,
|
|
4367
7563
|
'turtlesim/srv/Kill_Request': turtlesim.srv.Kill_RequestConstructor,
|
|
4368
7564
|
'turtlesim/srv/Kill_Response': turtlesim.srv.Kill_ResponseConstructor,
|
|
7565
|
+
'turtlesim/srv/SetPen_Event': turtlesim.srv.SetPen_EventConstructor,
|
|
4369
7566
|
'turtlesim/srv/SetPen_Request': turtlesim.srv.SetPen_RequestConstructor,
|
|
4370
7567
|
'turtlesim/srv/SetPen_Response': turtlesim.srv.SetPen_ResponseConstructor,
|
|
7568
|
+
'turtlesim/srv/Spawn_Event': turtlesim.srv.Spawn_EventConstructor,
|
|
4371
7569
|
'turtlesim/srv/Spawn_Request': turtlesim.srv.Spawn_RequestConstructor,
|
|
4372
7570
|
'turtlesim/srv/Spawn_Response': turtlesim.srv.Spawn_ResponseConstructor,
|
|
7571
|
+
'turtlesim/srv/TeleportAbsolute_Event': turtlesim.srv.TeleportAbsolute_EventConstructor,
|
|
4373
7572
|
'turtlesim/srv/TeleportAbsolute_Request': turtlesim.srv.TeleportAbsolute_RequestConstructor,
|
|
4374
7573
|
'turtlesim/srv/TeleportAbsolute_Response': turtlesim.srv.TeleportAbsolute_ResponseConstructor,
|
|
7574
|
+
'turtlesim/srv/TeleportRelative_Event': turtlesim.srv.TeleportRelative_EventConstructor,
|
|
4375
7575
|
'turtlesim/srv/TeleportRelative_Request': turtlesim.srv.TeleportRelative_RequestConstructor,
|
|
4376
7576
|
'turtlesim/srv/TeleportRelative_Response': turtlesim.srv.TeleportRelative_ResponseConstructor,
|
|
7577
|
+
'type_description_interfaces/msg/Field': type_description_interfaces.msg.FieldConstructor,
|
|
7578
|
+
'type_description_interfaces/msg/FieldType': type_description_interfaces.msg.FieldTypeConstructor,
|
|
7579
|
+
'type_description_interfaces/msg/IndividualTypeDescription': type_description_interfaces.msg.IndividualTypeDescriptionConstructor,
|
|
7580
|
+
'type_description_interfaces/msg/KeyValue': type_description_interfaces.msg.KeyValueConstructor,
|
|
7581
|
+
'type_description_interfaces/msg/TypeDescription': type_description_interfaces.msg.TypeDescriptionConstructor,
|
|
7582
|
+
'type_description_interfaces/msg/TypeSource': type_description_interfaces.msg.TypeSourceConstructor,
|
|
7583
|
+
'type_description_interfaces/srv/GetTypeDescription_Event': type_description_interfaces.srv.GetTypeDescription_EventConstructor,
|
|
7584
|
+
'type_description_interfaces/srv/GetTypeDescription_Request': type_description_interfaces.srv.GetTypeDescription_RequestConstructor,
|
|
7585
|
+
'type_description_interfaces/srv/GetTypeDescription_Response': type_description_interfaces.srv.GetTypeDescription_ResponseConstructor,
|
|
4377
7586
|
'unique_identifier_msgs/msg/UUID': unique_identifier_msgs.msg.UUIDConstructor,
|
|
4378
7587
|
'visualization_msgs/msg/ImageMarker': visualization_msgs.msg.ImageMarkerConstructor,
|
|
4379
7588
|
'visualization_msgs/msg/InteractiveMarker': visualization_msgs.msg.InteractiveMarkerConstructor,
|
|
@@ -4387,6 +7596,7 @@ declare module 'rclnodejs' {
|
|
|
4387
7596
|
'visualization_msgs/msg/MenuEntry': visualization_msgs.msg.MenuEntryConstructor,
|
|
4388
7597
|
'visualization_msgs/msg/MeshFile': visualization_msgs.msg.MeshFileConstructor,
|
|
4389
7598
|
'visualization_msgs/msg/UVCoordinate': visualization_msgs.msg.UVCoordinateConstructor,
|
|
7599
|
+
'visualization_msgs/srv/GetInteractiveMarkers_Event': visualization_msgs.srv.GetInteractiveMarkers_EventConstructor,
|
|
4390
7600
|
'visualization_msgs/srv/GetInteractiveMarkers_Request': visualization_msgs.srv.GetInteractiveMarkers_RequestConstructor,
|
|
4391
7601
|
'visualization_msgs/srv/GetInteractiveMarkers_Response': visualization_msgs.srv.GetInteractiveMarkers_ResponseConstructor,
|
|
4392
7602
|
};
|
|
@@ -4402,6 +7612,10 @@ declare module 'rclnodejs' {
|
|
|
4402
7612
|
'example_interfaces/srv/AddTwoInts': example_interfaces.srv.AddTwoIntsConstructor,
|
|
4403
7613
|
'example_interfaces/srv/SetBool': example_interfaces.srv.SetBoolConstructor,
|
|
4404
7614
|
'example_interfaces/srv/Trigger': example_interfaces.srv.TriggerConstructor,
|
|
7615
|
+
'geographic_msgs/srv/GetGeoPath': geographic_msgs.srv.GetGeoPathConstructor,
|
|
7616
|
+
'geographic_msgs/srv/GetGeographicMap': geographic_msgs.srv.GetGeographicMapConstructor,
|
|
7617
|
+
'geographic_msgs/srv/GetRoutePlan': geographic_msgs.srv.GetRoutePlanConstructor,
|
|
7618
|
+
'geographic_msgs/srv/UpdateGeographicMap': geographic_msgs.srv.UpdateGeographicMapConstructor,
|
|
4405
7619
|
'lifecycle_msgs/srv/ChangeState': lifecycle_msgs.srv.ChangeStateConstructor,
|
|
4406
7620
|
'lifecycle_msgs/srv/GetAvailableStates': lifecycle_msgs.srv.GetAvailableStatesConstructor,
|
|
4407
7621
|
'lifecycle_msgs/srv/GetAvailableTransitions': lifecycle_msgs.srv.GetAvailableTransitionsConstructor,
|
|
@@ -4413,14 +7627,24 @@ declare module 'rclnodejs' {
|
|
|
4413
7627
|
'map_msgs/srv/ProjectedMapsInfo': map_msgs.srv.ProjectedMapsInfoConstructor,
|
|
4414
7628
|
'map_msgs/srv/SaveMap': map_msgs.srv.SaveMapConstructor,
|
|
4415
7629
|
'map_msgs/srv/SetMapProjections': map_msgs.srv.SetMapProjectionsConstructor,
|
|
7630
|
+
'nav2_msgs/srv/ClearCostmapAroundRobot': nav2_msgs.srv.ClearCostmapAroundRobotConstructor,
|
|
7631
|
+
'nav2_msgs/srv/ClearCostmapExceptRegion': nav2_msgs.srv.ClearCostmapExceptRegionConstructor,
|
|
7632
|
+
'nav2_msgs/srv/ClearEntireCostmap': nav2_msgs.srv.ClearEntireCostmapConstructor,
|
|
7633
|
+
'nav2_msgs/srv/GetCostmap': nav2_msgs.srv.GetCostmapConstructor,
|
|
7634
|
+
'nav2_msgs/srv/IsPathValid': nav2_msgs.srv.IsPathValidConstructor,
|
|
7635
|
+
'nav2_msgs/srv/LoadMap': nav2_msgs.srv.LoadMapConstructor,
|
|
7636
|
+
'nav2_msgs/srv/ManageLifecycleNodes': nav2_msgs.srv.ManageLifecycleNodesConstructor,
|
|
7637
|
+
'nav2_msgs/srv/SaveMap': nav2_msgs.srv.SaveMapConstructor,
|
|
4416
7638
|
'nav_msgs/srv/GetMap': nav_msgs.srv.GetMapConstructor,
|
|
4417
7639
|
'nav_msgs/srv/GetPlan': nav_msgs.srv.GetPlanConstructor,
|
|
4418
7640
|
'nav_msgs/srv/LoadMap': nav_msgs.srv.LoadMapConstructor,
|
|
4419
7641
|
'nav_msgs/srv/SetMap': nav_msgs.srv.SetMapConstructor,
|
|
4420
7642
|
'rcl_interfaces/srv/DescribeParameters': rcl_interfaces.srv.DescribeParametersConstructor,
|
|
7643
|
+
'rcl_interfaces/srv/GetLoggerLevels': rcl_interfaces.srv.GetLoggerLevelsConstructor,
|
|
4421
7644
|
'rcl_interfaces/srv/GetParameterTypes': rcl_interfaces.srv.GetParameterTypesConstructor,
|
|
4422
7645
|
'rcl_interfaces/srv/GetParameters': rcl_interfaces.srv.GetParametersConstructor,
|
|
4423
7646
|
'rcl_interfaces/srv/ListParameters': rcl_interfaces.srv.ListParametersConstructor,
|
|
7647
|
+
'rcl_interfaces/srv/SetLoggerLevels': rcl_interfaces.srv.SetLoggerLevelsConstructor,
|
|
4424
7648
|
'rcl_interfaces/srv/SetParameters': rcl_interfaces.srv.SetParametersConstructor,
|
|
4425
7649
|
'rcl_interfaces/srv/SetParametersAtomically': rcl_interfaces.srv.SetParametersAtomicallyConstructor,
|
|
4426
7650
|
'ros2cli_test_interfaces/srv/ShortVariedMultiNested': ros2cli_test_interfaces.srv.ShortVariedMultiNestedConstructor,
|
|
@@ -4428,13 +7652,26 @@ declare module 'rclnodejs' {
|
|
|
4428
7652
|
'rosbag2_interfaces/srv/GetRate': rosbag2_interfaces.srv.GetRateConstructor,
|
|
4429
7653
|
'rosbag2_interfaces/srv/IsPaused': rosbag2_interfaces.srv.IsPausedConstructor,
|
|
4430
7654
|
'rosbag2_interfaces/srv/Pause': rosbag2_interfaces.srv.PauseConstructor,
|
|
7655
|
+
'rosbag2_interfaces/srv/Play': rosbag2_interfaces.srv.PlayConstructor,
|
|
4431
7656
|
'rosbag2_interfaces/srv/PlayNext': rosbag2_interfaces.srv.PlayNextConstructor,
|
|
4432
7657
|
'rosbag2_interfaces/srv/Resume': rosbag2_interfaces.srv.ResumeConstructor,
|
|
4433
7658
|
'rosbag2_interfaces/srv/Seek': rosbag2_interfaces.srv.SeekConstructor,
|
|
4434
7659
|
'rosbag2_interfaces/srv/SetRate': rosbag2_interfaces.srv.SetRateConstructor,
|
|
4435
7660
|
'rosbag2_interfaces/srv/Snapshot': rosbag2_interfaces.srv.SnapshotConstructor,
|
|
7661
|
+
'rosbag2_interfaces/srv/SplitBagfile': rosbag2_interfaces.srv.SplitBagfileConstructor,
|
|
7662
|
+
'rosbag2_interfaces/srv/Stop': rosbag2_interfaces.srv.StopConstructor,
|
|
4436
7663
|
'rosbag2_interfaces/srv/TogglePaused': rosbag2_interfaces.srv.TogglePausedConstructor,
|
|
4437
7664
|
'sensor_msgs/srv/SetCameraInfo': sensor_msgs.srv.SetCameraInfoConstructor,
|
|
7665
|
+
'slam_toolbox/srvs/AddSubmap': slam_toolbox.srvs.AddSubmapConstructor,
|
|
7666
|
+
'slam_toolbox/srvs/Clear': slam_toolbox.srvs.ClearConstructor,
|
|
7667
|
+
'slam_toolbox/srvs/ClearQueue': slam_toolbox.srvs.ClearQueueConstructor,
|
|
7668
|
+
'slam_toolbox/srvs/DeserializePoseGraph': slam_toolbox.srvs.DeserializePoseGraphConstructor,
|
|
7669
|
+
'slam_toolbox/srvs/LoopClosure': slam_toolbox.srvs.LoopClosureConstructor,
|
|
7670
|
+
'slam_toolbox/srvs/MergeMaps': slam_toolbox.srvs.MergeMapsConstructor,
|
|
7671
|
+
'slam_toolbox/srvs/Pause': slam_toolbox.srvs.PauseConstructor,
|
|
7672
|
+
'slam_toolbox/srvs/SaveMap': slam_toolbox.srvs.SaveMapConstructor,
|
|
7673
|
+
'slam_toolbox/srvs/SerializePoseGraph': slam_toolbox.srvs.SerializePoseGraphConstructor,
|
|
7674
|
+
'slam_toolbox/srvs/ToggleInteractive': slam_toolbox.srvs.ToggleInteractiveConstructor,
|
|
4438
7675
|
'std_srvs/srv/Empty': std_srvs.srv.EmptyConstructor,
|
|
4439
7676
|
'std_srvs/srv/SetBool': std_srvs.srv.SetBoolConstructor,
|
|
4440
7677
|
'std_srvs/srv/Trigger': std_srvs.srv.TriggerConstructor,
|
|
@@ -4447,6 +7684,7 @@ declare module 'rclnodejs' {
|
|
|
4447
7684
|
'turtlesim/srv/Spawn': turtlesim.srv.SpawnConstructor,
|
|
4448
7685
|
'turtlesim/srv/TeleportAbsolute': turtlesim.srv.TeleportAbsoluteConstructor,
|
|
4449
7686
|
'turtlesim/srv/TeleportRelative': turtlesim.srv.TeleportRelativeConstructor,
|
|
7687
|
+
'type_description_interfaces/srv/GetTypeDescription': type_description_interfaces.srv.GetTypeDescriptionConstructor,
|
|
4450
7688
|
'visualization_msgs/srv/GetInteractiveMarkers': visualization_msgs.srv.GetInteractiveMarkersConstructor,
|
|
4451
7689
|
};
|
|
4452
7690
|
type ServiceTypeClassName = keyof ServicesMap;
|
|
@@ -4456,6 +7694,20 @@ declare module 'rclnodejs' {
|
|
|
4456
7694
|
type ActionsMap = {
|
|
4457
7695
|
'action_tutorials_interfaces/action/Fibonacci': action_tutorials_interfaces.action.FibonacciConstructor,
|
|
4458
7696
|
'example_interfaces/action/Fibonacci': example_interfaces.action.FibonacciConstructor,
|
|
7697
|
+
'nav2_msgs/action/AssistedTeleop': nav2_msgs.action.AssistedTeleopConstructor,
|
|
7698
|
+
'nav2_msgs/action/BackUp': nav2_msgs.action.BackUpConstructor,
|
|
7699
|
+
'nav2_msgs/action/ComputePathThroughPoses': nav2_msgs.action.ComputePathThroughPosesConstructor,
|
|
7700
|
+
'nav2_msgs/action/ComputePathToPose': nav2_msgs.action.ComputePathToPoseConstructor,
|
|
7701
|
+
'nav2_msgs/action/DriveOnHeading': nav2_msgs.action.DriveOnHeadingConstructor,
|
|
7702
|
+
'nav2_msgs/action/DummyBehavior': nav2_msgs.action.DummyBehaviorConstructor,
|
|
7703
|
+
'nav2_msgs/action/FollowGPSWaypoints': nav2_msgs.action.FollowGPSWaypointsConstructor,
|
|
7704
|
+
'nav2_msgs/action/FollowPath': nav2_msgs.action.FollowPathConstructor,
|
|
7705
|
+
'nav2_msgs/action/FollowWaypoints': nav2_msgs.action.FollowWaypointsConstructor,
|
|
7706
|
+
'nav2_msgs/action/NavigateThroughPoses': nav2_msgs.action.NavigateThroughPosesConstructor,
|
|
7707
|
+
'nav2_msgs/action/NavigateToPose': nav2_msgs.action.NavigateToPoseConstructor,
|
|
7708
|
+
'nav2_msgs/action/SmoothPath': nav2_msgs.action.SmoothPathConstructor,
|
|
7709
|
+
'nav2_msgs/action/Spin': nav2_msgs.action.SpinConstructor,
|
|
7710
|
+
'nav2_msgs/action/Wait': nav2_msgs.action.WaitConstructor,
|
|
4459
7711
|
'ros2cli_test_interfaces/action/ShortVariedMultiNested': ros2cli_test_interfaces.action.ShortVariedMultiNestedConstructor,
|
|
4460
7712
|
'test_msgs/action/Fibonacci': test_msgs.action.FibonacciConstructor,
|
|
4461
7713
|
'test_msgs/action/NestedMessage': test_msgs.action.NestedMessageConstructor,
|