@gethashd/bytecave-browser 1.0.32 → 1.0.33

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.
@@ -6877,7 +6877,9 @@ Nonce: ${nonce}`;
6877
6877
  blobCount: announcement.blobCount,
6878
6878
  timestamp: announcement.timestamp,
6879
6879
  multiaddrs: announcement.multiaddrs,
6880
- relayAddrs: announcement.relayAddrs || existing?.relayAddrs
6880
+ relayAddrs: announcement.relayAddrs || existing?.relayAddrs,
6881
+ isRegistered: announcement.isRegistered,
6882
+ onChainNodeId: announcement.onChainNodeId
6881
6883
  };
6882
6884
  this.knownPeers.set(announcement.peerId, peerInfo);
6883
6885
  this.emit("peerAnnounce", peerInfo);
package/dist/index.cjs CHANGED
@@ -6930,7 +6930,9 @@ Nonce: ${nonce}`;
6930
6930
  blobCount: announcement.blobCount,
6931
6931
  timestamp: announcement.timestamp,
6932
6932
  multiaddrs: announcement.multiaddrs,
6933
- relayAddrs: announcement.relayAddrs || existing?.relayAddrs
6933
+ relayAddrs: announcement.relayAddrs || existing?.relayAddrs,
6934
+ isRegistered: announcement.isRegistered,
6935
+ onChainNodeId: announcement.onChainNodeId
6934
6936
  };
6935
6937
  this.knownPeers.set(announcement.peerId, peerInfo);
6936
6938
  this.emit("peerAnnounce", peerInfo);
package/dist/index.js CHANGED
@@ -13,7 +13,7 @@ import {
13
13
  useHashdImage,
14
14
  useHashdMedia,
15
15
  useHashdUrl
16
- } from "./chunk-KFAG3W6R.js";
16
+ } from "./chunk-BLV4I3O6.js";
17
17
  import {
18
18
  clearHashdCache,
19
19
  createHashdUrl,
@@ -8,7 +8,7 @@ import {
8
8
  useHashdImage,
9
9
  useHashdMedia,
10
10
  useHashdUrl
11
- } from "../chunk-KFAG3W6R.js";
11
+ } from "../chunk-BLV4I3O6.js";
12
12
  import "../chunk-EEZWRIUI.js";
13
13
  export {
14
14
  HashdAudio,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gethashd/bytecave-browser",
3
- "version": "1.0.32",
3
+ "version": "1.0.33",
4
4
  "description": "ByteCave browser client for WebRTC P2P connections to storage nodes",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
package/src/client.ts CHANGED
@@ -917,7 +917,9 @@ Nonce: ${nonce}`;
917
917
  blobCount: announcement.blobCount,
918
918
  timestamp: announcement.timestamp,
919
919
  multiaddrs: announcement.multiaddrs,
920
- relayAddrs: announcement.relayAddrs || (existing as any)?.relayAddrs
920
+ relayAddrs: announcement.relayAddrs || (existing as any)?.relayAddrs,
921
+ isRegistered: announcement.isRegistered,
922
+ onChainNodeId: announcement.onChainNodeId
921
923
  };
922
924
 
923
925
  this.knownPeers.set(announcement.peerId, peerInfo);