@dxos/protocols 0.3.11-main.00a28cb → 0.3.11-main.0252f93

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.
Files changed (30) hide show
  1. package/dist/cjs/src/errors/errors.d.ts +3 -0
  2. package/dist/cjs/src/errors/errors.d.ts.map +1 -1
  3. package/dist/cjs/src/errors/errors.js +8 -1
  4. package/dist/cjs/src/errors/errors.js.map +1 -1
  5. package/dist/cjs/src/proto/gen/dxos/client/services.d.ts +241 -175
  6. package/dist/cjs/src/proto/gen/dxos/client/services.d.ts.map +1 -1
  7. package/dist/cjs/src/proto/gen/dxos/client/services.js +38 -25
  8. package/dist/cjs/src/proto/gen/dxos/client/services.js.map +1 -1
  9. package/dist/cjs/src/proto/gen/index.d.ts +2 -0
  10. package/dist/cjs/src/proto/gen/index.d.ts.map +1 -1
  11. package/dist/cjs/src/proto/gen/index.js +1 -1
  12. package/dist/cjs/src/proto/gen/index.js.map +1 -1
  13. package/dist/cjs/tsconfig.tsbuildinfo +1 -1
  14. package/dist/esm/src/errors/errors.d.ts +3 -0
  15. package/dist/esm/src/errors/errors.d.ts.map +1 -1
  16. package/dist/esm/src/errors/errors.js +6 -0
  17. package/dist/esm/src/errors/errors.js.map +1 -1
  18. package/dist/esm/src/proto/gen/dxos/client/services.d.ts +241 -175
  19. package/dist/esm/src/proto/gen/dxos/client/services.d.ts.map +1 -1
  20. package/dist/esm/src/proto/gen/dxos/client/services.js +37 -24
  21. package/dist/esm/src/proto/gen/dxos/client/services.js.map +1 -1
  22. package/dist/esm/src/proto/gen/index.d.ts +2 -0
  23. package/dist/esm/src/proto/gen/index.d.ts.map +1 -1
  24. package/dist/esm/src/proto/gen/index.js +1 -1
  25. package/dist/esm/src/proto/gen/index.js.map +1 -1
  26. package/package.json +5 -5
  27. package/src/errors/errors.ts +8 -0
  28. package/src/proto/dxos/client/services.proto +27 -0
  29. package/src/proto/gen/dxos/client/services.ts +240 -175
  30. package/src/proto/gen/index.ts +3 -1
