@dxos/client-services 0.1.55-main.d0e1f6a → 0.1.55-main.de1d511
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-F4BHRFH4.mjs → chunk-JW4TUGHP.mjs} +5 -5
- package/dist/lib/browser/{chunk-F4BHRFH4.mjs.map → chunk-JW4TUGHP.mjs.map} +2 -2
- package/dist/lib/browser/index.mjs +1 -1
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/packlets/testing/index.mjs +1 -1
- package/dist/lib/node/index.cjs +4 -4
- package/dist/lib/node/index.cjs.map +2 -2
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/packlets/testing/index.cjs +4 -4
- package/dist/lib/node/packlets/testing/index.cjs.map +2 -2
- package/dist/types/src/packlets/spaces/data-space.d.ts.map +1 -1
- package/package.json +32 -32
- package/src/packlets/spaces/data-space.ts +6 -7
|
@@ -2504,7 +2504,7 @@ var DataSpace = class DataSpace2 {
|
|
|
2504
2504
|
await this.initializeDataPipeline();
|
|
2505
2505
|
} catch (err) {
|
|
2506
2506
|
if (err instanceof CancelledError) {
|
|
2507
|
-
log9("
|
|
2507
|
+
log9("data pipeline initialization cancelled", err, {
|
|
2508
2508
|
F: __dxlog_file9,
|
|
2509
2509
|
L: 193,
|
|
2510
2510
|
S: this,
|
|
@@ -2538,7 +2538,7 @@ var DataSpace = class DataSpace2 {
|
|
|
2538
2538
|
});
|
|
2539
2539
|
this.metrics.controlPipelineReady = new Date();
|
|
2540
2540
|
await this._createWritableFeeds();
|
|
2541
|
-
log9("
|
|
2541
|
+
log9("writable feeds created", void 0, {
|
|
2542
2542
|
F: __dxlog_file9,
|
|
2543
2543
|
L: 221,
|
|
2544
2544
|
S: this,
|
|
@@ -2650,7 +2650,7 @@ var DataSpace = class DataSpace2 {
|
|
|
2650
2650
|
}
|
|
2651
2651
|
async activate() {
|
|
2652
2652
|
if (this._state !== SpaceState.INACTIVE) {
|
|
2653
|
-
|
|
2653
|
+
return;
|
|
2654
2654
|
}
|
|
2655
2655
|
await this._metadataStore.setSpaceState(this.key, SpaceState.ACTIVE);
|
|
2656
2656
|
await this._open();
|
|
@@ -2658,7 +2658,7 @@ var DataSpace = class DataSpace2 {
|
|
|
2658
2658
|
}
|
|
2659
2659
|
async deactivate() {
|
|
2660
2660
|
if (this._state === SpaceState.INACTIVE) {
|
|
2661
|
-
|
|
2661
|
+
return;
|
|
2662
2662
|
}
|
|
2663
2663
|
await this._metadataStore.setSpaceState(this.key, SpaceState.INACTIVE);
|
|
2664
2664
|
await this._close();
|
|
@@ -4166,4 +4166,4 @@ export {
|
|
|
4166
4166
|
createDefaultModelFactory,
|
|
4167
4167
|
ClientServicesHost
|
|
4168
4168
|
};
|
|
4169
|
-
//# sourceMappingURL=chunk-
|
|
4169
|
+
//# sourceMappingURL=chunk-JW4TUGHP.mjs.map
|