@miradorlabs/web-grpc 2.32.0 → 2.36.0
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/google/protobuf/timestamp.ts +32 -23
- package/package.json +1 -1
- package/proto/gateway/common/v1/attribute_value.ts +143 -107
- package/proto/gateway/common/v1/status.ts +32 -23
- package/proto/gateway/common/v1/types.ts +32 -23
- package/proto/gateway/web/v1/account_gateway.ts +2608 -1951
- package/proto/gateway/web/v1/attribute_value.ts +143 -107
- package/proto/gateway/web/v1/chain_gateway.ts +1362 -1164
- package/proto/gateway/web/v1/common.ts +1 -1
- package/proto/gateway/web/v1/derived_metric_gateway.ts +933 -743
- package/proto/gateway/web/v1/integration_gateway.ts +1094 -873
- package/proto/gateway/web/v1/log_gateway.ts +593 -452
- package/proto/gateway/web/v1/market_gateway.ts +156 -111
- package/proto/gateway/web/v1/metric_gateway.ts +1842 -1453
- package/proto/gateway/web/v1/oauth_gateway.ts +648 -495
- package/proto/gateway/web/v1/plan_gateway.ts +488 -371
- package/proto/gateway/web/v1/rule_gateway.ts +1997 -1601
- package/proto/gateway/web/v1/rule_gateway_grpc_pb.js +1 -1
- package/proto/gateway/web/v1/slo_gateway.ts +2166 -1765
- package/proto/gateway/web/v1/trace_gateway.ts +2701 -14662
- package/proto/gateway/web/v1/trace_gateway_grpc_pb.js +0 -1
- package/proto/gateway/web/v1/trace_gateway_pb.js +4548 -26949
- package/proto/gateway/web/v1/trace_measure_gateway.ts +278 -214
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
2
|
// versions:
|
|
3
|
-
// protoc-gen-ts_proto v2.12.
|
|
3
|
+
// protoc-gen-ts_proto v2.12.1
|
|
4
4
|
// protoc v3.21.12
|
|
5
5
|
// source: proto/gateway/web/v1/trace_measure_gateway.proto
|
|
6
6
|
|
|
@@ -96,76 +96,85 @@ export const EvaluateTraceMeasureRequest: MessageFns<EvaluateTraceMeasureRequest
|
|
|
96
96
|
|
|
97
97
|
decode(input: BinaryReader | Uint8Array, length?: number): EvaluateTraceMeasureRequest {
|
|
98
98
|
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
99
|
-
const
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
99
|
+
const previousRecursionDepth = (reader as any).__tsProtoDecodeDepth ?? 0;
|
|
100
|
+
if (previousRecursionDepth >= 100) {
|
|
101
|
+
throw new globalThis.Error("protobuf decode recursion limit exceeded");
|
|
102
|
+
}
|
|
103
|
+
(reader as any).__tsProtoDecodeDepth = previousRecursionDepth + 1;
|
|
104
|
+
try {
|
|
105
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
106
|
+
const message = createBaseEvaluateTraceMeasureRequest();
|
|
107
|
+
while (reader.pos < end) {
|
|
108
|
+
const tag = reader.uint32();
|
|
109
|
+
switch (tag >>> 3) {
|
|
110
|
+
case 1: {
|
|
111
|
+
if (tag !== 10) {
|
|
112
|
+
break;
|
|
113
|
+
}
|
|
108
114
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
}
|
|
112
|
-
case 2: {
|
|
113
|
-
if (tag !== 18) {
|
|
114
|
-
break;
|
|
115
|
+
message.organizationId = reader.string();
|
|
116
|
+
continue;
|
|
115
117
|
}
|
|
118
|
+
case 2: {
|
|
119
|
+
if (tag !== 18) {
|
|
120
|
+
break;
|
|
121
|
+
}
|
|
116
122
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
}
|
|
120
|
-
case 3: {
|
|
121
|
-
if (tag !== 26) {
|
|
122
|
-
break;
|
|
123
|
+
message.projectId = reader.string();
|
|
124
|
+
continue;
|
|
123
125
|
}
|
|
126
|
+
case 3: {
|
|
127
|
+
if (tag !== 26) {
|
|
128
|
+
break;
|
|
129
|
+
}
|
|
124
130
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
}
|
|
128
|
-
case 4: {
|
|
129
|
-
if (tag !== 34) {
|
|
130
|
-
break;
|
|
131
|
+
message.program = TraceMeasureProgram.decode(reader, reader.uint32());
|
|
132
|
+
continue;
|
|
131
133
|
}
|
|
134
|
+
case 4: {
|
|
135
|
+
if (tag !== 34) {
|
|
136
|
+
break;
|
|
137
|
+
}
|
|
132
138
|
|
|
133
|
-
|
|
134
|
-
continue;
|
|
135
|
-
}
|
|
136
|
-
case 5: {
|
|
137
|
-
if (tag === 40) {
|
|
138
|
-
message.statuses.push(reader.int32() as any);
|
|
139
|
-
|
|
139
|
+
message.timeRange = TimeRange.decode(reader, reader.uint32());
|
|
140
140
|
continue;
|
|
141
141
|
}
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
const end2 = reader.uint32() + reader.pos;
|
|
145
|
-
while (reader.pos < end2) {
|
|
142
|
+
case 5: {
|
|
143
|
+
if (tag === 40) {
|
|
146
144
|
message.statuses.push(reader.int32() as any);
|
|
145
|
+
|
|
146
|
+
continue;
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
-
|
|
150
|
-
|
|
149
|
+
if (tag === 42) {
|
|
150
|
+
const end2 = reader.uint32() + reader.pos;
|
|
151
|
+
while (reader.pos < end2) {
|
|
152
|
+
message.statuses.push(reader.int32() as any);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
continue;
|
|
156
|
+
}
|
|
151
157
|
|
|
152
|
-
break;
|
|
153
|
-
}
|
|
154
|
-
case 6: {
|
|
155
|
-
if (tag !== 50) {
|
|
156
158
|
break;
|
|
157
159
|
}
|
|
160
|
+
case 6: {
|
|
161
|
+
if (tag !== 50) {
|
|
162
|
+
break;
|
|
163
|
+
}
|
|
158
164
|
|
|
159
|
-
|
|
160
|
-
|
|
165
|
+
message.groupBy.push(reader.string());
|
|
166
|
+
continue;
|
|
167
|
+
}
|
|
161
168
|
}
|
|
169
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
170
|
+
break;
|
|
171
|
+
}
|
|
172
|
+
reader.skip(tag & 7);
|
|
162
173
|
}
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
reader.skip(tag & 7);
|
|
174
|
+
return message;
|
|
175
|
+
} finally {
|
|
176
|
+
(reader as any).__tsProtoDecodeDepth = previousRecursionDepth;
|
|
167
177
|
}
|
|
168
|
-
return message;
|
|
169
178
|
},
|
|
170
179
|
|
|
171
180
|
fromJSON(object: any): EvaluateTraceMeasureRequest {
|
|
@@ -256,34 +265,43 @@ export const TraceMeasureProgram: MessageFns<TraceMeasureProgram> = {
|
|
|
256
265
|
|
|
257
266
|
decode(input: BinaryReader | Uint8Array, length?: number): TraceMeasureProgram {
|
|
258
267
|
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
259
|
-
const
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
+
const previousRecursionDepth = (reader as any).__tsProtoDecodeDepth ?? 0;
|
|
269
|
+
if (previousRecursionDepth >= 100) {
|
|
270
|
+
throw new globalThis.Error("protobuf decode recursion limit exceeded");
|
|
271
|
+
}
|
|
272
|
+
(reader as any).__tsProtoDecodeDepth = previousRecursionDepth + 1;
|
|
273
|
+
try {
|
|
274
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
275
|
+
const message = createBaseTraceMeasureProgram();
|
|
276
|
+
while (reader.pos < end) {
|
|
277
|
+
const tag = reader.uint32();
|
|
278
|
+
switch (tag >>> 3) {
|
|
279
|
+
case 1: {
|
|
280
|
+
if (tag !== 10) {
|
|
281
|
+
break;
|
|
282
|
+
}
|
|
268
283
|
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
}
|
|
272
|
-
case 2: {
|
|
273
|
-
if (tag !== 18) {
|
|
274
|
-
break;
|
|
284
|
+
message.populationExpression = reader.string();
|
|
285
|
+
continue;
|
|
275
286
|
}
|
|
287
|
+
case 2: {
|
|
288
|
+
if (tag !== 18) {
|
|
289
|
+
break;
|
|
290
|
+
}
|
|
276
291
|
|
|
277
|
-
|
|
278
|
-
|
|
292
|
+
message.valueExpression = reader.string();
|
|
293
|
+
continue;
|
|
294
|
+
}
|
|
279
295
|
}
|
|
296
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
297
|
+
break;
|
|
298
|
+
}
|
|
299
|
+
reader.skip(tag & 7);
|
|
280
300
|
}
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
reader.skip(tag & 7);
|
|
301
|
+
return message;
|
|
302
|
+
} finally {
|
|
303
|
+
(reader as any).__tsProtoDecodeDepth = previousRecursionDepth;
|
|
285
304
|
}
|
|
286
|
-
return message;
|
|
287
305
|
},
|
|
288
306
|
|
|
289
307
|
fromJSON(object: any): TraceMeasureProgram {
|
|
@@ -346,50 +364,59 @@ export const EvaluateTraceMeasureResponse: MessageFns<EvaluateTraceMeasureRespon
|
|
|
346
364
|
|
|
347
365
|
decode(input: BinaryReader | Uint8Array, length?: number): EvaluateTraceMeasureResponse {
|
|
348
366
|
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
349
|
-
const
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
367
|
+
const previousRecursionDepth = (reader as any).__tsProtoDecodeDepth ?? 0;
|
|
368
|
+
if (previousRecursionDepth >= 100) {
|
|
369
|
+
throw new globalThis.Error("protobuf decode recursion limit exceeded");
|
|
370
|
+
}
|
|
371
|
+
(reader as any).__tsProtoDecodeDepth = previousRecursionDepth + 1;
|
|
372
|
+
try {
|
|
373
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
374
|
+
const message = createBaseEvaluateTraceMeasureResponse();
|
|
375
|
+
while (reader.pos < end) {
|
|
376
|
+
const tag = reader.uint32();
|
|
377
|
+
switch (tag >>> 3) {
|
|
378
|
+
case 1: {
|
|
379
|
+
if (tag !== 10) {
|
|
380
|
+
break;
|
|
381
|
+
}
|
|
358
382
|
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
}
|
|
362
|
-
case 2: {
|
|
363
|
-
if (tag !== 18) {
|
|
364
|
-
break;
|
|
383
|
+
message.status = ResponseStatus.decode(reader, reader.uint32());
|
|
384
|
+
continue;
|
|
365
385
|
}
|
|
386
|
+
case 2: {
|
|
387
|
+
if (tag !== 18) {
|
|
388
|
+
break;
|
|
389
|
+
}
|
|
366
390
|
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
}
|
|
370
|
-
case 3: {
|
|
371
|
-
if (tag !== 26) {
|
|
372
|
-
break;
|
|
391
|
+
message.rows.push(TraceMeasureRow.decode(reader, reader.uint32()));
|
|
392
|
+
continue;
|
|
373
393
|
}
|
|
394
|
+
case 3: {
|
|
395
|
+
if (tag !== 26) {
|
|
396
|
+
break;
|
|
397
|
+
}
|
|
374
398
|
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
}
|
|
378
|
-
case 4: {
|
|
379
|
-
if (tag !== 34) {
|
|
380
|
-
break;
|
|
399
|
+
message.coverage = TraceMeasureCoverage.decode(reader, reader.uint32());
|
|
400
|
+
continue;
|
|
381
401
|
}
|
|
402
|
+
case 4: {
|
|
403
|
+
if (tag !== 34) {
|
|
404
|
+
break;
|
|
405
|
+
}
|
|
382
406
|
|
|
383
|
-
|
|
384
|
-
|
|
407
|
+
message.evaluatedAt = fromTimestamp(Timestamp.decode(reader, reader.uint32()));
|
|
408
|
+
continue;
|
|
409
|
+
}
|
|
385
410
|
}
|
|
411
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
412
|
+
break;
|
|
413
|
+
}
|
|
414
|
+
reader.skip(tag & 7);
|
|
386
415
|
}
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
reader.skip(tag & 7);
|
|
416
|
+
return message;
|
|
417
|
+
} finally {
|
|
418
|
+
(reader as any).__tsProtoDecodeDepth = previousRecursionDepth;
|
|
391
419
|
}
|
|
392
|
-
return message;
|
|
393
420
|
},
|
|
394
421
|
|
|
395
422
|
fromJSON(object: any): EvaluateTraceMeasureResponse {
|
|
@@ -462,53 +489,62 @@ export const TraceMeasureRow: MessageFns<TraceMeasureRow> = {
|
|
|
462
489
|
|
|
463
490
|
decode(input: BinaryReader | Uint8Array, length?: number): TraceMeasureRow {
|
|
464
491
|
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
465
|
-
const
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
492
|
+
const previousRecursionDepth = (reader as any).__tsProtoDecodeDepth ?? 0;
|
|
493
|
+
if (previousRecursionDepth >= 100) {
|
|
494
|
+
throw new globalThis.Error("protobuf decode recursion limit exceeded");
|
|
495
|
+
}
|
|
496
|
+
(reader as any).__tsProtoDecodeDepth = previousRecursionDepth + 1;
|
|
497
|
+
try {
|
|
498
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
499
|
+
const message = createBaseTraceMeasureRow();
|
|
500
|
+
while (reader.pos < end) {
|
|
501
|
+
const tag = reader.uint32();
|
|
502
|
+
switch (tag >>> 3) {
|
|
503
|
+
case 1: {
|
|
504
|
+
if (tag !== 10) {
|
|
505
|
+
break;
|
|
506
|
+
}
|
|
474
507
|
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
}
|
|
478
|
-
case 2: {
|
|
479
|
-
if (tag !== 18) {
|
|
480
|
-
break;
|
|
508
|
+
message.traceId = reader.string();
|
|
509
|
+
continue;
|
|
481
510
|
}
|
|
511
|
+
case 2: {
|
|
512
|
+
if (tag !== 18) {
|
|
513
|
+
break;
|
|
514
|
+
}
|
|
482
515
|
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
}
|
|
486
|
-
case 3: {
|
|
487
|
-
if (tag !== 25) {
|
|
488
|
-
break;
|
|
516
|
+
message.createdAt = fromTimestamp(Timestamp.decode(reader, reader.uint32()));
|
|
517
|
+
continue;
|
|
489
518
|
}
|
|
519
|
+
case 3: {
|
|
520
|
+
if (tag !== 25) {
|
|
521
|
+
break;
|
|
522
|
+
}
|
|
490
523
|
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
}
|
|
494
|
-
case 4: {
|
|
495
|
-
if (tag !== 34) {
|
|
496
|
-
break;
|
|
524
|
+
message.value = reader.double();
|
|
525
|
+
continue;
|
|
497
526
|
}
|
|
527
|
+
case 4: {
|
|
528
|
+
if (tag !== 34) {
|
|
529
|
+
break;
|
|
530
|
+
}
|
|
498
531
|
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
532
|
+
const entry4 = TraceMeasureRow_GroupValuesEntry.decode(reader, reader.uint32());
|
|
533
|
+
if (entry4.value !== undefined) {
|
|
534
|
+
message.groupValues[entry4.key] = entry4.value;
|
|
535
|
+
}
|
|
536
|
+
continue;
|
|
502
537
|
}
|
|
503
|
-
continue;
|
|
504
538
|
}
|
|
539
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
540
|
+
break;
|
|
541
|
+
}
|
|
542
|
+
reader.skip(tag & 7);
|
|
505
543
|
}
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
reader.skip(tag & 7);
|
|
544
|
+
return message;
|
|
545
|
+
} finally {
|
|
546
|
+
(reader as any).__tsProtoDecodeDepth = previousRecursionDepth;
|
|
510
547
|
}
|
|
511
|
-
return message;
|
|
512
548
|
},
|
|
513
549
|
|
|
514
550
|
fromJSON(object: any): TraceMeasureRow {
|
|
@@ -527,7 +563,12 @@ export const TraceMeasureRow: MessageFns<TraceMeasureRow> = {
|
|
|
527
563
|
groupValues: isObject(object.groupValues)
|
|
528
564
|
? (globalThis.Object.entries(object.groupValues) as [string, any][]).reduce(
|
|
529
565
|
(acc: { [key: string]: string }, [key, value]: [string, any]) => {
|
|
530
|
-
acc
|
|
566
|
+
globalThis.Object.defineProperty(acc, key, {
|
|
567
|
+
value: globalThis.String(value),
|
|
568
|
+
enumerable: true,
|
|
569
|
+
configurable: true,
|
|
570
|
+
writable: true,
|
|
571
|
+
});
|
|
531
572
|
return acc;
|
|
532
573
|
},
|
|
533
574
|
{},
|
|
@@ -535,7 +576,12 @@ export const TraceMeasureRow: MessageFns<TraceMeasureRow> = {
|
|
|
535
576
|
: isObject(object.group_values)
|
|
536
577
|
? (globalThis.Object.entries(object.group_values) as [string, any][]).reduce(
|
|
537
578
|
(acc: { [key: string]: string }, [key, value]: [string, any]) => {
|
|
538
|
-
acc
|
|
579
|
+
globalThis.Object.defineProperty(acc, key, {
|
|
580
|
+
value: globalThis.String(value),
|
|
581
|
+
enumerable: true,
|
|
582
|
+
configurable: true,
|
|
583
|
+
writable: true,
|
|
584
|
+
});
|
|
539
585
|
return acc;
|
|
540
586
|
},
|
|
541
587
|
{},
|
|
@@ -605,34 +651,43 @@ export const TraceMeasureRow_GroupValuesEntry: MessageFns<TraceMeasureRow_GroupV
|
|
|
605
651
|
|
|
606
652
|
decode(input: BinaryReader | Uint8Array, length?: number): TraceMeasureRow_GroupValuesEntry {
|
|
607
653
|
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
608
|
-
const
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
654
|
+
const previousRecursionDepth = (reader as any).__tsProtoDecodeDepth ?? 0;
|
|
655
|
+
if (previousRecursionDepth >= 100) {
|
|
656
|
+
throw new globalThis.Error("protobuf decode recursion limit exceeded");
|
|
657
|
+
}
|
|
658
|
+
(reader as any).__tsProtoDecodeDepth = previousRecursionDepth + 1;
|
|
659
|
+
try {
|
|
660
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
661
|
+
const message = createBaseTraceMeasureRow_GroupValuesEntry();
|
|
662
|
+
while (reader.pos < end) {
|
|
663
|
+
const tag = reader.uint32();
|
|
664
|
+
switch (tag >>> 3) {
|
|
665
|
+
case 1: {
|
|
666
|
+
if (tag !== 10) {
|
|
667
|
+
break;
|
|
668
|
+
}
|
|
617
669
|
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
}
|
|
621
|
-
case 2: {
|
|
622
|
-
if (tag !== 18) {
|
|
623
|
-
break;
|
|
670
|
+
message.key = reader.string();
|
|
671
|
+
continue;
|
|
624
672
|
}
|
|
673
|
+
case 2: {
|
|
674
|
+
if (tag !== 18) {
|
|
675
|
+
break;
|
|
676
|
+
}
|
|
625
677
|
|
|
626
|
-
|
|
627
|
-
|
|
678
|
+
message.value = reader.string();
|
|
679
|
+
continue;
|
|
680
|
+
}
|
|
628
681
|
}
|
|
682
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
683
|
+
break;
|
|
684
|
+
}
|
|
685
|
+
reader.skip(tag & 7);
|
|
629
686
|
}
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
reader.skip(tag & 7);
|
|
687
|
+
return message;
|
|
688
|
+
} finally {
|
|
689
|
+
(reader as any).__tsProtoDecodeDepth = previousRecursionDepth;
|
|
634
690
|
}
|
|
635
|
-
return message;
|
|
636
691
|
},
|
|
637
692
|
|
|
638
693
|
fromJSON(object: any): TraceMeasureRow_GroupValuesEntry {
|
|
@@ -697,66 +752,75 @@ export const TraceMeasureCoverage: MessageFns<TraceMeasureCoverage> = {
|
|
|
697
752
|
|
|
698
753
|
decode(input: BinaryReader | Uint8Array, length?: number): TraceMeasureCoverage {
|
|
699
754
|
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
700
|
-
const
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
755
|
+
const previousRecursionDepth = (reader as any).__tsProtoDecodeDepth ?? 0;
|
|
756
|
+
if (previousRecursionDepth >= 100) {
|
|
757
|
+
throw new globalThis.Error("protobuf decode recursion limit exceeded");
|
|
758
|
+
}
|
|
759
|
+
(reader as any).__tsProtoDecodeDepth = previousRecursionDepth + 1;
|
|
760
|
+
try {
|
|
761
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
762
|
+
const message = createBaseTraceMeasureCoverage();
|
|
763
|
+
while (reader.pos < end) {
|
|
764
|
+
const tag = reader.uint32();
|
|
765
|
+
switch (tag >>> 3) {
|
|
766
|
+
case 1: {
|
|
767
|
+
if (tag !== 8) {
|
|
768
|
+
break;
|
|
769
|
+
}
|
|
709
770
|
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
}
|
|
713
|
-
case 2: {
|
|
714
|
-
if (tag !== 16) {
|
|
715
|
-
break;
|
|
771
|
+
message.candidates = reader.uint32();
|
|
772
|
+
continue;
|
|
716
773
|
}
|
|
774
|
+
case 2: {
|
|
775
|
+
if (tag !== 16) {
|
|
776
|
+
break;
|
|
777
|
+
}
|
|
717
778
|
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
}
|
|
721
|
-
case 3: {
|
|
722
|
-
if (tag !== 24) {
|
|
723
|
-
break;
|
|
779
|
+
message.contributing = reader.uint32();
|
|
780
|
+
continue;
|
|
724
781
|
}
|
|
782
|
+
case 3: {
|
|
783
|
+
if (tag !== 24) {
|
|
784
|
+
break;
|
|
785
|
+
}
|
|
725
786
|
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
}
|
|
729
|
-
case 4: {
|
|
730
|
-
if (tag !== 32) {
|
|
731
|
-
break;
|
|
787
|
+
message.outOfPopulation = reader.uint32();
|
|
788
|
+
continue;
|
|
732
789
|
}
|
|
790
|
+
case 4: {
|
|
791
|
+
if (tag !== 32) {
|
|
792
|
+
break;
|
|
793
|
+
}
|
|
733
794
|
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
}
|
|
737
|
-
case 5: {
|
|
738
|
-
if (tag !== 40) {
|
|
739
|
-
break;
|
|
795
|
+
message.valueMissing = reader.uint32();
|
|
796
|
+
continue;
|
|
740
797
|
}
|
|
798
|
+
case 5: {
|
|
799
|
+
if (tag !== 40) {
|
|
800
|
+
break;
|
|
801
|
+
}
|
|
741
802
|
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
}
|
|
745
|
-
case 6: {
|
|
746
|
-
if (tag !== 48) {
|
|
747
|
-
break;
|
|
803
|
+
message.errored = reader.uint32();
|
|
804
|
+
continue;
|
|
748
805
|
}
|
|
806
|
+
case 6: {
|
|
807
|
+
if (tag !== 48) {
|
|
808
|
+
break;
|
|
809
|
+
}
|
|
749
810
|
|
|
750
|
-
|
|
751
|
-
|
|
811
|
+
message.unreadable = reader.uint32();
|
|
812
|
+
continue;
|
|
813
|
+
}
|
|
752
814
|
}
|
|
815
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
816
|
+
break;
|
|
817
|
+
}
|
|
818
|
+
reader.skip(tag & 7);
|
|
753
819
|
}
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
reader.skip(tag & 7);
|
|
820
|
+
return message;
|
|
821
|
+
} finally {
|
|
822
|
+
(reader as any).__tsProtoDecodeDepth = previousRecursionDepth;
|
|
758
823
|
}
|
|
759
|
-
return message;
|
|
760
824
|
},
|
|
761
825
|
|
|
762
826
|
fromJSON(object: any): TraceMeasureCoverage {
|