@dxos/protocols 0.5.7-main.c48bccd → 0.5.7-main.f701905

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;AA+DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA2iB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,4o0GAA4o0G,CAAC,CAAC,CAAC;AACrs0G,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;AA+DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA2iB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,ip0GAAip0G,CAAC,CAAC,CAAC;AAC1s0G,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.7-main.c48bccd",
3
+ "version": "0.5.7-main.f701905",
4
4
  "description": "Protobuf definitions for DXOS protocols.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -33,10 +33,10 @@
33
33
  "src"
34
34
  ],
35
35
  "dependencies": {
36
- "@dxos/codec-protobuf": "0.5.7-main.c48bccd",
37
- "@dxos/keys": "0.5.7-main.c48bccd",
38
- "@dxos/invariant": "0.5.7-main.c48bccd",
39
- "@dxos/timeframe": "0.5.7-main.c48bccd"
36
+ "@dxos/codec-protobuf": "0.5.7-main.f701905",
37
+ "@dxos/keys": "0.5.7-main.f701905",
38
+ "@dxos/invariant": "0.5.7-main.f701905",
39
+ "@dxos/timeframe": "0.5.7-main.f701905"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -299,6 +299,7 @@ message Space {
299
299
  optional dxos.echo.timeframe.TimeframeVector known_data_timeframe = 17;
300
300
  }
301
301
 
302
+ string id = 5;
302
303
  dxos.keys.PublicKey space_key = 1;
303
304
  SpaceState state = 2;
304
305
  optional PipelineState pipeline = 3;
@@ -566,6 +566,7 @@ export enum SpaceState {
566
566
  * {@link file://./../../../dxos/client/services.proto}
567
567
  */
568
568
  export interface Space {
569
+ id: string;
569
570
  spaceKey: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
570
571
  state: SpaceState;
571
572
  /**
@@ -61,6 +61,37 @@ import * as dxos_value from "../value";
61
61
  import * as example_testing_data from "../../example/testing/data";
62
62
  import * as example_testing_rpc from "../../example/testing/rpc";
63
63
  import * as google_protobuf from "../../google/protobuf";
64
+ /**
65
+ * Defined in:
66
+ * {@link file://./../../../dxos/devtools/diagnostics.proto}
67
+ */
68
+ export interface Services {
69
+ spaces?: SpaceStats[];
70
+ }
71
+ /**
72
+ * Defined in:
73
+ * {@link file://./../../../dxos/devtools/diagnostics.proto}
74
+ */
75
+ export interface SpaceStats {
76
+ key: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
77
+ peers?: PeerStats[];
78
+ }
79
+ /**
80
+ * Defined in:
81
+ * {@link file://./../../../dxos/devtools/diagnostics.proto}
82
+ */
83
+ export interface PeerStats {
84
+ controlFeed: FeedStats;
85
+ dataFeed: FeedStats;
86
+ }
87
+ /**
88
+ * Defined in:
89
+ * {@link file://./../../../dxos/devtools/diagnostics.proto}
90
+ */
91
+ export interface FeedStats {
92
+ key: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
93
+ length: number;
94
+ }
64
95
  /**
65
96
  * Defined in:
66
97
  * {@link file://./../../../dxos/devtools/host.proto}
@@ -483,34 +514,3 @@ export interface SubscribeToSwarmInfoRequest {
483
514
  export interface SubscribeToSwarmInfoResponse {
484
515
  data?: dxos_devtools_swarm.SwarmInfo[];
485
516
  }
486
- /**
487
- * Defined in:
488
- * {@link file://./../../../dxos/devtools/diagnostics.proto}
489
- */
490
- export interface Services {
491
- spaces?: SpaceStats[];
492
- }
493
- /**
494
- * Defined in:
495
- * {@link file://./../../../dxos/devtools/diagnostics.proto}
496
- */
497
- export interface SpaceStats {
498
- key: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
499
- peers?: PeerStats[];
500
- }
501
- /**
502
- * Defined in:
503
- * {@link file://./../../../dxos/devtools/diagnostics.proto}
504
- */
505
- export interface PeerStats {
506
- controlFeed: FeedStats;
507
- dataFeed: FeedStats;
508
- }
509
- /**
510
- * Defined in:
511
- * {@link file://./../../../dxos/devtools/diagnostics.proto}
512
- */
513
- export interface FeedStats {
514
- key: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
515
- length: number;
516
- }