@dxos/protocols 0.5.9-main.1c1903d → 0.5.9-main.21b00b3

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.
@@ -61,181 +61,6 @@ import * as dxos_value from "../value";
61
61
  import * as example_testing_data from "../../example/testing/data";
62
62
  import * as example_testing_rpc from "../../example/testing/rpc";
63
63
  import * as google_protobuf from "../../google/protobuf";
64
- /**
65
- * Defined in:
66
- * {@link file://./../../../dxos/client/logging.proto}
67
- */
68
- export interface Metrics {
69
- timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
70
- values?: Metrics.KeyPair[];
71
- }
72
- export namespace Metrics {
73
- /**
74
- * Defined in:
75
- * {@link file://./../../../dxos/client/logging.proto}
76
- */
77
- export interface KeyPair {
78
- /**
79
- * Options:
80
- * - proto3_optional = true
81
- */
82
- key?: string;
83
- /**
84
- * Options:
85
- * - proto3_optional = true
86
- */
87
- value?: dxos_value.Value;
88
- /**
89
- * Options:
90
- * - proto3_optional = true
91
- */
92
- stats?: dxos_value.Stats;
93
- }
94
- }
95
- /**
96
- * Defined in:
97
- * {@link file://./../../../dxos/client/logging.proto}
98
- */
99
- export interface ControlMetricsRequest {
100
- /**
101
- * Options:
102
- * - proto3_optional = true
103
- */
104
- reset?: boolean;
105
- /**
106
- * Options:
107
- * - proto3_optional = true
108
- */
109
- record?: boolean;
110
- }
111
- /**
112
- * Defined in:
113
- * {@link file://./../../../dxos/client/logging.proto}
114
- */
115
- export interface ControlMetricsResponse {
116
- /**
117
- * Options:
118
- * - proto3_optional = true
119
- */
120
- recording?: boolean;
121
- }
122
- /**
123
- * Defined in:
124
- * {@link file://./../../../dxos/client/logging.proto}
125
- */
126
- export interface QueryMetricsRequest {
127
- /**
128
- * Options:
129
- * - proto3_optional = true
130
- */
131
- interval?: number;
132
- }
133
- /**
134
- * Defined in:
135
- * {@link file://./../../../dxos/client/logging.proto}
136
- */
137
- export interface QueryMetricsResponse {
138
- timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
139
- metrics: Metrics;
140
- }
141
- /**
142
- * Defined in:
143
- * {@link file://./../../../dxos/client/logging.proto}
144
- */
145
- export enum LogLevel {
146
- TRACE = 5,
147
- DEBUG = 10,
148
- INFO = 11,
149
- WARN = 12,
150
- ERROR = 13
151
- }
152
- /**
153
- * Defined in:
154
- * {@link file://./../../../dxos/client/logging.proto}
155
- */
156
- export interface QueryLogsRequest {
157
- filters?: QueryLogsRequest.Filter[];
158
- /**
159
- * Options:
160
- * - proto3_optional = true
161
- */
162
- options?: QueryLogsRequest.MatchingOptions;
163
- }
164
- export namespace QueryLogsRequest {
165
- /**
166
- * Defined in:
167
- * {@link file://./../../../dxos/client/logging.proto}
168
- */
169
- export enum MatchingOptions {
170
- INCLUSIVE = 1,
171
- EXPLICIT = 2
172
- }
173
- /**
174
- * Defined in:
175
- * {@link file://./../../../dxos/client/logging.proto}
176
- */
177
- export interface Filter {
178
- level: LogLevel;
179
- /**
180
- * Options:
181
- * - proto3_optional = true
182
- */
183
- pattern?: string;
184
- }
185
- }
186
- /**
187
- * Defined in:
188
- * {@link file://./../../../dxos/client/logging.proto}
189
- */
190
- export interface LogEntry {
191
- level: LogLevel;
192
- message: string;
193
- /**
194
- * Options:
195
- * - proto3_optional = true
196
- */
197
- context?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
198
- /**
199
- * Options:
200
- * - proto3_optional = true
201
- */
202
- meta?: LogEntry.Meta;
203
- /**
204
- * Options:
205
- * - proto3_optional = true
206
- */
207
- error?: dxos_error.Error;
208
- timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
209
- }
210
- export namespace LogEntry {
211
- /**
212
- * Defined in:
213
- * {@link file://./../../../dxos/client/logging.proto}
214
- */
215
- export interface Meta {
216
- file: string;
217
- line: number;
218
- /**
219
- * Options:
220
- * - proto3_optional = true
221
- */
222
- scope?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
223
- /**
224
- * Options:
225
- * - proto3_optional = true
226
- */
227
- resourceId?: number;
228
- }
229
- }
230
- /**
231
- * Defined in:
232
- * {@link file://./../../../dxos/client/logging.proto}
233
- */
234
- export interface LoggingService {
235
- controlMetrics: (request: ControlMetricsRequest, options?: RequestOptions) => Promise<ControlMetricsResponse>;
236
- queryMetrics: (request: QueryMetricsRequest, options?: RequestOptions) => Stream<QueryMetricsResponse>;
237
- queryLogs: (request: QueryLogsRequest, options?: RequestOptions) => Stream<LogEntry>;
238
- }
239
64
  /**
240
65
  * Defined in:
241
66
  * {@link file://./../../../dxos/client/services.proto}
@@ -1151,3 +976,178 @@ export interface NetworkService {
1151
976
  updateConfig: (request: UpdateConfigRequest, options?: RequestOptions) => Promise<void>;
1152
977
  queryStatus: (request: void, options?: RequestOptions) => Stream<NetworkStatus>;
1153
978
  }
979
+ /**
980
+ * Defined in:
981
+ * {@link file://./../../../dxos/client/logging.proto}
982
+ */
983
+ export interface Metrics {
984
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
985
+ values?: Metrics.KeyPair[];
986
+ }
987
+ export namespace Metrics {
988
+ /**
989
+ * Defined in:
990
+ * {@link file://./../../../dxos/client/logging.proto}
991
+ */
992
+ export interface KeyPair {
993
+ /**
994
+ * Options:
995
+ * - proto3_optional = true
996
+ */
997
+ key?: string;
998
+ /**
999
+ * Options:
1000
+ * - proto3_optional = true
1001
+ */
1002
+ value?: dxos_value.Value;
1003
+ /**
1004
+ * Options:
1005
+ * - proto3_optional = true
1006
+ */
1007
+ stats?: dxos_value.Stats;
1008
+ }
1009
+ }
1010
+ /**
1011
+ * Defined in:
1012
+ * {@link file://./../../../dxos/client/logging.proto}
1013
+ */
1014
+ export interface ControlMetricsRequest {
1015
+ /**
1016
+ * Options:
1017
+ * - proto3_optional = true
1018
+ */
1019
+ reset?: boolean;
1020
+ /**
1021
+ * Options:
1022
+ * - proto3_optional = true
1023
+ */
1024
+ record?: boolean;
1025
+ }
1026
+ /**
1027
+ * Defined in:
1028
+ * {@link file://./../../../dxos/client/logging.proto}
1029
+ */
1030
+ export interface ControlMetricsResponse {
1031
+ /**
1032
+ * Options:
1033
+ * - proto3_optional = true
1034
+ */
1035
+ recording?: boolean;
1036
+ }
1037
+ /**
1038
+ * Defined in:
1039
+ * {@link file://./../../../dxos/client/logging.proto}
1040
+ */
1041
+ export interface QueryMetricsRequest {
1042
+ /**
1043
+ * Options:
1044
+ * - proto3_optional = true
1045
+ */
1046
+ interval?: number;
1047
+ }
1048
+ /**
1049
+ * Defined in:
1050
+ * {@link file://./../../../dxos/client/logging.proto}
1051
+ */
1052
+ export interface QueryMetricsResponse {
1053
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
1054
+ metrics: Metrics;
1055
+ }
1056
+ /**
1057
+ * Defined in:
1058
+ * {@link file://./../../../dxos/client/logging.proto}
1059
+ */
1060
+ export enum LogLevel {
1061
+ TRACE = 5,
1062
+ DEBUG = 10,
1063
+ INFO = 11,
1064
+ WARN = 12,
1065
+ ERROR = 13
1066
+ }
1067
+ /**
1068
+ * Defined in:
1069
+ * {@link file://./../../../dxos/client/logging.proto}
1070
+ */
1071
+ export interface QueryLogsRequest {
1072
+ filters?: QueryLogsRequest.Filter[];
1073
+ /**
1074
+ * Options:
1075
+ * - proto3_optional = true
1076
+ */
1077
+ options?: QueryLogsRequest.MatchingOptions;
1078
+ }
1079
+ export namespace QueryLogsRequest {
1080
+ /**
1081
+ * Defined in:
1082
+ * {@link file://./../../../dxos/client/logging.proto}
1083
+ */
1084
+ export enum MatchingOptions {
1085
+ INCLUSIVE = 1,
1086
+ EXPLICIT = 2
1087
+ }
1088
+ /**
1089
+ * Defined in:
1090
+ * {@link file://./../../../dxos/client/logging.proto}
1091
+ */
1092
+ export interface Filter {
1093
+ level: LogLevel;
1094
+ /**
1095
+ * Options:
1096
+ * - proto3_optional = true
1097
+ */
1098
+ pattern?: string;
1099
+ }
1100
+ }
1101
+ /**
1102
+ * Defined in:
1103
+ * {@link file://./../../../dxos/client/logging.proto}
1104
+ */
1105
+ export interface LogEntry {
1106
+ level: LogLevel;
1107
+ message: string;
1108
+ /**
1109
+ * Options:
1110
+ * - proto3_optional = true
1111
+ */
1112
+ context?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
1113
+ /**
1114
+ * Options:
1115
+ * - proto3_optional = true
1116
+ */
1117
+ meta?: LogEntry.Meta;
1118
+ /**
1119
+ * Options:
1120
+ * - proto3_optional = true
1121
+ */
1122
+ error?: dxos_error.Error;
1123
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
1124
+ }
1125
+ export namespace LogEntry {
1126
+ /**
1127
+ * Defined in:
1128
+ * {@link file://./../../../dxos/client/logging.proto}
1129
+ */
1130
+ export interface Meta {
1131
+ file: string;
1132
+ line: number;
1133
+ /**
1134
+ * Options:
1135
+ * - proto3_optional = true
1136
+ */
1137
+ scope?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
1138
+ /**
1139
+ * Options:
1140
+ * - proto3_optional = true
1141
+ */
1142
+ resourceId?: number;
1143
+ }
1144
+ }
1145
+ /**
1146
+ * Defined in:
1147
+ * {@link file://./../../../dxos/client/logging.proto}
1148
+ */
1149
+ export interface LoggingService {
1150
+ controlMetrics: (request: ControlMetricsRequest, options?: RequestOptions) => Promise<ControlMetricsResponse>;
1151
+ queryMetrics: (request: QueryMetricsRequest, options?: RequestOptions) => Stream<QueryMetricsResponse>;
1152
+ queryLogs: (request: QueryLogsRequest, options?: RequestOptions) => Stream<LogEntry>;
1153
+ }
@@ -61,6 +61,37 @@ import * as dxos_value from "../value";
61
61
  import * as example_testing_data from "../../example/testing/data";
