rclnodejs 0.32.2 → 0.32.3

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/README.md CHANGED
@@ -45,7 +45,7 @@ npm i rclnodejs@x.y.z
45
45
 
46
46
  | RCLNODEJS Version | Compatible ROS 2 LTS |
47
47
  | :------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------: |
48
- | latest version (currently [v0.32.2](https://github.com/RobotWebTools/rclnodejs/tree/0.32.2)) | [Humble](https://github.com/RobotWebTools/rclnodejs/tree/humble-hawksbill)<br>[Jazzy](https://github.com/RobotWebTools/rclnodejs/tree/jazzy) |
48
+ | latest version (currently [v0.32.3](https://github.com/RobotWebTools/rclnodejs/tree/0.32.3)) | [Humble](https://github.com/RobotWebTools/rclnodejs/tree/humble-hawksbill)<br>[Jazzy](https://github.com/RobotWebTools/rclnodejs/tree/jazzy) |
49
49
 
50
50
  ## Documentation
51
51
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rclnodejs",
3
- "version": "0.32.2",
3
+ "version": "0.32.3",
4
4
  "description": "ROS2.0 JavaScript client with Node.js",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -65,8 +65,7 @@
65
65
  "sinon": "^19.0.2",
66
66
  "tree-kill": "^1.2.2",
67
67
  "tsd": "^0.31.2",
68
- "typescript": "^5.7.2",
69
- "uuid": "^11.0.3"
68
+ "typescript": "^5.7.2"
70
69
  },
71
70
  "dependencies": {
72
71
  "@rclnodejs/ref-array-di": "^1.2.2",
@@ -82,6 +81,7 @@
82
81
  "nan": "^2.22.0",
83
82
  "prettier": "^3.4.2",
84
83
  "rimraf": "^6.0.1",
84
+ "uuid": "^11.0.3",
85
85
  "walk": "^2.3.15"
86
86
  },
87
87
  "husky": {
@@ -45,7 +45,7 @@ npm i rclnodejs@x.y.z
45
45
 
46
46
  | RCLNODEJS Version | Compatible ROS 2 LTS |
47
47
  | :------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------: |
48
- | latest version (currently [v0.32.2](https://github.com/RobotWebTools/rclnodejs/tree/0.32.2)) | [Humble](https://github.com/RobotWebTools/rclnodejs/tree/humble-hawksbill)<br>[Jazzy](https://github.com/RobotWebTools/rclnodejs/tree/jazzy) |
48
+ | latest version (currently [v0.32.3](https://github.com/RobotWebTools/rclnodejs/tree/0.32.3)) | [Humble](https://github.com/RobotWebTools/rclnodejs/tree/humble-hawksbill)<br>[Jazzy](https://github.com/RobotWebTools/rclnodejs/tree/jazzy) |
49
49
 
50
50
  ## Documentation
51
51
 
package/tsconfig.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "compilerOptions": {
3
+ "module": "commonjs",
4
+ "moduleResolution": "node",
5
+ "target": "es6",
6
+ /* Strict Type-Checking Options */
7
+ "strict": true,
8
+ /* Additional Checks */
9
+ /* next line commented out because we need unused vars for type tests */
10
+ // "noUnusedLocals": true,
11
+ "noUnusedParameters": true,
12
+ "noImplicitReturns": true,
13
+ "noFallthroughCasesInSwitch": true,
14
+ "lib": ["es2017"]
15
+ },
16
+ "include": [
17
+ "types/**/*"
18
+ ]
19
+ }
package/types/base.d.ts CHANGED
@@ -1,27 +1,27 @@
1
- /// <reference types="./action_client.d.ts" />
2
- /// <reference types="./action_server.d.ts" />
3
- /// <reference types="./action_uuid.d.ts" />
4
- /// <reference types="./client.d.ts" />
5
- /// <reference types="./clock_type.d.ts" />
6
- /// <reference types="./clock.d.ts" />
7
- /// <reference types="./context.d.ts" />
8
- /// <reference types="./distro.d.ts" />
9
- /// <reference types="./duration.d.ts" />
10
- /// <reference types="./entity.d.ts" />
11
- /// <reference types="./guard_condition.d.ts" />
12
- /// <reference types="./interfaces.d.ts" />
13
- /// <reference types="./lifecycle.d.ts" />
14
- /// <reference types="./lifecycle_publisher.d.ts" />
15
- /// <reference types="./logging.d.ts" />
16
- /// <reference types="./node.d.ts" />
17
- /// <reference types="./node_options.d.ts" />
18
- /// <reference types="./parameter.d.ts" />
19
- /// <reference types="./publisher.d.ts" />
20
- /// <reference types="./qos.d.ts" />
21
- /// <reference types="./rate.d.ts" />
22
- /// <reference types="./service.d.ts" />
23
- /// <reference types="./service_introspection.d.ts" />
24
- /// <reference types="./subscription.d.ts" />
25
- /// <reference types="./time_source.d.ts" />
26
- /// <reference types="./time.d.ts" />
27
- /// <reference types="./timer.d.ts" />
1
+ /// <reference path="./action_client.d.ts" />
2
+ /// <reference path="./action_server.d.ts" />
3
+ /// <reference path="./action_uuid.d.ts" />
4
+ /// <reference path="./client.d.ts" />
5
+ /// <reference path="./clock_type.d.ts" />
6
+ /// <reference path="./clock.d.ts" />
7
+ /// <reference path="./context.d.ts" />
8
+ /// <reference path="./distro.d.ts" />
9
+ /// <reference path="./duration.d.ts" />
10
+ /// <reference path="./entity.d.ts" />
11
+ /// <reference path="./guard_condition.d.ts" />
12
+ /// <reference path="./interfaces.d.ts" />
13
+ /// <reference path="./lifecycle.d.ts" />
14
+ /// <reference path="./lifecycle_publisher.d.ts" />
15
+ /// <reference path="./logging.d.ts" />
16
+ /// <reference path="./node.d.ts" />
17
+ /// <reference path="./node_options.d.ts" />
18
+ /// <reference path="./parameter.d.ts" />
19
+ /// <reference path="./publisher.d.ts" />
20
+ /// <reference path="./qos.d.ts" />
21
+ /// <reference path="./rate.d.ts" />
22
+ /// <reference path="./service.d.ts" />
23
+ /// <reference path="./service_introspection.d.ts" />
24
+ /// <reference path="./subscription.d.ts" />
25
+ /// <reference path="./time_source.d.ts" />
26
+ /// <reference path="./time.d.ts" />
27
+ /// <reference path="./timer.d.ts" />
package/types/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- /// <reference types="./base.d.ts" />
1
+ /// <reference path="./base.d.ts" />
2
2
 
3
3
  declare module 'rclnodejs' {
4
4
  /**