@dxos/protocols 0.3.11-main.cc2fe2c → 0.3.11-main.ccc0ca3

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;AA6DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAkhB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,ilkGAAilkG,CAAC,CAAC,CAAC;AAC1okG,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;AA6DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AAohB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,oimGAAoimG,CAAC,CAAC,CAAC;AAC7lmG,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.11-main.cc2fe2c",
3
+ "version": "0.3.11-main.ccc0ca3",
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.11-main.cc2fe2c",
37
- "@dxos/keys": "0.3.11-main.cc2fe2c",
38
- "@dxos/invariant": "0.3.11-main.cc2fe2c",
39
- "@dxos/timeframe": "0.3.11-main.cc2fe2c"
36
+ "@dxos/codec-protobuf": "0.3.11-main.ccc0ca3",
37
+ "@dxos/invariant": "0.3.11-main.ccc0ca3",
38
+ "@dxos/keys": "0.3.11-main.ccc0ca3",
39
+ "@dxos/timeframe": "0.3.11-main.ccc0ca3"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -19,6 +19,7 @@ import "dxos/mesh/signal.proto";
19
19
  import "dxos/mesh/teleport/gossip.proto";
20
20
  import "dxos/mesh/presence.proto";
21
21
  import "dxos/value.proto";
22
+ import "dxos/devtools/swarm.proto";
22
23
 
23
24
  // TODO(burdon): Reorganize packages (e.g., client.services, echo.database).
24
25
 
@@ -63,6 +64,28 @@ message GetDiagnosticsResponse {
63
64
  google.protobuf.Struct diagnostics = 2;
64
65
  }
65
66
 
67
+ message Platform {
68
+ enum PLATFORM_TYPE {
69
+ BROWSER = 0;
70
+ SHARED_WORKER = 1;
71
+ NODE = 2;
72
+ }
73
+
74
+ PLATFORM_TYPE type = 1;
75
+ /// The User-Agent string from a browser
76
+ optional string user_agent = 2;
77
+ /// e.g process.platform from node, e.g. 'darwin', 'linux', 'win32'
78
+ optional string platform = 3;
79
+ /// the Node.JS arch string, e.g. 'arm64', 'x64'
80
+ optional string arch = 4;
81
+ /// the node.js version string
82
+ optional string runtime = 5;
83
+ // TODO(nf): uint64? :)
84
+ /// the number of seconds the client has been up
85
+ optional uint32 uptime = 6;
86
+ /// e.g. NodeJS.MemoryUsage, subject to change
87
+ optional google.protobuf.Struct memory = 7;
88
+ }
66
89
  //
67
90
  // System
68
91
  //
@@ -82,6 +105,9 @@ service SystemService {
82
105
 
83
106
  /// Reset the client.
84
107
  rpc Reset(google.protobuf.Empty) returns (google.protobuf.Empty);
108
+
109
+ /// Get platform Information
110
+ rpc GetPlatform(google.protobuf.Empty) returns (Platform);
85
111
  }
86
112
 
87
113
  //
@@ -476,6 +502,7 @@ message NetworkStatus {
476
502
 
477
503
  ConnectionState swarm = 1;
478
504
  repeated Signal signaling = 2;
505
+ repeated dxos.devtools.swarm.SwarmInfo connection_info = 3;
479
506
  }
480
507
 
481
508
  message UpdateConfigRequest {
@@ -297,6 +297,66 @@ export interface GetDiagnosticsResponse {
297
297
  timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
298
298
  diagnostics: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
299
299
  }
300
+ /**
301
+ * Defined in:
302
+ * {@link file://./../../../dxos/client/services.proto}
303
+ */
304
+ export interface Platform {
305
+ type: Platform.PLATFORM_TYPE;
306
+ /**
307
+ * The User-Agent string from a browser
308
+ *
309
+ * Options:
310
+ * - proto3_optional = true
311
+ */
312
+ userAgent?: string;
313
+ /**
314
+ * e.g process.platform from node, e.g. 'darwin', 'linux', 'win32'
315
+ *
316
+ * Options:
317
+ * - proto3_optional = true
318
+ */
319
+ platform?: string;
320
+ /**
321
+ * the Node.JS arch string, e.g. 'arm64', 'x64'
322
+ *
323
+ * Options:
324
+ * - proto3_optional = true
325
+ */
326
+ arch?: string;
327
+ /**
328
+ * the node.js version string
329
+ *
330
+ * Options:
331
+ * - proto3_optional = true
332
+ */
333
+ runtime?: string;
334
+ /**
335
+ * the number of seconds the client has been up
336
+ *
337
+ * Options:
338
+ * - proto3_optional = true
339
+ */
340
+ uptime?: number;
341
+ /**
342
+ * e.g. NodeJS.MemoryUsage, subject to change
343
+ *
344
+ * Options:
345
+ * - proto3_optional = true
346
+ */
347
+ memory?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
348
+ }
349
+ export namespace Platform {
350
+ /**
351
+ * Defined in:
352
+ * {@link file://./../../../dxos/client/services.proto}
353
+ */
354
+ export enum PLATFORM_TYPE {
355
+ BROWSER = 0,
356
+ SHARED_WORKER = 1,
357
+ NODE = 2
358
+ }
359
+ }
300
360
  /**
301
361
  * Defined in:
302
362
  * {@link file://./../../../dxos/client/services.proto}
@@ -322,6 +382,10 @@ export interface SystemService {
322
382
  * Reset the client.
323
383
  */
324
384
  reset: (request: void, options?: RequestOptions) => Promise<void>;
385
+ /**
386
+ * Get platform Information
387
+ */
388
+ getPlatform: (request: void, options?: RequestOptions) => Promise<Platform>;
325
389
  }
326
390
  /**
327
391
  * Defined in:
@@ -940,6 +1004,7 @@ export enum ConnectionState {
940
1004
  export interface NetworkStatus {
941
1005
  swarm: ConnectionState;
942
1006
  signaling?: NetworkStatus.Signal[];
1007
+ connectionInfo?: dxos_devtools_swarm.SwarmInfo[];
943
1008
  }
944
1009
  export namespace NetworkStatus {
945
1010
  /**
@@ -78,14 +78,14 @@ export enum NullValue {
78
78
  export interface ListValue {
79
79
  values?: Value[];
80
80
  }
81
- export interface Any {
82
- type_url: string;
83
- value: Uint8Array;
84
- }
85
81
  export interface Timestamp {
86
82
  seconds: string;
87
83
  nanos: number;
88
84
  }
85
+ export interface Any {
86
+ type_url: string;
87
+ value: Uint8Array;
88
+ }
89
89
  export interface FileDescriptorSet {
90
90
  file?: FileDescriptorProto[];
91
91
  }