@dxos/protocols 0.3.9 → 0.3.10-main.051aa7d

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/protocols",
3
- "version": "0.3.9",
3
+ "version": "0.3.10-main.051aa7d",
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",
37
- "@dxos/invariant": "0.3.9",
38
- "@dxos/keys": "0.3.9",
39
- "@dxos/timeframe": "0.3.9"
36
+ "@dxos/codec-protobuf": "0.3.10-main.051aa7d",
37
+ "@dxos/timeframe": "0.3.10-main.051aa7d",
38
+ "@dxos/keys": "0.3.10-main.051aa7d",
39
+ "@dxos/invariant": "0.3.10-main.051aa7d"
40
40
  },
41
41
  "devDependencies": {
42
42
  "glob": "~7.1.6"
@@ -59,181 +59,6 @@ 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
- }
237
62
  /**
238
63
  * Defined in:
239
64
  * {@link file://./../../../dxos/client/services.proto}
@@ -943,3 +768,178 @@ export interface NetworkService {
943
768
  updateConfig: (request: UpdateConfigRequest, options?: RequestOptions) => Promise<void>;
944
769
  queryStatus: (request: void, options?: RequestOptions) => Stream<NetworkStatus>;
945
770
  }
771
+ /**
772
+ * Defined in:
773
+ * {@link file://./../../../dxos/client/logging.proto}
774
+ */
775
+ export interface Metrics {
776
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
777
+ values?: Metrics.KeyPair[];
778
+ }
779
+ export namespace Metrics {
780
+ /**
781
+ * Defined in:
782
+ * {@link file://./../../../dxos/client/logging.proto}
783
+ */
784
+ export interface KeyPair {
785
+ /**
786
+ * Options:
787
+ * - proto3_optional = true
788
+ */
789
+ key?: string;
790
+ /**
791
+ * Options:
792
+ * - proto3_optional = true
793
+ */
794
+ value?: dxos_value.Value;
795
+ /**
796
+ * Options:
797
+ * - proto3_optional = true
798
+ */
799
+ stats?: dxos_value.Stats;
800
+ }
801
+ }
802
+ /**
803
+ * Defined in:
804
+ * {@link file://./../../../dxos/client/logging.proto}
805
+ */
806
+ export interface ControlMetricsRequest {
807
+ /**
808
+ * Options:
809
+ * - proto3_optional = true
810
+ */
811
+ reset?: boolean;
812
+ /**
813
+ * Options:
814
+ * - proto3_optional = true
815
+ */
816
+ record?: boolean;
817
+ }
818
+ /**
819
+ * Defined in:
820
+ * {@link file://./../../../dxos/client/logging.proto}
821
+ */
822
+ export interface ControlMetricsResponse {
823
+ /**
824
+ * Options:
825
+ * - proto3_optional = true
826
+ */
827
+ recording?: boolean;
828
+ }
829
+ /**
830
+ * Defined in:
831
+ * {@link file://./../../../dxos/client/logging.proto}
832
+ */
833
+ export interface QueryMetricsRequest {
834
+ /**
835
+ * Options:
836
+ * - proto3_optional = true
837
+ */
838
+ interval?: number;
839
+ }
840
+ /**
841
+ * Defined in:
842
+ * {@link file://./../../../dxos/client/logging.proto}
843
+ */
844
+ export interface QueryMetricsResponse {
845
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
846
+ metrics: Metrics;
847
+ }
848
+ /**
849
+ * Defined in:
850
+ * {@link file://./../../../dxos/client/logging.proto}
851
+ */
852
+ export enum LogLevel {
853
+ TRACE = 5,
854
+ DEBUG = 10,
855
+ INFO = 11,
856
+ WARN = 12,
857
+ ERROR = 13
858
+ }
859
+ /**
860
+ * Defined in:
861
+ * {@link file://./../../../dxos/client/logging.proto}
862
+ */
863
+ export interface QueryLogsRequest {
864
+ filters?: QueryLogsRequest.Filter[];
865
+ /**
866
+ * Options:
867
+ * - proto3_optional = true
868
+ */
869
+ options?: QueryLogsRequest.MatchingOptions;
870
+ }
871
+ export namespace QueryLogsRequest {
872
+ /**
873
+ * Defined in:
874
+ * {@link file://./../../../dxos/client/logging.proto}
875
+ */
876
+ export enum MatchingOptions {
877
+ INCLUSIVE = 1,
878
+ EXPLICIT = 2
879
+ }
880
+ /**
881
+ * Defined in:
882
+ * {@link file://./../../../dxos/client/logging.proto}
883
+ */
884
+ export interface Filter {
885
+ level: LogLevel;
886
+ /**
887
+ * Options:
888
+ * - proto3_optional = true
889
+ */
890
+ pattern?: string;
891
+ }
892
+ }
893
+ /**
894
+ * Defined in:
895
+ * {@link file://./../../../dxos/client/logging.proto}
896
+ */
897
+ export interface LogEntry {
898
+ level: LogLevel;
899
+ message: string;
900
+ /**
901
+ * Options:
902
+ * - proto3_optional = true
903
+ */
904
+ context?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
905
+ /**
906
+ * Options:
907
+ * - proto3_optional = true
908
+ */
909
+ meta?: LogEntry.Meta;
910
+ /**
911
+ * Options:
912
+ * - proto3_optional = true
913
+ */
914
+ error?: dxos_error.Error;
915
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
916
+ }
917
+ export namespace LogEntry {
918
+ /**
919
+ * Defined in:
920
+ * {@link file://./../../../dxos/client/logging.proto}
921
+ */
922
+ export interface Meta {
923
+ file: string;
924
+ line: number;
925
+ /**
926
+ * Options:
927
+ * - proto3_optional = true
928
+ */
929
+ scope?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
930
+ /**
931
+ * Options:
932
+ * - proto3_optional = true
933
+ */
934
+ resourceId?: number;
935
+ }
936
+ }
937
+ /**
938
+ * Defined in:
939
+ * {@link file://./../../../dxos/client/logging.proto}
940
+ */
941
+ export interface LoggingService {
942
+ controlMetrics: (request: ControlMetricsRequest, options?: RequestOptions) => Promise<ControlMetricsResponse>;
943
+ queryMetrics: (request: QueryMetricsRequest, options?: RequestOptions) => Stream<QueryMetricsResponse>;
944
+ queryLogs: (request: QueryLogsRequest, options?: RequestOptions) => Stream<LogEntry>;
945
+ }
@@ -59,6 +59,37 @@ 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/devtools/diagnostics.proto}
65
+ */
66
+ export interface Services {
67
+ spaces?: SpaceStats[];
68
+ }
69
+ /**
70
+ * Defined in:
71
+ * {@link file://./../../../dxos/devtools/diagnostics.proto}
72
+ */
73
+ export interface SpaceStats {
74
+ key: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
75
+ peers?: PeerStats[];
76
+ }
77
+ /**
78
+ * Defined in:
79
+ * {@link file://./../../../dxos/devtools/diagnostics.proto}
80
+ */
81
+ export interface PeerStats {
82
+ controlFeed: FeedStats;
83
+ dataFeed: FeedStats;
84
+ }
85
+ /**
86
+ * Defined in:
87
+ * {@link file://./../../../dxos/devtools/diagnostics.proto}
88
+ */
89
+ export interface FeedStats {
90
+ key: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
91
+ length: number;
92
+ }
62
93
  /**
63
94
  * Defined in:
64
95
  * {@link file://./../../../dxos/devtools/host.proto}
@@ -481,34 +512,3 @@ export interface SubscribeToSwarmInfoRequest {
481
512
  export interface SubscribeToSwarmInfoResponse {
482
513
  data?: dxos_devtools_swarm.SwarmInfo[];
483
514
  }
484
- /**
485
- * Defined in:
486
- * {@link file://./../../../dxos/devtools/diagnostics.proto}
487
- */
488
- export interface Services {
489
- spaces?: SpaceStats[];
490
- }
491
- /**
492
- * Defined in:
493
- * {@link file://./../../../dxos/devtools/diagnostics.proto}
494
- */
495
- export interface SpaceStats {
496
- key: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
497
- peers?: PeerStats[];
498
- }
499
- /**
500
- * Defined in:
501
- * {@link file://./../../../dxos/devtools/diagnostics.proto}
502
- */
503
- export interface PeerStats {
504
- controlFeed: FeedStats;
505
- dataFeed: FeedStats;
506
- }
507
- /**
508
- * Defined in:
509
- * {@link file://./../../../dxos/devtools/diagnostics.proto}
510
- */
511
- export interface FeedStats {
512
- key: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
513
- length: number;
514
- }
@@ -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
  }