@libp2p/interface-internal 2.3.19-da78fa851 → 2.3.19-f0afebfdf
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/registrar.d.ts +0 -13
- package/dist/src/registrar.d.ts.map +1 -1
- package/package.json +3 -3
- package/src/registrar.ts +0 -17
package/dist/src/registrar.d.ts
CHANGED
|
@@ -1,17 +1,4 @@
|
|
|
1
1
|
import type { StreamHandler, StreamHandlerOptions, StreamHandlerRecord, Topology, StreamMiddleware, AbortOptions } from '@libp2p/interface';
|
|
2
|
-
export type {
|
|
3
|
-
/**
|
|
4
|
-
* @deprecated This type should be imported from @libp2p/interface directly
|
|
5
|
-
*/
|
|
6
|
-
StreamHandler,
|
|
7
|
-
/**
|
|
8
|
-
* @deprecated This type should be imported from @libp2p/interface directly
|
|
9
|
-
*/
|
|
10
|
-
StreamHandlerOptions,
|
|
11
|
-
/**
|
|
12
|
-
* @deprecated This type should be imported from @libp2p/interface directly
|
|
13
|
-
*/
|
|
14
|
-
StreamHandlerRecord };
|
|
15
2
|
/**
|
|
16
3
|
* The `Registrar` provides an interface for registering protocol handlers -
|
|
17
4
|
* these are invoked when remote peers open streams on the local node with the
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"registrar.d.ts","sourceRoot":"","sources":["../../src/registrar.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,QAAQ,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAA;AAE3I
|
|
1
|
+
{"version":3,"file":"registrar.d.ts","sourceRoot":"","sources":["../../src/registrar.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,QAAQ,EAAE,gBAAgB,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAA;AAE3I;;;;;;;;;;;GAWG;AACH,MAAM,WAAW,SAAS;IACxB;;;;OAIG;IACH,YAAY,IAAI,MAAM,EAAE,CAAA;IAExB;;;;;;;OAOG;IACH,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,EAAE,aAAa,EAAE,OAAO,CAAC,EAAE,oBAAoB,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IAE/F;;;;;OAKG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IAEjE;;;;;OAKG;IACH,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,mBAAmB,CAAA;IAEjD;;;;;OAKG;IACH,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,UAAU,EAAE,gBAAgB,EAAE,GAAG,IAAI,CAAA;IAE3D;;;;;OAKG;IACH,KAAK,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;IAE7B;;;;;OAKG;IACH,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,gBAAgB,EAAE,CAAA;IAEnD;;;;;;;;;;;OAWG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAE,YAAY,GAAG,OAAO,CAAC,MAAM,CAAC,CAAA;IAEvF;;;;OAIG;IACH,UAAU,CAAC,EAAE,EAAE,MAAM,GAAG,IAAI,CAAA;IAE5B;;;;;;OAMG;IACH,aAAa,CAAC,QAAQ,EAAE,MAAM,GAAG,QAAQ,EAAE,CAAA;CAC5C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/interface-internal",
|
|
3
|
-
"version": "2.3.19-
|
|
3
|
+
"version": "2.3.19-f0afebfdf",
|
|
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",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"build": "aegir build"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@libp2p/interface": "2.11.0-
|
|
45
|
-
"@libp2p/peer-collections": "6.0.35-
|
|
44
|
+
"@libp2p/interface": "2.11.0-f0afebfdf",
|
|
45
|
+
"@libp2p/peer-collections": "6.0.35-f0afebfdf",
|
|
46
46
|
"@multiformats/multiaddr": "^13.0.1",
|
|
47
47
|
"progress-events": "^1.0.1"
|
|
48
48
|
},
|
package/src/registrar.ts
CHANGED
|
@@ -1,22 +1,5 @@
|
|
|
1
1
|
import type { StreamHandler, StreamHandlerOptions, StreamHandlerRecord, Topology, StreamMiddleware, AbortOptions } from '@libp2p/interface'
|
|
2
2
|
|
|
3
|
-
export type {
|
|
4
|
-
/**
|
|
5
|
-
* @deprecated This type should be imported from @libp2p/interface directly
|
|
6
|
-
*/
|
|
7
|
-
StreamHandler,
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* @deprecated This type should be imported from @libp2p/interface directly
|
|
11
|
-
*/
|
|
12
|
-
StreamHandlerOptions,
|
|
13
|
-
|
|
14
|
-
/**
|
|
15
|
-
* @deprecated This type should be imported from @libp2p/interface directly
|
|
16
|
-
*/
|
|
17
|
-
StreamHandlerRecord
|
|
18
|
-
}
|
|
19
|
-
|
|
20
3
|
/**
|
|
21
4
|
* The `Registrar` provides an interface for registering protocol handlers -
|
|
22
5
|
* these are invoked when remote peers open streams on the local node with the
|