@helia/interface 0.0.0-f9ff5de → 1.0.0
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/typedoc-urls.json +22 -0
- package/package.json +89 -3
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AddOptions": "https://ipfs.github.io/helia/interfaces/_helia_interface._internal_.AddOptions.html",
|
|
3
|
+
"Blocks": "https://ipfs.github.io/helia/interfaces/_helia_interface._internal_.Blocks.html",
|
|
4
|
+
"IsPinnedOptions": "https://ipfs.github.io/helia/interfaces/_helia_interface._internal_.IsPinnedOptions.html",
|
|
5
|
+
"LsOptions": "https://ipfs.github.io/helia/interfaces/_helia_interface._internal_.LsOptions.html",
|
|
6
|
+
"Pin": "https://ipfs.github.io/helia/interfaces/_helia_interface._internal_.Pin.html",
|
|
7
|
+
"Pins": "https://ipfs.github.io/helia/interfaces/_helia_interface._internal_.Pins.html",
|
|
8
|
+
"RmOptions": "https://ipfs.github.io/helia/interfaces/_helia_interface._internal_.RmOptions.html",
|
|
9
|
+
"AddPinEvents": "https://ipfs.github.io/helia/types/_helia_interface._internal_.AddPinEvents.html",
|
|
10
|
+
"DeleteBlockProgressEvents": "https://ipfs.github.io/helia/types/_helia_interface._internal_.DeleteBlockProgressEvents.html",
|
|
11
|
+
"DeleteManyBlocksProgressEvents": "https://ipfs.github.io/helia/types/_helia_interface._internal_.DeleteManyBlocksProgressEvents.html",
|
|
12
|
+
"GetAllBlocksProgressEvents": "https://ipfs.github.io/helia/types/_helia_interface._internal_.GetAllBlocksProgressEvents.html",
|
|
13
|
+
"GetBlockProgressEvents": "https://ipfs.github.io/helia/types/_helia_interface._internal_.GetBlockProgressEvents.html",
|
|
14
|
+
"GetManyBlocksProgressEvents": "https://ipfs.github.io/helia/types/_helia_interface._internal_.GetManyBlocksProgressEvents.html",
|
|
15
|
+
"HasBlockProgressEvents": "https://ipfs.github.io/helia/types/_helia_interface._internal_.HasBlockProgressEvents.html",
|
|
16
|
+
"PutBlockProgressEvents": "https://ipfs.github.io/helia/types/_helia_interface._internal_.PutBlockProgressEvents.html",
|
|
17
|
+
"PutManyBlocksProgressEvents": "https://ipfs.github.io/helia/types/_helia_interface._internal_.PutManyBlocksProgressEvents.html",
|
|
18
|
+
"GCOptions": "https://ipfs.github.io/helia/interfaces/_helia_interface.GCOptions.html",
|
|
19
|
+
"Helia": "https://ipfs.github.io/helia/interfaces/_helia_interface.Helia.html",
|
|
20
|
+
"InfoOptions": "https://ipfs.github.io/helia/interfaces/_helia_interface.InfoOptions.html",
|
|
21
|
+
"GcEvents": "https://ipfs.github.io/helia/types/_helia_interface.GcEvents.html"
|
|
22
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helia/interface",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "The Helia API",
|
|
5
5
|
"license": "Apache-2.0 OR MIT",
|
|
6
6
|
"homepage": "https://github.com/ipfs/helia/tree/master/packages/interface#readme",
|
|
@@ -62,11 +62,97 @@
|
|
|
62
62
|
"sourceType": "module"
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
|
+
"release": {
|
|
66
|
+
"branches": [
|
|
67
|
+
"main"
|
|
68
|
+
],
|
|
69
|
+
"plugins": [
|
|
70
|
+
[
|
|
71
|
+
"@semantic-release/commit-analyzer",
|
|
72
|
+
{
|
|
73
|
+
"preset": "conventionalcommits",
|
|
74
|
+
"releaseRules": [
|
|
75
|
+
{
|
|
76
|
+
"breaking": true,
|
|
77
|
+
"release": "major"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"revert": true,
|
|
81
|
+
"release": "patch"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"type": "feat",
|
|
85
|
+
"release": "minor"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"type": "fix",
|
|
89
|
+
"release": "patch"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"type": "docs",
|
|
93
|
+
"release": "patch"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"type": "test",
|
|
97
|
+
"release": "patch"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"type": "deps",
|
|
101
|
+
"release": "patch"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"scope": "no-release",
|
|
105
|
+
"release": false
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
[
|
|
111
|
+
"@semantic-release/release-notes-generator",
|
|
112
|
+
{
|
|
113
|
+
"preset": "conventionalcommits",
|
|
114
|
+
"presetConfig": {
|
|
115
|
+
"types": [
|
|
116
|
+
{
|
|
117
|
+
"type": "feat",
|
|
118
|
+
"section": "Features"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"type": "fix",
|
|
122
|
+
"section": "Bug Fixes"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"type": "chore",
|
|
126
|
+
"section": "Trivial Changes"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"type": "docs",
|
|
130
|
+
"section": "Documentation"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"type": "deps",
|
|
134
|
+
"section": "Dependencies"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"type": "test",
|
|
138
|
+
"section": "Tests"
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"@semantic-release/changelog",
|
|
145
|
+
"@semantic-release/npm",
|
|
146
|
+
"@semantic-release/github",
|
|
147
|
+
"@semantic-release/git"
|
|
148
|
+
]
|
|
149
|
+
},
|
|
65
150
|
"scripts": {
|
|
66
151
|
"clean": "aegir clean",
|
|
67
152
|
"lint": "aegir lint",
|
|
68
153
|
"dep-check": "aegir dep-check",
|
|
69
|
-
"build": "aegir build"
|
|
154
|
+
"build": "aegir build",
|
|
155
|
+
"release": "aegir release"
|
|
70
156
|
},
|
|
71
157
|
"dependencies": {
|
|
72
158
|
"@libp2p/interface-libp2p": "^1.1.0",
|
|
@@ -74,7 +160,7 @@
|
|
|
74
160
|
"@libp2p/interfaces": "^3.3.1",
|
|
75
161
|
"interface-blockstore": "^5.0.0",
|
|
76
162
|
"interface-datastore": "^8.0.0",
|
|
77
|
-
"interface-store": "^
|
|
163
|
+
"interface-store": "^5.0.1",
|
|
78
164
|
"ipfs-bitswap": "^17.0.0",
|
|
79
165
|
"multiformats": "^11.0.1",
|
|
80
166
|
"progress-events": "^1.0.0"
|