@dxos/protocols 0.5.7 → 0.5.8-main.1e35f75

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",
3
+ "version": "0.5.8-main.1e35f75",
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",
37
- "@dxos/invariant": "0.5.7",
38
- "@dxos/keys": "0.5.7",
39
- "@dxos/timeframe": "0.5.7"
36
+ "@dxos/invariant": "0.5.8-main.1e35f75",
37
+ "@dxos/keys": "0.5.8-main.1e35f75",
38
+ "@dxos/timeframe": "0.5.8-main.1e35f75",
39
+ "@dxos/codec-protobuf": "0.5.8-main.1e35f75"
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;
@@ -9,7 +9,6 @@ import "google/protobuf/empty.proto";
9
9
  import "google/protobuf/struct.proto";
10
10
  import "google/protobuf/timestamp.proto";
11
11
 
12
-
13
12
  package dxos.mesh.signal;
14
13
 
15
14
  option go_package = "github.com/dxos/kube/proto/def/dxos/mesh/signal";
@@ -94,7 +93,6 @@ enum SignalState {
94
93
  }
95
94
 
96
95
  // TOOD(burdon): Rename.
97
- // TODO(burdon): Reconcile with `@dxos/kube`.
98
96
  service Signal {
99
97
  rpc Join(JoinRequest) returns (stream SwarmEvent);
100
98
  rpc ReceiveMessages(ReceptionRequest) returns (stream Message);
@@ -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
  /**