@libp2p/interface-internal 1.0.8 → 1.0.9-f71bc49bd
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
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# @libp2p/interface-internal
|
|
2
|
+
|
|
1
3
|
[](http://libp2p.io/)
|
|
2
4
|
[](https://discuss.libp2p.io)
|
|
3
5
|
[](https://codecov.io/gh/libp2p/js-libp2p)
|
|
@@ -20,7 +20,7 @@ export interface ConnectionManager {
|
|
|
20
20
|
*
|
|
21
21
|
* @example
|
|
22
22
|
*
|
|
23
|
-
* ```
|
|
23
|
+
* ```TypeScript
|
|
24
24
|
* const connections = libp2p.connectionManager.get(peerId)
|
|
25
25
|
* // []
|
|
26
26
|
* ```
|
|
@@ -31,7 +31,7 @@ export interface ConnectionManager {
|
|
|
31
31
|
*
|
|
32
32
|
* @example
|
|
33
33
|
*
|
|
34
|
-
* ```
|
|
34
|
+
* ```TypeScript
|
|
35
35
|
* const connectionsMap = libp2p.connectionManager.getConnectionsMap()
|
|
36
36
|
* ```
|
|
37
37
|
*/
|
|
@@ -41,7 +41,7 @@ export interface ConnectionManager {
|
|
|
41
41
|
*
|
|
42
42
|
* @example
|
|
43
43
|
*
|
|
44
|
-
* ```
|
|
44
|
+
* ```TypeScript
|
|
45
45
|
* const connection = await libp2p.connectionManager.openConnection(peerId)
|
|
46
46
|
* ```
|
|
47
47
|
*/
|
|
@@ -66,7 +66,7 @@ export interface ConnectionManager {
|
|
|
66
66
|
*
|
|
67
67
|
* @example
|
|
68
68
|
*
|
|
69
|
-
* ```
|
|
69
|
+
* ```TypeScript
|
|
70
70
|
* const dials = libp2p.connectionManager.getDialQueue()
|
|
71
71
|
* ```
|
|
72
72
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/interface-internal",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9-f71bc49bd",
|
|
4
4
|
"description": "Interfaces implemented by internal libp2p components",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/interface-internal#readme",
|
|
@@ -44,16 +44,17 @@
|
|
|
44
44
|
"clean": "aegir clean",
|
|
45
45
|
"lint": "aegir lint",
|
|
46
46
|
"dep-check": "aegir dep-check",
|
|
47
|
+
"doc-check": "aegir doc-check",
|
|
47
48
|
"build": "aegir build"
|
|
48
49
|
},
|
|
49
50
|
"dependencies": {
|
|
50
|
-
"@libp2p/interface": "
|
|
51
|
-
"@libp2p/peer-collections": "
|
|
51
|
+
"@libp2p/interface": "1.1.4-f71bc49bd",
|
|
52
|
+
"@libp2p/peer-collections": "5.1.7-f71bc49bd",
|
|
52
53
|
"@multiformats/multiaddr": "^12.1.14",
|
|
53
54
|
"uint8arraylist": "^2.4.8"
|
|
54
55
|
},
|
|
55
56
|
"devDependencies": {
|
|
56
|
-
"aegir": "^42.2.
|
|
57
|
+
"aegir": "^42.2.4"
|
|
57
58
|
},
|
|
58
59
|
"sideEffects": false
|
|
59
60
|
}
|
|
@@ -23,7 +23,7 @@ export interface ConnectionManager {
|
|
|
23
23
|
*
|
|
24
24
|
* @example
|
|
25
25
|
*
|
|
26
|
-
* ```
|
|
26
|
+
* ```TypeScript
|
|
27
27
|
* const connections = libp2p.connectionManager.get(peerId)
|
|
28
28
|
* // []
|
|
29
29
|
* ```
|
|
@@ -35,7 +35,7 @@ export interface ConnectionManager {
|
|
|
35
35
|
*
|
|
36
36
|
* @example
|
|
37
37
|
*
|
|
38
|
-
* ```
|
|
38
|
+
* ```TypeScript
|
|
39
39
|
* const connectionsMap = libp2p.connectionManager.getConnectionsMap()
|
|
40
40
|
* ```
|
|
41
41
|
*/
|
|
@@ -46,7 +46,7 @@ export interface ConnectionManager {
|
|
|
46
46
|
*
|
|
47
47
|
* @example
|
|
48
48
|
*
|
|
49
|
-
* ```
|
|
49
|
+
* ```TypeScript
|
|
50
50
|
* const connection = await libp2p.connectionManager.openConnection(peerId)
|
|
51
51
|
* ```
|
|
52
52
|
*/
|
|
@@ -75,7 +75,7 @@ export interface ConnectionManager {
|
|
|
75
75
|
*
|
|
76
76
|
* @example
|
|
77
77
|
*
|
|
78
|
-
* ```
|
|
78
|
+
* ```TypeScript
|
|
79
79
|
* const dials = libp2p.connectionManager.getDialQueue()
|
|
80
80
|
* ```
|
|
81
81
|
*/
|
package/dist/typedoc-urls.json
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"AddressManager": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_interface_internal.AddressManager.html",
|
|
3
|
-
"ConnectionManager": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_interface_internal.ConnectionManager.html",
|
|
4
|
-
"Envelope": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_interface_internal.Envelope.html",
|
|
5
|
-
"IncomingStreamData": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_interface_internal.IncomingStreamData.html",
|
|
6
|
-
"OpenConnectionOptions": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_interface_internal.OpenConnectionOptions.html",
|
|
7
|
-
"Record": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_interface_internal.Record.html",
|
|
8
|
-
"Registrar": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_interface_internal.Registrar.html",
|
|
9
|
-
"StreamHandler": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_interface_internal.StreamHandler.html",
|
|
10
|
-
"StreamHandlerOptions": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_interface_internal.StreamHandlerOptions.html",
|
|
11
|
-
"StreamHandlerRecord": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_interface_internal.StreamHandlerRecord.html",
|
|
12
|
-
"TransportManager": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_interface_internal.TransportManager.html"
|
|
13
|
-
}
|