rclnodejs 0.23.0 → 0.23.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/binding.gyp CHANGED
@@ -90,6 +90,7 @@
90
90
  "<!@(node -e \"console.log(process.env.AMENT_PREFIX_PATH.replace(/:/g, '/include/lifecycle_msgs/ ') + '/include/lifecycle_msgs/')\")",
91
91
  "<!@(node -e \"console.log(process.env.AMENT_PREFIX_PATH.replace(/:/g, '/include/rosidl_runtime_c/ ') + '/include/rosidl_runtime_c/')\")",
92
92
  "<!@(node -e \"console.log(process.env.AMENT_PREFIX_PATH.replace(/:/g, '/include/rosidl_dynamic_typesupport/ ') + '/include/rosidl_dynamic_typesupport/')\")",
93
+ "<!@(node -e \"console.log(process.env.AMENT_PREFIX_PATH.replace(/:/g, '/include/type_description_interfaces/ ') + '/include/type_description_interfaces/')\")",
93
94
  ],
94
95
  }
95
96
  ],
@@ -138,6 +139,7 @@
138
139
  "<!@(node -e \"console.log(process.env.AMENT_PREFIX_PATH.replace(/;/g, '/include/rcl_lifecycle ').replace(/\\\/g, '/') + '/include/rcl_lifecycle')\")",
139
140
  "<!@(node -e \"console.log(process.env.AMENT_PREFIX_PATH.replace(/;/g, '/include/lifecycle_msgs ').replace(/\\\/g, '/') + '/include/lifecycle_msgs')\")",
140
141
  "<!@(node -e \"console.log(process.env.AMENT_PREFIX_PATH.replace(/;/g, '/include/rosidl_dynamic_typesupport ').replace(/\\\/g, '/') + '/include/rosidl_dynamic_typesupport')\")",
142
+ "<!@(node -e \"console.log(process.env.AMENT_PREFIX_PATH.replace(/;/g, '/include/type_description_interfaces/ ').replace(/\\\/g, '/') + '/include/type_description_interfaces/')\")",
141
143
  ],
142
144
  }
143
145
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rclnodejs",
3
- "version": "0.23.0",
3
+ "version": "0.23.2",
4
4
  "description": "ROS2.0 JavaScript client with Node.js",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -43,7 +43,11 @@ async function writeGeneratedCode(dir, fileName, code) {
43
43
  await fse.writeFile(path.join(dir, fileName), code);
44
44
  }
45
45
 
