weave-typescript 0.11.15 → 0.11.17
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/weaveapi/data/v1/data.pb.d.ts +1 -1
- package/dist/weaveapi/data/v1/data.pb.js +11 -11
- package/dist/weaveapi/data/v1/service.pb.d.ts +89 -6
- package/dist/weaveapi/data/v1/service.pb.js +1195 -364
- package/dist/weaveapi/input/v1/input.pb.d.ts +1 -1
- package/dist/weaveapi/input/v1/input.pb.js +11 -11
- package/dist/weaveapi/input/v1/service.pb.d.ts +89 -10
- package/dist/weaveapi/input/v1/service.pb.js +1253 -642
- package/dist/weaveapi/integration/v1/integration.pb.d.ts +1 -1
- package/dist/weaveapi/integration/v1/integration.pb.js +11 -11
- package/dist/weaveapi/integration/v1/service.pb.d.ts +89 -7
- package/dist/weaveapi/integration/v1/service.pb.js +1164 -390
- package/dist/weaveapi/project/v1/project.pb.d.ts +1 -0
- package/dist/weaveapi/project/v1/project.pb.js +17 -1
- package/dist/weaveapi/project/v1/service.pb.d.ts +25 -0
- package/dist/weaveapi/project/v1/service.pb.js +248 -5
- package/dist/weaveapi/report/v1/report.pb.d.ts +2 -0
- package/dist/weaveapi/report/v1/report.pb.js +42 -2
- package/dist/weaveapi/report/v1/service.pb.d.ts +6 -6
- package/dist/weaveapi/report/v1/service.pb.js +416 -121
- package/dist/weaveapi/requirement/v1/requirement.pb.d.ts +1 -1
- package/dist/weaveapi/requirement/v1/requirement.pb.js +11 -11
- package/dist/weaveapi/requirement/v1/service.pb.d.ts +90 -10
- package/dist/weaveapi/requirement/v1/service.pb.js +1261 -601
- package/dist/weaveapi/run/v1/run.pb.d.ts +1 -0
- package/dist/weaveapi/run/v1/run.pb.js +21 -1
- package/dist/weaveapi/run/v1/service.pb.d.ts +6 -6
- package/dist/weaveapi/run/v1/service.pb.js +448 -126
- package/dist/weaveapi/script/v1/script.pb.d.ts +1 -1
- package/dist/weaveapi/script/v1/script.pb.js +11 -11
- package/dist/weaveapi/script/v1/service.pb.d.ts +90 -14
- package/dist/weaveapi/script/v1/service.pb.js +1404 -930
- package/dist/weaveapi/suite/v1/service.pb.d.ts +178 -12
- package/dist/weaveapi/suite/v1/service.pb.js +2631 -979
- package/dist/weaveapi/suite/v1/suite.pb.d.ts +2 -2
- package/dist/weaveapi/suite/v1/suite.pb.js +22 -22
- package/dist/weaveapi/testcase/v1/service.pb.d.ts +90 -14
- package/dist/weaveapi/testcase/v1/service.pb.js +1332 -856
- package/dist/weaveapi/testcase/v1/testcase.pb.d.ts +1 -1
- package/dist/weaveapi/testcase/v1/testcase.pb.js +11 -11
- package/dist/weaveapi/workflow/v1/service.pb.d.ts +26 -0
- package/dist/weaveapi/workflow/v1/service.pb.js +293 -5
- package/dist/weaveapi/workflow/v1/workflow.pb.d.ts +1 -0
- package/dist/weaveapi/workflow/v1/workflow.pb.js +17 -1
- package/dist/weavesql/weavedb/data_asset_sql.d.ts +81 -16
- package/dist/weavesql/weavedb/data_asset_sql.js +142 -24
- package/dist/weavesql/weavedb/input_sql.d.ts +88 -25
- package/dist/weavesql/weavedb/input_sql.js +150 -34
- package/dist/weavesql/weavedb/integration_sql.d.ts +85 -19
- package/dist/weavesql/weavedb/integration_sql.js +147 -28
- package/dist/weavesql/weavedb/project_sql.d.ts +29 -5
- package/dist/weavesql/weavedb/project_sql.js +73 -37
- package/dist/weavesql/weavedb/report_sql.d.ts +61 -7
- package/dist/weavesql/weavedb/report_sql.js +157 -81
- package/dist/weavesql/weavedb/requirement_sql.d.ts +83 -20
- package/dist/weavesql/weavedb/requirement_sql.js +144 -28
- package/dist/weavesql/weavedb/run_sql.d.ts +44 -8
- package/dist/weavesql/weavedb/run_sql.js +140 -93
- package/dist/weavesql/weavedb/suite_sql.d.ts +156 -30
- package/dist/weavesql/weavedb/suite_sql.js +274 -42
- package/dist/weavesql/weavedb/test_case_sql.d.ts +91 -27
- package/dist/weavesql/weavedb/test_case_sql.js +153 -36
- package/dist/weavesql/weavedb/test_script_sql.d.ts +91 -27
- package/dist/weavesql/weavedb/test_script_sql.js +153 -36
- package/dist/weavesql/weavedb/traceability_sql.d.ts +62 -4
- package/dist/weavesql/weavedb/traceability_sql.js +245 -37
- package/dist/weavesql/weavedb/workflow_sql.d.ts +30 -5
- package/dist/weavesql/weavedb/workflow_sql.js +76 -38
- package/package.json +1 -1
|
@@ -220,18 +220,18 @@ exports.StartRunResponse = {
|
|
|
220
220
|
},
|
|
221
221
|
};
|
|
222
222
|
function createBaseGetRunRequest() {
|
|
223
|
-
return { projectId: "",
|
|
223
|
+
return { projectId: "", testRunId: "", workflowId: "" };
|
|
224
224
|
}
|
|
225
225
|
exports.GetRunRequest = {
|
|
226
226
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
227
227
|
if (message.projectId !== "") {
|
|
228
228
|
writer.uint32(10).string(message.projectId);
|
|
229
229
|
}
|
|
230
|
-
if (message.workflowId !== "") {
|
|
231
|
-
writer.uint32(18).string(message.workflowId);
|
|
232
|
-
}
|
|
233
230
|
if (message.testRunId !== "") {
|
|
234
|
-
writer.uint32(
|
|
231
|
+
writer.uint32(18).string(message.testRunId);
|
|
232
|
+
}
|
|
233
|
+
if (message.workflowId !== "") {
|
|
234
|
+
writer.uint32(26).string(message.workflowId);
|
|
235
235
|
}
|
|
236
236
|
return writer;
|
|
237
237
|
},
|
|
@@ -253,14 +253,14 @@ exports.GetRunRequest = {
|
|
|
253
253
|
if (tag !== 18) {
|
|
254
254
|
break;
|
|
255
255
|
}
|
|
256
|
-
message.
|
|
256
|
+
message.testRunId = reader.string();
|
|
257
257
|
continue;
|
|
258
258
|
}
|
|
259
259
|
case 3: {
|
|
260
260
|
if (tag !== 26) {
|
|
261
261
|
break;
|
|
262
262
|
}
|
|
263
|
-
message.
|
|
263
|
+
message.workflowId = reader.string();
|
|
264
264
|
continue;
|
|
265
265
|
}
|
|
266
266
|
}
|
|
@@ -278,16 +278,16 @@ exports.GetRunRequest = {
|
|
|
278
278
|
: isSet(object.project_id)
|
|
279
279
|
? globalThis.String(object.project_id)
|
|
280
280
|
: "",
|
|
281
|
-
workflowId: isSet(object.workflowId)
|
|
282
|
-
? globalThis.String(object.workflowId)
|
|
283
|
-
: isSet(object.workflow_id)
|
|
284
|
-
? globalThis.String(object.workflow_id)
|
|
285
|
-
: "",
|
|
286
281
|
testRunId: isSet(object.testRunId)
|
|
287
282
|
? globalThis.String(object.testRunId)
|
|
288
283
|
: isSet(object.test_run_id)
|
|
289
284
|
? globalThis.String(object.test_run_id)
|
|
290
285
|
: "",
|
|
286
|
+
workflowId: isSet(object.workflowId)
|
|
287
|
+
? globalThis.String(object.workflowId)
|
|
288
|
+
: isSet(object.workflow_id)
|
|
289
|
+
? globalThis.String(object.workflow_id)
|
|
290
|
+
: "",
|
|
291
291
|
};
|
|
292
292
|
},
|
|
293
293
|
toJSON(message) {
|
|
@@ -295,12 +295,12 @@ exports.GetRunRequest = {
|
|
|
295
295
|
if (message.projectId !== "") {
|
|
296
296
|
obj.projectId = message.projectId;
|
|
297
297
|
}
|
|
298
|
-
if (message.workflowId !== "") {
|
|
299
|
-
obj.workflowId = message.workflowId;
|
|
300
|
-
}
|
|
301
298
|
if (message.testRunId !== "") {
|
|
302
299
|
obj.testRunId = message.testRunId;
|
|
303
300
|
}
|
|
301
|
+
if (message.workflowId !== "") {
|
|
302
|
+
obj.workflowId = message.workflowId;
|
|
303
|
+
}
|
|
304
304
|
return obj;
|
|
305
305
|
},
|
|
306
306
|
create(base) {
|
|
@@ -310,8 +310,8 @@ exports.GetRunRequest = {
|
|
|
310
310
|
var _a, _b, _c;
|
|
311
311
|
const message = createBaseGetRunRequest();
|
|
312
312
|
message.projectId = (_a = object.projectId) !== null && _a !== void 0 ? _a : "";
|
|
313
|
-
message.
|
|
314
|
-
message.
|
|
313
|
+
message.testRunId = (_b = object.testRunId) !== null && _b !== void 0 ? _b : "";
|
|
314
|
+
message.workflowId = (_c = object.workflowId) !== null && _c !== void 0 ? _c : "";
|
|
315
315
|
return message;
|
|
316
316
|
},
|
|
317
317
|
};
|
|
@@ -375,21 +375,21 @@ exports.GetRunResponse = {
|
|
|
375
375
|
},
|
|
376
376
|
};
|
|
377
377
|
function createBaseListRunsRequest() {
|
|
378
|
-
return { projectId: "",
|
|
378
|
+
return { projectId: "", pageSize: 0, pageToken: "", workflowId: "" };
|
|
379
379
|
}
|
|
380
380
|
exports.ListRunsRequest = {
|
|
381
381
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
382
382
|
if (message.projectId !== "") {
|
|
383
383
|
writer.uint32(10).string(message.projectId);
|
|
384
384
|
}
|
|
385
|
-
if (message.workflowId !== "") {
|
|
386
|
-
writer.uint32(18).string(message.workflowId);
|
|
387
|
-
}
|
|
388
385
|
if (message.pageSize !== 0) {
|
|
389
|
-
writer.uint32(
|
|
386
|
+
writer.uint32(16).int32(message.pageSize);
|
|
390
387
|
}
|
|
391
388
|
if (message.pageToken !== "") {
|
|
392
|
-
writer.uint32(
|
|
389
|
+
writer.uint32(26).string(message.pageToken);
|
|
390
|
+
}
|
|
391
|
+
if (message.workflowId !== "") {
|
|
392
|
+
writer.uint32(34).string(message.workflowId);
|
|
393
393
|
}
|
|
394
394
|
return writer;
|
|
395
395
|
},
|
|
@@ -408,24 +408,24 @@ exports.ListRunsRequest = {
|
|
|
408
408
|
continue;
|
|
409
409
|
}
|
|
410
410
|
case 2: {
|
|
411
|
-
if (tag !==
|
|
411
|
+
if (tag !== 16) {
|
|
412
412
|
break;
|
|
413
413
|
}
|
|
414
|
-
message.
|
|
414
|
+
message.pageSize = reader.int32();
|
|
415
415
|
continue;
|
|
416
416
|
}
|
|
417
417
|
case 3: {
|
|
418
|
-
if (tag !==
|
|
418
|
+
if (tag !== 26) {
|
|
419
419
|
break;
|
|
420
420
|
}
|
|
421
|
-
message.
|
|
421
|
+
message.pageToken = reader.string();
|
|
422
422
|
continue;
|
|
423
423
|
}
|
|
424
424
|
case 4: {
|
|
425
425
|
if (tag !== 34) {
|
|
426
426
|
break;
|
|
427
427
|
}
|
|
428
|
-
message.
|
|
428
|
+
message.workflowId = reader.string();
|
|
429
429
|
continue;
|
|
430
430
|
}
|
|
431
431
|
}
|
|
@@ -443,11 +443,6 @@ exports.ListRunsRequest = {
|
|
|
443
443
|
: isSet(object.project_id)
|
|
444
444
|
? globalThis.String(object.project_id)
|
|
445
445
|
: "",
|
|
446
|
-
workflowId: isSet(object.workflowId)
|
|
447
|
-
? globalThis.String(object.workflowId)
|
|
448
|
-
: isSet(object.workflow_id)
|
|
449
|
-
? globalThis.String(object.workflow_id)
|
|
450
|
-
: "",
|
|
451
446
|
pageSize: isSet(object.pageSize)
|
|
452
447
|
? globalThis.Number(object.pageSize)
|
|
453
448
|
: isSet(object.page_size)
|
|
@@ -458,6 +453,11 @@ exports.ListRunsRequest = {
|
|
|
458
453
|
: isSet(object.page_token)
|
|
459
454
|
? globalThis.String(object.page_token)
|
|
460
455
|
: "",
|
|
456
|
+
workflowId: isSet(object.workflowId)
|
|
457
|
+
? globalThis.String(object.workflowId)
|
|
458
|
+
: isSet(object.workflow_id)
|
|
459
|
+
? globalThis.String(object.workflow_id)
|
|
460
|
+
: "",
|
|
461
461
|
};
|
|
462
462
|
},
|
|
463
463
|
toJSON(message) {
|
|
@@ -465,15 +465,15 @@ exports.ListRunsRequest = {
|
|
|
465
465
|
if (message.projectId !== "") {
|
|
466
466
|
obj.projectId = message.projectId;
|
|
467
467
|
}
|
|
468
|
-
if (message.workflowId !== "") {
|
|
469
|
-
obj.workflowId = message.workflowId;
|
|
470
|
-
}
|
|
471
468
|
if (message.pageSize !== 0) {
|
|
472
469
|
obj.pageSize = Math.round(message.pageSize);
|
|
473
470
|
}
|
|
474
471
|
if (message.pageToken !== "") {
|
|
475
472
|
obj.pageToken = message.pageToken;
|
|
476
473
|
}
|
|
474
|
+
if (message.workflowId !== "") {
|
|
475
|
+
obj.workflowId = message.workflowId;
|
|
476
|
+
}
|
|
477
477
|
return obj;
|
|
478
478
|
},
|
|
479
479
|
create(base) {
|
|
@@ -483,9 +483,9 @@ exports.ListRunsRequest = {
|
|
|
483
483
|
var _a, _b, _c, _d;
|
|
484
484
|
const message = createBaseListRunsRequest();
|
|
485
485
|
message.projectId = (_a = object.projectId) !== null && _a !== void 0 ? _a : "";
|
|
486
|
-
message.
|
|
487
|
-
message.
|
|
488
|
-
message.
|
|
486
|
+
message.pageSize = (_b = object.pageSize) !== null && _b !== void 0 ? _b : 0;
|
|
487
|
+
message.pageToken = (_c = object.pageToken) !== null && _c !== void 0 ? _c : "";
|
|
488
|
+
message.workflowId = (_d = object.workflowId) !== null && _d !== void 0 ? _d : "";
|
|
489
489
|
return message;
|
|
490
490
|
},
|
|
491
491
|
};
|
|
@@ -569,18 +569,18 @@ exports.ListRunsResponse = {
|
|
|
569
569
|
},
|
|
570
570
|
};
|
|
571
571
|
function createBaseCancelRunRequest() {
|
|
572
|
-
return { projectId: "",
|
|
572
|
+
return { projectId: "", testRunId: "", workflowId: "" };
|
|
573
573
|
}
|
|
574
574
|
exports.CancelRunRequest = {
|
|
575
575
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
576
576
|
if (message.projectId !== "") {
|
|
577
577
|
writer.uint32(10).string(message.projectId);
|
|
578
578
|
}
|
|
579
|
-
if (message.workflowId !== "") {
|
|
580
|
-
writer.uint32(18).string(message.workflowId);
|
|
581
|
-
}
|
|
582
579
|
if (message.testRunId !== "") {
|
|
583
|
-
writer.uint32(
|
|
580
|
+
writer.uint32(18).string(message.testRunId);
|
|
581
|
+
}
|
|
582
|
+
if (message.workflowId !== "") {
|
|
583
|
+
writer.uint32(26).string(message.workflowId);
|
|
584
584
|
}
|
|
585
585
|
return writer;
|
|
586
586
|
},
|
|
@@ -602,14 +602,14 @@ exports.CancelRunRequest = {
|
|
|
602
602
|
if (tag !== 18) {
|
|
603
603
|
break;
|
|
604
604
|
}
|
|
605
|
-
message.
|
|
605
|
+
message.testRunId = reader.string();
|
|
606
606
|
continue;
|
|
607
607
|
}
|
|
608
608
|
case 3: {
|
|
609
609
|
if (tag !== 26) {
|
|
610
610
|
break;
|
|
611
611
|
}
|
|
612
|
-
message.
|
|
612
|
+
message.workflowId = reader.string();
|
|
613
613
|
continue;
|
|
614
614
|
}
|
|
615
615
|
}
|
|
@@ -627,16 +627,16 @@ exports.CancelRunRequest = {
|
|
|
627
627
|
: isSet(object.project_id)
|
|
628
628
|
? globalThis.String(object.project_id)
|
|
629
629
|
: "",
|
|
630
|
-
workflowId: isSet(object.workflowId)
|
|
631
|
-
? globalThis.String(object.workflowId)
|
|
632
|
-
: isSet(object.workflow_id)
|
|
633
|
-
? globalThis.String(object.workflow_id)
|
|
634
|
-
: "",
|
|
635
630
|
testRunId: isSet(object.testRunId)
|
|
636
631
|
? globalThis.String(object.testRunId)
|
|
637
632
|
: isSet(object.test_run_id)
|
|
638
633
|
? globalThis.String(object.test_run_id)
|
|
639
634
|
: "",
|
|
635
|
+
workflowId: isSet(object.workflowId)
|
|
636
|
+
? globalThis.String(object.workflowId)
|
|
637
|
+
: isSet(object.workflow_id)
|
|
638
|
+
? globalThis.String(object.workflow_id)
|
|
639
|
+
: "",
|
|
640
640
|
};
|
|
641
641
|
},
|
|
642
642
|
toJSON(message) {
|
|
@@ -644,12 +644,12 @@ exports.CancelRunRequest = {
|
|
|
644
644
|
if (message.projectId !== "") {
|
|
645
645
|
obj.projectId = message.projectId;
|
|
646
646
|
}
|
|
647
|
-
if (message.workflowId !== "") {
|
|
648
|
-
obj.workflowId = message.workflowId;
|
|
649
|
-
}
|
|
650
647
|
if (message.testRunId !== "") {
|
|
651
648
|
obj.testRunId = message.testRunId;
|
|
652
649
|
}
|
|
650
|
+
if (message.workflowId !== "") {
|
|
651
|
+
obj.workflowId = message.workflowId;
|
|
652
|
+
}
|
|
653
653
|
return obj;
|
|
654
654
|
},
|
|
655
655
|
create(base) {
|
|
@@ -659,8 +659,8 @@ exports.CancelRunRequest = {
|
|
|
659
659
|
var _a, _b, _c;
|
|
660
660
|
const message = createBaseCancelRunRequest();
|
|
661
661
|
message.projectId = (_a = object.projectId) !== null && _a !== void 0 ? _a : "";
|
|
662
|
-
message.
|
|
663
|
-
message.
|
|
662
|
+
message.testRunId = (_b = object.testRunId) !== null && _b !== void 0 ? _b : "";
|
|
663
|
+
message.workflowId = (_c = object.workflowId) !== null && _c !== void 0 ? _c : "";
|
|
664
664
|
return message;
|
|
665
665
|
},
|
|
666
666
|
};
|
|
@@ -724,18 +724,18 @@ exports.CancelRunResponse = {
|
|
|
724
724
|
},
|
|
725
725
|
};
|
|
726
726
|
function createBaseGetRunLiveStateRequest() {
|
|
727
|
-
return { projectId: "",
|
|
727
|
+
return { projectId: "", testRunId: "", workflowId: "" };
|
|
728
728
|
}
|
|
729
729
|
exports.GetRunLiveStateRequest = {
|
|
730
730
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
731
731
|
if (message.projectId !== "") {
|
|
732
732
|
writer.uint32(10).string(message.projectId);
|
|
733
733
|
}
|
|
734
|
-
if (message.workflowId !== "") {
|
|
735
|
-
writer.uint32(18).string(message.workflowId);
|
|
736
|
-
}
|
|
737
734
|
if (message.testRunId !== "") {
|
|
738
|
-
writer.uint32(
|
|
735
|
+
writer.uint32(18).string(message.testRunId);
|
|
736
|
+
}
|
|
737
|
+
if (message.workflowId !== "") {
|
|
738
|
+
writer.uint32(26).string(message.workflowId);
|
|
739
739
|
}
|
|
740
740
|
return writer;
|
|
741
741
|
},
|
|
@@ -757,14 +757,14 @@ exports.GetRunLiveStateRequest = {
|
|
|
757
757
|
if (tag !== 18) {
|
|
758
758
|
break;
|
|
759
759
|
}
|
|
760
|
-
message.
|
|
760
|
+
message.testRunId = reader.string();
|
|
761
761
|
continue;
|
|
762
762
|
}
|
|
763
763
|
case 3: {
|
|
764
764
|
if (tag !== 26) {
|
|
765
765
|
break;
|
|
766
766
|
}
|
|
767
|
-
message.
|
|
767
|
+
message.workflowId = reader.string();
|
|
768
768
|
continue;
|
|
769
769
|
}
|
|
770
770
|
}
|
|
@@ -782,16 +782,16 @@ exports.GetRunLiveStateRequest = {
|
|
|
782
782
|
: isSet(object.project_id)
|
|
783
783
|
? globalThis.String(object.project_id)
|
|
784
784
|
: "",
|
|
785
|
-
workflowId: isSet(object.workflowId)
|
|
786
|
-
? globalThis.String(object.workflowId)
|
|
787
|
-
: isSet(object.workflow_id)
|
|
788
|
-
? globalThis.String(object.workflow_id)
|
|
789
|
-
: "",
|
|
790
785
|
testRunId: isSet(object.testRunId)
|
|
791
786
|
? globalThis.String(object.testRunId)
|
|
792
787
|
: isSet(object.test_run_id)
|
|
793
788
|
? globalThis.String(object.test_run_id)
|
|
794
789
|
: "",
|
|
790
|
+
workflowId: isSet(object.workflowId)
|
|
791
|
+
? globalThis.String(object.workflowId)
|
|
792
|
+
: isSet(object.workflow_id)
|
|
793
|
+
? globalThis.String(object.workflow_id)
|
|
794
|
+
: "",
|
|
795
795
|
};
|
|
796
796
|
},
|
|
797
797
|
toJSON(message) {
|
|
@@ -799,12 +799,12 @@ exports.GetRunLiveStateRequest = {
|
|
|
799
799
|
if (message.projectId !== "") {
|
|
800
800
|
obj.projectId = message.projectId;
|
|
801
801
|
}
|
|
802
|
-
if (message.workflowId !== "") {
|
|
803
|
-
obj.workflowId = message.workflowId;
|
|
804
|
-
}
|
|
805
802
|
if (message.testRunId !== "") {
|
|
806
803
|
obj.testRunId = message.testRunId;
|
|
807
804
|
}
|
|
805
|
+
if (message.workflowId !== "") {
|
|
806
|
+
obj.workflowId = message.workflowId;
|
|
807
|
+
}
|
|
808
808
|
return obj;
|
|
809
809
|
},
|
|
810
810
|
create(base) {
|
|
@@ -814,8 +814,8 @@ exports.GetRunLiveStateRequest = {
|
|
|
814
814
|
var _a, _b, _c;
|
|
815
815
|
const message = createBaseGetRunLiveStateRequest();
|
|
816
816
|
message.projectId = (_a = object.projectId) !== null && _a !== void 0 ? _a : "";
|
|
817
|
-
message.
|
|
818
|
-
message.
|
|
817
|
+
message.testRunId = (_b = object.testRunId) !== null && _b !== void 0 ? _b : "";
|
|
818
|
+
message.workflowId = (_c = object.workflowId) !== null && _c !== void 0 ? _c : "";
|
|
819
819
|
return message;
|
|
820
820
|
},
|
|
821
821
|
};
|
|
@@ -975,24 +975,24 @@ exports.GetRunLiveStateResponse = {
|
|
|
975
975
|
},
|
|
976
976
|
};
|
|
977
977
|
function createBaseListRunCaseResultsRequest() {
|
|
978
|
-
return { projectId: "",
|
|
978
|
+
return { projectId: "", testRunId: "", pageSize: 0, pageToken: "", workflowId: "" };
|
|
979
979
|
}
|
|
980
980
|
exports.ListRunCaseResultsRequest = {
|
|
981
981
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
982
982
|
if (message.projectId !== "") {
|
|
983
983
|
writer.uint32(10).string(message.projectId);
|
|
984
984
|
}
|
|
985
|
-
if (message.workflowId !== "") {
|
|
986
|
-
writer.uint32(18).string(message.workflowId);
|
|
987
|
-
}
|
|
988
985
|
if (message.testRunId !== "") {
|
|
989
|
-
writer.uint32(
|
|
986
|
+
writer.uint32(18).string(message.testRunId);
|
|
990
987
|
}
|
|
991
988
|
if (message.pageSize !== 0) {
|
|
992
|
-
writer.uint32(
|
|
989
|
+
writer.uint32(24).int32(message.pageSize);
|
|
993
990
|
}
|
|
994
991
|
if (message.pageToken !== "") {
|
|
995
|
-
writer.uint32(
|
|
992
|
+
writer.uint32(34).string(message.pageToken);
|
|
993
|
+
}
|
|
994
|
+
if (message.workflowId !== "") {
|
|
995
|
+
writer.uint32(42).string(message.workflowId);
|
|
996
996
|
}
|
|
997
997
|
return writer;
|
|
998
998
|
},
|
|
@@ -1014,28 +1014,28 @@ exports.ListRunCaseResultsRequest = {
|
|
|
1014
1014
|
if (tag !== 18) {
|
|
1015
1015
|
break;
|
|
1016
1016
|
}
|
|
1017
|
-
message.
|
|
1017
|
+
message.testRunId = reader.string();
|
|
1018
1018
|
continue;
|
|
1019
1019
|
}
|
|
1020
1020
|
case 3: {
|
|
1021
|
-
if (tag !==
|
|
1021
|
+
if (tag !== 24) {
|
|
1022
1022
|
break;
|
|
1023
1023
|
}
|
|
1024
|
-
message.
|
|
1024
|
+
message.pageSize = reader.int32();
|
|
1025
1025
|
continue;
|
|
1026
1026
|
}
|
|
1027
1027
|
case 4: {
|
|
1028
|
-
if (tag !==
|
|
1028
|
+
if (tag !== 34) {
|
|
1029
1029
|
break;
|
|
1030
1030
|
}
|
|
1031
|
-
message.
|
|
1031
|
+
message.pageToken = reader.string();
|
|
1032
1032
|
continue;
|
|
1033
1033
|
}
|
|
1034
1034
|
case 5: {
|
|
1035
1035
|
if (tag !== 42) {
|
|
1036
1036
|
break;
|
|
1037
1037
|
}
|
|
1038
|
-
message.
|
|
1038
|
+
message.workflowId = reader.string();
|
|
1039
1039
|
continue;
|
|
1040
1040
|
}
|
|
1041
1041
|
}
|
|
@@ -1053,11 +1053,6 @@ exports.ListRunCaseResultsRequest = {
|
|
|
1053
1053
|
: isSet(object.project_id)
|
|
1054
1054
|
? globalThis.String(object.project_id)
|
|
1055
1055
|
: "",
|
|
1056
|
-
workflowId: isSet(object.workflowId)
|
|
1057
|
-
? globalThis.String(object.workflowId)
|
|
1058
|
-
: isSet(object.workflow_id)
|
|
1059
|
-
? globalThis.String(object.workflow_id)
|
|
1060
|
-
: "",
|
|
1061
1056
|
testRunId: isSet(object.testRunId)
|
|
1062
1057
|
? globalThis.String(object.testRunId)
|
|
1063
1058
|
: isSet(object.test_run_id)
|
|
@@ -1073,6 +1068,11 @@ exports.ListRunCaseResultsRequest = {
|
|
|
1073
1068
|
: isSet(object.page_token)
|
|
1074
1069
|
? globalThis.String(object.page_token)
|
|
1075
1070
|
: "",
|
|
1071
|
+
workflowId: isSet(object.workflowId)
|
|
1072
|
+
? globalThis.String(object.workflowId)
|
|
1073
|
+
: isSet(object.workflow_id)
|
|
1074
|
+
? globalThis.String(object.workflow_id)
|
|
1075
|
+
: "",
|
|
1076
1076
|
};
|
|
1077
1077
|
},
|
|
1078
1078
|
toJSON(message) {
|
|
@@ -1080,9 +1080,6 @@ exports.ListRunCaseResultsRequest = {
|
|
|
1080
1080
|
if (message.projectId !== "") {
|
|
1081
1081
|
obj.projectId = message.projectId;
|
|
1082
1082
|
}
|
|
1083
|
-
if (message.workflowId !== "") {
|
|
1084
|
-
obj.workflowId = message.workflowId;
|
|
1085
|
-
}
|
|
1086
1083
|
if (message.testRunId !== "") {
|
|
1087
1084
|
obj.testRunId = message.testRunId;
|
|
1088
1085
|
}
|
|
@@ -1092,6 +1089,9 @@ exports.ListRunCaseResultsRequest = {
|
|
|
1092
1089
|
if (message.pageToken !== "") {
|
|
1093
1090
|
obj.pageToken = message.pageToken;
|
|
1094
1091
|
}
|
|
1092
|
+
if (message.workflowId !== "") {
|
|
1093
|
+
obj.workflowId = message.workflowId;
|
|
1094
|
+
}
|
|
1095
1095
|
return obj;
|
|
1096
1096
|
},
|
|
1097
1097
|
create(base) {
|
|
@@ -1101,10 +1101,10 @@ exports.ListRunCaseResultsRequest = {
|
|
|
1101
1101
|
var _a, _b, _c, _d, _e;
|
|
1102
1102
|
const message = createBaseListRunCaseResultsRequest();
|
|
1103
1103
|
message.projectId = (_a = object.projectId) !== null && _a !== void 0 ? _a : "";
|
|
1104
|
-
message.
|
|
1105
|
-
message.
|
|
1106
|
-
message.
|
|
1107
|
-
message.
|
|
1104
|
+
message.testRunId = (_b = object.testRunId) !== null && _b !== void 0 ? _b : "";
|
|
1105
|
+
message.pageSize = (_c = object.pageSize) !== null && _c !== void 0 ? _c : 0;
|
|
1106
|
+
message.pageToken = (_d = object.pageToken) !== null && _d !== void 0 ? _d : "";
|
|
1107
|
+
message.workflowId = (_e = object.workflowId) !== null && _e !== void 0 ? _e : "";
|
|
1108
1108
|
return message;
|
|
1109
1109
|
},
|
|
1110
1110
|
};
|
|
@@ -1188,27 +1188,27 @@ exports.ListRunCaseResultsResponse = {
|
|
|
1188
1188
|
},
|
|
1189
1189
|
};
|
|
1190
1190
|
function createBaseListRunArtifactsRequest() {
|
|
1191
|
-
return { projectId: "",
|
|
1191
|
+
return { projectId: "", testRunId: "", testRunCaseResultId: "", pageSize: 0, pageToken: "", workflowId: "" };
|
|
1192
1192
|
}
|
|
1193
1193
|
exports.ListRunArtifactsRequest = {
|
|
1194
1194
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
1195
1195
|
if (message.projectId !== "") {
|
|
1196
1196
|
writer.uint32(10).string(message.projectId);
|
|
1197
1197
|
}
|
|
1198
|
-
if (message.workflowId !== "") {
|
|
1199
|
-
writer.uint32(18).string(message.workflowId);
|
|
1200
|
-
}
|
|
1201
1198
|
if (message.testRunId !== "") {
|
|
1202
|
-
writer.uint32(
|
|
1199
|
+
writer.uint32(18).string(message.testRunId);
|
|
1203
1200
|
}
|
|
1204
1201
|
if (message.testRunCaseResultId !== "") {
|
|
1205
|
-
writer.uint32(
|
|
1202
|
+
writer.uint32(26).string(message.testRunCaseResultId);
|
|
1206
1203
|
}
|
|
1207
1204
|
if (message.pageSize !== 0) {
|
|
1208
|
-
writer.uint32(
|
|
1205
|
+
writer.uint32(32).int32(message.pageSize);
|
|
1209
1206
|
}
|
|
1210
1207
|
if (message.pageToken !== "") {
|
|
1211
|
-
writer.uint32(
|
|
1208
|
+
writer.uint32(42).string(message.pageToken);
|
|
1209
|
+
}
|
|
1210
|
+
if (message.workflowId !== "") {
|
|
1211
|
+
writer.uint32(50).string(message.workflowId);
|
|
1212
1212
|
}
|
|
1213
1213
|
return writer;
|
|
1214
1214
|
},
|
|
@@ -1230,35 +1230,35 @@ exports.ListRunArtifactsRequest = {
|
|
|
1230
1230
|
if (tag !== 18) {
|
|
1231
1231
|
break;
|
|
1232
1232
|
}
|
|
1233
|
-
message.
|
|
1233
|
+
message.testRunId = reader.string();
|
|
1234
1234
|
continue;
|
|
1235
1235
|
}
|
|
1236
1236
|
case 3: {
|
|
1237
1237
|
if (tag !== 26) {
|
|
1238
1238
|
break;
|
|
1239
1239
|
}
|
|
1240
|
-
message.
|
|
1240
|
+
message.testRunCaseResultId = reader.string();
|
|
1241
1241
|
continue;
|
|
1242
1242
|
}
|
|
1243
1243
|
case 4: {
|
|
1244
|
-
if (tag !==
|
|
1244
|
+
if (tag !== 32) {
|
|
1245
1245
|
break;
|
|
1246
1246
|
}
|
|
1247
|
-
message.
|
|
1247
|
+
message.pageSize = reader.int32();
|
|
1248
1248
|
continue;
|
|
1249
1249
|
}
|
|
1250
1250
|
case 5: {
|
|
1251
|
-
if (tag !==
|
|
1251
|
+
if (tag !== 42) {
|
|
1252
1252
|
break;
|
|
1253
1253
|
}
|
|
1254
|
-
message.
|
|
1254
|
+
message.pageToken = reader.string();
|
|
1255
1255
|
continue;
|
|
1256
1256
|
}
|
|
1257
1257
|
case 6: {
|
|
1258
1258
|
if (tag !== 50) {
|
|
1259
1259
|
break;
|
|
1260
1260
|
}
|
|
1261
|
-
message.
|
|
1261
|
+
message.workflowId = reader.string();
|
|
1262
1262
|
continue;
|
|
1263
1263
|
}
|
|
1264
1264
|
}
|
|
@@ -1276,11 +1276,6 @@ exports.ListRunArtifactsRequest = {
|
|
|
1276
1276
|
: isSet(object.project_id)
|
|
1277
1277
|
? globalThis.String(object.project_id)
|
|
1278
1278
|
: "",
|
|
1279
|
-
workflowId: isSet(object.workflowId)
|
|
1280
|
-
? globalThis.String(object.workflowId)
|
|
1281
|
-
: isSet(object.workflow_id)
|
|
1282
|
-
? globalThis.String(object.workflow_id)
|
|
1283
|
-
: "",
|
|
1284
1279
|
testRunId: isSet(object.testRunId)
|
|
1285
1280
|
? globalThis.String(object.testRunId)
|
|
1286
1281
|
: isSet(object.test_run_id)
|
|
@@ -1301,6 +1296,11 @@ exports.ListRunArtifactsRequest = {
|
|
|
1301
1296
|
: isSet(object.page_token)
|
|
1302
1297
|
? globalThis.String(object.page_token)
|
|
1303
1298
|
: "",
|
|
1299
|
+
workflowId: isSet(object.workflowId)
|
|
1300
|
+
? globalThis.String(object.workflowId)
|
|
1301
|
+
: isSet(object.workflow_id)
|
|
1302
|
+
? globalThis.String(object.workflow_id)
|
|
1303
|
+
: "",
|
|
1304
1304
|
};
|
|
1305
1305
|
},
|
|
1306
1306
|
toJSON(message) {
|
|
@@ -1308,9 +1308,6 @@ exports.ListRunArtifactsRequest = {
|
|
|
1308
1308
|
if (message.projectId !== "") {
|
|
1309
1309
|
obj.projectId = message.projectId;
|
|
1310
1310
|
}
|
|
1311
|
-
if (message.workflowId !== "") {
|
|
1312
|
-
obj.workflowId = message.workflowId;
|
|
1313
|
-
}
|
|
1314
1311
|
if (message.testRunId !== "") {
|
|
1315
1312
|
obj.testRunId = message.testRunId;
|
|
1316
1313
|
}
|
|
@@ -1323,6 +1320,9 @@ exports.ListRunArtifactsRequest = {
|
|
|
1323
1320
|
if (message.pageToken !== "") {
|
|
1324
1321
|
obj.pageToken = message.pageToken;
|
|
1325
1322
|
}
|
|
1323
|
+
if (message.workflowId !== "") {
|
|
1324
|
+
obj.workflowId = message.workflowId;
|
|
1325
|
+
}
|
|
1326
1326
|
return obj;
|
|
1327
1327
|
},
|
|
1328
1328
|
create(base) {
|
|
@@ -1332,11 +1332,11 @@ exports.ListRunArtifactsRequest = {
|
|
|
1332
1332
|
var _a, _b, _c, _d, _e, _f;
|
|
1333
1333
|
const message = createBaseListRunArtifactsRequest();
|
|
1334
1334
|
message.projectId = (_a = object.projectId) !== null && _a !== void 0 ? _a : "";
|
|
1335
|
-
message.
|
|
1336
|
-
message.
|
|
1337
|
-
message.
|
|
1338
|
-
message.
|
|
1339
|
-
message.
|
|
1335
|
+
message.testRunId = (_b = object.testRunId) !== null && _b !== void 0 ? _b : "";
|
|
1336
|
+
message.testRunCaseResultId = (_c = object.testRunCaseResultId) !== null && _c !== void 0 ? _c : "";
|
|
1337
|
+
message.pageSize = (_d = object.pageSize) !== null && _d !== void 0 ? _d : 0;
|
|
1338
|
+
message.pageToken = (_e = object.pageToken) !== null && _e !== void 0 ? _e : "";
|
|
1339
|
+
message.workflowId = (_f = object.workflowId) !== null && _f !== void 0 ? _f : "";
|
|
1340
1340
|
return message;
|
|
1341
1341
|
},
|
|
1342
1342
|
};
|
|
@@ -1560,6 +1560,8 @@ exports.RunServiceDefinition = {
|
|
|
1560
1560
|
_unknownFields: {
|
|
1561
1561
|
578365826: [
|
|
1562
1562
|
new Uint8Array([
|
|
1563
|
+
118,
|
|
1564
|
+
90,
|
|
1563
1565
|
70,
|
|
1564
1566
|
18,
|
|
1565
1567
|
68,
|
|
@@ -1631,6 +1633,52 @@ exports.RunServiceDefinition = {
|
|
|
1631
1633
|
105,
|
|
1632
1634
|
100,
|
|
1633
1635
|
125,
|
|
1636
|
+
18,
|
|
1637
|
+
44,
|
|
1638
|
+
47,
|
|
1639
|
+
118,
|
|
1640
|
+
49,
|
|
1641
|
+
47,
|
|
1642
|
+
112,
|
|
1643
|
+
114,
|
|
1644
|
+
111,
|
|
1645
|
+
106,
|
|
1646
|
+
101,
|
|
1647
|
+
99,
|
|
1648
|
+
116,
|
|
1649
|
+
115,
|
|
1650
|
+
47,
|
|
1651
|
+
123,
|
|
1652
|
+
112,
|
|
1653
|
+
114,
|
|
1654
|
+
111,
|
|
1655
|
+
106,
|
|
1656
|
+
101,
|
|
1657
|
+
99,
|
|
1658
|
+
116,
|
|
1659
|
+
95,
|
|
1660
|
+
105,
|
|
1661
|
+
100,
|
|
1662
|
+
125,
|
|
1663
|
+
47,
|
|
1664
|
+
114,
|
|
1665
|
+
117,
|
|
1666
|
+
110,
|
|
1667
|
+
115,
|
|
1668
|
+
47,
|
|
1669
|
+
123,
|
|
1670
|
+
116,
|
|
1671
|
+
101,
|
|
1672
|
+
115,
|
|
1673
|
+
116,
|
|
1674
|
+
95,
|
|
1675
|
+
114,
|
|
1676
|
+
117,
|
|
1677
|
+
110,
|
|
1678
|
+
95,
|
|
1679
|
+
105,
|
|
1680
|
+
100,
|
|
1681
|
+
125,
|
|
1634
1682
|
]),
|
|
1635
1683
|
],
|
|
1636
1684
|
},
|
|
@@ -1646,6 +1694,8 @@ exports.RunServiceDefinition = {
|
|
|
1646
1694
|
_unknownFields: {
|
|
1647
1695
|
578365826: [
|
|
1648
1696
|
new Uint8Array([
|
|
1697
|
+
90,
|
|
1698
|
+
90,
|
|
1649
1699
|
56,
|
|
1650
1700
|
18,
|
|
1651
1701
|
54,
|
|
@@ -1703,6 +1753,38 @@ exports.RunServiceDefinition = {
|
|
|
1703
1753
|
117,
|
|
1704
1754
|
110,
|
|
1705
1755
|
115,
|
|
1756
|
+
18,
|
|
1757
|
+
30,
|
|
1758
|
+
47,
|
|
1759
|
+
118,
|
|
1760
|
+
49,
|
|
1761
|
+
47,
|
|
1762
|
+
112,
|
|
1763
|
+
114,
|
|
1764
|
+
111,
|
|
1765
|
+
106,
|
|
1766
|
+
101,
|
|
1767
|
+
99,
|
|
1768
|
+
116,
|
|
1769
|
+
115,
|
|
1770
|
+
47,
|
|
1771
|
+
123,
|
|
1772
|
+
112,
|
|
1773
|
+
114,
|
|
1774
|
+
111,
|
|
1775
|
+
106,
|
|
1776
|
+
101,
|
|
1777
|
+
99,
|
|
1778
|
+
116,
|
|
1779
|
+
95,
|
|
1780
|
+
105,
|
|
1781
|
+
100,
|
|
1782
|
+
125,
|
|
1783
|
+
47,
|
|
1784
|
+
114,
|
|
1785
|
+
117,
|
|
1786
|
+
110,
|
|
1787
|
+
115,
|
|
1706
1788
|
]),
|
|
1707
1789
|
],
|
|
1708
1790
|
},
|
|
@@ -1718,6 +1800,12 @@ exports.RunServiceDefinition = {
|
|
|
1718
1800
|
_unknownFields: {
|
|
1719
1801
|
578365826: [
|
|
1720
1802
|
new Uint8Array([
|
|
1803
|
+
138,
|
|
1804
|
+
1,
|
|
1805
|
+
58,
|
|
1806
|
+
1,
|
|
1807
|
+
42,
|
|
1808
|
+
90,
|
|
1721
1809
|
80,
|
|
1722
1810
|
58,
|
|
1723
1811
|
1,
|
|
@@ -1799,6 +1887,59 @@ exports.RunServiceDefinition = {
|
|
|
1799
1887
|
99,
|
|
1800
1888
|
101,
|
|
1801
1889
|
108,
|
|
1890
|
+
34,
|
|
1891
|
+
51,
|
|
1892
|
+
47,
|
|
1893
|
+
118,
|
|
1894
|
+
49,
|
|
1895
|
+
47,
|
|
1896
|
+
112,
|
|
1897
|
+
114,
|
|
1898
|
+
111,
|
|
1899
|
+
106,
|
|
1900
|
+
101,
|
|
1901
|
+
99,
|
|
1902
|
+
116,
|
|
1903
|
+
115,
|
|
1904
|
+
47,
|
|
1905
|
+
123,
|
|
1906
|
+
112,
|
|
1907
|
+
114,
|
|
1908
|
+
111,
|
|
1909
|
+
106,
|
|
1910
|
+
101,
|
|
1911
|
+
99,
|
|
1912
|
+
116,
|
|
1913
|
+
95,
|
|
1914
|
+
105,
|
|
1915
|
+
100,
|
|
1916
|
+
125,
|
|
1917
|
+
47,
|
|
1918
|
+
114,
|
|
1919
|
+
117,
|
|
1920
|
+
110,
|
|
1921
|
+
115,
|
|
1922
|
+
47,
|
|
1923
|
+
123,
|
|
1924
|
+
116,
|
|
1925
|
+
101,
|
|
1926
|
+
115,
|
|
1927
|
+
116,
|
|
1928
|
+
95,
|
|
1929
|
+
114,
|
|
1930
|
+
117,
|
|
1931
|
+
110,
|
|
1932
|
+
95,
|
|
1933
|
+
105,
|
|
1934
|
+
100,
|
|
1935
|
+
125,
|
|
1936
|
+
58,
|
|
1937
|
+
99,
|
|
1938
|
+
97,
|
|
1939
|
+
110,
|
|
1940
|
+
99,
|
|
1941
|
+
101,
|
|
1942
|
+
108,
|
|
1802
1943
|
]),
|
|
1803
1944
|
],
|
|
1804
1945
|
},
|
|
@@ -1814,6 +1955,9 @@ exports.RunServiceDefinition = {
|
|
|
1814
1955
|
_unknownFields: {
|
|
1815
1956
|
578365826: [
|
|
1816
1957
|
new Uint8Array([
|
|
1958
|
+
140,
|
|
1959
|
+
1,
|
|
1960
|
+
90,
|
|
1817
1961
|
81,
|
|
1818
1962
|
18,
|
|
1819
1963
|
79,
|
|
@@ -1896,6 +2040,63 @@ exports.RunServiceDefinition = {
|
|
|
1896
2040
|
97,
|
|
1897
2041
|
116,
|
|
1898
2042
|
101,
|
|
2043
|
+
18,
|
|
2044
|
+
55,
|
|
2045
|
+
47,
|
|
2046
|
+
118,
|
|
2047
|
+
49,
|
|
2048
|
+
47,
|
|
2049
|
+
112,
|
|
2050
|
+
114,
|
|
2051
|
+
111,
|
|
2052
|
+
106,
|
|
2053
|
+
101,
|
|
2054
|
+
99,
|
|
2055
|
+
116,
|
|
2056
|
+
115,
|
|
2057
|
+
47,
|
|
2058
|
+
123,
|
|
2059
|
+
112,
|
|
2060
|
+
114,
|
|
2061
|
+
111,
|
|
2062
|
+
106,
|
|
2063
|
+
101,
|
|
2064
|
+
99,
|
|
2065
|
+
116,
|
|
2066
|
+
95,
|
|
2067
|
+
105,
|
|
2068
|
+
100,
|
|
2069
|
+
125,
|
|
2070
|
+
47,
|
|
2071
|
+
114,
|
|
2072
|
+
117,
|
|
2073
|
+
110,
|
|
2074
|
+
115,
|
|
2075
|
+
47,
|
|
2076
|
+
123,
|
|
2077
|
+
116,
|
|
2078
|
+
101,
|
|
2079
|
+
115,
|
|
2080
|
+
116,
|
|
2081
|
+
95,
|
|
2082
|
+
114,
|
|
2083
|
+
117,
|
|
2084
|
+
110,
|
|
2085
|
+
95,
|
|
2086
|
+
105,
|
|
2087
|
+
100,
|
|
2088
|
+
125,
|
|
2089
|
+
58,
|
|
2090
|
+
108,
|
|
2091
|
+
105,
|
|
2092
|
+
118,
|
|
2093
|
+
101,
|
|
2094
|
+
45,
|
|
2095
|
+
115,
|
|
2096
|
+
116,
|
|
2097
|
+
97,
|
|
2098
|
+
116,
|
|
2099
|
+
101,
|
|
1899
2100
|
]),
|
|
1900
2101
|
],
|
|
1901
2102
|
},
|
|
@@ -1911,6 +2112,9 @@ exports.RunServiceDefinition = {
|
|
|
1911
2112
|
_unknownFields: {
|
|
1912
2113
|
578365826: [
|
|
1913
2114
|
new Uint8Array([
|
|
2115
|
+
144,
|
|
2116
|
+
1,
|
|
2117
|
+
90,
|
|
1914
2118
|
83,
|
|
1915
2119
|
18,
|
|
1916
2120
|
81,
|
|
@@ -1995,6 +2199,65 @@ exports.RunServiceDefinition = {
|
|
|
1995
2199
|
108,
|
|
1996
2200
|
116,
|
|
1997
2201
|
115,
|
|
2202
|
+
18,
|
|
2203
|
+
57,
|
|
2204
|
+
47,
|
|
2205
|
+
118,
|
|
2206
|
+
49,
|
|
2207
|
+
47,
|
|
2208
|
+
112,
|
|
2209
|
+
114,
|
|
2210
|
+
111,
|
|
2211
|
+
106,
|
|
2212
|
+
101,
|
|
2213
|
+
99,
|
|
2214
|
+
116,
|
|
2215
|
+
115,
|
|
2216
|
+
47,
|
|
2217
|
+
123,
|
|
2218
|
+
112,
|
|
2219
|
+
114,
|
|
2220
|
+
111,
|
|
2221
|
+
106,
|
|
2222
|
+
101,
|
|
2223
|
+
99,
|
|
2224
|
+
116,
|
|
2225
|
+
95,
|
|
2226
|
+
105,
|
|
2227
|
+
100,
|
|
2228
|
+
125,
|
|
2229
|
+
47,
|
|
2230
|
+
114,
|
|
2231
|
+
117,
|
|
2232
|
+
110,
|
|
2233
|
+
115,
|
|
2234
|
+
47,
|
|
2235
|
+
123,
|
|
2236
|
+
116,
|
|
2237
|
+
101,
|
|
2238
|
+
115,
|
|
2239
|
+
116,
|
|
2240
|
+
95,
|
|
2241
|
+
114,
|
|
2242
|
+
117,
|
|
2243
|
+
110,
|
|
2244
|
+
95,
|
|
2245
|
+
105,
|
|
2246
|
+
100,
|
|
2247
|
+
125,
|
|
2248
|
+
47,
|
|
2249
|
+
99,
|
|
2250
|
+
97,
|
|
2251
|
+
115,
|
|
2252
|
+
101,
|
|
2253
|
+
45,
|
|
2254
|
+
114,
|
|
2255
|
+
101,
|
|
2256
|
+
115,
|
|
2257
|
+
117,
|
|
2258
|
+
108,
|
|
2259
|
+
116,
|
|
2260
|
+
115,
|
|
1998
2261
|
]),
|
|
1999
2262
|
],
|
|
2000
2263
|
},
|
|
@@ -2010,6 +2273,9 @@ exports.RunServiceDefinition = {
|
|
|
2010
2273
|
_unknownFields: {
|
|
2011
2274
|
578365826: [
|
|
2012
2275
|
new Uint8Array([
|
|
2276
|
+
138,
|
|
2277
|
+
1,
|
|
2278
|
+
90,
|
|
2013
2279
|
80,
|
|
2014
2280
|
18,
|
|
2015
2281
|
78,
|
|
@@ -2091,6 +2357,62 @@ exports.RunServiceDefinition = {
|
|
|
2091
2357
|
99,
|
|
2092
2358
|
116,
|
|
2093
2359
|
115,
|
|
2360
|
+
18,
|
|
2361
|
+
54,
|
|
2362
|
+
47,
|
|
2363
|
+
118,
|
|
2364
|
+
49,
|
|
2365
|
+
47,
|
|
2366
|
+
112,
|
|
2367
|
+
114,
|
|
2368
|
+
111,
|
|
2369
|
+
106,
|
|
2370
|
+
101,
|
|
2371
|
+
99,
|
|
2372
|
+
116,
|
|
2373
|
+
115,
|
|
2374
|
+
47,
|
|
2375
|
+
123,
|
|
2376
|
+
112,
|
|
2377
|
+
114,
|
|
2378
|
+
111,
|
|
2379
|
+
106,
|
|
2380
|
+
101,
|
|
2381
|
+
99,
|
|
2382
|
+
116,
|
|
2383
|
+
95,
|
|
2384
|
+
105,
|
|
2385
|
+
100,
|
|
2386
|
+
125,
|
|
2387
|
+
47,
|
|
2388
|
+
114,
|
|
2389
|
+
117,
|
|
2390
|
+
110,
|
|
2391
|
+
115,
|
|
2392
|
+
47,
|
|
2393
|
+
123,
|
|
2394
|
+
116,
|
|
2395
|
+
101,
|
|
2396
|
+
115,
|
|
2397
|
+
116,
|
|
2398
|
+
95,
|
|
2399
|
+
114,
|
|
2400
|
+
117,
|
|
2401
|
+
110,
|
|
2402
|
+
95,
|
|
2403
|
+
105,
|
|
2404
|
+
100,
|
|
2405
|
+
125,
|
|
2406
|
+
47,
|
|
2407
|
+
97,
|
|
2408
|
+
114,
|
|
2409
|
+
116,
|
|
2410
|
+
105,
|
|
2411
|
+
102,
|
|
2412
|
+
97,
|
|
2413
|
+
99,
|
|
2414
|
+
116,
|
|
2415
|
+
115,
|
|
2094
2416
|
]),
|
|
2095
2417
|
],
|
|
2096
2418
|
},
|