@dxos/echo-pipeline 0.1.56-main.c787da3 → 0.1.56-main.e47dfd1
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/lib/browser/{chunk-6ESY2NJF.mjs → chunk-7U2NXI2P.mjs} +8 -7
- package/dist/lib/browser/{chunk-6ESY2NJF.mjs.map → chunk-7U2NXI2P.mjs.map} +2 -2
- package/dist/lib/browser/index.mjs +1 -1
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/testing/index.mjs +1 -1
- package/dist/lib/node/index.cjs +7 -6
- package/dist/lib/node/index.cjs.map +2 -2
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/testing/index.cjs +7 -6
- package/dist/lib/node/testing/index.cjs.map +2 -2
- package/dist/types/src/space/space-protocol.d.ts.map +1 -1
- package/package.json +30 -30
- package/src/space/space-protocol.ts +3 -2
|
@@ -1859,16 +1859,17 @@ var SpaceProtocol = class {
|
|
|
1859
1859
|
S: this,
|
|
1860
1860
|
C: (f, a) => f(...a)
|
|
1861
1861
|
});
|
|
1862
|
+
const topic = await this._topic;
|
|
1862
1863
|
this._connection = await this._networkManager.joinSwarm({
|
|
1863
1864
|
protocolProvider: this._createProtocolProvider(credentials),
|
|
1864
1865
|
peerId: this._swarmIdentity.peerKey,
|
|
1865
|
-
topic
|
|
1866
|
+
topic,
|
|
1866
1867
|
topology: new MMSTTopology(topologyConfig),
|
|
1867
|
-
label: `Protocol swarm: ${
|
|
1868
|
+
label: `Protocol swarm: ${topic}`
|
|
1868
1869
|
});
|
|
1869
1870
|
log11("started", void 0, {
|
|
1870
1871
|
F: __dxlog_file11,
|
|
1871
|
-
L:
|
|
1872
|
+
L: 130,
|
|
1872
1873
|
S: this,
|
|
1873
1874
|
C: (f, a) => f(...a)
|
|
1874
1875
|
});
|
|
@@ -1878,14 +1879,14 @@ var SpaceProtocol = class {
|
|
|
1878
1879
|
if (this._connection) {
|
|
1879
1880
|
log11("stopping...", void 0, {
|
|
1880
1881
|
F: __dxlog_file11,
|
|
1881
|
-
L:
|
|
1882
|
+
L: 137,
|
|
1882
1883
|
S: this,
|
|
1883
1884
|
C: (f, a) => f(...a)
|
|
1884
1885
|
});
|
|
1885
1886
|
await this._connection.close();
|
|
1886
1887
|
log11("stopped", void 0, {
|
|
1887
1888
|
F: __dxlog_file11,
|
|
1888
|
-
L:
|
|
1889
|
+
L: 139,
|
|
1889
1890
|
S: this,
|
|
1890
1891
|
C: (f, a) => f(...a)
|
|
1891
1892
|
});
|
|
@@ -1953,7 +1954,7 @@ var SpaceProtocolSession = class {
|
|
|
1953
1954
|
var _a;
|
|
1954
1955
|
log11("Peer authenticated", void 0, {
|
|
1955
1956
|
F: __dxlog_file11,
|
|
1956
|
-
L:
|
|
1957
|
+
L: 236,
|
|
1957
1958
|
S: this,
|
|
1958
1959
|
C: (f, a) => f(...a)
|
|
1959
1960
|
});
|
|
@@ -2107,4 +2108,4 @@ export {
|
|
|
2107
2108
|
SpaceProtocolSession,
|
|
2108
2109
|
SpaceManager
|
|
2109
2110
|
};
|
|
2110
|
-
//# sourceMappingURL=chunk-
|
|
2111
|
+
//# sourceMappingURL=chunk-7U2NXI2P.mjs.map
|