@olane/o-node 0.7.52 → 0.7.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/src/o-node.tool.js
CHANGED
|
@@ -74,7 +74,7 @@ export class oNodeTool extends oTool(oServerNode) {
|
|
|
74
74
|
currentNode: this,
|
|
75
75
|
connection: connection,
|
|
76
76
|
});
|
|
77
|
-
this.connectionManager.answer({
|
|
77
|
+
await this.connectionManager.answer({
|
|
78
78
|
nextHopAddress: remoteAddress,
|
|
79
79
|
address: remoteAddress,
|
|
80
80
|
callerAddress: this.address,
|
|
@@ -21,7 +21,7 @@ describe('Parent-Child Registration', () => {
|
|
|
21
21
|
await builder.startNode('o://child');
|
|
22
22
|
// Verify child is in parent's hierarchy manager
|
|
23
23
|
const children = leader.getChildren();
|
|
24
|
-
console.log('
|
|
24
|
+
console.log('Children', children);
|
|
25
25
|
expect(children).to.have.lengthOf(1);
|
|
26
26
|
expect(children[0].toString()).to.include('child');
|
|
27
27
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@olane/o-node",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.53",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@eslint/eslintrc": "^3.3.1",
|
|
42
42
|
"@eslint/js": "^9.29.0",
|
|
43
|
-
"@olane/o-test": "0.7.
|
|
43
|
+
"@olane/o-test": "0.7.53",
|
|
44
44
|
"@tsconfig/node20": "^20.1.6",
|
|
45
45
|
"@types/jest": "^30.0.0",
|
|
46
46
|
"@types/json5": "^2.2.0",
|
|
@@ -60,13 +60,13 @@
|
|
|
60
60
|
"typescript": "5.4.5"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@olane/o-config": "0.7.
|
|
64
|
-
"@olane/o-core": "0.7.
|
|
65
|
-
"@olane/o-protocol": "0.7.
|
|
66
|
-
"@olane/o-tool": "0.7.
|
|
63
|
+
"@olane/o-config": "0.7.53",
|
|
64
|
+
"@olane/o-core": "0.7.53",
|
|
65
|
+
"@olane/o-protocol": "0.7.53",
|
|
66
|
+
"@olane/o-tool": "0.7.53",
|
|
67
67
|
"debug": "^4.4.1",
|
|
68
68
|
"dotenv": "^16.5.0",
|
|
69
69
|
"json5": "^2.2.3"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "cc41cbe72abffd5f2720aec92516aafea50ee9c3"
|
|
72
72
|
}
|