@dxos/protocols 0.1.55-main.fc12f7c → 0.1.55-main.ff36828

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,o6mFAAo6mF,CAAC,CAAC,CAAC;AAC79mF,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.fc12f7c",
3
+ "version": "0.1.55-main.ff36828",
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.fc12f7c",
37
- "@dxos/hypercore": "0.1.55-main.fc12f7c",
38
- "@dxos/keys": "0.1.55-main.fc12f7c",
39
- "@dxos/timeframe": "0.1.55-main.fc12f7c"
36
+ "@dxos/codec-protobuf": "0.1.55-main.ff36828",
37
+ "@dxos/hypercore": "0.1.55-main.ff36828",
38
+ "@dxos/keys": "0.1.55-main.ff36828",
39
+ "@dxos/timeframe": "0.1.55-main.ff36828"
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
 
@@ -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
  /**
@@ -53,6 +53,10 @@ import * as example_testing_data from "../example/testing/data";
53
53
  import * as example_testing_rpc from "../example/testing/rpc";
54
54
  export interface Empty {
55
55
  }
56
+ export interface Timestamp {
57
+ seconds: string;
58
+ nanos: number;
59
+ }
56
60
  export interface Any {
57
61
  type_url: string;
58
62
  value: Uint8Array;
@@ -318,10 +322,6 @@ export namespace GeneratedCodeInfo {
318
322
  end: number;
319
323
  }
320
324
  }
321
- export interface Timestamp {
322
- seconds: string;
323
- nanos: number;
324
- }
325
325
  export interface DoubleValue {
326
326
  value: number;
327
327
  }