@dxos/protocols 0.5.9-main.17d92ec → 0.5.9-main.1c50f63

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/proto/gen/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAgEhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAqjB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,gr4GAAgr4G,CAAC,CAAC,CAAC;AACzu4G,MAAM,CAAC,MAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAkB,UAAU,EAAE,aAAa,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/proto/gen/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAgEhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAqjB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,i14GAAi14G,CAAC,CAAC,CAAC;AAC144G,MAAM,CAAC,MAAM,MAAM,GAAG,MAAM,CAAC,QAAQ,CAAkB,UAAU,EAAE,aAAa,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/protocols",
3
- "version": "0.5.9-main.17d92ec",
3
+ "version": "0.5.9-main.1c50f63",
4
4
  "description": "Protobuf definitions for DXOS protocols.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -34,11 +34,11 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@effect/schema": "^0.67.16",
37
- "@dxos/codec-protobuf": "0.5.9-main.17d92ec",
38
- "@dxos/keys": "0.5.9-main.17d92ec",
39
- "@dxos/timeframe": "0.5.9-main.17d92ec",
40
- "@dxos/util": "0.5.9-main.17d92ec",
41
- "@dxos/invariant": "0.5.9-main.17d92ec"
37
+ "@dxos/codec-protobuf": "0.5.9-main.1c50f63",
38
+ "@dxos/keys": "0.5.9-main.1c50f63",
39
+ "@dxos/invariant": "0.5.9-main.1c50f63",
40
+ "@dxos/timeframe": "0.5.9-main.1c50f63",
41
+ "@dxos/util": "0.5.9-main.1c50f63"
42
42
  },
43
43
  "devDependencies": {
44
44
  "glob": "~7.1.6"
@@ -306,6 +306,9 @@ message Space {
306
306
 
307
307
  /// All mutations known to exist on the network.
308
308
  optional dxos.echo.timeframe.TimeframeVector known_data_timeframe = 17;
309
+
310
+ /// URL of the current space root automerge document.
311
+ optional string space_root_url = 22;
309
312
  }
310
313
 
311
314
  string id = 5;
@@ -30,6 +30,7 @@ message Heads {
30
30
  message QueryResult {
31
31
  string id = 1;
32
32
  string spaceId = 4;
33
+ string documentId = 5;
33
34
  /// @deprecated Use spaceId.
34
35
  dxos.keys.PublicKey spaceKey = 2;
35
36
  float rank = 3;
@@ -566,6 +566,13 @@ export namespace Space {
566
566
  * - proto3_optional = true
567
567
  */
568
568
  knownDataTimeframe?: ReturnType<(typeof substitutions)["dxos.echo.timeframe.TimeframeVector"]["decode"]>;
569
+ /**
570
+ * URL of the current space root automerge document.
571
+ *
572
+ * Options:
573
+ * - proto3_optional = true
574
+ */
575
+ spaceRootUrl?: string;
569
576
  }
570
577
  }
571
578
  /**
@@ -92,6 +92,7 @@ export interface Heads {
92
92
  export interface QueryResult {
93
93
  id: string;
94
94
  spaceId: string;
95
+ documentId: string;
95
96
  /**
96
97
  * @deprecated Use spaceId.
97
98
  */