@dxos/protocols 0.1.55-main.6f6b5eb → 0.1.55-main.8bdbdae

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;AAqDhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA2c7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,w3mFAAw3mF,CAAC,CAAC,CAAC;AACj7mF,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;AAqDhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA2c7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,86mFAA86mF,CAAC,CAAC,CAAC;AACv+mF,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.1.55-main.6f6b5eb",
3
+ "version": "0.1.55-main.8bdbdae",
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.1.55-main.6f6b5eb",
37
- "@dxos/hypercore": "0.1.55-main.6f6b5eb",
38
- "@dxos/keys": "0.1.55-main.6f6b5eb",
39
- "@dxos/timeframe": "0.1.55-main.6f6b5eb"
36
+ "@dxos/codec-protobuf": "0.1.55-main.8bdbdae",
37
+ "@dxos/hypercore": "0.1.55-main.8bdbdae",
38
+ "@dxos/keys": "0.1.55-main.8bdbdae",
39
+ "@dxos/timeframe": "0.1.55-main.8bdbdae"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -193,6 +193,8 @@ message Space {
193
193
  optional dxos.keys.PublicKey control_feed_key = 1;
194
194
  optional dxos.keys.PublicKey data_feed_key = 2;
195
195
 
196
+ /// Remote feeds.
197
+ /// TODO(burdon): Normalize _key suffix.
196
198
  repeated dxos.keys.PublicKey control_feeds = 18;
197
199
  repeated dxos.keys.PublicKey data_feeds = 19;
198
200
 
@@ -22,6 +22,7 @@ message ConnectionInfo {
22
22
  string tag = 2;
23
23
  uint32 bytesSent = 3;
24
24
  uint32 bytesReceived = 4;
25
+ optional string contentType = 5;
25
26
  }
26
27
 
27
28
  string state = 1;
@@ -318,6 +318,9 @@ export namespace Space {
318
318
  * - proto3_optional = true
319
319
  */
320
320
  dataFeedKey?: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
321
+ /**
322
+ * TODO(burdon): Normalize _key suffix.
323
+ */
321
324
  controlFeeds?: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>[];
322
325
  dataFeeds?: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>[];
323
326
  /**
@@ -93,6 +93,11 @@ export namespace ConnectionInfo {
93
93
  tag: string;
94
94
  bytesSent: number;
95
95
  bytesReceived: number;
96
+ /**
97
+ * Options:
98
+ * - proto3_optional = true
99
+ */
100
+ contentType?: string;
96
101
  }
97
102
  }
98
103
  /**