@dxos/client-services 0.4.3-main.1c093f6 → 0.4.3-main.2a46fc0

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_CBSFUEB7 = require("../../chunk-CBSFUEB7.cjs");
34
+ var import_chunk_DREUJBPG = require("../../chunk-DREUJBPG.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");
@@ -209,7 +209,7 @@ var createInvitation = (host, options) => {
209
209
  authMethod: import_services.Invitation.AuthMethod.NONE,
210
210
  ...options ?? {}
211
211
  };
212
- if (host instanceof import_chunk_CBSFUEB7.ServiceContext) {
212
+ if (host instanceof import_chunk_DREUJBPG.ServiceContext) {
213
213
  const hostHandler = host.getInvitationHandler({
214
214
  kind: import_services.Invitation.Kind.SPACE,
215
215
  ...options
@@ -220,7 +220,7 @@ var createInvitation = (host, options) => {
220
220
  };
221
221
  var acceptInvitation = (guest, invitation) => {
222
222
  invitation = sanitizeInvitation(invitation);
223
- if (guest instanceof import_chunk_CBSFUEB7.ServiceContext) {
223
+ if (guest instanceof import_chunk_DREUJBPG.ServiceContext) {
224
224
  const guestHandler = guest.getInvitationHandler({
225
225
  kind: invitation.kind
226
226
  });
@@ -229,7 +229,7 @@ var acceptInvitation = (guest, invitation) => {
229
229
  return guest.join(invitation);
230
230
  };
231
231
  var createServiceHost = (config, signalManagerContext) => {
232
- return new import_chunk_CBSFUEB7.ClientServicesHost({
232
+ return new import_chunk_DREUJBPG.ClientServicesHost({
233
233
  config,
234
234
  signalManager: new import_messaging.MemorySignalManager(signalManagerContext),
235
235
  transportFactory: import_network_manager.MemoryTransportFactory
@@ -243,8 +243,8 @@ var createServiceContext = ({ signalContext = new import_messaging.MemorySignalM
243
243
  signalManager,
244
244
  transportFactory: import_network_manager.MemoryTransportFactory
245
245
  });
246
- const modelFactory = (0, import_chunk_CBSFUEB7.createDefaultModelFactory)();
247
- return new import_chunk_CBSFUEB7.ServiceContext(storage, networkManager, signalManager, modelFactory);
246
+ const modelFactory = (0, import_chunk_DREUJBPG.createDefaultModelFactory)();
247
+ return new import_chunk_DREUJBPG.ServiceContext(storage, networkManager, signalManager, modelFactory);
248
248
  };
249
249
  var createPeers = async (numPeers) => {
250
250
  const signalContext = new import_messaging.MemorySignalManagerContext();
@@ -328,7 +328,7 @@ var TestPeer = class {
328
328
  feedStore: this.feedStore,
329
329
  networkManager: this.networkManager,
330
330
  metadataStore: this.metadataStore,
331
- modelFactory: (0, import_chunk_CBSFUEB7.createDefaultModelFactory)(),
331
+ modelFactory: (0, import_chunk_DREUJBPG.createDefaultModelFactory)(),
332
332
  snapshotStore: this.snapshotStore,
333
333
  blobStore: this.blobStore
334
334
  });
@@ -340,7 +340,7 @@ var TestPeer = class {
340
340
  return this._props.automergeHost ??= new import_echo_pipeline.AutomergeHost(this.storage.createDirectory("automerge"));
341
341
  }
342
342
  get dataSpaceManager() {
343
- return this._props.dataSpaceManager ??= new import_chunk_CBSFUEB7.DataSpaceManager(this.spaceManager, this.metadataStore, new import_echo_pipeline.DataServiceSubscriptions(), this.keyring, this.identity, this.feedStore, this.automergeHost);
343
+ return this._props.dataSpaceManager ??= new import_chunk_DREUJBPG.DataSpaceManager(this.spaceManager, this.metadataStore, new import_echo_pipeline.DataServiceSubscriptions(), this.keyring, this.identity, this.feedStore, this.automergeHost);
344
344
  }
345
345
  async createIdentity() {
346
346
  this._props.signingContext ??= await createSigningContext(this.keyring);
@@ -1,2 +1,2 @@
1
- export declare const DXOS_VERSION = "0.4.3-main.1c093f6";
1
+ export declare const DXOS_VERSION = "0.4.3-main.2a46fc0";
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.4.3-main.1c093f6",
3
+ "version": "0.4.3-main.2a46fc0",
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.4.3-main.1c093f6",
26
- "@dxos/context": "0.4.3-main.1c093f6",
27
- "@dxos/client-protocol": "0.4.3-main.1c093f6",
28
- "@dxos/config": "0.4.3-main.1c093f6",
29
- "@dxos/crypto": "0.4.3-main.1c093f6",
30
- "@dxos/credentials": "0.4.3-main.1c093f6",
31
- "@dxos/codec-protobuf": "0.4.3-main.1c093f6",
32
- "@dxos/debug": "0.4.3-main.1c093f6",
33
- "@dxos/document-model": "0.4.3-main.1c093f6",
34
- "@dxos/echo-pipeline": "0.4.3-main.1c093f6",
35
- "@dxos/echo-db": "0.4.3-main.1c093f6",
36
- "@dxos/echo-schema": "0.4.3-main.1c093f6",
37
- "@dxos/invariant": "0.4.3-main.1c093f6",
38
- "@dxos/keyring": "0.4.3-main.1c093f6",
39
- "@dxos/feed-store": "0.4.3-main.1c093f6",
40
- "@dxos/lock-file": "0.4.3-main.1c093f6",
41
- "@dxos/log": "0.4.3-main.1c093f6",
42
- "@dxos/keys": "0.4.3-main.1c093f6",
43
- "@dxos/messaging": "0.4.3-main.1c093f6",
44
- "@dxos/model-factory": "0.4.3-main.1c093f6",
45
- "@dxos/node-std": "0.4.3-main.1c093f6",
46
- "@dxos/random-access-storage": "0.4.3-main.1c093f6",
47
- "@dxos/protocols": "0.4.3-main.1c093f6",
48
- "@dxos/network-manager": "0.4.3-main.1c093f6",
49
- "@dxos/rpc": "0.4.3-main.1c093f6",
50
- "@dxos/teleport": "0.4.3-main.1c093f6",
51
- "@dxos/teleport-extension-object-sync": "0.4.3-main.1c093f6",
52
- "@dxos/text-model": "0.4.3-main.1c093f6",
53
- "@dxos/teleport-extension-gossip": "0.4.3-main.1c093f6",
54
- "@dxos/timeframe": "0.4.3-main.1c093f6",
55
- "@dxos/tracing": "0.4.3-main.1c093f6",
56
- "@dxos/util": "0.4.3-main.1c093f6",
57
- "@dxos/websocket-rpc": "0.4.3-main.1c093f6"
25
+ "@dxos/async": "0.4.3-main.2a46fc0",
26
+ "@dxos/config": "0.4.3-main.2a46fc0",
27
+ "@dxos/context": "0.4.3-main.2a46fc0",
28
+ "@dxos/credentials": "0.4.3-main.2a46fc0",
29
+ "@dxos/crypto": "0.4.3-main.2a46fc0",
30
+ "@dxos/client-protocol": "0.4.3-main.2a46fc0",
31
+ "@dxos/debug": "0.4.3-main.2a46fc0",
32
+ "@dxos/codec-protobuf": "0.4.3-main.2a46fc0",
33
+ "@dxos/document-model": "0.4.3-main.2a46fc0",
34
+ "@dxos/echo-db": "0.4.3-main.2a46fc0",
35
+ "@dxos/echo-schema": "0.4.3-main.2a46fc0",
36
+ "@dxos/invariant": "0.4.3-main.2a46fc0",
37
+ "@dxos/echo-pipeline": "0.4.3-main.2a46fc0",
38
+ "@dxos/feed-store": "0.4.3-main.2a46fc0",
39
+ "@dxos/keys": "0.4.3-main.2a46fc0",
40
+ "@dxos/keyring": "0.4.3-main.2a46fc0",
41
+ "@dxos/lock-file": "0.4.3-main.2a46fc0",
42
+ "@dxos/log": "0.4.3-main.2a46fc0",
43
+ "@dxos/messaging": "0.4.3-main.2a46fc0",
44
+ "@dxos/model-factory": "0.4.3-main.2a46fc0",
45
+ "@dxos/node-std": "0.4.3-main.2a46fc0",
46
+ "@dxos/random-access-storage": "0.4.3-main.2a46fc0",
47
+ "@dxos/rpc": "0.4.3-main.2a46fc0",
48
+ "@dxos/protocols": "0.4.3-main.2a46fc0",
49
+ "@dxos/network-manager": "0.4.3-main.2a46fc0",
50
+ "@dxos/teleport": "0.4.3-main.2a46fc0",
51
+ "@dxos/teleport-extension-gossip": "0.4.3-main.2a46fc0",
52
+ "@dxos/teleport-extension-object-sync": "0.4.3-main.2a46fc0",
53
+ "@dxos/text-model": "0.4.3-main.2a46fc0",
54
+ "@dxos/util": "0.4.3-main.2a46fc0",
55
+ "@dxos/websocket-rpc": "0.4.3-main.2a46fc0",
56
+ "@dxos/timeframe": "0.4.3-main.2a46fc0",
57
+ "@dxos/tracing": "0.4.3-main.2a46fc0"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@types/platform": "^1.3.4",
61
61
  "@types/readable-stream": "^2.3.9",
62
- "@dxos/signal": "0.4.3-main.1c093f6"
62
+ "@dxos/signal": "0.4.3-main.2a46fc0"
63
63
  },
64
64
  "publishConfig": {
65
65
  "access": "public"
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const DXOS_VERSION = "0.4.3-main.1c093f6";
1
+ export const DXOS_VERSION = "0.4.3-main.2a46fc0";