@dxos/client-services 0.3.11-main.f89c150 → 0.3.11-main.fe789c1

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.
@@ -31,7 +31,7 @@ __export(testing_exports, {
31
31
  syncItemsLocal: () => syncItemsLocal
32
32
  });
33
33
  module.exports = __toCommonJS(testing_exports);
34
- var import_chunk_GPOZUZQ7 = require("../../chunk-GPOZUZQ7.cjs");
34
+ var import_chunk_YAIBUND4 = require("../../chunk-YAIBUND4.cjs");
35
35
  var import_credentials = require("@dxos/credentials");
36
36
  var import_keys = require("@dxos/keys");
37
37
  var import_async = require("@dxos/async");
@@ -216,7 +216,7 @@ var createInvitation = (host, options) => {
216
216
  authMethod: import_services.Invitation.AuthMethod.NONE,
217
217
  ...options ?? {}
218
218
  };
219
- if (host instanceof import_chunk_GPOZUZQ7.ServiceContext) {
219
+ if (host instanceof import_chunk_YAIBUND4.ServiceContext) {
220
220
  const hostHandler = host.getInvitationHandler({
221
221
  kind: import_services.Invitation.Kind.SPACE,
222
222
  ...options
@@ -227,7 +227,7 @@ var createInvitation = (host, options) => {
227
227
  };
228
228
  var acceptInvitation = (guest, invitation) => {
229
229
  invitation = sanitizeInvitation(invitation);
230
- if (guest instanceof import_chunk_GPOZUZQ7.ServiceContext) {
230
+ if (guest instanceof import_chunk_YAIBUND4.ServiceContext) {
231
231
  const guestHandler = guest.getInvitationHandler({
232
232
  kind: invitation.kind
233
233
  });
@@ -236,7 +236,7 @@ var acceptInvitation = (guest, invitation) => {
236
236
  return guest.join(invitation);
237
237
  };
238
238
  var createServiceHost = (config, signalManagerContext) => {
239
- return new import_chunk_GPOZUZQ7.ClientServicesHost({
239
+ return new import_chunk_YAIBUND4.ClientServicesHost({
240
240
  config,
241
241
  signalManager: new import_messaging.MemorySignalManager(signalManagerContext),
242
242
  transportFactory: import_network_manager.MemoryTransportFactory
@@ -250,8 +250,8 @@ var createServiceContext = ({ signalContext = new import_messaging.MemorySignalM
250
250
  signalManager,
251
251
  transportFactory: import_network_manager.MemoryTransportFactory
252
252
  });
253
- const modelFactory = (0, import_chunk_GPOZUZQ7.createDefaultModelFactory)();
254
- return new import_chunk_GPOZUZQ7.ServiceContext(storage, networkManager, signalManager, modelFactory);
253
+ const modelFactory = (0, import_chunk_YAIBUND4.createDefaultModelFactory)();
254
+ return new import_chunk_YAIBUND4.ServiceContext(storage, networkManager, signalManager, modelFactory);
255
255
  };
256
256
  var createPeers = async (numPeers) => {
257
257
  const signalContext = new import_messaging.MemorySignalManagerContext();
@@ -335,7 +335,7 @@ var TestPeer = class {
335
335
  feedStore: this.feedStore,
336
336
  networkManager: this.networkManager,
337
337
  metadataStore: this.metadataStore,
338
- modelFactory: (0, import_chunk_GPOZUZQ7.createDefaultModelFactory)(),
338
+ modelFactory: (0, import_chunk_YAIBUND4.createDefaultModelFactory)(),
339
339
  snapshotStore: this.snapshotStore,
340
340
  blobStore: this.blobStore
341
341
  });
@@ -347,7 +347,7 @@ var TestPeer = class {
347
347
  return this._props.automergeHost ??= new import_echo_pipeline.AutomergeHost(this.storage.createDirectory("automerge"));
348
348
  }
349
349
  get dataSpaceManager() {
350
- return this._props.dataSpaceManager ??= new import_chunk_GPOZUZQ7.DataSpaceManager(this.spaceManager, this.metadataStore, new import_echo_pipeline.DataServiceSubscriptions(), this.keyring, this.identity, this.feedStore, this.automergeHost);
350
+ return this._props.dataSpaceManager ??= new import_chunk_YAIBUND4.DataSpaceManager(this.spaceManager, this.metadataStore, new import_echo_pipeline.DataServiceSubscriptions(), this.keyring, this.identity, this.feedStore, this.automergeHost);
351
351
  }
352
352
  async createIdentity() {
353
353
  this._props.signingContext ??= await createSigningContext(this.keyring);
@@ -1,2 +1,2 @@
1
- export declare const DXOS_VERSION = "0.3.11-main.f89c150";
1
+ export declare const DXOS_VERSION = "0.3.11-main.fe789c1";
2
2
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/client-services",
3
- "version": "0.3.11-main.f89c150",
3
+ "version": "0.3.11-main.fe789c1",
4
4
  "description": "DXOS client services implementation",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -22,44 +22,44 @@
22
22
  ],
23
23
  "dependencies": {
24
24
  "platform": "^1.3.6",
25
- "@dxos/async": "0.3.11-main.f89c150",
26
- "@dxos/codec-protobuf": "0.3.11-main.f89c150",
27
- "@dxos/config": "0.3.11-main.f89c150",
28
- "@dxos/context": "0.3.11-main.f89c150",
29
- "@dxos/client-protocol": "0.3.11-main.f89c150",
30
- "@dxos/crypto": "0.3.11-main.f89c150",
31
- "@dxos/credentials": "0.3.11-main.f89c150",
32
- "@dxos/debug": "0.3.11-main.f89c150",
33
- "@dxos/document-model": "0.3.11-main.f89c150",
34
- "@dxos/echo-db": "0.3.11-main.f89c150",
35
- "@dxos/echo-pipeline": "0.3.11-main.f89c150",
36
- "@dxos/echo-schema": "0.3.11-main.f89c150",
37
- "@dxos/feed-store": "0.3.11-main.f89c150",
38
- "@dxos/invariant": "0.3.11-main.f89c150",
39
- "@dxos/keyring": "0.3.11-main.f89c150",
40
- "@dxos/keys": "0.3.11-main.f89c150",
41
- "@dxos/lock-file": "0.3.11-main.f89c150",
42
- "@dxos/model-factory": "0.3.11-main.f89c150",
43
- "@dxos/messaging": "0.3.11-main.f89c150",
44
- "@dxos/log": "0.3.11-main.f89c150",
45
- "@dxos/network-manager": "0.3.11-main.f89c150",
46
- "@dxos/node-std": "0.3.11-main.f89c150",
47
- "@dxos/random-access-storage": "0.3.11-main.f89c150",
48
- "@dxos/rpc": "0.3.11-main.f89c150",
49
- "@dxos/protocols": "0.3.11-main.f89c150",
50
- "@dxos/teleport-extension-gossip": "0.3.11-main.f89c150",
51
- "@dxos/text-model": "0.3.11-main.f89c150",
52
- "@dxos/teleport": "0.3.11-main.f89c150",
53
- "@dxos/timeframe": "0.3.11-main.f89c150",
54
- "@dxos/teleport-extension-object-sync": "0.3.11-main.f89c150",
55
- "@dxos/tracing": "0.3.11-main.f89c150",
56
- "@dxos/util": "0.3.11-main.f89c150",
57
- "@dxos/websocket-rpc": "0.3.11-main.f89c150"
25
+ "@dxos/async": "0.3.11-main.fe789c1",
26
+ "@dxos/codec-protobuf": "0.3.11-main.fe789c1",
27
+ "@dxos/client-protocol": "0.3.11-main.fe789c1",
28
+ "@dxos/config": "0.3.11-main.fe789c1",
29
+ "@dxos/context": "0.3.11-main.fe789c1",
30
+ "@dxos/credentials": "0.3.11-main.fe789c1",
31
+ "@dxos/crypto": "0.3.11-main.fe789c1",
32
+ "@dxos/debug": "0.3.11-main.fe789c1",
33
+ "@dxos/document-model": "0.3.11-main.fe789c1",
34
+ "@dxos/echo-pipeline": "0.3.11-main.fe789c1",
35
+ "@dxos/echo-schema": "0.3.11-main.fe789c1",
36
+ "@dxos/echo-db": "0.3.11-main.fe789c1",
37
+ "@dxos/feed-store": "0.3.11-main.fe789c1",
38
+ "@dxos/invariant": "0.3.11-main.fe789c1",
39
+ "@dxos/keyring": "0.3.11-main.fe789c1",
40
+ "@dxos/keys": "0.3.11-main.fe789c1",
41
+ "@dxos/lock-file": "0.3.11-main.fe789c1",
42
+ "@dxos/messaging": "0.3.11-main.fe789c1",
43
+ "@dxos/model-factory": "0.3.11-main.fe789c1",
44
+ "@dxos/network-manager": "0.3.11-main.fe789c1",
45
+ "@dxos/protocols": "0.3.11-main.fe789c1",
46
+ "@dxos/log": "0.3.11-main.fe789c1",
47
+ "@dxos/node-std": "0.3.11-main.fe789c1",
48
+ "@dxos/random-access-storage": "0.3.11-main.fe789c1",
49
+ "@dxos/rpc": "0.3.11-main.fe789c1",
50
+ "@dxos/teleport": "0.3.11-main.fe789c1",
51
+ "@dxos/teleport-extension-gossip": "0.3.11-main.fe789c1",
52
+ "@dxos/teleport-extension-object-sync": "0.3.11-main.fe789c1",
53
+ "@dxos/tracing": "0.3.11-main.fe789c1",
54
+ "@dxos/timeframe": "0.3.11-main.fe789c1",
55
+ "@dxos/websocket-rpc": "0.3.11-main.fe789c1",
56
+ "@dxos/text-model": "0.3.11-main.fe789c1",
57
+ "@dxos/util": "0.3.11-main.fe789c1"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@types/platform": "^1.3.4",
61
61
  "@types/readable-stream": "^2.3.9",
62
- "@dxos/signal": "0.3.11-main.f89c150"
62
+ "@dxos/signal": "0.3.11-main.fe789c1"
63
63
  },
64
64
  "publishConfig": {
65
65
  "access": "public"
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const DXOS_VERSION = "0.3.11-main.f89c150";
1
+ export const DXOS_VERSION = "0.3.11-main.fe789c1";