@libp2p/peer-record 6.0.11-738dd40f1 → 6.0.11-7861ed882

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.
@@ -11,7 +11,7 @@
11
11
  *
12
12
  * You can read further about the envelope in [libp2p/specs#217](https://github.com/libp2p/specs/pull/217).
13
13
  *
14
- * @example Creating a peer record
14
+ * @example
15
15
  *
16
16
  * Create an envelope with an instance of an [interface-record](https://github.com/libp2p/js-libp2p/blob/main/packages/interface/src/record/index.ts) implementation and prepare it for being exchanged:
17
17
  *
@@ -42,7 +42,7 @@
42
42
  * const wireData = e.marshal()
43
43
  * ```
44
44
  *
45
- * @example Consuming a peer record
45
+ * @example
46
46
  *
47
47
  * Consume a received envelope (`wireData`) and transform it back to a record:
48
48
  *
package/dist/src/index.js CHANGED
@@ -11,7 +11,7 @@
11
11
  *
12
12
  * You can read further about the envelope in [libp2p/specs#217](https://github.com/libp2p/specs/pull/217).
13
13
  *
14
- * @example Creating a peer record
14
+ * @example
15
15
  *
16
16
  * Create an envelope with an instance of an [interface-record](https://github.com/libp2p/js-libp2p/blob/main/packages/interface/src/record/index.ts) implementation and prepare it for being exchanged:
17
17
  *
@@ -42,7 +42,7 @@
42
42
  * const wireData = e.marshal()
43
43
  * ```
44
44
  *
45
- * @example Consuming a peer record
45
+ * @example
46
46
  *
47
47
  * Consume a received envelope (`wireData`) and transform it back to a record:
48
48
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/peer-record",
3
- "version": "6.0.11-738dd40f1",
3
+ "version": "6.0.11-7861ed882",
4
4
  "description": "Used to transfer signed peer data across the network",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/peer-record#readme",
@@ -60,10 +60,10 @@
60
60
  "test:electron-main": "aegir test -t electron-main"
61
61
  },
62
62
  "dependencies": {
63
- "@libp2p/crypto": "3.0.1-738dd40f1",
64
- "@libp2p/interface": "1.0.1-738dd40f1",
65
- "@libp2p/peer-id": "4.0.1-738dd40f1",
66
- "@libp2p/utils": "5.0.1-738dd40f1",
63
+ "@libp2p/crypto": "3.0.1-7861ed882",
64
+ "@libp2p/interface": "1.0.1-7861ed882",
65
+ "@libp2p/peer-id": "4.0.1-7861ed882",
66
+ "@libp2p/utils": "5.0.1-7861ed882",
67
67
  "@multiformats/multiaddr": "^12.1.10",
68
68
  "protons-runtime": "^5.0.0",
69
69
  "uint8-varint": "^2.0.0",
@@ -71,7 +71,7 @@
71
71
  "uint8arrays": "^4.0.6"
72
72
  },
73
73
  "devDependencies": {
74
- "@libp2p/peer-id-factory": "3.0.10-738dd40f1",
74
+ "@libp2p/peer-id-factory": "3.0.10-7861ed882",
75
75
  "aegir": "^41.0.2",
76
76
  "protons": "^7.3.0"
77
77
  }
package/src/index.ts CHANGED
@@ -11,7 +11,7 @@
11
11
  *
12
12
  * You can read further about the envelope in [libp2p/specs#217](https://github.com/libp2p/specs/pull/217).
13
13
  *
14
- * @example Creating a peer record
14
+ * @example
15
15
  *
16
16
  * Create an envelope with an instance of an [interface-record](https://github.com/libp2p/js-libp2p/blob/main/packages/interface/src/record/index.ts) implementation and prepare it for being exchanged:
17
17
  *
@@ -42,7 +42,7 @@
42
42
  * const wireData = e.marshal()
43
43
  * ```
44
44
  *
45
- * @example Consuming a peer record
45
+ * @example
46
46
  *
47
47
  * Consume a received envelope (`wireData`) and transform it back to a record:
48
48
  *