@olane/o-tool 0.4.3 → 0.4.4
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/client.tool.d.ts +10 -0
- package/dist/src/client.tool.d.ts.map +1 -0
- package/dist/src/client.tool.js +7 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +1 -0
- package/dist/src/nodes/client.node.d.ts +2 -3
- package/dist/src/nodes/client.node.d.ts.map +1 -1
- package/dist/src/nodes/client.node.js +2 -2
- package/package.json +4 -4
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { oToolConfig } from './interfaces/tool.interface.js';
|
|
2
|
+
import { oAddress } from '@olane/o-core';
|
|
3
|
+
declare const oClientTool_base: any;
|
|
4
|
+
export declare class oClientTool extends oClientTool_base {
|
|
5
|
+
constructor(config: oToolConfig & {
|
|
6
|
+
address: oAddress;
|
|
7
|
+
});
|
|
8
|
+
}
|
|
9
|
+
export {};
|
|
10
|
+
//# sourceMappingURL=client.tool.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.tool.d.ts","sourceRoot":"","sources":["../../src/client.tool.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;gCAGe,GAAG;AAA3D,qBAAa,WAAY,SAAQ,gBAA2B;gBAC9C,MAAM,EAAE,WAAW,GAAG;QAAE,OAAO,EAAE,QAAQ,CAAA;KAAE;CAGxD"}
|
package/dist/src/index.d.ts
CHANGED
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sCAAsC,CAAC;AACrD,cAAc,sCAAsC,CAAC;AACrD,cAAc,oCAAoC,CAAC;AACnD,cAAc,uCAAuC,CAAC;AACtD,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,sCAAsC,CAAC;AACrD,cAAc,sCAAsC,CAAC;AACrD,cAAc,oCAAoC,CAAC;AACnD,cAAc,uCAAuC,CAAC;AACtD,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC"}
|
package/dist/src/index.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { CoreConfig } from '@olane/o-core';
|
|
2
|
-
|
|
3
|
-
export declare class oClientNode extends oVirtualTool {
|
|
1
|
+
import { CoreConfig, oVirtualNode } from '@olane/o-core';
|
|
2
|
+
export declare class oClientNode extends oVirtualNode {
|
|
4
3
|
constructor(config: CoreConfig);
|
|
5
4
|
configureTransports(): any[];
|
|
6
5
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.node.d.ts","sourceRoot":"","sources":["../../../src/nodes/client.node.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"client.node.d.ts","sourceRoot":"","sources":["../../../src/nodes/client.node.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAEzD,qBAAa,WAAY,SAAQ,YAAY;gBAC/B,MAAM,EAAE,UAAU;IAU9B,mBAAmB,IAAI,GAAG,EAAE;CAG7B"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defaultLibp2pConfig } from '@olane/o-config';
|
|
2
|
-
import {
|
|
3
|
-
export class oClientNode extends
|
|
2
|
+
import { oVirtualNode } from '@olane/o-core';
|
|
3
|
+
export class oClientNode extends oVirtualNode {
|
|
4
4
|
constructor(config) {
|
|
5
5
|
super({
|
|
6
6
|
...config,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@olane/o-tool",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"typescript": "^5.8.3"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@olane/o-config": "^0.4.
|
|
57
|
-
"@olane/o-core": "^0.4.
|
|
58
|
-
"@olane/o-protocol": "^0.4.
|
|
56
|
+
"@olane/o-config": "^0.4.4",
|
|
57
|
+
"@olane/o-core": "^0.4.4",
|
|
58
|
+
"@olane/o-protocol": "^0.4.4"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"debug": "^4.4.1",
|