@dxos/protocols 0.5.9-main.bfee100 → 0.5.9-main.d63ef8d
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/dist/cjs/src/proto/gen/dxos/client/services.d.ts +193 -178
- package/dist/cjs/src/proto/gen/dxos/client/services.d.ts.map +1 -1
- package/dist/cjs/src/proto/gen/dxos/client/services.js +27 -25
- package/dist/cjs/src/proto/gen/dxos/client/services.js.map +1 -1
- package/dist/cjs/src/proto/gen/google/protobuf.d.ts +4 -4
- package/dist/cjs/src/proto/gen/google/protobuf.d.ts.map +1 -1
- package/dist/cjs/src/proto/gen/index.d.ts +1 -0
- package/dist/cjs/src/proto/gen/index.d.ts.map +1 -1
- package/dist/cjs/src/proto/gen/index.js +1 -1
- package/dist/cjs/src/proto/gen/index.js.map +1 -1
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/src/proto/gen/dxos/client/services.d.ts +193 -178
- package/dist/esm/src/proto/gen/dxos/client/services.d.ts.map +1 -1
- package/dist/esm/src/proto/gen/dxos/client/services.js +26 -24
- package/dist/esm/src/proto/gen/dxos/client/services.js.map +1 -1
- package/dist/esm/src/proto/gen/google/protobuf.d.ts +4 -4
- package/dist/esm/src/proto/gen/google/protobuf.d.ts.map +1 -1
- package/dist/esm/src/proto/gen/index.d.ts +1 -0
- package/dist/esm/src/proto/gen/index.d.ts.map +1 -1
- package/dist/esm/src/proto/gen/index.js +1 -1
- package/dist/esm/src/proto/gen/index.js.map +1 -1
- package/package.json +5 -5
- package/src/proto/dxos/client/services.proto +12 -1
- package/src/proto/gen/dxos/client/services.ts +193 -178
- package/src/proto/gen/google/protobuf.ts +4 -4
- package/src/proto/gen/index.ts +2 -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;AA+DhE,OAAO,aAAa,MAAM,kBAAkB,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;AA+DhE,OAAO,aAAa,MAAM,kBAAkB,CAAC;AA6iB7C,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,642GAA642G,CAAC,CAAC,CAAC;AACt82G,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.5.9-main.
|
|
3
|
+
"version": "0.5.9-main.d63ef8d",
|
|
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/
|
|
37
|
-
"@dxos/
|
|
38
|
-
"@dxos/keys": "0.5.9-main.
|
|
39
|
-
"@dxos/timeframe": "0.5.9-main.
|
|
36
|
+
"@dxos/invariant": "0.5.9-main.d63ef8d",
|
|
37
|
+
"@dxos/codec-protobuf": "0.5.9-main.d63ef8d",
|
|
38
|
+
"@dxos/keys": "0.5.9-main.d63ef8d",
|
|
39
|
+
"@dxos/timeframe": "0.5.9-main.d63ef8d"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"glob": "~7.1.6"
|
|
@@ -241,6 +241,9 @@ enum SpaceState {
|
|
|
241
241
|
|
|
242
242
|
/// Space errored.
|
|
243
243
|
ERROR = 5;
|
|
244
|
+
|
|
245
|
+
/// Data migration is required.
|
|
246
|
+
REQUIRES_MIGRATION = 8;
|
|
244
247
|
}
|
|
245
248
|
|
|
246
249
|
// TODO(burdon): Rename SpaceInfo?
|
|
@@ -361,6 +364,9 @@ message CreateEpochRequest {
|
|
|
361
364
|
|
|
362
365
|
/// Replace the current automerge root with a new one specified by the user.
|
|
363
366
|
REPLACE_AUTOMERGE_ROOT = 4;
|
|
367
|
+
|
|
368
|
+
/// Upgrade references data strucutre
|
|
369
|
+
MIGRATE_REFERENCES_TO_DXN = 5;
|
|
364
370
|
}
|
|
365
371
|
|
|
366
372
|
dxos.keys.PublicKey space_key = 1;
|
|
@@ -371,6 +377,11 @@ message CreateEpochRequest {
|
|
|
371
377
|
optional string automerge_root_url = 3;
|
|
372
378
|
}
|
|
373
379
|
|
|
380
|
+
message CreateEpochResponse {
|
|
381
|
+
/// Credential of the new epoch.
|
|
382
|
+
optional dxos.halo.credentials.Credential epoch_credential = 1;
|
|
383
|
+
}
|
|
384
|
+
|
|
374
385
|
message UpdateMemberRoleRequest {
|
|
375
386
|
dxos.keys.PublicKey space_key = 1;
|
|
376
387
|
dxos.keys.PublicKey member_key = 2;
|
|
@@ -394,7 +405,7 @@ service SpacesService {
|
|
|
394
405
|
/// Query credentials from the space control feed.
|
|
395
406
|
rpc QueryCredentials(QueryCredentialsRequest) returns (stream dxos.halo.credentials.Credential);
|
|
396
407
|
|
|
397
|
-
rpc CreateEpoch(CreateEpochRequest) returns (
|
|
408
|
+
rpc CreateEpoch(CreateEpochRequest) returns (CreateEpochResponse);
|
|
398
409
|
}
|
|
399
410
|
|
|
400
411
|
//
|
|
@@ -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}
|
|
@@ -559,7 +384,8 @@ export enum SpaceState {
|
|
|
559
384
|
CONTROL_ONLY = 7,
|
|
560
385
|
INITIALIZING = 4,
|
|
561
386
|
READY = 3,
|
|
562
|
-
ERROR = 5
|
|
387
|
+
ERROR = 5,
|
|
388
|
+
REQUIRES_MIGRATION = 8
|
|
563
389
|
}
|
|
564
390
|
/**
|
|
565
391
|
* Defined in:
|
|
@@ -815,9 +641,23 @@ export namespace CreateEpochRequest {
|
|
|
815
641
|
INIT_AUTOMERGE = 1,
|
|
816
642
|
PRUNE_AUTOMERGE_ROOT_HISTORY = 2,
|
|
817
643
|
FRAGMENT_AUTOMERGE_ROOT = 3,
|
|
818
|
-
REPLACE_AUTOMERGE_ROOT = 4
|
|
644
|
+
REPLACE_AUTOMERGE_ROOT = 4,
|
|
645
|
+
MIGRATE_REFERENCES_TO_DXN = 5
|
|
819
646
|
}
|
|
820
647
|
}
|
|
648
|
+
/**
|
|
649
|
+
* Defined in:
|
|
650
|
+
* {@link file://./../../../dxos/client/services.proto}
|
|
651
|
+
*/
|
|
652
|
+
export interface CreateEpochResponse {
|
|
653
|
+
/**
|
|
654
|
+
* Credential of the new epoch.
|
|
655
|
+
*
|
|
656
|
+
* Options:
|
|
657
|
+
* - proto3_optional = true
|
|
658
|
+
*/
|
|
659
|
+
epochCredential?: dxos_halo_credentials.Credential;
|
|
660
|
+
}
|
|
821
661
|
/**
|
|
822
662
|
* Defined in:
|
|
823
663
|
* {@link file://./../../../dxos/client/services.proto}
|
|
@@ -852,7 +692,7 @@ export interface SpacesService {
|
|
|
852
692
|
* Query credentials from the space control feed.
|
|
853
693
|
*/
|
|
854
694
|
queryCredentials: (request: QueryCredentialsRequest, options?: RequestOptions) => Stream<dxos_halo_credentials.Credential>;
|
|
855
|
-
createEpoch: (request: CreateEpochRequest, options?: RequestOptions) => Promise<
|
|
695
|
+
createEpoch: (request: CreateEpochRequest, options?: RequestOptions) => Promise<CreateEpochResponse>;
|
|
856
696
|
}
|
|
857
697
|
/**
|
|
858
698
|
* Represents the invitation state passed between client and service.
|
|
@@ -1151,3 +991,178 @@ export interface NetworkService {
|
|
|
1151
991
|
updateConfig: (request: UpdateConfigRequest, options?: RequestOptions) => Promise<void>;
|
|
1152
992
|
queryStatus: (request: void, options?: RequestOptions) => Stream<NetworkStatus>;
|
|
1153
993
|
}
|
|
994
|
+
/**
|
|
995
|
+
* Defined in:
|
|
996
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
997
|
+
*/
|
|
998
|
+
export interface Metrics {
|
|
999
|
+
timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
|
|
1000
|
+
values?: Metrics.KeyPair[];
|
|
1001
|
+
}
|
|
1002
|
+
export namespace Metrics {
|
|
1003
|
+
/**
|
|
1004
|
+
* Defined in:
|
|
1005
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
1006
|
+
*/
|
|
1007
|
+
export interface KeyPair {
|
|
1008
|
+
/**
|
|
1009
|
+
* Options:
|
|
1010
|
+
* - proto3_optional = true
|
|
1011
|
+
*/
|
|
1012
|
+
key?: string;
|
|
1013
|
+
/**
|
|
1014
|
+
* Options:
|
|
1015
|
+
* - proto3_optional = true
|
|
1016
|
+
*/
|
|
1017
|
+
value?: dxos_value.Value;
|
|
1018
|
+
/**
|
|
1019
|
+
* Options:
|
|
1020
|
+
* - proto3_optional = true
|
|
1021
|
+
*/
|
|
1022
|
+
stats?: dxos_value.Stats;
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
/**
|
|
1026
|
+
* Defined in:
|
|
1027
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
1028
|
+
*/
|
|
1029
|
+
export interface ControlMetricsRequest {
|
|
1030
|
+
/**
|
|
1031
|
+
* Options:
|
|
1032
|
+
* - proto3_optional = true
|
|
1033
|
+
*/
|
|
1034
|
+
reset?: boolean;
|
|
1035
|
+
/**
|
|
1036
|
+
* Options:
|
|
1037
|
+
* - proto3_optional = true
|
|
1038
|
+
*/
|
|
1039
|
+
record?: boolean;
|
|
1040
|
+
}
|
|
1041
|
+
/**
|
|
1042
|
+
* Defined in:
|
|
1043
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
1044
|
+
*/
|
|
1045
|
+
export interface ControlMetricsResponse {
|
|
1046
|
+
/**
|
|
1047
|
+
* Options:
|
|
1048
|
+
* - proto3_optional = true
|
|
1049
|
+
*/
|
|
1050
|
+
recording?: boolean;
|
|
1051
|
+
}
|
|
1052
|
+
/**
|
|
1053
|
+
* Defined in:
|
|
1054
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
1055
|
+
*/
|
|
1056
|
+
export interface QueryMetricsRequest {
|
|
1057
|
+
/**
|
|
1058
|
+
* Options:
|
|
1059
|
+
* - proto3_optional = true
|
|
1060
|
+
*/
|
|
1061
|
+
interval?: number;
|
|
1062
|
+
}
|
|
1063
|
+
/**
|
|
1064
|
+
* Defined in:
|
|
1065
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
1066
|
+
*/
|
|
1067
|
+
export interface QueryMetricsResponse {
|
|
1068
|
+
timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
|
|
1069
|
+
metrics: Metrics;
|
|
1070
|
+
}
|
|
1071
|
+
/**
|
|
1072
|
+
* Defined in:
|
|
1073
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
1074
|
+
*/
|
|
1075
|
+
export enum LogLevel {
|
|
1076
|
+
TRACE = 5,
|
|
1077
|
+
DEBUG = 10,
|
|
1078
|
+
INFO = 11,
|
|
1079
|
+
WARN = 12,
|
|
1080
|
+
ERROR = 13
|
|
1081
|
+
}
|
|
1082
|
+
/**
|
|
1083
|
+
* Defined in:
|
|
1084
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
1085
|
+
*/
|
|
1086
|
+
export interface QueryLogsRequest {
|
|
1087
|
+
filters?: QueryLogsRequest.Filter[];
|
|
1088
|
+
/**
|
|
1089
|
+
* Options:
|
|
1090
|
+
* - proto3_optional = true
|
|
1091
|
+
*/
|
|
1092
|
+
options?: QueryLogsRequest.MatchingOptions;
|
|
1093
|
+
}
|
|
1094
|
+
export namespace QueryLogsRequest {
|
|
1095
|
+
/**
|
|
1096
|
+
* Defined in:
|
|
1097
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
1098
|
+
*/
|
|
1099
|
+
export enum MatchingOptions {
|
|
1100
|
+
INCLUSIVE = 1,
|
|
1101
|
+
EXPLICIT = 2
|
|
1102
|
+
}
|
|
1103
|
+
/**
|
|
1104
|
+
* Defined in:
|
|
1105
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
1106
|
+
*/
|
|
1107
|
+
export interface Filter {
|
|
1108
|
+
level: LogLevel;
|
|
1109
|
+
/**
|
|
1110
|
+
* Options:
|
|
1111
|
+
* - proto3_optional = true
|
|
1112
|
+
*/
|
|
1113
|
+
pattern?: string;
|
|
1114
|
+
}
|
|
1115
|
+
}
|
|
1116
|
+
/**
|
|
1117
|
+
* Defined in:
|
|
1118
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
1119
|
+
*/
|
|
1120
|
+
export interface LogEntry {
|
|
1121
|
+
level: LogLevel;
|
|
1122
|
+
message: string;
|
|
1123
|
+
/**
|
|
1124
|
+
* Options:
|
|
1125
|
+
* - proto3_optional = true
|
|
1126
|
+
*/
|
|
1127
|
+
context?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
|
|
1128
|
+
/**
|
|
1129
|
+
* Options:
|
|
1130
|
+
* - proto3_optional = true
|
|
1131
|
+
*/
|
|
1132
|
+
meta?: LogEntry.Meta;
|
|
1133
|
+
/**
|
|
1134
|
+
* Options:
|
|
1135
|
+
* - proto3_optional = true
|
|
1136
|
+
*/
|
|
1137
|
+
error?: dxos_error.Error;
|
|
1138
|
+
timestamp: ReturnType<(typeof substitutions)["google.protobuf.Timestamp"]["decode"]>;
|
|
1139
|
+
}
|
|
1140
|
+
export namespace LogEntry {
|
|
1141
|
+
/**
|
|
1142
|
+
* Defined in:
|
|
1143
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
1144
|
+
*/
|
|
1145
|
+
export interface Meta {
|
|
1146
|
+
file: string;
|
|
1147
|
+
line: number;
|
|
1148
|
+
/**
|
|
1149
|
+
* Options:
|
|
1150
|
+
* - proto3_optional = true
|
|
1151
|
+
*/
|
|
1152
|
+
scope?: ReturnType<(typeof substitutions)["google.protobuf.Struct"]["decode"]>;
|
|
1153
|
+
/**
|
|
1154
|
+
* Options:
|
|
1155
|
+
* - proto3_optional = true
|
|
1156
|
+
*/
|
|
1157
|
+
resourceId?: number;
|
|
1158
|
+
}
|
|
1159
|
+
}
|
|
1160
|
+
/**
|
|
1161
|
+
* Defined in:
|
|
1162
|
+
* {@link file://./../../../dxos/client/logging.proto}
|
|
1163
|
+
*/
|
|
1164
|
+
export interface LoggingService {
|
|
1165
|
+
controlMetrics: (request: ControlMetricsRequest, options?: RequestOptions) => Promise<ControlMetricsResponse>;
|
|
1166
|
+
queryMetrics: (request: QueryMetricsRequest, options?: RequestOptions) => Stream<QueryMetricsResponse>;
|
|
1167
|
+
queryLogs: (request: QueryLogsRequest, options?: RequestOptions) => Stream<LogEntry>;
|
|
1168
|
+
}
|
|
@@ -80,14 +80,14 @@ export enum NullValue {
|
|
|
80
80
|
export interface ListValue {
|
|
81
81
|
values?: Value[];
|
|
82
82
|
}
|
|
83
|
-
export interface Any {
|
|
84
|
-
type_url: string;
|
|
85
|
-
value: Uint8Array;
|
|
86
|
-
}
|
|
87
83
|
export interface Timestamp {
|
|
88
84
|
seconds: string;
|
|
89
85
|
nanos: number;
|
|
90
86
|
}
|
|
87
|
+
export interface Any {
|
|
88
|
+
type_url: string;
|
|
89
|
+
value: Uint8Array;
|
|
90
|
+
}
|
|
91
91
|
export interface FileDescriptorSet {
|
|
92
92
|
file?: FileDescriptorProto[];
|
|
93
93
|
}
|