62
62
  import * as example_testing_rpc from "../../example/testing/rpc";
63
63
  import * as google_protobuf from "../../google/protobuf";
64
+ /**
65
+ * Defined in:
66
+ * {@link file://./../../../dxos/devtools/diagnostics.proto}
67
+ */
68
+ export interface Services {
69
+ spaces?: SpaceStats[];
70
+ }
71
+ /**
72
+ * Defined in:
73
+ * {@link file://./../../../dxos/devtools/diagnostics.proto}
74
+ */
75
+ export interface SpaceStats {
76
+ key: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
77
+ peers?: PeerStats[];
78
+ }
79
+ /**
80
+ * Defined in:
81
+ * {@link file://./../../../dxos/devtools/diagnostics.proto}
82
+ */
83
+ export interface PeerStats {
84
+ controlFeed: FeedStats;
85
+ dataFeed: FeedStats;
86
+ }
87
+ /**
88
+ * Defined in:
89
+ * {@link file://./../../../dxos/devtools/diagnostics.proto}
90
+ */
91
+ export interface FeedStats {
92
+ key: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
93
+ length: number;
94
+ }
64
95
  /**
65
96
  * Defined in:
66
97
  * {@link file://./../../../dxos/devtools/host.proto}
@@ -483,34 +514,3 @@ export interface SubscribeToSwarmInfoRequest {
483
514
  export interface SubscribeToSwarmInfoResponse {
484
515
  data?: dxos_devtools_swarm.SwarmInfo[];
485
516
  }
486
- /**
487
- * Defined in:
488
- * {@link file://./../../../dxos/devtools/diagnostics.proto}
489
- */
490
- export interface Services {
491
- spaces?: SpaceStats[];
492
- }
493
- /**
494
- * Defined in:
495
- * {@link file://./../../../dxos/devtools/diagnostics.proto}
496
- */
497
- export interface SpaceStats {
498
- key: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
499
- peers?: PeerStats[];
500
- }
501
- /**
502
- * Defined in:
503
- * {@link file://./../../../dxos/devtools/diagnostics.proto}
504
- */
505
- export interface PeerStats {
506
- controlFeed: FeedStats;
507
- dataFeed: FeedStats;
508
- }
509
- /**
510
- * Defined in:
511
- * {@link file://./../../../dxos/devtools/diagnostics.proto}
512
- */
513
- export interface FeedStats {
514
- key: ReturnType<(typeof substitutions)["dxos.keys.PublicKey"]["decode"]>;
515
- length: number;
516
- }