A full analysis of the Bitswap API was made to bring it in line with Kubo's RPC API.
[Breaking]
GetAsync and UnwantAsync were removed from IBitswapApi. These were not part of Kubo's API, but were intended for custom implementations. To migrate, derive IBitswapApi and add your custom functionality in your library.
The return type for IBlockApi.GetAsync was changed from IDataBlock to byte[], since IDataBlock was removed in 0.2.0. Kubo's RPC API (including the JS implementation) simply returns the buffer, and so are we now.
ILinkedNode was removed as it was not used anywhere in the broader net-ipfs codebase and seems to have been placed there years ago for future plans that were never carried out.
A full analysis of the Bitswap API was made to bring it in line with Kubo's RPC API.
[Breaking]
Fixes a few issues with https://github.com/ipfs-shipyard/net-ipfs-core/pull/29 and enables https://github.com/ipfs-shipyard/net-ipfs-http-client/pull/34 to proceed.