@dxos/client-services 0.4.7-main.0aeacda → 0.4.7-main.22460ef
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-N4RGR7MX.mjs → chunk-ELOIQ6Y2.mjs} +6 -8
- package/dist/lib/browser/chunk-ELOIQ6Y2.mjs.map +7 -0
- package/dist/lib/browser/index.mjs +2 -2
- package/dist/lib/browser/index.mjs.map +1 -1
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/packlets/testing/index.mjs +1 -1
- package/dist/lib/node/{chunk-IG3MUK6Q.cjs → chunk-533VQ3LH.cjs} +8 -10
- package/dist/lib/node/chunk-533VQ3LH.cjs.map +7 -0
- package/dist/lib/node/index.cjs +38 -38
- package/dist/lib/node/index.cjs.map +1 -1
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/packlets/testing/index.cjs +8 -8
- package/dist/types/src/packlets/spaces/spaces-service.d.ts.map +1 -1
- package/dist/types/src/version.d.ts +1 -1
- package/package.json +35 -35
- package/src/packlets/identity/identity-manager.ts +1 -1
- package/src/packlets/services/service-host.ts +2 -2
- package/src/packlets/spaces/spaces-service.ts +1 -3
- package/src/packlets/vault/shared-worker-connection.ts +1 -1
- package/src/version.ts +1 -1
- package/dist/lib/browser/chunk-N4RGR7MX.mjs.map +0 -7
- package/dist/lib/node/chunk-IG3MUK6Q.cjs.map +0 -7
|
@@ -1043,7 +1043,7 @@ var IdentityManager = class {
|
|
|
1043
1043
|
identityKey: identityRecord.identityKey
|
|
1044
1044
|
});
|
|
1045
1045
|
await space.setControlFeed(controlFeed);
|
|
1046
|
-
space.setDataFeed(dataFeed);
|
|
1046
|
+
void space.setDataFeed(dataFeed);
|
|
1047
1047
|
const identity = new Identity({
|
|
1048
1048
|
space,
|
|
1049
1049
|
presence,
|
|
@@ -2671,7 +2671,7 @@ var getPlatform = () => {
|
|
|
2671
2671
|
};
|
|
2672
2672
|
|
|
2673
2673
|
// packages/sdk/client-services/src/version.ts
|
|
2674
|
-
var DXOS_VERSION = "0.4.7-main.
|
|
2674
|
+
var DXOS_VERSION = "0.4.7-main.22460ef";
|
|
2675
2675
|
|
|
2676
2676
|
// packages/sdk/client-services/src/packlets/services/diagnostics.ts
|
|
2677
2677
|
var __dxlog_file10 = "/home/runner/work/dxos/dxos/packages/sdk/client-services/src/packlets/services/diagnostics.ts";
|
|
@@ -4225,9 +4225,7 @@ var SpacesServiceImpl = class {
|
|
|
4225
4225
|
return {
|
|
4226
4226
|
identity: {
|
|
4227
4227
|
identityKey: member.key,
|
|
4228
|
-
profile: {
|
|
4229
|
-
displayName: member.profile?.displayName
|
|
4230
|
-
}
|
|
4228
|
+
profile: member.profile ?? {}
|
|
4231
4229
|
},
|
|
4232
4230
|
presence: member.removed ? SpaceMember3.PresenceState.REMOVED : isMe || peers.length > 0 ? SpaceMember3.PresenceState.ONLINE : SpaceMember3.PresenceState.OFFLINE,
|
|
4233
4231
|
peerStates: peers
|
|
@@ -4716,7 +4714,7 @@ import { clientServiceBundle, defaultKey, Properties } from "@dxos/client-protoc
|
|
|
4716
4714
|
import { Context as Context10 } from "@dxos/context";
|
|
4717
4715
|
import { DocumentModel as DocumentModel2 } from "@dxos/document-model";
|
|
4718
4716
|
import { DataServiceImpl } from "@dxos/echo-pipeline";
|
|
4719
|
-
import {
|
|
4717
|
+
import { getRawDoc, getAutomergeObjectCore } from "@dxos/echo-schema";
|
|
4720
4718
|
import { invariant as invariant15 } from "@dxos/invariant";
|
|
4721
4719
|
import { PublicKey as PublicKey11 } from "@dxos/keys";
|
|
4722
4720
|
import { log as log16 } from "@dxos/log";
|
|
@@ -5373,7 +5371,7 @@ var ClientServicesHost = class {
|
|
|
5373
5371
|
document.change((doc) => {
|
|
5374
5372
|
assignDeep(doc, [
|
|
5375
5373
|
"objects",
|
|
5376
|
-
obj
|
|
5374
|
+
getAutomergeObjectCore(obj).id
|
|
5377
5375
|
], getRawDoc(obj).handle.docSync());
|
|
5378
5376
|
});
|
|
5379
5377
|
return identity;
|
|
@@ -5431,4 +5429,4 @@ export {
|
|
|
5431
5429
|
createDefaultModelFactory,
|
|
5432
5430
|
ClientServicesHost
|
|
5433
5431
|
};
|
|
5434
|
-
//# sourceMappingURL=chunk-
|
|
5432
|
+
//# sourceMappingURL=chunk-ELOIQ6Y2.mjs.map
|