@dxos/protocols 0.2.2-main.ce5a8a9 → 0.2.3-next.2d1ef8a

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;AAuDhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAgf7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,uy2FAAuy2F,CAAC,CAAC,CAAC;AACh22F,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;AAuDhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAgf7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,s02FAAs02F,CAAC,CAAC,CAAC;AAC/32F,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.2.2-main.ce5a8a9",
3
+ "version": "0.2.3-next.2d1ef8a",
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.2.2-main.ce5a8a9",
37
- "@dxos/invariant": "0.2.2-main.ce5a8a9",
38
- "@dxos/keys": "0.2.2-main.ce5a8a9",
39
- "@dxos/timeframe": "0.2.2-main.ce5a8a9"
36
+ "@dxos/codec-protobuf": "0.2.3-next.2d1ef8a",
37
+ "@dxos/invariant": "0.2.3-next.2d1ef8a",
38
+ "@dxos/keys": "0.2.3-next.2d1ef8a",
39
+ "@dxos/timeframe": "0.2.3-next.2d1ef8a"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -37,6 +37,7 @@ message ConnectionInfo {
37
37
  repeated ConnectionEvent events = 6;
38
38
  repeated StreamStats streams = 7;
39
39
  optional string close_reason = 8;
40
+ optional string identity = 9;
40
41
  }
41
42
 
42
43
  message ConnectionEvent {
@@ -4,6 +4,8 @@
4
4
 
5
5
  syntax = "proto3";
6
6
 
7
+ import "google/protobuf/struct.proto";
8
+
7
9
  package dxos.error;
8
10
 
9
11
  option go_package = "github.com/dxos/kube/proto/def/dxos/error";
@@ -89,6 +89,11 @@ export interface ConnectionInfo {
89
89
  * - proto3_optional = true
90
90
  */
91
91
  closeReason?: string;
92
+ /**
93
+ * Options:
94
+ * - proto3_optional = true
95
+ */
96
+ identity?: string;
92
97
  }
93
98
  export namespace ConnectionInfo {
94
99
  /**