@dxos/protocols 0.4.10-main.99ef736 → 0.4.10-main.fa5a270

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;AA8DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA4hB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,m1rGAAm1rG,CAAC,CAAC,CAAC;AAC54rG,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;AA8DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA4hB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,8lrGAA8lrG,CAAC,CAAC,CAAC;AACvprG,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.4.10-main.99ef736",
3
+ "version": "0.4.10-main.fa5a270",
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.4.10-main.99ef736",
37
- "@dxos/keys": "0.4.10-main.99ef736",
38
- "@dxos/timeframe": "0.4.10-main.99ef736",
39
- "@dxos/invariant": "0.4.10-main.99ef736"
36
+ "@dxos/codec-protobuf": "0.4.10-main.fa5a270",
37
+ "@dxos/timeframe": "0.4.10-main.fa5a270",
38
+ "@dxos/keys": "0.4.10-main.fa5a270",
39
+ "@dxos/invariant": "0.4.10-main.fa5a270"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -15,9 +15,6 @@ message StartRequest {
15
15
  string origin = 1;
16
16
  /// Key for the iframe resource lock used to determine when the service is closing.
17
17
  optional string lock_key = 2;
18
- // TODO(nf): extract or remove?
19
- optional string observabilityGroup = 3;
20
- optional bool signalTelemetryEnabled = 4;
21
18
  }
22
19
 
23
20
  /// Iframe-to-worker RPCs.
@@ -6,10 +6,8 @@ syntax = "proto3";
6
6
 
7
7
  import "google/protobuf/any.proto";
8
8
  import "google/protobuf/empty.proto";
9
- import "google/protobuf/struct.proto";
10
9
  import "google/protobuf/timestamp.proto";
11
10
 
12
-
13
11
  package dxos.mesh.signal;
14
12
 
15
13
  option go_package = "github.com/dxos/kube/proto/def/dxos/mesh/signal";
@@ -17,7 +15,6 @@ option go_package = "github.com/dxos/kube/proto/def/dxos/mesh/signal";
17
15
  message JoinRequest {
18
16
  bytes swarm = 1;
19
17
  bytes peer = 2;
20
- optional google.protobuf.Struct metadata = 3;
21
18
  }
22
19
 
23
20
  message Message {
@@ -25,7 +22,6 @@ message Message {
25
22
  bytes author = 1;
26
23
  bytes recipient = 2;
27
24
  google.protobuf.Any payload = 3;
28
- optional google.protobuf.Struct metadata = 4;
29
25
  }
30
26
 
31
27
  message ReceptionRequest {
@@ -73,16 +73,6 @@ export interface StartRequest {
73
73
  * - proto3_optional = true
74
74
  */
75
75
  lockKey?: string;
76
- /**
77
- * Options:
78
- * - proto3_optional = true
79
- */
80
- observabilityGroup?: string;
81
- /**
82
- * Options:
83
- * - proto3_optional = true
84
- */
85
- signalTelemetryEnabled?: boolean;
86
76
  }
87
77
  /**
88
78
  * Iframe-to-worker RPCs.
@@ -67,11 +67,6 @@ import * as google_protobuf from "../../google/protobuf";
67
67
  export interface JoinRequest {
68
68
  swarm: Uint8Array;
69
69
  peer: Uint8Array;
70
- /**
71
- * Options:
72
- * - proto3_optional = true
73
- */
74
- metadata?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
75
70
  }
76
71
  /**
77
72
  * Defined in:
@@ -81,11 +76,6 @@ export interface Message {
81
76
  author: Uint8Array;
82
77
  recipient: Uint8Array;
83
78
  payload: ReturnType<(typeof substitutions)["google.protobuf.Any"]["decode"]>;
84
- /**
85
- * Options:
86
- * - proto3_optional = true
87
- */
88
- metadata?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
89
79
  }
90
80
  /**
91
81
  * Defined in: