@olane/o-node 0.7.12-alpha.46 → 0.7.12-alpha.47

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.
@@ -1 +1 @@
1
- {"version":3,"file":"o-node.router.d.ts","sourceRoot":"","sources":["../../../src/router/o-node.router.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAML,cAAc,EAGd,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAO5C,qBAAa,WAAY,SAAQ,WAAW;IAC1C,OAAO,CAAC,aAAa,CAAqB;;IAO1C;;;;;;;;OAQG;cACa,OAAO,CACrB,OAAO,EAAE,YAAY,EACrB,OAAO,EAAE,cAAc,EACvB,IAAI,EAAE,KAAK,GACV,OAAO,CAAC,GAAG,CAAC;IA6Bf;;;OAGG;YACW,kBAAkB;IA8DhC;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAS5B;;OAEG;IACH,OAAO,CAAC,wBAAwB;IAWhC;;OAEG;YACW,eAAe;IA4C7B;;;OAGG;IACG,SAAS,CAAC,OAAO,EAAE,YAAY,EAAE,IAAI,EAAE,KAAK,GAAG,OAAO,CAAC,aAAa,CAAC;IAyB3E;;;OAGG;IACH,UAAU,CAAC,qBAAqB,EAAE,YAAY,EAAE,IAAI,EAAE,KAAK,GAAG,OAAO;CAGtE"}
1
+ {"version":3,"file":"o-node.router.d.ts","sourceRoot":"","sources":["../../../src/router/o-node.router.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAML,cAAc,EAGd,aAAa,EACd,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAM5C,qBAAa,WAAY,SAAQ,WAAW;IAC1C,OAAO,CAAC,aAAa,CAAqB;;IAO1C;;;;;;;;OAQG;cACa,OAAO,CACrB,OAAO,EAAE,YAAY,EACrB,OAAO,EAAE,cAAc,EACvB,IAAI,EAAE,KAAK,GACV,OAAO,CAAC,GAAG,CAAC;IA6Bf;;;OAGG;YACW,kBAAkB;IA8DhC;;OAEG;IACH,OAAO,CAAC,oBAAoB;IAS5B;;OAEG;IACH,OAAO,CAAC,wBAAwB;IAWhC;;OAEG;YACW,eAAe;IAsC7B;;;OAGG;IACG,SAAS,CAAC,OAAO,EAAE,YAAY,EAAE,IAAI,EAAE,KAAK,GAAG,OAAO,CAAC,aAAa,CAAC;IAyB3E;;;OAGG;IACH,UAAU,CAAC,qBAAqB,EAAE,YAAY,EAAE,IAAI,EAAE,KAAK,GAAG,OAAO;CAGtE"}
@@ -1,6 +1,5 @@
1
1
  import { CoreUtils, oAddress, oError, oErrorCodes, oRequest, ResponseBuilder, } from '@olane/o-core';
2
2
  import { oToolRouter } from '@olane/o-tool';
3
- import { oNodeConnection } from '../connection/o-node-connection.js';
4
3
  import { oNodeRoutingPolicy } from './o-node.routing-policy.js';
5
4
  import { oStreamRequest } from '../connection/o-stream.request.js';
6
5
  export class oNodeRouter extends oToolRouter {
@@ -121,14 +120,11 @@ export class oNodeRouter extends oToolRouter {
121
120
  try {
122
121
  const isStream = request.params._isStreaming ||
123
122
  request.params.payload?.params?._isStreaming;
124
- const connection = await node.p2pNode.dial(address.libp2pTransports.map((t) => t.toMultiaddr()));
125
- const nodeConnection = new oNodeConnection({
126
- p2pConnection: connection,
123
+ const nodeConnection = await node.connectionManager.connect({
127
124
  nextHopAddress: address,
128
125
  address: node.address,
129
126
  callerAddress: node.address,
130
127
  isStream: isStream,
131
- runOnLimitedConnection: node.config.runOnLimitedConnection ?? false,
132
128
  });
133
129
  if (isStream) {
134
130
  const routeRequest = request;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olane/o-node",
3
- "version": "0.7.12-alpha.46",
3
+ "version": "0.7.12-alpha.47",
4
4
  "type": "module",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -54,12 +54,12 @@
54
54
  "typescript": "5.4.5"
55
55
  },
56
56
  "dependencies": {
57
- "@olane/o-config": "0.7.12-alpha.46",
58
- "@olane/o-core": "0.7.12-alpha.46",
59
- "@olane/o-protocol": "0.7.12-alpha.46",
60
- "@olane/o-tool": "0.7.12-alpha.46",
57
+ "@olane/o-config": "0.7.12-alpha.47",
58
+ "@olane/o-core": "0.7.12-alpha.47",
59
+ "@olane/o-protocol": "0.7.12-alpha.47",
60
+ "@olane/o-tool": "0.7.12-alpha.47",
61
61
  "debug": "^4.4.1",
62
62
  "dotenv": "^16.5.0"
63
63
  },
64
- "gitHead": "75befd7803688203534c54e72d1201afe27c3483"
64
+ "gitHead": "b0491a53b49af7c0a9b9687ace98613f4e7f44d1"
65
65
  }