@dxos/protocols 0.3.9-main.3fcc0fa → 0.3.9-main.4e39f3a

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;AA4gB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,uzhGAAuzhG,CAAC,CAAC,CAAC;AACh3hG,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;AA4gB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,+vhGAA+vhG,CAAC,CAAC,CAAC;AACxzhG,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.9-main.3fcc0fa",
3
+ "version": "0.3.9-main.4e39f3a",
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.9-main.3fcc0fa",
37
- "@dxos/keys": "0.3.9-main.3fcc0fa",
38
- "@dxos/invariant": "0.3.9-main.3fcc0fa",
39
- "@dxos/timeframe": "0.3.9-main.3fcc0fa"
36
+ "@dxos/codec-protobuf": "0.3.9-main.4e39f3a",
37
+ "@dxos/timeframe": "0.3.9-main.4e39f3a",
38
+ "@dxos/invariant": "0.3.9-main.4e39f3a",
39
+ "@dxos/keys": "0.3.9-main.4e39f3a"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -36,5 +36,4 @@ message PluginState {
36
36
 
37
37
  service DashboardService {
38
38
  rpc status(google.protobuf.Empty) returns (stream AgentStatus);
39
- rpc changePluginConfig(PluginState) returns (google.protobuf.Empty);
40
39
  }
@@ -110,5 +110,4 @@ export interface PluginState {
110
110
  */
111
111
  export interface DashboardService {
112
112
  status: (request: void, options?: RequestOptions) => Stream<AgentStatus>;
113
- changePluginConfig: (request: PluginState, options?: RequestOptions) => Promise<void>;
114
113
  }
@@ -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
  }