@dxos/protocols 0.3.7 → 0.3.8-main.8be0ad4

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.
@@ -58,181 +58,6 @@ import * as dxos_value from "../value";
58
58
  import * as example_testing_data from "../../example/testing/data";
59
59
  import * as example_testing_rpc from "../../example/testing/rpc";
60
60
  import * as google_protobuf from "../../google/protobuf";
61
- /**
62
- * Defined in:
63
- * {@link file://./../../../dxos/client/logging.proto}
64
- */
65
- export interface Metrics {
66
- timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
67
- values?: Metrics.KeyPair[];
68
- }
69
- export namespace Metrics {
70
- /**
71
- * Defined in:
72
- * {@link file://./../../../dxos/client/logging.proto}
73
- */
74
- export interface KeyPair {
75
- /**
76
- * Options:
77
- * - proto3_optional = true
78
- */
79
- key?: string;
80
- /**
81
- * Options:
82
- * - proto3_optional = true
83
- */
84
- value?: dxos_value.Value;
85
- /**
86
- * Options:
87
- * - proto3_optional = true
88
- */
89
- stats?: dxos_value.Stats;
90
- }
91
- }
92
- /**
93
- * Defined in:
94
- * {@link file://./../../../dxos/client/logging.proto}
95
- */
96
- export interface ControlMetricsRequest {
97
- /**
98
- * Options:
99
- * - proto3_optional = true
100
- */
101
- reset?: boolean;
102
- /**
103
- * Options:
104
- * - proto3_optional = true
105
- */
106
- record?: boolean;
107
- }
108
- /**
109
- * Defined in:
110
- * {@link file://./../../../dxos/client/logging.proto}
111
- */
112
- export interface ControlMetricsResponse {
113
- /**
114
- * Options:
115
- * - proto3_optional = true
116
- */
117
- recording?: boolean;
118
- }
119
- /**
120
- * Defined in:
121
- * {@link file://./../../../dxos/client/logging.proto}
122
- */
123
- export interface QueryMetricsRequest {
124
- /**
125
- * Options:
126
- * - proto3_optional = true
127
- */
128
- interval?: number;
129
- }
130
- /**
131
- * Defined in:
132
- * {@link file://./../../../dxos/client/logging.proto}
133
- */
134
- export interface QueryMetricsResponse {
135
- timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
136
- metrics: Metrics;
137
- }
138
- /**
139
- * Defined in:
140
- * {@link file://./../../../dxos/client/logging.proto}
141
- */
142
- export enum LogLevel {
143
- TRACE = 5,
144
- DEBUG = 10,
145
- INFO = 11,
146
- WARN = 12,
147
- ERROR = 13
148
- }
149
- /**
150
- * Defined in:
151
- * {@link file://./../../../dxos/client/logging.proto}
152
- */
153
- export interface QueryLogsRequest {
154
- filters?: QueryLogsRequest.Filter[];
155
- /**
156
- * Options:
157
- * - proto3_optional = true
158
- */
159
- options?: QueryLogsRequest.MatchingOptions;
160
- }
161
- export namespace QueryLogsRequest {
162
- /**
163
- * Defined in:
164
- * {@link file://./../../../dxos/client/logging.proto}
165
- */
166
- export enum MatchingOptions {
167
- INCLUSIVE = 1,
168
- EXPLICIT = 2
169
- }
170
- /**
171
- * Defined in:
172
- * {@link file://./../../../dxos/client/logging.proto}
173
- */
174
- export interface Filter {
175
- level: LogLevel;
176
- /**
177
- * Options:
178
- * - proto3_optional = true
179
- */
180
- pattern?: string;
181
- }
182
- }
183
- /**
184
- * Defined in:
185
- * {@link file://./../../../dxos/client/logging.proto}
186
- */
187
- export interface LogEntry {
188
- level: LogLevel;
189
- message: string;
190
- /**
191
- * Options:
192
- * - proto3_optional = true
193
- */
194
- context?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
195
- /**
196
- * Options:
197
- * - proto3_optional = true
198
- */
199
- meta?: LogEntry.Meta;
200
- /**
201
- * Options:
202
- * - proto3_optional = true
203
- */
204
- error?: dxos_error.Error;
205
- timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
206
- }
207
- export namespace LogEntry {
208
- /**
209
- * Defined in:
210
- * {@link file://./../../../dxos/client/logging.proto}
211
- */
212
- export interface Meta {
213
- file: string;
214
- line: number;
215
- /**
216
- * Options:
217
- * - proto3_optional = true
218
- */
219
- scope?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
220
- /**
221
- * Options:
222
- * - proto3_optional = true
223
- */
224
- resourceId?: number;
225
- }
226
- }
227
- /**
228
- * Defined in:
229
- * {@link file://./../../../dxos/client/logging.proto}
230
- */
231
- export interface LoggingService {
232
- controlMetrics: (request: ControlMetricsRequest, options?: RequestOptions) => Promise<ControlMetricsResponse>;
233
- queryMetrics: (request: QueryMetricsRequest, options?: RequestOptions) => Stream<QueryMetricsResponse>;
234
- queryLogs: (request: QueryLogsRequest, options?: RequestOptions) => Stream<LogEntry>;
235
- }
236
61
  /**
237
62
  * Defined in:
238
63
  * {@link file://./../../../dxos/client/services.proto}
@@ -927,3 +752,178 @@ export interface NetworkService {
927
752
  updateConfig: (request: UpdateConfigRequest, options?: RequestOptions) => Promise<void>;
928
753
  queryStatus: (request: void, options?: RequestOptions) => Stream<NetworkStatus>;
929
754
  }
755
+ /**
756
+ * Defined in:
757
+ * {@link file://./../../../dxos/client/logging.proto}
758
+ */
759
+ export interface Metrics {
760
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
761
+ values?: Metrics.KeyPair[];
762
+ }
763
+ export namespace Metrics {
764
+ /**
765
+ * Defined in:
766
+ * {@link file://./../../../dxos/client/logging.proto}
767
+ */
768
+ export interface KeyPair {
769
+ /**
770
+ * Options:
771
+ * - proto3_optional = true
772
+ */
773
+ key?: string;
774
+ /**
775
+ * Options:
776
+ * - proto3_optional = true
777
+ */
778
+ value?: dxos_value.Value;
779
+ /**
780
+ * Options:
781
+ * - proto3_optional = true
782
+ */
783
+ stats?: dxos_value.Stats;
784
+ }
785
+ }
786
+ /**
787
+ * Defined in:
788
+ * {@link file://./../../../dxos/client/logging.proto}
789
+ */
790
+ export interface ControlMetricsRequest {
791
+ /**
792
+ * Options:
793
+ * - proto3_optional = true
794
+ */
795
+ reset?: boolean;
796
+ /**
797
+ * Options:
798
+ * - proto3_optional = true
799
+ */
800
+ record?: boolean;
801
+ }
802
+ /**
803
+ * Defined in:
804
+ * {@link file://./../../../dxos/client/logging.proto}
805
+ */
806
+ export interface ControlMetricsResponse {
807
+ /**
808
+ * Options:
809
+ * - proto3_optional = true
810
+ */
811
+ recording?: boolean;
812
+ }
813
+ /**
814
+ * Defined in:
815
+ * {@link file://./../../../dxos/client/logging.proto}
816
+ */
817
+ export interface QueryMetricsRequest {
818
+ /**
819
+ * Options:
820
+ * - proto3_optional = true
821
+ */
822
+ interval?: number;
823
+ }
824
+ /**
825
+ * Defined in:
826
+ * {@link file://./../../../dxos/client/logging.proto}
827
+ */
828
+ export interface QueryMetricsResponse {
829
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
830
+ metrics: Metrics;
831
+ }
832
+ /**
833
+ * Defined in:
834
+ * {@link file://./../../../dxos/client/logging.proto}
835
+ */
836
+ export enum LogLevel {
837
+ TRACE = 5,
838
+ DEBUG = 10,
839
+ INFO = 11,
840
+ WARN = 12,
841
+ ERROR = 13
842
+ }
843
+ /**
844
+ * Defined in:
845
+ * {@link file://./../../../dxos/client/logging.proto}
846
+ */
847
+ export interface QueryLogsRequest {
848
+ filters?: QueryLogsRequest.Filter[];
849
+ /**
850
+ * Options:
851
+ * - proto3_optional = true
852
+ */
853
+ options?: QueryLogsRequest.MatchingOptions;
854
+ }
855
+ export namespace QueryLogsRequest {
856
+ /**
857
+ * Defined in:
858
+ * {@link file://./../../../dxos/client/logging.proto}
859
+ */
860
+ export enum MatchingOptions {
861
+ INCLUSIVE = 1,
862
+ EXPLICIT = 2
863
+ }
864
+ /**
865
+ * Defined in:
866
+ * {@link file://./../../../dxos/client/logging.proto}
867
+ */
868
+ export interface Filter {
869
+ level: LogLevel;
870
+ /**
871
+ * Options:
872
+ * - proto3_optional = true
873
+ */
874
+ pattern?: string;
875
+ }
876
+ }
877
+ /**
878
+ * Defined in:
879
+ * {@link file://./../../../dxos/client/logging.proto}
880
+ */
881
+ export interface LogEntry {
882
+ level: LogLevel;
883
+ message: string;
884
+ /**
885
+ * Options:
886
+ * - proto3_optional = true
887
+ */
888
+ context?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
889
+ /**
890
+ * Options:
891
+ * - proto3_optional = true
892
+ */
893
+ meta?: LogEntry.Meta;
894
+ /**
895
+ * Options:
896
+ * - proto3_optional = true
897
+ */
898
+ error?: dxos_error.Error;
899
+ timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
900
+ }
901
+ export namespace LogEntry {
902
+ /**
903
+ * Defined in:
904
+ * {@link file://./../../../dxos/client/logging.proto}
905
+ */
906
+ export interface Meta {
907
+ file: string;
908
+ line: number;
909
+ /**
910
+ * Options:
911
+ * - proto3_optional = true
912
+ */
913
+ scope?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
914
+ /**
915
+ * Options:
916
+ * - proto3_optional = true
917
+ */
918
+ resourceId?: number;
919
+ }
920
+ }
921
+ /**
922
+ * Defined in:
923
+ * {@link file://./../../../dxos/client/logging.proto}
924
+ */
925
+ export interface LoggingService {
926
+ controlMetrics: (request: ControlMetricsRequest, options?: RequestOptions) => Promise<ControlMetricsResponse>;
927
+ queryMetrics: (request: QueryMetricsRequest, options?: RequestOptions) => Stream<QueryMetricsResponse>;
928
+ queryLogs: (request: QueryLogsRequest, options?: RequestOptions) => Stream<LogEntry>;
929
+ }
@@ -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
  }