@@ -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.00a28cb",
3
+ "version": "0.3.11-main.0252f93",
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.00a28cb",
37
- "@dxos/keys": "0.3.11-main.00a28cb",
38
- "@dxos/timeframe": "0.3.11-main.00a28cb",
39
- "@dxos/invariant": "0.3.11-main.00a28cb"
36
+ "@dxos/codec-protobuf": "0.3.11-main.0252f93",
37
+ "@dxos/timeframe": "0.3.11-main.0252f93",
38
+ "@dxos/invariant": "0.3.11-main.0252f93",
39
+ "@dxos/keys": "0.3.11-main.0252f93"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -100,6 +100,14 @@ export class InvalidInvitationError extends DatabaseError {
100
100
 
101
101
  registerErrorMessageContext('INVALID_INVITATION', InvalidInvitationError);
102
102
 
103
+ export class AlreadyJoinedError extends DatabaseError {
104
+ constructor(message?: string, context?: Record<string, any>) {
105
+ super('ALREADY_JOINED', message, context);
106
+ }
107
+ }
108
+
109
+ registerErrorMessageContext('ALREADY_JOINED', AlreadyJoinedError);
110
+
103
111
  export class ConnectionResetError extends BaseError {
104
112
  constructor(message?: string, context?: any) {
105
113
  super('CONNECTION_RESET', message, context);
@@ -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 {
@@ -59,6 +59,181 @@ import * as dxos_value from "../value";
59
59
  import * as example_testing_data from "../../example/testing/data";
60
60
  import * as example_testing_rpc from "../../example/testing/rpc";
61
61
  import * as google_protobuf from "../../google/protobuf";
62
+ /**
63
+ * Defined in:
64
+ * {@link file://./../../../dxos/client/logging.proto}
65
+ */
66
+ export interface Metrics {
67
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
68
+ values?: Metrics.KeyPair[];
69
+ }
70
+ export namespace Metrics {
71
+ /**
72
+ * Defined in:
73
+ * {@link file://./../../../dxos/client/logging.proto}
74
+ */
75
+ export interface KeyPair {
76
+ /**
77
+ * Options:
78
+ * - proto3_optional = true
79
+ */
80
+ key?: string;
81
+ /**
82
+ * Options:
83
+ * - proto3_optional = true
84
+ */
85
+ value?: dxos_value.Value;
86
+ /**
87
+ * Options:
88
+ * - proto3_optional = true
89
+ */
90
+ stats?: dxos_value.Stats;
91
+ }
92
+ }
93
+ /**
94
+ * Defined in:
95
+ * {@link file://./../../../dxos/client/logging.proto}
96
+ */
97
+ export interface ControlMetricsRequest {
98
+ /**
99
+ * Options:
100
+ * - proto3_optional = true
101
+ */
102
+ reset?: boolean;
103
+ /**
104
+ * Options:
105
+ * - proto3_optional = true
106
+ */
107
+ record?: boolean;
108
+ }
109
+ /**
110
+ * Defined in:
111
+ * {@link file://./../../../dxos/client/logging.proto}
112
+ */
113
+ export interface ControlMetricsResponse {
114
+ /**
115
+ * Options:
116
+ * - proto3_optional = true
117
+ */
118
+ recording?: boolean;
119
+ }
120
+ /**
121
+ * Defined in:
122
+ * {@link file://./../../../dxos/client/logging.proto}
123
+ */
124
+ export interface QueryMetricsRequest {
125
+ /**
126
+ * Options:
127
+ * - proto3_optional = true
128
+ */
129
+ interval?: number;
130
+ }
131
+ /**
132
+ * Defined in:
133
+ * {@link file://./../../../dxos/client/logging.proto}
134
+ */
135
+ export interface QueryMetricsResponse {
136
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
137
+ metrics: Metrics;
138
+ }
139
+ /**
140
+ * Defined in:
141
+ * {@link file://./../../../dxos/client/logging.proto}
142
+ */
143
+ export enum LogLevel {
144
+ TRACE = 5,
145
+ DEBUG = 10,
146
+ INFO = 11,
147
+ WARN = 12,
148
+ ERROR = 13
149
+ }
150
+ /**
151
+ * Defined in:
152
+ * {@link file://./../../../dxos/client/logging.proto}
153
+ */
154
+ export interface QueryLogsRequest {
155
+ filters?: QueryLogsRequest.Filter[];
156
+ /**
157
+ * Options:
158
+ * - proto3_optional = true
159
+ */
160
+ options?: QueryLogsRequest.MatchingOptions;
161
+ }
162
+ export namespace QueryLogsRequest {
163
+ /**
164
+ * Defined in:
165
+ * {@link file://./../../../dxos/client/logging.proto}
166
+ */
167
+ export enum MatchingOptions {
168
+ INCLUSIVE = 1,
169
+ EXPLICIT = 2
170
+ }
171
+ /**
172
+ * Defined in:
173
+ * {@link file://./../../../dxos/client/logging.proto}
174
+ */
175
+ export interface Filter {
176
+ level: LogLevel;
177
+ /**
178
+ * Options:
179
+ * - proto3_optional = true
180
+ */
181
+ pattern?: string;
182
+ }
183
+ }
184
+ /**
185
+ * Defined in:
186
+ * {@link file://./../../../dxos/client/logging.proto}
187
+ */
188
+ export interface LogEntry {
189
+ level: LogLevel;
190
+ message: string;
191
+ /**
192
+ * Options:
193
+ * - proto3_optional = true
194
+ */
195
+ context?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
196
+ /**
197
+ * Options:
198
+ * - proto3_optional = true
199
+ */
200
+ meta?: LogEntry.Meta;
201
+ /**
202
+ * Options:
203
+ * - proto3_optional = true
204
+ */
205
+ error?: dxos_error.Error;
206
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
207
+ }
208
+ export namespace LogEntry {
209
+ /**
210
+ * Defined in:
211
+ * {@link file://./../../../dxos/client/logging.proto}
212
+ */
213
+ export interface Meta {
214
+ file: string;
215
+ line: number;
216
+ /**
217
+ * Options:
218
+ * - proto3_optional = true
219
+ */
220
+ scope?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
221
+ /**
222
+ * Options:
223
+ * - proto3_optional = true
224
+ */
225
+ resourceId?: number;
226
+ }
227
+ }
228
+ /**
229
+ * Defined in:
230
+ * {@link file://./../../../dxos/client/logging.proto}
231
+ */
232
+ export interface LoggingService {
233
+ controlMetrics: (request: ControlMetricsRequest, options?: RequestOptions) => Promise<ControlMetricsResponse>;
234
+ queryMetrics: (request: QueryMetricsRequest, options?: RequestOptions) => Stream<QueryMetricsResponse>;
235
+ queryLogs: (request: QueryLogsRequest, options?: RequestOptions) => Stream<LogEntry>;
236
+ }
62
237
  /**
63
238
  * Defined in:
64
239
  * {@link file://./../../../dxos/client/services.proto}
@@ -122,6 +297,66 @@ export interface GetDiagnosticsResponse {
122
297
  timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
123
298
  diagnostics: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
124
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
+ }
125
360
  /**
126
361
  * Defined in:
127
362
  * {@link file://./../../../dxos/client/services.proto}
@@ -147,6 +382,10 @@ export interface SystemService {
147
382
  * Reset the client.
148
383
  */
149
384
  reset: (request: void, options?: RequestOptions) => Promise<void>;
385
+ /**
386
+ * Get platform Information
387
+ */
388
+ getPlatform: (request: void, options?: RequestOptions) => Promise<Platform>;
150
389
  }
151
390
  /**
152
391
  * Defined in:
@@ -765,6 +1004,7 @@ export enum ConnectionState {
765
1004
  export interface NetworkStatus {
766
1005
  swarm: ConnectionState;
767
1006
  signaling?: NetworkStatus.Signal[];
1007
+ connectionInfo?: dxos_devtools_swarm.SwarmInfo[];
768
1008
  }
769
1009
  export namespace NetworkStatus {
770
1010
  /**
@@ -791,178 +1031,3 @@ export interface NetworkService {
791
1031
  updateConfig: (request: UpdateConfigRequest, options?: RequestOptions) => Promise<void>;
792
1032
  queryStatus: (request: void, options?: RequestOptions) => Stream<NetworkStatus>;
793
1033
  }
794
- /**
795
- * Defined in:
796
- * {@link file://./../../../dxos/client/logging.proto}
797
- */
798
- export interface Metrics {
799
- timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
800
- values?: Metrics.KeyPair[];
801
- }
802
- export namespace Metrics {
803
- /**
804
- * Defined in:
805
- * {@link file://./../../../dxos/client/logging.proto}
806
- */
807
- export interface KeyPair {
808
- /**
809
- * Options:
810
- * - proto3_optional = true
811
- */
812
- key?: string;
813
- /**
814
- * Options:
815
- * - proto3_optional = true
816
- */
817
- value?: dxos_value.Value;
818
- /**
819
- * Options:
820
- * - proto3_optional = true
821
- */
822
- stats?: dxos_value.Stats;
823
- }
824
- }
825
- /**
826
- * Defined in:
827
- * {@link file://./../../../dxos/client/logging.proto}
828
- */
829
- export interface ControlMetricsRequest {
830
- /**
831
- * Options:
832
- * - proto3_optional = true
833
- */
834
- reset?: boolean;
835
- /**
836
- * Options:
837
- * - proto3_optional = true
838
- */
839
- record?: boolean;
840
- }
841
- /**
842
- * Defined in:
843
- * {@link file://./../../../dxos/client/logging.proto}
844
- */
845
- export interface ControlMetricsResponse {
846
- /**
847
- * Options:
848
- * - proto3_optional = true
849
- */
850
- recording?: boolean;
851
- }
852
- /**
853
- * Defined in:
854
- * {@link file://./../../../dxos/client/logging.proto}
855
- */
856
- export interface QueryMetricsRequest {
857
- /**
858
- * Options:
859
- * - proto3_optional = true
860
- */
861
- interval?: number;
862
- }
863
- /**
864
- * Defined in:
865
- * {@link file://./../../../dxos/client/logging.proto}
866
- */
867
- export interface QueryMetricsResponse {
868
- timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
869
- metrics: Metrics;
870
- }
871
- /**
872
- * Defined in:
873
- * {@link file://./../../../dxos/client/logging.proto}
874
- */
875
- export enum LogLevel {
876
- TRACE = 5,
877
- DEBUG = 10,
878
- INFO = 11,
879
- WARN = 12,
880
- ERROR = 13
881
- }
882
- /**
883
- * Defined in:
884
- * {@link file://./../../../dxos/client/logging.proto}
885
- */
886
- export interface QueryLogsRequest {
887
- filters?: QueryLogsRequest.Filter[];
888
- /**
889
- * Options:
890
- * - proto3_optional = true
891
- */
892
- options?: QueryLogsRequest.MatchingOptions;
893
- }
894
- export namespace QueryLogsRequest {
895
- /**
896
- * Defined in:
897
- * {@link file://./../../../dxos/client/logging.proto}
898
- */
899
- export enum MatchingOptions {
900
- INCLUSIVE = 1,
901
- EXPLICIT = 2
902
- }
903
- /**
904
- * Defined in:
905
- * {@link file://./../../../dxos/client/logging.proto}
906
- */
907
- export interface Filter {
908
- level: LogLevel;
909
- /**
910
- * Options:
911
- * - proto3_optional = true
912
- */
913
- pattern?: string;
914
- }
915
- }
916
- /**
917
- * Defined in:
918
- * {@link file://./../../../dxos/client/logging.proto}
919
- */
920
- export interface LogEntry {
921
- level: LogLevel;
922
- message: string;
923
- /**
924
- * Options:
925
- * - proto3_optional = true
926
- */
927
- context?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
928
- /**
929
- * Options:
930
- * - proto3_optional = true
931
- */
932
- meta?: LogEntry.Meta;
933
- /**
934
- * Options:
935
- * - proto3_optional = true
936
- */
937
- error?: dxos_error.Error;
938
- timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
939
- }
940
- export namespace LogEntry {
941
- /**
942
- * Defined in:
943
- * {@link file://./../../../dxos/client/logging.proto}
944
- */
945
- export interface Meta {
946
- file: string;
947
- line: number;
948
- /**
949
- * Options:
950
- * - proto3_optional = true
951
- */
952
- scope?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
953
- /**
954
- * Options:
955
- * - proto3_optional = true
956
- */
957
- resourceId?: number;
958
- }
959
- }
960
- /**
961
- * Defined in:
962
- * {@link file://./../../../dxos/client/logging.proto}
963
- */
964
- export interface LoggingService {
965
- controlMetrics: (request: ControlMetricsRequest, options?: RequestOptions) => Promise<ControlMetricsResponse>;
966
- queryMetrics: (request: QueryMetricsRequest, options?: RequestOptions) => Stream<QueryMetricsResponse>;
967
- queryLogs: (request: QueryLogsRequest, options?: RequestOptions) => Stream<LogEntry>;
968
- }