46
- async function generateServiceJSStruct(serviceInfo, dir) {
46
+ async function generateServiceJSStruct(
47
+ serviceInfo,
48
+ dir,
49
+ isActionService = true
50
+ ) {
47
51
  dir = path.join(dir, `${serviceInfo.pkgName}`);
48
52
  const fileName =
49
53
  serviceInfo.pkgName +
@@ -55,26 +59,67 @@ async function generateServiceJSStruct(serviceInfo, dir) {
55
59
  const generatedSrvCode = removeEmptyLines(
56
60
  dots.service({ serviceInfo: serviceInfo })
57
61
  );
58
- let result = writeGeneratedCode(dir, fileName, generatedSrvCode);
59
62
 
60
- if (DistroUtils.getDistroId() <= DistroUtils.getDistroId('humble')) {
61
- return result;
63
+ // We are going to only generate the service JavaScript file if it meets one
64
+ // of the followings:
65
+ // 1. It's a action's request/response service.
66
+ // 2. For pre-Humble ROS 2 releases, because it doesn't support service
67
+ // introspection.
68
+ if (
69
+ isActionService ||
70
+ DistroUtils.getDistroId() <= DistroUtils.getDistroId('humble')
71
+ ) {
72
+ return writeGeneratedCode(dir, fileName, generatedSrvCode);
62
73
  }
63
74
 
64
- // Otherwise, for post-Humble ROS 2 releases generate service_event msgs
65
- await result;
75
+ return writeGeneratedCode(dir, fileName, generatedSrvCode).then(() => {
76
+ return generateServiceEventMsg(serviceInfo, dir);
77
+ });
78
+ }
79
+
80
+ async function generateServiceEventMsg(serviceInfo, dir) {
81
+ const fileName = serviceInfo.interfaceName + '.msg';
82
+ const generatedEvent = removeEmptyLines(
83
+ dots.service_event({ serviceInfo: serviceInfo })
84
+ );
85
+
86
+ return writeGeneratedCode(dir, fileName, generatedEvent).then(() => {
87
+ serviceInfo.interfaceName += '_Event';
88
+ serviceInfo.filePath = path.join(dir, fileName);
89
+ return generateServiceEventJSStruct(serviceInfo, dir);
90
+ });
91
+ }
92
+
93
+ async function generateServiceEventJSStruct(msgInfo, dir) {
94
+ const spec = await parser.parseMessageFile(msgInfo.pkgName, msgInfo.filePath);
95
+
96
+ // Remove the `.msg` files generated in `generateServiceEventMsg()` to avoid
97
+ // being found later.
98
+ fse.removeSync(msgInfo.filePath);
66
99
  const eventFileName =
67
- serviceInfo.pkgName +
100
+ msgInfo.pkgName +
68
101
  '__' +
69
- serviceInfo.subFolder +
102
+ msgInfo.subFolder +
70
103
  '__' +
71
- serviceInfo.interfaceName +
72
- '_Event.js';
73
- const generatedSrvEventCode = removeEmptyLines(
74
- dots.service_event({ serviceInfo: serviceInfo })
104
+ msgInfo.interfaceName +
105
+ '.js';
106
+
107
+ // Set `msgInfo.isServiceEvent` to true, so when generating the JavaScript
108
+ // message files for the service event leveraging message.dot, it will use
109
+ // "__srv__" to require the JS files for the request/response of a specific
110
+ // service, e.g.,
111
+ // const AddTwoInts_RequestWrapper = require('../../generated/example_interfaces/example_interfaces__srv__AddTwoInts_Request.js');
112
+ // const AddTwoInts_ResponseWrapper = require('../../generated/example_interfaces/example_interfaces__srv__AddTwoInts_Response.js');
113
+ msgInfo.isServiceEvent = true;
114
+ const generatedCode = removeEmptyLines(
115
+ dots.message({
116
+ messageInfo: msgInfo,
117
+ spec: spec,
118
+ json: JSON.stringify(spec, null, ' '),
119
+ })
75
120
  );
76
121
 
77
- return writeGeneratedCode(dir, eventFileName, generatedSrvEventCode);
122
+ return writeGeneratedCode(dir, eventFileName, generatedCode);
78
123
  }
79
124
 
80
125
  async function generateMessageJSStruct(messageInfo, dir) {
@@ -258,15 +303,19 @@ async function generateActionJSStruct(actionInfo, dir) {
258
303
  }
259
304
 
260
305
  async function generateJSStructFromIDL(pkg, dir) {
261
- await Promise.all([
262
- ...pkg.messages.map((messageInfo) =>
263
- generateMessageJSStruct(messageInfo, dir)
264
- ),
265
- ...pkg.services.map((serviceInfo) =>
266
- generateServiceJSStruct(serviceInfo, dir)
267
- ),
268
- ...pkg.actions.map((actionInfo) => generateActionJSStruct(actionInfo, dir)),
269
- ]);
306
+ const results = [];
307
+ pkg.messages.forEach((messageInfo) => {
308
+ results.push(generateMessageJSStruct(messageInfo, dir));
309
+ });
310
+ pkg.services.forEach((serviceInfo) => {
311
+ results.push(
312
+ generateServiceJSStruct(serviceInfo, dir, /*isActionService=*/ false)
313
+ );
314
+ });
315
+ pkg.actions.forEach((actionInfo) => {
316
+ results.push(generateActionJSStruct(actionInfo, dir));
317
+ });
318
+ await Promise.all(results);
270
319
  }
271
320
 
272
321
  module.exports = generateJSStructFromIDL;
@@ -63,7 +63,8 @@ function grabInterfaceInfo(filePath, amentExecuted) {
63
63
  let pkgName = getPackageName(filePath, amentExecuted);
64
64
  let interfaceName = path.parse(filePath).name;
65
65
  let subFolder = getSubFolder(filePath, amentExecuted);
66
- return { pkgName, interfaceName, subFolder, filePath };
66
+ const isServiceEvent = false;
67
+ return { pkgName, interfaceName, subFolder, filePath, isServiceEvent };
67
68
  }
68
69
 
69
70
  function addInterfaceInfo(info, type, pkgMap) {
@@ -196,6 +196,10 @@ function getModulePathByType(type, messageInfo) {
196
196
  return type.pkgName + '__action__' + type.type + '.js';
197
197
  }
198
198
 
199
+ /* We should use '__msg__' to require "service_msgs/msg/ServiceEventInfo.msg" for service event message. */
200
+ if (messageInfo && messageInfo.isServiceEvent && (type.type !== 'ServiceEventInfo')) {
201
+ return type.pkgName + '__srv__' + type.type + '.js';
202
+ }
199
203
  return type.pkgName + '__msg__' + type.type + '.js';
200
204
  }
201
205
 
@@ -1,304 +1,10 @@
1
- // This file is automatically generated by Intel rclnodejs
2
- //
3
- // *** DO NOT EDIT directly
4
- //
5
- 'use strict';
1
+ # This file is automatically generated by rosidl_gen
2
+ #
3
+ # *** DO NOT EDIT directly
4
+ #
6
5
 
7
- {{
8
- const interfaceName = it.serviceInfo.interfaceName;
9
- const pkgName = it.serviceInfo.pkgName;
10
- const subFolder = it.serviceInfo.subFolder;
6
+ service_msgs/ServiceEventInfo info
11
7
 
12
- const baseName = it.serviceInfo.pkgName + '__' + it.serviceInfo.subFolder + '__' + it.serviceInfo.interfaceName;
13
- }}
14
-
15
- const ref = require('@rclnodejs/ref-napi');
16
- const StructType = require('@rclnodejs/ref-struct-di')(ref);
17
- const ArrayType = require('@rclnodejs/ref-array-di')(ref);
18
- const primitiveTypes = require('../../rosidl_gen/primitive_types.js');
19
- const deallocator = require('../../rosidl_gen/deallocator.js');
20
- const translator = require('../../rosidl_gen/message_translator.js');
21
- const ServiceEventInfoWrapper = require('../service_msgs/service_msgs__msg__ServiceEventInfo.js');
22
- const {{=interfaceName}}_RequestWrapper = require('./{{=pkgName}}__{{=subFolder}}__{{=interfaceName}}_Request.js');
23
- const {{=interfaceName}}_ResponseWrapper = require('./{{=pkgName}}__{{=subFolder}}__{{=interfaceName}}_Response.js');
24
- const {{=interfaceName}}_EventRefStruct = StructType({
25
- info: ServiceEventInfoWrapper.refObjectType,
26
- request: {{=interfaceName}}_RequestWrapper.refObjectArrayType,
27
- response: {{=interfaceName}}_ResponseWrapper.refObjectArrayType,
28
- });
29
- const {{=interfaceName}}_EventRefArray = ArrayType({{=interfaceName}}_EventRefStruct);
30
- const {{=interfaceName}}_EventRefStructArray = StructType({
31
- data: {{=interfaceName}}_EventRefArray,
32
- size: ref.types.size_t,
33
- capacity: ref.types.size_t
34
- });
35
- // Define the wrapper class.
36
- class {{=interfaceName}}_EventWrapper {
37
- constructor(other) {
38
- this._wrapperFields = {};
39
- if (typeof other === 'object' && other._refObject) {
40
- this._refObject = new {{=interfaceName}}_EventRefStruct(other._refObject.toObject());
41
- this._wrapperFields.info = new ServiceEventInfoWrapper(other._wrapperFields.info);
42
- this._wrapperFields.request = {{=interfaceName}}_RequestWrapper.createArray();
43
- this._wrapperFields.request.copy(other._wrapperFields.request);
44
- this._wrapperFields.response = {{=interfaceName}}_ResponseWrapper.createArray();
45
- this._wrapperFields.response.copy(other._wrapperFields.response);
46
- } else if (typeof other !== 'undefined') {
47
- this._initMembers();
48
- translator.constructFromPlanObject(this, other);
49
- } else {
50
- this._initMembers();
51
- }
52
- this.freeze();
53
- }
54
- _initMembers() {
55
- this._refObject = new {{=interfaceName}}_EventRefStruct();
56
- this._wrapperFields.info = new ServiceEventInfoWrapper();
57
- this._wrapperFields.request = {{=interfaceName}}_RequestWrapper.createArray();
58
- this._wrapperFields.response = {{=interfaceName}}_ResponseWrapper.createArray();
59
- }
60
- static createFromRefObject(refObject) {
61
- let self = new {{=interfaceName}}_EventWrapper();
62
- self.copyRefObject(refObject);
63
- return self;
64
- }
65
- static createArray() {
66
- return new {{=interfaceName}}_EventArrayWrapper;
67
- }
68
- static get ArrayType() {
69
- return {{=interfaceName}}_EventArrayWrapper;
70
- }
71
- static get refObjectArrayType() {
72
- return {{=interfaceName}}_EventRefStructArray
73
- }
74
- static get refObjectType() {
75
- return {{=interfaceName}}_EventRefStruct;
76
- }
77
- toRawROS() {
78
- this.freeze(true);
79
- return this._refObject.ref();
80
- }
81
- freeze(own = false, checkConsistency = false) {
82
- if (checkConsistency) {
83
- }
84
- this._wrapperFields.info.freeze(own, checkConsistency);
85
- this._refObject.info = this._wrapperFields.info.refObject;
86
- this._wrapperFields.request.freeze(own, checkConsistency);
87
- this._refObject.request = this._wrapperFields.request.refObject;
88
- this._wrapperFields.response.freeze(own, checkConsistency);
89
- this._refObject.response = this._wrapperFields.response.refObject;
90
- }
91
- serialize() {
92
- this.freeze(false, true);
93
- return this._refObject.ref();
94
- }
95
- deserialize(refObject) {
96
- this._wrapperFields.info.copyRefObject(refObject.info);
97
- this._wrapperFields.request.copyRefObject(refObject.request);
98
- this._wrapperFields.response.copyRefObject(refObject.response);
99
- }
100
- toPlainObject(enableTypedArray) {
101
- return translator.toPlainObject(this, enableTypedArray);
102
- }
103
- static freeStruct(refObject) {
104
- ServiceEventInfoWrapper.freeStruct(refObject.info);
105
- if (refObject.request.size != 0) {
106
- {{=interfaceName}}_RequestWrapper.ArrayType.freeArray(refObject.request);
107
- if ({{=interfaceName}}_RequestWrapper.ArrayType.useTypedArray) {
108
- // Do nothing, the v8 will take the ownership of the ArrayBuffer used by the typed array.
109
- } else {
110
- deallocator.freeStructMember(refObject.request, {{=interfaceName}}_RequestWrapper.refObjectArrayType, 'data');
111
- }
112
- }
113
- if (refObject.response.size != 0) {
114
- {{=interfaceName}}_ResponseWrapper.ArrayType.freeArray(refObject.response);
115
- if ({{=interfaceName}}_ResponseWrapper.ArrayType.useTypedArray) {
116
- // Do nothing, the v8 will take the ownership of the ArrayBuffer used by the typed array.
117
- } else {
118
- deallocator.freeStructMember(refObject.response, {{=interfaceName}}_ResponseWrapper.refObjectArrayType, 'data');
119
- }
120
- }
121
- }
122
- static destoryRawROS(msg) {
123
- {{=interfaceName}}_EventWrapper.freeStruct(msg.refObject);
124
- }
125
- static type() {
126
- return {pkgName: '{{=pkgName}}', subFolder: '{{=subFolder}}', interfaceName: '{{=interfaceName}}_Event'};
127
- }
128
- static isPrimitive() {
129
- return false;
130
- }
131
- static get isROSArray() {
132
- return false;
133
- }
134
- get refObject() {
135
- return this._refObject;
136
- }
137
- get info() {
138
- return this._wrapperFields.info;
139
- }
140
- set info(value) {
141
- if (value instanceof ServiceEventInfoWrapper) {
142
- this._wrapperFields.info.copy(value);
143
- } else {
144
- this._wrapperFields.info.copy(new ServiceEventInfoWrapper(value));
145
- }
146
- }
147
- get request() {
148
- return this._wrapperFields.request;
149
- }
150
- set request(value) {
151
- if (value.length > 1) {
152
- throw new RangeError('The length of array request must be <= 1.');
153
- }
154
- this._wrapperFields.request.fill(value);
155
- }
156
- get response() {
157
- return this._wrapperFields.response;
158
- }
159
- set response(value) {
160
- if (value.length > 1) {
161
- throw new RangeError('The length of array response must be <= 1.');
162
- }
163
- this._wrapperFields.response.fill(value);
164
- }
165
- copyRefObject(refObject) {
166
- this._refObject = new {{=interfaceName}}_EventRefStruct(refObject.toObject());
167
- this._wrapperFields.info.copyRefObject(this._refObject.info);
168
- this._wrapperFields.request.copyRefObject(this._refObject.request);
169
- this._wrapperFields.response.copyRefObject(this._refObject.response);
170
- }
171
- copy(other) {
172
- this._refObject = new {{=interfaceName}}_EventRefStruct(other._refObject.toObject());
173
- this._wrapperFields.info.copy(other._wrapperFields.info);
174
- this._wrapperFields.request.copy(other._wrapperFields.request);
175
- this._wrapperFields.response.copy(other._wrapperFields.response);
176
- }
177
- static get classType() {
178
- return {{=interfaceName}}_EventWrapper;
179
- }
180
- static get ROSMessageDef() {
181
- return {"constants":[],"fields":[{"name":"info","type":{"isArray":false,"arraySize":null,"isUpperBound":false,"isDynamicArray":false,"isFixedSizeArray":false,"pkgName":"service_msgs","type":"ServiceEventInfo","stringUpperBound":null,"isPrimitiveType":false},"default_value":null},{"name":"request","type":{"isArray":true,"arraySize":1,"isUpperBound":true,"isDynamicArray":true,"isFixedSizeArray":false,"pkgName":"{{=pkgName}}","type":"{{=interfaceName}}_Request","stringUpperBound":null,"isPrimitiveType":false},"default_value":null},{"name":"response","type":{"isArray":true,"arraySize":1,"isUpperBound":true,"isDynamicArray":true,"isFixedSizeArray":false,"pkgName":"{{=pkgName}}","type":"{{=interfaceName}}_Response","stringUpperBound":null,"isPrimitiveType":false},"default_value":null}],"baseType":{"pkgName":"{{=pkgName}}","type":"{{=interfaceName}}_Event","stringUpperBound":null,"isPrimitiveType":false},"msgName":"{{=interfaceName}}_Event"};
182
- }
183
- hasMember(name) {
184
- let memberNames = ["info","request","response"];
185
- return memberNames.indexOf(name) !== -1;
186
- }
187
- }
188
- // Define the wrapper of array class.
189
- class {{=interfaceName}}_EventArrayWrapper {
190
- constructor(size = 0) {
191
- this._resize(size);
192
- }
193
- toRawROS() {
194
- return this._refObject.ref();
195
- }
196
- fill(values) {
197
- const length = values.length;
198
- this._resize(length);
199
- values.forEach((value, index) => {
200
- if (value instanceof {{=interfaceName}}_EventWrapper) {
201
- this._wrappers[index].copy(value);
202
- } else {
203
- this._wrappers[index] = new {{=interfaceName}}_EventWrapper(value);
204
- }
205
- });
206
- }
207
- // Put all data currently stored in `this._wrappers` into `this._refObject`
208
- freeze(own) {
209
- this._wrappers.forEach((wrapper, index) => {
210
- wrapper.freeze(own);
211
- this._refArray[index] = wrapper.refObject;
212
- });
213
- this._refObject.size = this._wrappers.length;
214
- this._refObject.capacity = this._wrappers.length;
215
- if (this._refObject.capacity === 0) {
216
- this._refObject.data = null
217
- } else {
218
- this._refObject.data = this._refArray.buffer;
219
- }
220
- }
221
- get refObject() {
222
- return this._refObject;
223
- }
224
- get data() {
225
- return this._wrappers;
226
- }
227
- get size() {
228
- return this._wrappers.length;
229
- }
230
- set size(value) {
231
- if (typeof value != 'number') {
232
- throw new TypeError('Invalid argument: should provide a number to {{=interfaceName}}_EventArrayWrapper.size setter');
233
- return;
234
- }
235
- return this._resize(value);
236
- }
237
- get capacity() {
238
- return this._wrappers.length;
239
- }
240
- set capacity(value) {
241
- if (typeof value != 'number') {
242
- throw new TypeError('Invalid argument: should provide a number to {{=interfaceName}}_EventArrayWrapper.capacity setter');
243
- }
244
- return this._resize(value);
245
- }
246
- get refObject() {
247
- return this._refObject;
248
- }
249
- _resize(size) {
250
- if (size < 0) {
251
- throw new RangeError('Invalid argument: should provide a positive number');
252
- return;
253
- }
254
- this._refArray = new {{=interfaceName}}_EventRefArray(size);
255
- this._refObject = new {{=interfaceName}}_EventRefStructArray();
256
- this._refObject.size = size;
257
- this._refObject.capacity = size;
258
- this._wrappers = new Array();
259
- for (let i = 0; i < size; i++) {
260
- this._wrappers.push(new {{=interfaceName}}_EventWrapper());
261
- }
262
- }
263
- // Copy all data from `this._refObject` into `this._wrappers`
264
- copyRefObject(refObject) {
265
- this._refObject = refObject;
266
- let refObjectArray = this._refObject.data;
267
- refObjectArray.length = this._refObject.size;
268
- this._resize(this._refObject.size);
269
- for (let index = 0; index < this._refObject.size; index++) {
270
- this._wrappers[index].copyRefObject(refObjectArray[index]);
271
- }
272
- }
273
- copy(other) {
274
- if (! (other instanceof {{=interfaceName}}_EventArrayWrapper)) {
275
- throw new TypeError('Invalid argument: should provide "{{=interfaceName}}_EventArrayWrapper".');
276
- }
277
- this._resize(other.size);
278
- // Array deep copy
279
- other._wrappers.forEach((wrapper, index) => {
280
- this._wrappers[index].copy(wrapper);
281
- });
282
- }
283
- static freeArray(refObject) {
284
- let refObjectArray = refObject.data;
285
- refObjectArray.length = refObject.size;
286
- for (let index = 0; index < refObject.size; index++) {
287
- {{=interfaceName}}_EventWrapper.freeStruct(refObjectArray[index]);
288
- }
289
- }
290
- static get elementType() {
291
- return {{=interfaceName}}_EventWrapper;
292
- }
293
- static get isROSArray() {
294
- return true;
295
- }
296
- static get useTypedArray() {
297
- return false;
298
- }
299
- get classType() {
300
- return {{=interfaceName}}_EventArrayWrapper;
301
- }
302
- }
303
- module.exports = {{=interfaceName}}_EventWrapper;
8
+ {{=it.serviceInfo.pkgName}}/{{=it.serviceInfo.interfaceName}}_Request[<=1] request
304
9
 
10
+ {{=it.serviceInfo.pkgName}}/{{=it.serviceInfo.interfaceName}}_Response[<=1] response
@@ -91,14 +91,6 @@ declare module 'rclnodejs' {
91
91
  readonly Request: Fibonacci_GetResult_RequestConstructor;
92
92
  readonly Response: Fibonacci_GetResult_ResponseConstructor;
93
93
  }
94
- export interface Fibonacci_GetResult_Event {
95
- info: service_msgs.msg.ServiceEventInfo;
96
- request: action_tutorials_interfaces.action.Fibonacci_GetResult_Request[];
97
- response: action_tutorials_interfaces.action.Fibonacci_GetResult_Response[];
98
- }
99
- export interface Fibonacci_GetResult_EventConstructor {
100
- new(other?: Fibonacci_GetResult_Event): Fibonacci_GetResult_Event;
101
- }
102
94
  export interface Fibonacci_GetResult_Request {
103
95
  goal_id: unique_identifier_msgs.msg.UUID;
104
96
  }
@@ -128,14 +120,6 @@ declare module 'rclnodejs' {
128
120
  readonly Request: Fibonacci_SendGoal_RequestConstructor;
129
121
  readonly Response: Fibonacci_SendGoal_ResponseConstructor;
130
122
  }
131
- export interface Fibonacci_SendGoal_Event {
132
- info: service_msgs.msg.ServiceEventInfo;
133
- request: action_tutorials_interfaces.action.Fibonacci_SendGoal_Request[];
134
- response: action_tutorials_interfaces.action.Fibonacci_SendGoal_Response[];
135
- }
136
- export interface Fibonacci_SendGoal_EventConstructor {
137
- new(other?: Fibonacci_SendGoal_Event): Fibonacci_SendGoal_Event;
138
- }
139
123
  export interface Fibonacci_SendGoal_Request {
140
124
  goal_id: unique_identifier_msgs.msg.UUID;
141
125
  goal: action_tutorials_interfaces.action.Fibonacci_Goal;
@@ -406,14 +390,6 @@ declare module 'rclnodejs' {
406
390
  readonly Request: Fibonacci_GetResult_RequestConstructor;
407
391
  readonly Response: Fibonacci_GetResult_ResponseConstructor;
408
392
  }
409
- export interface Fibonacci_GetResult_Event {
410
- info: service_msgs.msg.ServiceEventInfo;
411
- request: example_interfaces.action.Fibonacci_GetResult_Request[];
412
- response: example_interfaces.action.Fibonacci_GetResult_Response[];
413
- }
414
- export interface Fibonacci_GetResult_EventConstructor {
415
- new(other?: Fibonacci_GetResult_Event): Fibonacci_GetResult_Event;
416
- }
417
393
  export interface Fibonacci_GetResult_Request {
418
394
  goal_id: unique_identifier_msgs.msg.UUID;
419
395
  }
@@ -443,14 +419,6 @@ declare module 'rclnodejs' {
443
419
  readonly Request: Fibonacci_SendGoal_RequestConstructor;
444
420
  readonly Response: Fibonacci_SendGoal_ResponseConstructor;
445
421
  }
446
- export interface Fibonacci_SendGoal_Event {
447
- info: service_msgs.msg.ServiceEventInfo;
448
- request: example_interfaces.action.Fibonacci_SendGoal_Request[];
449
- response: example_interfaces.action.Fibonacci_SendGoal_Response[];
450
- }
451
- export interface Fibonacci_SendGoal_EventConstructor {
452
- new(other?: Fibonacci_SendGoal_Event): Fibonacci_SendGoal_Event;
453
- }
454
422
  export interface Fibonacci_SendGoal_Request {
455
423
  goal_id: unique_identifier_msgs.msg.UUID;
456
424
  goal: example_interfaces.action.Fibonacci_Goal;
@@ -1926,14 +1894,6 @@ declare module 'rclnodejs' {
1926
1894
  readonly Request: ShortVariedMultiNested_GetResult_RequestConstructor;
1927
1895
  readonly Response: ShortVariedMultiNested_GetResult_ResponseConstructor;
1928
1896
  }
1929
- export interface ShortVariedMultiNested_GetResult_Event {
1930
- info: service_msgs.msg.ServiceEventInfo;
1931
- request: ros2cli_test_interfaces.action.ShortVariedMultiNested_GetResult_Request[];
1932
- response: ros2cli_test_interfaces.action.ShortVariedMultiNested_GetResult_Response[];
1933
- }
1934
- export interface ShortVariedMultiNested_GetResult_EventConstructor {
1935
- new(other?: ShortVariedMultiNested_GetResult_Event): ShortVariedMultiNested_GetResult_Event;
1936
- }
1937
1897
  export interface ShortVariedMultiNested_GetResult_Request {
1938
1898
  goal_id: unique_identifier_msgs.msg.UUID;
1939
1899
  }
@@ -1963,14 +1923,6 @@ declare module 'rclnodejs' {
1963
1923
  readonly Request: ShortVariedMultiNested_SendGoal_RequestConstructor;
1964
1924
  readonly Response: ShortVariedMultiNested_SendGoal_ResponseConstructor;
1965
1925
  }
1966
- export interface ShortVariedMultiNested_SendGoal_Event {
1967
- info: service_msgs.msg.ServiceEventInfo;
1968
- request: ros2cli_test_interfaces.action.ShortVariedMultiNested_SendGoal_Request[];
1969
- response: ros2cli_test_interfaces.action.ShortVariedMultiNested_SendGoal_Response[];
1970
- }
1971
- export interface ShortVariedMultiNested_SendGoal_EventConstructor {
1972
- new(other?: ShortVariedMultiNested_SendGoal_Event): ShortVariedMultiNested_SendGoal_Event;
1973
- }
1974
1926
  export interface ShortVariedMultiNested_SendGoal_Request {
1975
1927
  goal_id: unique_identifier_msgs.msg.UUID;
1976
1928
  goal: ros2cli_test_interfaces.action.ShortVariedMultiNested_Goal;
@@ -3140,14 +3092,6 @@ declare module 'rclnodejs' {
3140
3092
  readonly Request: Fibonacci_GetResult_RequestConstructor;
3141
3093
  readonly Response: Fibonacci_GetResult_ResponseConstructor;
3142
3094
  }
3143
- export interface Fibonacci_GetResult_Event {
3144
- info: service_msgs.msg.ServiceEventInfo;
3145
- request: test_msgs.action.Fibonacci_GetResult_Request[];
3146
- response: test_msgs.action.Fibonacci_GetResult_Response[];
3147
- }
3148
- export interface Fibonacci_GetResult_EventConstructor {
3149
- new(other?: Fibonacci_GetResult_Event): Fibonacci_GetResult_Event;
3150
- }
3151
3095
  export interface Fibonacci_GetResult_Request {
3152
3096
  goal_id: unique_identifier_msgs.msg.UUID;
3153
3097
  }
@@ -3177,14 +3121,6 @@ declare module 'rclnodejs' {
3177
3121
  readonly Request: Fibonacci_SendGoal_RequestConstructor;
3178
3122
  readonly Response: Fibonacci_SendGoal_ResponseConstructor;
3179
3123
  }
3180
- export interface Fibonacci_SendGoal_Event {
3181
- info: service_msgs.msg.ServiceEventInfo;
3182
- request: test_msgs.action.Fibonacci_SendGoal_Request[];
3183
- response: test_msgs.action.Fibonacci_SendGoal_Response[];
3184
- }
3185
- export interface Fibonacci_SendGoal_EventConstructor {
3186
- new(other?: Fibonacci_SendGoal_Event): Fibonacci_SendGoal_Event;
3187
- }
3188
3124
  export interface Fibonacci_SendGoal_Request {
3189
3125
  goal_id: unique_identifier_msgs.msg.UUID;
3190
3126
  goal: test_msgs.action.Fibonacci_Goal;
@@ -3223,14 +3159,6 @@ declare module 'rclnodejs' {
3223
3159
  readonly Request: NestedMessage_GetResult_RequestConstructor;
3224
3160
  readonly Response: NestedMessage_GetResult_ResponseConstructor;
3225
3161
  }
3226
- export interface NestedMessage_GetResult_Event {
3227
- info: service_msgs.msg.ServiceEventInfo;
3228
- request: test_msgs.action.NestedMessage_GetResult_Request[];
3229
- response: test_msgs.action.NestedMessage_GetResult_Response[];
3230
- }
3231
- export interface NestedMessage_GetResult_EventConstructor {
3232
- new(other?: NestedMessage_GetResult_Event): NestedMessage_GetResult_Event;
3233
- }
3234
3162
  export interface NestedMessage_GetResult_Request {
3235
3163
  goal_id: unique_identifier_msgs.msg.UUID;
3236
3164
  }
@@ -3264,14 +3192,6 @@ declare module 'rclnodejs' {
3264
3192
  readonly Request: NestedMessage_SendGoal_RequestConstructor;
3265
3193
  readonly Response: NestedMessage_SendGoal_ResponseConstructor;
3266
3194
  }
3267
- export interface NestedMessage_SendGoal_Event {
3268
- info: service_msgs.msg.ServiceEventInfo;
3269
- request: test_msgs.action.NestedMessage_SendGoal_Request[];
3270
- response: test_msgs.action.NestedMessage_SendGoal_Response[];
3271
- }
3272
- export interface NestedMessage_SendGoal_EventConstructor {
3273
- new(other?: NestedMessage_SendGoal_Event): NestedMessage_SendGoal_Event;
3274
- }
3275
3195
  export interface NestedMessage_SendGoal_Request {
3276
3196
  goal_id: unique_identifier_msgs.msg.UUID;
3277
3197
  goal: test_msgs.action.NestedMessage_Goal;
@@ -3734,14 +3654,6 @@ declare module 'rclnodejs' {
3734
3654
  readonly Request: LookupTransform_GetResult_RequestConstructor;
3735
3655
  readonly Response: LookupTransform_GetResult_ResponseConstructor;
3736
3656
  }
3737
- export interface LookupTransform_GetResult_Event {
3738
- info: service_msgs.msg.ServiceEventInfo;
3739
- request: tf2_msgs.action.LookupTransform_GetResult_Request[];
3740
- response: tf2_msgs.action.LookupTransform_GetResult_Response[];
3741
- }
3742
- export interface LookupTransform_GetResult_EventConstructor {
3743
- new(other?: LookupTransform_GetResult_Event): LookupTransform_GetResult_Event;
3744
- }
3745
3657
  export interface LookupTransform_GetResult_Request {
3746
3658
  goal_id: unique_identifier_msgs.msg.UUID;
3747
3659
  }
@@ -3778,14 +3690,6 @@ declare module 'rclnodejs' {
3778
3690
  readonly Request: LookupTransform_SendGoal_RequestConstructor;
3779
3691
  readonly Response: LookupTransform_SendGoal_ResponseConstructor;
3780
3692
  }
3781
- export interface LookupTransform_SendGoal_Event {
3782
- info: service_msgs.msg.ServiceEventInfo;
3783
- request: tf2_msgs.action.LookupTransform_SendGoal_Request[];
3784
- response: tf2_msgs.action.LookupTransform_SendGoal_Response[];
3785
- }
3786
- export interface LookupTransform_SendGoal_EventConstructor {
3787
- new(other?: LookupTransform_SendGoal_Event): LookupTransform_SendGoal_Event;
3788
- }
3789
3693
  export interface LookupTransform_SendGoal_Request {
3790
3694
  goal_id: unique_identifier_msgs.msg.UUID;
3791
3695
  goal: tf2_msgs.action.LookupTransform_Goal;
@@ -3914,14 +3818,6 @@ declare module 'rclnodejs' {
3914
3818
  readonly Request: RotateAbsolute_GetResult_RequestConstructor;
3915
3819
  readonly Response: RotateAbsolute_GetResult_ResponseConstructor;
3916
3820
  }
3917
- export interface RotateAbsolute_GetResult_Event {
3918
- info: service_msgs.msg.ServiceEventInfo;
3919
- request: turtlesim.action.RotateAbsolute_GetResult_Request[];
3920
- response: turtlesim.action.RotateAbsolute_GetResult_Response[];
3921
- }
3922
- export interface RotateAbsolute_GetResult_EventConstructor {
3923
- new(other?: RotateAbsolute_GetResult_Event): RotateAbsolute_GetResult_Event;
3924
- }
3925
3821
  export interface RotateAbsolute_GetResult_Request {
3926
3822
  goal_id: unique_identifier_msgs.msg.UUID;
3927
3823
  }
@@ -3951,14 +3847,6 @@ declare module 'rclnodejs' {
3951
3847
  readonly Request: RotateAbsolute_SendGoal_RequestConstructor;
3952
3848
  readonly Response: RotateAbsolute_SendGoal_ResponseConstructor;
3953
3849
  }
3954
- export interface RotateAbsolute_SendGoal_Event {
3955
- info: service_msgs.msg.ServiceEventInfo;
3956
- request: turtlesim.action.RotateAbsolute_SendGoal_Request[];
3957
- response: turtlesim.action.RotateAbsolute_SendGoal_Response[];
3958
- }
3959
- export interface RotateAbsolute_SendGoal_EventConstructor {
3960
- new(other?: RotateAbsolute_SendGoal_Event): RotateAbsolute_SendGoal_Event;
3961
- }
3962
3850
  export interface RotateAbsolute_SendGoal_Request {
3963
3851
  goal_id: unique_identifier_msgs.msg.UUID;
3964
3852
  goal: turtlesim.action.RotateAbsolute_Goal;
@@ -4533,12 +4421,10 @@ declare module 'rclnodejs' {
4533
4421
  'action_msgs/srv/CancelGoal_Response': action_msgs.srv.CancelGoal_Response,
4534
4422
  'action_tutorials_interfaces/action/Fibonacci_Feedback': action_tutorials_interfaces.action.Fibonacci_Feedback,
4535
4423
  'action_tutorials_interfaces/action/Fibonacci_FeedbackMessage': action_tutorials_interfaces.action.Fibonacci_FeedbackMessage,
4536
- 'action_tutorials_interfaces/action/Fibonacci_GetResult_Event': action_tutorials_interfaces.action.Fibonacci_GetResult_Event,
4537
4424
  'action_tutorials_interfaces/action/Fibonacci_GetResult_Request': action_tutorials_interfaces.action.Fibonacci_GetResult_Request,
4538
4425
  'action_tutorials_interfaces/action/Fibonacci_GetResult_Response': action_tutorials_interfaces.action.Fibonacci_GetResult_Response,
4539
4426
  'action_tutorials_interfaces/action/Fibonacci_Goal': action_tutorials_interfaces.action.Fibonacci_Goal,
4540
4427
  'action_tutorials_interfaces/action/Fibonacci_Result': action_tutorials_interfaces.action.Fibonacci_Result,
4541
- 'action_tutorials_interfaces/action/Fibonacci_SendGoal_Event': action_tutorials_interfaces.action.Fibonacci_SendGoal_Event,
4542
4428
  'action_tutorials_interfaces/action/Fibonacci_SendGoal_Request': action_tutorials_interfaces.action.Fibonacci_SendGoal_Request,
4543
4429
  'action_tutorials_interfaces/action/Fibonacci_SendGoal_Response': action_tutorials_interfaces.action.Fibonacci_SendGoal_Response,
4544
4430
  'actionlib_msgs/msg/GoalID': actionlib_msgs.msg.GoalID,
@@ -4566,12 +4452,10 @@ declare module 'rclnodejs' {
4566
4452
  'diagnostic_msgs/srv/SelfTest_Response': diagnostic_msgs.srv.SelfTest_Response,
4567
4453
  'example_interfaces/action/Fibonacci_Feedback': example_interfaces.action.Fibonacci_Feedback,
4568
4454
  'example_interfaces/action/Fibonacci_FeedbackMessage': example_interfaces.action.Fibonacci_FeedbackMessage,
4569
- 'example_interfaces/action/Fibonacci_GetResult_Event': example_interfaces.action.Fibonacci_GetResult_Event,
4570
4455
  'example_interfaces/action/Fibonacci_GetResult_Request': example_interfaces.action.Fibonacci_GetResult_Request,
4571
4456
  'example_interfaces/action/Fibonacci_GetResult_Response': example_interfaces.action.Fibonacci_GetResult_Response,
4572
4457
  'example_interfaces/action/Fibonacci_Goal': example_interfaces.action.Fibonacci_Goal,
4573
4458
  'example_interfaces/action/Fibonacci_Result': example_interfaces.action.Fibonacci_Result,
4574
- 'example_interfaces/action/Fibonacci_SendGoal_Event': example_interfaces.action.Fibonacci_SendGoal_Event,
4575
4459
  'example_interfaces/action/Fibonacci_SendGoal_Request': example_interfaces.action.Fibonacci_SendGoal_Request,
4576
4460
  'example_interfaces/action/Fibonacci_SendGoal_Response': example_interfaces.action.Fibonacci_SendGoal_Response,
4577
4461
  'example_interfaces/msg/Bool': example_interfaces.msg.Bool,
@@ -4744,12 +4628,10 @@ declare module 'rclnodejs' {
4744
4628
  'rmw_dds_common/msg/ParticipantEntitiesInfo': rmw_dds_common.msg.ParticipantEntitiesInfo,
4745
4629
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_Feedback': ros2cli_test_interfaces.action.ShortVariedMultiNested_Feedback,
4746
4630
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_FeedbackMessage': ros2cli_test_interfaces.action.ShortVariedMultiNested_FeedbackMessage,
4747
- 'ros2cli_test_interfaces/action/ShortVariedMultiNested_GetResult_Event': ros2cli_test_interfaces.action.ShortVariedMultiNested_GetResult_Event,
4748
4631
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_GetResult_Request': ros2cli_test_interfaces.action.ShortVariedMultiNested_GetResult_Request,
4749
4632
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_GetResult_Response': ros2cli_test_interfaces.action.ShortVariedMultiNested_GetResult_Response,
4750
4633
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_Goal': ros2cli_test_interfaces.action.ShortVariedMultiNested_Goal,
4751
4634
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_Result': ros2cli_test_interfaces.action.ShortVariedMultiNested_Result,
4752
- 'ros2cli_test_interfaces/action/ShortVariedMultiNested_SendGoal_Event': ros2cli_test_interfaces.action.ShortVariedMultiNested_SendGoal_Event,
4753
4635
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_SendGoal_Request': ros2cli_test_interfaces.action.ShortVariedMultiNested_SendGoal_Request,
4754
4636
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_SendGoal_Response': ros2cli_test_interfaces.action.ShortVariedMultiNested_SendGoal_Response,
4755
4637
  'ros2cli_test_interfaces/msg/ShortVaried': ros2cli_test_interfaces.msg.ShortVaried,
@@ -4880,22 +4762,18 @@ declare module 'rclnodejs' {
4880
4762
  'stereo_msgs/msg/DisparityImage': stereo_msgs.msg.DisparityImage,
4881
4763
  'test_msgs/action/Fibonacci_Feedback': test_msgs.action.Fibonacci_Feedback,
4882
4764
  'test_msgs/action/Fibonacci_FeedbackMessage': test_msgs.action.Fibonacci_FeedbackMessage,
4883
- 'test_msgs/action/Fibonacci_GetResult_Event': test_msgs.action.Fibonacci_GetResult_Event,
4884
4765
  'test_msgs/action/Fibonacci_GetResult_Request': test_msgs.action.Fibonacci_GetResult_Request,
4885
4766
  'test_msgs/action/Fibonacci_GetResult_Response': test_msgs.action.Fibonacci_GetResult_Response,
4886
4767
  'test_msgs/action/Fibonacci_Goal': test_msgs.action.Fibonacci_Goal,
4887
4768
  'test_msgs/action/Fibonacci_Result': test_msgs.action.Fibonacci_Result,
4888
- 'test_msgs/action/Fibonacci_SendGoal_Event': test_msgs.action.Fibonacci_SendGoal_Event,
4889
4769
  'test_msgs/action/Fibonacci_SendGoal_Request': test_msgs.action.Fibonacci_SendGoal_Request,
4890
4770
  'test_msgs/action/Fibonacci_SendGoal_Response': test_msgs.action.Fibonacci_SendGoal_Response,
4891
4771
  'test_msgs/action/NestedMessage_Feedback': test_msgs.action.NestedMessage_Feedback,
4892
4772
  'test_msgs/action/NestedMessage_FeedbackMessage': test_msgs.action.NestedMessage_FeedbackMessage,
4893
- 'test_msgs/action/NestedMessage_GetResult_Event': test_msgs.action.NestedMessage_GetResult_Event,
4894
4773
  'test_msgs/action/NestedMessage_GetResult_Request': test_msgs.action.NestedMessage_GetResult_Request,
4895
4774
  'test_msgs/action/NestedMessage_GetResult_Response': test_msgs.action.NestedMessage_GetResult_Response,
4896
4775
  'test_msgs/action/NestedMessage_Goal': test_msgs.action.NestedMessage_Goal,
4897
4776
  'test_msgs/action/NestedMessage_Result': test_msgs.action.NestedMessage_Result,
4898
- 'test_msgs/action/NestedMessage_SendGoal_Event': test_msgs.action.NestedMessage_SendGoal_Event,
4899
4777
  'test_msgs/action/NestedMessage_SendGoal_Request': test_msgs.action.NestedMessage_SendGoal_Request,
4900
4778
  'test_msgs/action/NestedMessage_SendGoal_Response': test_msgs.action.NestedMessage_SendGoal_Response,
4901
4779
  'test_msgs/msg/Arrays': test_msgs.msg.Arrays,
@@ -4922,12 +4800,10 @@ declare module 'rclnodejs' {
4922
4800
  'test_msgs/srv/Empty_Response': test_msgs.srv.Empty_Response,
4923
4801
  'tf2_msgs/action/LookupTransform_Feedback': tf2_msgs.action.LookupTransform_Feedback,
4924
4802
  'tf2_msgs/action/LookupTransform_FeedbackMessage': tf2_msgs.action.LookupTransform_FeedbackMessage,
4925
- 'tf2_msgs/action/LookupTransform_GetResult_Event': tf2_msgs.action.LookupTransform_GetResult_Event,
4926
4803
  'tf2_msgs/action/LookupTransform_GetResult_Request': tf2_msgs.action.LookupTransform_GetResult_Request,
4927
4804
  'tf2_msgs/action/LookupTransform_GetResult_Response': tf2_msgs.action.LookupTransform_GetResult_Response,
4928
4805
  'tf2_msgs/action/LookupTransform_Goal': tf2_msgs.action.LookupTransform_Goal,
4929
4806
  'tf2_msgs/action/LookupTransform_Result': tf2_msgs.action.LookupTransform_Result,
4930
- 'tf2_msgs/action/LookupTransform_SendGoal_Event': tf2_msgs.action.LookupTransform_SendGoal_Event,
4931
4807
  'tf2_msgs/action/LookupTransform_SendGoal_Request': tf2_msgs.action.LookupTransform_SendGoal_Request,
4932
4808
  'tf2_msgs/action/LookupTransform_SendGoal_Response': tf2_msgs.action.LookupTransform_SendGoal_Response,
4933
4809
  'tf2_msgs/msg/TF2Error': tf2_msgs.msg.TF2Error,
@@ -4941,12 +4817,10 @@ declare module 'rclnodejs' {
4941
4817
  'trajectory_msgs/msg/MultiDOFJointTrajectoryPoint': trajectory_msgs.msg.MultiDOFJointTrajectoryPoint,
4942
4818
  'turtlesim/action/RotateAbsolute_Feedback': turtlesim.action.RotateAbsolute_Feedback,
4943
4819
  'turtlesim/action/RotateAbsolute_FeedbackMessage': turtlesim.action.RotateAbsolute_FeedbackMessage,
4944
- 'turtlesim/action/RotateAbsolute_GetResult_Event': turtlesim.action.RotateAbsolute_GetResult_Event,
4945
4820
  'turtlesim/action/RotateAbsolute_GetResult_Request': turtlesim.action.RotateAbsolute_GetResult_Request,
4946
4821
  'turtlesim/action/RotateAbsolute_GetResult_Response': turtlesim.action.RotateAbsolute_GetResult_Response,
4947
4822
  'turtlesim/action/RotateAbsolute_Goal': turtlesim.action.RotateAbsolute_Goal,
4948
4823
  'turtlesim/action/RotateAbsolute_Result': turtlesim.action.RotateAbsolute_Result,
4949
- 'turtlesim/action/RotateAbsolute_SendGoal_Event': turtlesim.action.RotateAbsolute_SendGoal_Event,
4950
4824
  'turtlesim/action/RotateAbsolute_SendGoal_Request': turtlesim.action.RotateAbsolute_SendGoal_Request,
4951
4825
  'turtlesim/action/RotateAbsolute_SendGoal_Response': turtlesim.action.RotateAbsolute_SendGoal_Response,
4952
4826
  'turtlesim/msg/Color': turtlesim.msg.Color,
@@ -5006,12 +4880,10 @@ declare module 'rclnodejs' {
5006
4880
  'action_msgs/srv/CancelGoal_Response': action_msgs.srv.CancelGoal_ResponseConstructor,
5007
4881
  'action_tutorials_interfaces/action/Fibonacci_Feedback': action_tutorials_interfaces.action.Fibonacci_FeedbackConstructor,
5008
4882
  'action_tutorials_interfaces/action/Fibonacci_FeedbackMessage': action_tutorials_interfaces.action.Fibonacci_FeedbackMessageConstructor,
5009
- 'action_tutorials_interfaces/action/Fibonacci_GetResult_Event': action_tutorials_interfaces.action.Fibonacci_GetResult_EventConstructor,
5010
4883
  'action_tutorials_interfaces/action/Fibonacci_GetResult_Request': action_tutorials_interfaces.action.Fibonacci_GetResult_RequestConstructor,
5011
4884
  'action_tutorials_interfaces/action/Fibonacci_GetResult_Response': action_tutorials_interfaces.action.Fibonacci_GetResult_ResponseConstructor,
5012
4885
  'action_tutorials_interfaces/action/Fibonacci_Goal': action_tutorials_interfaces.action.Fibonacci_GoalConstructor,
5013
4886
  'action_tutorials_interfaces/action/Fibonacci_Result': action_tutorials_interfaces.action.Fibonacci_ResultConstructor,
5014
- 'action_tutorials_interfaces/action/Fibonacci_SendGoal_Event': action_tutorials_interfaces.action.Fibonacci_SendGoal_EventConstructor,
5015
4887
  'action_tutorials_interfaces/action/Fibonacci_SendGoal_Request': action_tutorials_interfaces.action.Fibonacci_SendGoal_RequestConstructor,
5016
4888
  'action_tutorials_interfaces/action/Fibonacci_SendGoal_Response': action_tutorials_interfaces.action.Fibonacci_SendGoal_ResponseConstructor,
5017
4889
  'actionlib_msgs/msg/GoalID': actionlib_msgs.msg.GoalIDConstructor,
@@ -5039,12 +4911,10 @@ declare module 'rclnodejs' {
5039
4911
  'diagnostic_msgs/srv/SelfTest_Response': diagnostic_msgs.srv.SelfTest_ResponseConstructor,
5040
4912
  'example_interfaces/action/Fibonacci_Feedback': example_interfaces.action.Fibonacci_FeedbackConstructor,
5041
4913
  'example_interfaces/action/Fibonacci_FeedbackMessage': example_interfaces.action.Fibonacci_FeedbackMessageConstructor,
5042
- 'example_interfaces/action/Fibonacci_GetResult_Event': example_interfaces.action.Fibonacci_GetResult_EventConstructor,
5043
4914
  'example_interfaces/action/Fibonacci_GetResult_Request': example_interfaces.action.Fibonacci_GetResult_RequestConstructor,
5044
4915
  'example_interfaces/action/Fibonacci_GetResult_Response': example_interfaces.action.Fibonacci_GetResult_ResponseConstructor,
5045
4916
  'example_interfaces/action/Fibonacci_Goal': example_interfaces.action.Fibonacci_GoalConstructor,
5046
4917
  'example_interfaces/action/Fibonacci_Result': example_interfaces.action.Fibonacci_ResultConstructor,
5047
- 'example_interfaces/action/Fibonacci_SendGoal_Event': example_interfaces.action.Fibonacci_SendGoal_EventConstructor,
5048
4918
  'example_interfaces/action/Fibonacci_SendGoal_Request': example_interfaces.action.Fibonacci_SendGoal_RequestConstructor,
5049
4919
  'example_interfaces/action/Fibonacci_SendGoal_Response': example_interfaces.action.Fibonacci_SendGoal_ResponseConstructor,
5050
4920
  'example_interfaces/msg/Bool': example_interfaces.msg.BoolConstructor,
@@ -5217,12 +5087,10 @@ declare module 'rclnodejs' {
5217
5087
  'rmw_dds_common/msg/ParticipantEntitiesInfo': rmw_dds_common.msg.ParticipantEntitiesInfoConstructor,
5218
5088
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_Feedback': ros2cli_test_interfaces.action.ShortVariedMultiNested_FeedbackConstructor,
5219
5089
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_FeedbackMessage': ros2cli_test_interfaces.action.ShortVariedMultiNested_FeedbackMessageConstructor,
5220
- 'ros2cli_test_interfaces/action/ShortVariedMultiNested_GetResult_Event': ros2cli_test_interfaces.action.ShortVariedMultiNested_GetResult_EventConstructor,
5221
5090
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_GetResult_Request': ros2cli_test_interfaces.action.ShortVariedMultiNested_GetResult_RequestConstructor,
5222
5091
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_GetResult_Response': ros2cli_test_interfaces.action.ShortVariedMultiNested_GetResult_ResponseConstructor,
5223
5092
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_Goal': ros2cli_test_interfaces.action.ShortVariedMultiNested_GoalConstructor,
5224
5093
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_Result': ros2cli_test_interfaces.action.ShortVariedMultiNested_ResultConstructor,
5225
- 'ros2cli_test_interfaces/action/ShortVariedMultiNested_SendGoal_Event': ros2cli_test_interfaces.action.ShortVariedMultiNested_SendGoal_EventConstructor,
5226
5094
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_SendGoal_Request': ros2cli_test_interfaces.action.ShortVariedMultiNested_SendGoal_RequestConstructor,
5227
5095
  'ros2cli_test_interfaces/action/ShortVariedMultiNested_SendGoal_Response': ros2cli_test_interfaces.action.ShortVariedMultiNested_SendGoal_ResponseConstructor,
5228
5096
  'ros2cli_test_interfaces/msg/ShortVaried': ros2cli_test_interfaces.msg.ShortVariedConstructor,
@@ -5353,22 +5221,18 @@ declare module 'rclnodejs' {
5353
5221
  'stereo_msgs/msg/DisparityImage': stereo_msgs.msg.DisparityImageConstructor,
5354
5222
  'test_msgs/action/Fibonacci_Feedback': test_msgs.action.Fibonacci_FeedbackConstructor,
5355
5223
  'test_msgs/action/Fibonacci_FeedbackMessage': test_msgs.action.Fibonacci_FeedbackMessageConstructor,
5356
- 'test_msgs/action/Fibonacci_GetResult_Event': test_msgs.action.Fibonacci_GetResult_EventConstructor,
5357
5224
  'test_msgs/action/Fibonacci_GetResult_Request': test_msgs.action.Fibonacci_GetResult_RequestConstructor,
5358
5225
  'test_msgs/action/Fibonacci_GetResult_Response': test_msgs.action.Fibonacci_GetResult_ResponseConstructor,
5359
5226
  'test_msgs/action/Fibonacci_Goal': test_msgs.action.Fibonacci_GoalConstructor,
5360
5227
  'test_msgs/action/Fibonacci_Result': test_msgs.action.Fibonacci_ResultConstructor,
5361
- 'test_msgs/action/Fibonacci_SendGoal_Event': test_msgs.action.Fibonacci_SendGoal_EventConstructor,
5362
5228
  'test_msgs/action/Fibonacci_SendGoal_Request': test_msgs.action.Fibonacci_SendGoal_RequestConstructor,
5363
5229
  'test_msgs/action/Fibonacci_SendGoal_Response': test_msgs.action.Fibonacci_SendGoal_ResponseConstructor,
5364
5230
  'test_msgs/action/NestedMessage_Feedback': test_msgs.action.NestedMessage_FeedbackConstructor,
5365
5231
  'test_msgs/action/NestedMessage_FeedbackMessage': test_msgs.action.NestedMessage_FeedbackMessageConstructor,
5366
- 'test_msgs/action/NestedMessage_GetResult_Event': test_msgs.action.NestedMessage_GetResult_EventConstructor,
5367
5232
  'test_msgs/action/NestedMessage_GetResult_Request': test_msgs.action.NestedMessage_GetResult_RequestConstructor,
5368
5233
  'test_msgs/action/NestedMessage_GetResult_Response': test_msgs.action.NestedMessage_GetResult_ResponseConstructor,
5369
5234
  'test_msgs/action/NestedMessage_Goal': test_msgs.action.NestedMessage_GoalConstructor,
5370
5235
  'test_msgs/action/NestedMessage_Result': test_msgs.action.NestedMessage_ResultConstructor,
5371
- 'test_msgs/action/NestedMessage_SendGoal_Event': test_msgs.action.NestedMessage_SendGoal_EventConstructor,
5372
5236
  'test_msgs/action/NestedMessage_SendGoal_Request': test_msgs.action.NestedMessage_SendGoal_RequestConstructor,
5373
5237
  'test_msgs/action/NestedMessage_SendGoal_Response': test_msgs.action.NestedMessage_SendGoal_ResponseConstructor,
5374
5238
  'test_msgs/msg/Arrays': test_msgs.msg.ArraysConstructor,
@@ -5395,12 +5259,10 @@ declare module 'rclnodejs' {
5395
5259
  'test_msgs/srv/Empty_Response': test_msgs.srv.Empty_ResponseConstructor,
5396
5260
  'tf2_msgs/action/LookupTransform_Feedback': tf2_msgs.action.LookupTransform_FeedbackConstructor,
5397
5261
  'tf2_msgs/action/LookupTransform_FeedbackMessage': tf2_msgs.action.LookupTransform_FeedbackMessageConstructor,
5398
- 'tf2_msgs/action/LookupTransform_GetResult_Event': tf2_msgs.action.LookupTransform_GetResult_EventConstructor,
5399
5262
  'tf2_msgs/action/LookupTransform_GetResult_Request': tf2_msgs.action.LookupTransform_GetResult_RequestConstructor,
5400
5263
  'tf2_msgs/action/LookupTransform_GetResult_Response': tf2_msgs.action.LookupTransform_GetResult_ResponseConstructor,
5401
5264
  'tf2_msgs/action/LookupTransform_Goal': tf2_msgs.action.LookupTransform_GoalConstructor,
5402
5265
  'tf2_msgs/action/LookupTransform_Result': tf2_msgs.action.LookupTransform_ResultConstructor,
5403
- 'tf2_msgs/action/LookupTransform_SendGoal_Event': tf2_msgs.action.LookupTransform_SendGoal_EventConstructor,
5404
5266
  'tf2_msgs/action/LookupTransform_SendGoal_Request': tf2_msgs.action.LookupTransform_SendGoal_RequestConstructor,
5405
5267
  'tf2_msgs/action/LookupTransform_SendGoal_Response': tf2_msgs.action.LookupTransform_SendGoal_ResponseConstructor,
5406
5268
  'tf2_msgs/msg/TF2Error': tf2_msgs.msg.TF2ErrorConstructor,
@@ -5414,12 +5276,10 @@ declare module 'rclnodejs' {
5414
5276
  'trajectory_msgs/msg/MultiDOFJointTrajectoryPoint': trajectory_msgs.msg.MultiDOFJointTrajectoryPointConstructor,
5415
5277
  'turtlesim/action/RotateAbsolute_Feedback': turtlesim.action.RotateAbsolute_FeedbackConstructor,
5416
5278
  'turtlesim/action/RotateAbsolute_FeedbackMessage': turtlesim.action.RotateAbsolute_FeedbackMessageConstructor,
5417
- 'turtlesim/action/RotateAbsolute_GetResult_Event': turtlesim.action.RotateAbsolute_GetResult_EventConstructor,
5418
5279
  'turtlesim/action/RotateAbsolute_GetResult_Request': turtlesim.action.RotateAbsolute_GetResult_RequestConstructor,
5419
5280
  'turtlesim/action/RotateAbsolute_GetResult_Response': turtlesim.action.RotateAbsolute_GetResult_ResponseConstructor,
5420
5281
  'turtlesim/action/RotateAbsolute_Goal': turtlesim.action.RotateAbsolute_GoalConstructor,
5421
5282
  'turtlesim/action/RotateAbsolute_Result': turtlesim.action.RotateAbsolute_ResultConstructor,
5422
- 'turtlesim/action/RotateAbsolute_SendGoal_Event': turtlesim.action.RotateAbsolute_SendGoal_EventConstructor,
5423
5283
  'turtlesim/action/RotateAbsolute_SendGoal_Request': turtlesim.action.RotateAbsolute_SendGoal_RequestConstructor,
5424
5284
  'turtlesim/action/RotateAbsolute_SendGoal_Response': turtlesim.action.RotateAbsolute_SendGoal_ResponseConstructor,
5425
5285
  'turtlesim/msg/Color': turtlesim.msg.ColorConstructor,