helia 5.2.1-d602bb2 → 5.2.1-e6339ed
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/index.min.js +47 -42
- package/dist/src/index.d.ts +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/package.json +6 -6
- package/src/index.ts +1 -1
- package/src/version.ts +1 -1
package/dist/src/index.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export interface DAGWalker {
|
|
|
43
43
|
export interface HeliaInit<T extends Libp2p = Libp2p> extends HeliaClassInit {
|
|
44
44
|
/**
|
|
45
45
|
* A libp2p node is required to perform network operations. Either a
|
|
46
|
-
*
|
|
46
|
+
* pre-configured node or options to configure a node can be passed
|
|
47
47
|
* here.
|
|
48
48
|
*
|
|
49
49
|
* If node options are passed, they will be merged with the default
|
package/dist/src/version.d.ts
CHANGED
package/dist/src/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "helia",
|
|
3
|
-
"version": "5.2.1-
|
|
3
|
+
"version": "5.2.1-e6339ed",
|
|
4
4
|
"description": "An implementation of IPFS in JavaScript",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/ipfs/helia/tree/main/packages/helia#readme",
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@chainsafe/libp2p-noise": "^16.0.1",
|
|
59
59
|
"@chainsafe/libp2p-yamux": "^7.0.1",
|
|
60
|
-
"@helia/block-brokers": "4.0.4-
|
|
60
|
+
"@helia/block-brokers": "4.0.4-e6339ed",
|
|
61
61
|
"@helia/delegated-routing-v1-http-api-client": "^4.2.1",
|
|
62
|
-
"@helia/interface": "5.2.0-
|
|
63
|
-
"@helia/routers": "3.0.0-
|
|
64
|
-
"@helia/utils": "1.2.1-
|
|
62
|
+
"@helia/interface": "5.2.0-e6339ed",
|
|
63
|
+
"@helia/routers": "3.0.0-e6339ed",
|
|
64
|
+
"@helia/utils": "1.2.1-e6339ed",
|
|
65
65
|
"@ipshipyard/libp2p-auto-tls": "^1.0.0",
|
|
66
66
|
"@libp2p/autonat": "^2.0.19",
|
|
67
67
|
"@libp2p/bootstrap": "^11.0.20",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"devDependencies": {
|
|
93
93
|
"@multiformats/mafmt": "^12.1.6",
|
|
94
94
|
"@multiformats/multiaddr": "^12.3.3",
|
|
95
|
-
"aegir": "^45.
|
|
95
|
+
"aegir": "^45.1.1",
|
|
96
96
|
"it-all": "^3.0.6",
|
|
97
97
|
"it-drain": "^3.0.7"
|
|
98
98
|
},
|
package/src/index.ts
CHANGED
|
@@ -56,7 +56,7 @@ export interface DAGWalker {
|
|
|
56
56
|
export interface HeliaInit<T extends Libp2p = Libp2p> extends HeliaClassInit {
|
|
57
57
|
/**
|
|
58
58
|
* A libp2p node is required to perform network operations. Either a
|
|
59
|
-
*
|
|
59
|
+
* pre-configured node or options to configure a node can be passed
|
|
60
60
|
* here.
|
|
61
61
|
*
|
|
62
62
|
* If node options are passed, they will be merged with the default
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '5.2.1-
|
|
1
|
+
export const version = '5.2.1-e6339ed'
|
|
2
2
|
export const name = 'helia'
|