@dxos/protocols 0.3.8-main.d8efde4 → 0.3.8-main.d9818d5

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;AA4DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAugB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,k7+FAAk7+F,CAAC,CAAC,CAAC;AAC3++F,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;AA4DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAugB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,yg/FAAyg/F,CAAC,CAAC,CAAC;AAClk/F,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.3.8-main.d8efde4",
3
+ "version": "0.3.8-main.d9818d5",
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.3.8-main.d8efde4",
37
- "@dxos/keys": "0.3.8-main.d8efde4",
38
- "@dxos/invariant": "0.3.8-main.d8efde4",
39
- "@dxos/timeframe": "0.3.8-main.d8efde4"
36
+ "@dxos/codec-protobuf": "0.3.8-main.d9818d5",
37
+ "@dxos/invariant": "0.3.8-main.d9818d5",
38
+ "@dxos/timeframe": "0.3.8-main.d9818d5",
39
+ "@dxos/keys": "0.3.8-main.d9818d5"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -41,6 +41,7 @@ message ConnectionInfo {
41
41
  optional string identity = 9;
42
42
  optional uint32 readBufferSize = 10;
43
43
  optional uint32 writeBufferSize = 11;
44
+ optional google.protobuf.Timestamp last_update = 12;
44
45
  }
45
46
 
46
47
  message ConnectionEvent {
@@ -109,6 +109,11 @@ export interface ConnectionInfo {
109
109
  * - proto3_optional = true
110
110
  */
111
111
  writeBufferSize?: number;
112
+ /**
113
+ * Options:
114
+ * - proto3_optional = true
115
+ */
116
+ lastUpdate?: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
112
117
  }
113
118
  export namespace ConnectionInfo {
114
119
  /**
@@ -77,14 +77,14 @@ export enum NullValue {
77
77
  export interface ListValue {
78
78
  values?: Value[];
79
79
  }
80
- export interface Any {
81
- type_url: string;
82
- value: Uint8Array;
83
- }
84
80
  export interface Timestamp {
85
81
  seconds: string;
86
82
  nanos: number;
87
83
  }
84
+ export interface Any {
85
+ type_url: string;
86
+ value: Uint8Array;
87
+ }
88
88
  export interface FileDescriptorSet {
89
89
  file?: FileDescriptorProto[];
90
90
  }