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.
Files changed (69) hide show
  1. package/dist/weaveapi/data/v1/data.pb.d.ts +1 -1
  2. package/dist/weaveapi/data/v1/data.pb.js +11 -11
  3. package/dist/weaveapi/data/v1/service.pb.d.ts +89 -6
  4. package/dist/weaveapi/data/v1/service.pb.js +1195 -364
  5. package/dist/weaveapi/input/v1/input.pb.d.ts +1 -1
  6. package/dist/weaveapi/input/v1/input.pb.js +11 -11
  7. package/dist/weaveapi/input/v1/service.pb.d.ts +89 -10
  8. package/dist/weaveapi/input/v1/service.pb.js +1253 -642
  9. package/dist/weaveapi/integration/v1/integration.pb.d.ts +1 -1
  10. package/dist/weaveapi/integration/v1/integration.pb.js +11 -11
  11. package/dist/weaveapi/integration/v1/service.pb.d.ts +89 -7
  12. package/dist/weaveapi/integration/v1/service.pb.js +1164 -390
  13. package/dist/weaveapi/project/v1/project.pb.d.ts +1 -0
  14. package/dist/weaveapi/project/v1/project.pb.js +17 -1
  15. package/dist/weaveapi/project/v1/service.pb.d.ts +25 -0
  16. package/dist/weaveapi/project/v1/service.pb.js +248 -5
  17. package/dist/weaveapi/report/v1/report.pb.d.ts +2 -0
  18. package/dist/weaveapi/report/v1/report.pb.js +42 -2
  19. package/dist/weaveapi/report/v1/service.pb.d.ts +6 -6
  20. package/dist/weaveapi/report/v1/service.pb.js +416 -121
  21. package/dist/weaveapi/requirement/v1/requirement.pb.d.ts +1 -1
  22. package/dist/weaveapi/requirement/v1/requirement.pb.js +11 -11
  23. package/dist/weaveapi/requirement/v1/service.pb.d.ts +90 -10
  24. package/dist/weaveapi/requirement/v1/service.pb.js +1261 -601
  25. package/dist/weaveapi/run/v1/run.pb.d.ts +1 -0
  26. package/dist/weaveapi/run/v1/run.pb.js +21 -1
  27. package/dist/weaveapi/run/v1/service.pb.d.ts +6 -6
  28. package/dist/weaveapi/run/v1/service.pb.js +448 -126
  29. package/dist/weaveapi/script/v1/script.pb.d.ts +1 -1
  30. package/dist/weaveapi/script/v1/script.pb.js +11 -11
  31. package/dist/weaveapi/script/v1/service.pb.d.ts +90 -14
  32. package/dist/weaveapi/script/v1/service.pb.js +1404 -930
  33. package/dist/weaveapi/suite/v1/service.pb.d.ts +178 -12
  34. package/dist/weaveapi/suite/v1/service.pb.js +2631 -979
  35. package/dist/weaveapi/suite/v1/suite.pb.d.ts +2 -2
  36. package/dist/weaveapi/suite/v1/suite.pb.js +22 -22
  37. package/dist/weaveapi/testcase/v1/service.pb.d.ts +90 -14
  38. package/dist/weaveapi/testcase/v1/service.pb.js +1332 -856
  39. package/dist/weaveapi/testcase/v1/testcase.pb.d.ts +1 -1
  40. package/dist/weaveapi/testcase/v1/testcase.pb.js +11 -11
  41. package/dist/weaveapi/workflow/v1/service.pb.d.ts +26 -0
  42. package/dist/weaveapi/workflow/v1/service.pb.js +293 -5
  43. package/dist/weaveapi/workflow/v1/workflow.pb.d.ts +1 -0
  44. package/dist/weaveapi/workflow/v1/workflow.pb.js +17 -1
  45. package/dist/weavesql/weavedb/data_asset_sql.d.ts +81 -16
  46. package/dist/weavesql/weavedb/data_asset_sql.js +142 -24
  47. package/dist/weavesql/weavedb/input_sql.d.ts +88 -25
  48. package/dist/weavesql/weavedb/input_sql.js +150 -34
  49. package/dist/weavesql/weavedb/integration_sql.d.ts +85 -19
  50. package/dist/weavesql/weavedb/integration_sql.js +147 -28
  51. package/dist/weavesql/weavedb/project_sql.d.ts +29 -5
  52. package/dist/weavesql/weavedb/project_sql.js +73 -37
  53. package/dist/weavesql/weavedb/report_sql.d.ts +61 -7
  54. package/dist/weavesql/weavedb/report_sql.js +157 -81
  55. package/dist/weavesql/weavedb/requirement_sql.d.ts +83 -20
  56. package/dist/weavesql/weavedb/requirement_sql.js +144 -28
  57. package/dist/weavesql/weavedb/run_sql.d.ts +44 -8
  58. package/dist/weavesql/weavedb/run_sql.js +140 -93
  59. package/dist/weavesql/weavedb/suite_sql.d.ts +156 -30
  60. package/dist/weavesql/weavedb/suite_sql.js +274 -42
  61. package/dist/weavesql/weavedb/test_case_sql.d.ts +91 -27
  62. package/dist/weavesql/weavedb/test_case_sql.js +153 -36
  63. package/dist/weavesql/weavedb/test_script_sql.d.ts +91 -27
  64. package/dist/weavesql/weavedb/test_script_sql.js +153 -36
  65. package/dist/weavesql/weavedb/traceability_sql.d.ts +62 -4
  66. package/dist/weavesql/weavedb/traceability_sql.js +245 -37
  67. package/dist/weavesql/weavedb/workflow_sql.d.ts +30 -5
  68. package/dist/weavesql/weavedb/workflow_sql.js +76 -38
  69. package/package.json +1 -1
@@ -12,24 +12,24 @@ const struct_pb_1 = require("../../../google/protobuf/struct.pb");
12
12
  const report_pb_1 = require("./report.pb");
13
13
  exports.protobufPackage = "weaveapi.report.v1";
14
14
  function createBaseBuildReportSummaryRequest() {
15
- return { projectId: "", workflowId: "", testRunId: "", storageConnectionId: "", options: undefined };
15
+ return { projectId: "", testRunId: "", storageConnectionId: "", options: undefined, workflowId: "" };
16
16
  }
17
17
  exports.BuildReportSummaryRequest = {
18
18
  encode(message, writer = new wire_1.BinaryWriter()) {
19
19
  if (message.projectId !== "") {
20
20
  writer.uint32(10).string(message.projectId);
21
21
  }
22
- if (message.workflowId !== "") {
23
- writer.uint32(18).string(message.workflowId);
24
- }
25
22
  if (message.testRunId !== "") {
26
- writer.uint32(26).string(message.testRunId);
23
+ writer.uint32(18).string(message.testRunId);
27
24
  }
28
25
  if (message.storageConnectionId !== "") {
29
- writer.uint32(34).string(message.storageConnectionId);
26
+ writer.uint32(26).string(message.storageConnectionId);
30
27
  }
31
28
  if (message.options !== undefined) {
32
- struct_pb_1.Struct.encode(struct_pb_1.Struct.wrap(message.options), writer.uint32(42).fork()).join();
29
+ struct_pb_1.Struct.encode(struct_pb_1.Struct.wrap(message.options), writer.uint32(34).fork()).join();
30
+ }
31
+ if (message.workflowId !== "") {
32
+ writer.uint32(42).string(message.workflowId);
33
33
  }
34
34
  return writer;
35
35
  },
@@ -51,28 +51,28 @@ exports.BuildReportSummaryRequest = {
51
51
  if (tag !== 18) {
52
52
  break;
53
53
  }
54
- message.workflowId = reader.string();
54
+ message.testRunId = reader.string();
55
55
  continue;
56
56
  }
57
57
  case 3: {
58
58
  if (tag !== 26) {
59
59
  break;
60
60
  }
61
- message.testRunId = reader.string();
61
+ message.storageConnectionId = reader.string();
62
62
  continue;
63
63
  }
64
64
  case 4: {
65
65
  if (tag !== 34) {
66
66
  break;
67
67
  }
68
- message.storageConnectionId = reader.string();
68
+ message.options = struct_pb_1.Struct.unwrap(struct_pb_1.Struct.decode(reader, reader.uint32()));
69
69
  continue;
70
70
  }
71
71
  case 5: {
72
72
  if (tag !== 42) {
73
73
  break;
74
74
  }
75
- message.options = struct_pb_1.Struct.unwrap(struct_pb_1.Struct.decode(reader, reader.uint32()));
75
+ message.workflowId = reader.string();
76
76
  continue;
77
77
  }
78
78
  }
@@ -90,11 +90,6 @@ exports.BuildReportSummaryRequest = {
90
90
  : isSet(object.project_id)
91
91
  ? globalThis.String(object.project_id)
92
92
  : "",
93
- workflowId: isSet(object.workflowId)
94
- ? globalThis.String(object.workflowId)
95
- : isSet(object.workflow_id)
96
- ? globalThis.String(object.workflow_id)
97
- : "",
98
93
  testRunId: isSet(object.testRunId)
99
94
  ? globalThis.String(object.testRunId)
100
95
  : isSet(object.test_run_id)
@@ -106,6 +101,11 @@ exports.BuildReportSummaryRequest = {
106
101
  ? globalThis.String(object.storage_connection_id)
107
102
  : "",
108
103
  options: isObject(object.options) ? object.options : undefined,
104
+ workflowId: isSet(object.workflowId)
105
+ ? globalThis.String(object.workflowId)
106
+ : isSet(object.workflow_id)
107
+ ? globalThis.String(object.workflow_id)
108
+ : "",
109
109
  };
110
110
  },
111
111
  toJSON(message) {
@@ -113,9 +113,6 @@ exports.BuildReportSummaryRequest = {
113
113
  if (message.projectId !== "") {
114
114
  obj.projectId = message.projectId;
115
115
  }
116
- if (message.workflowId !== "") {
117
- obj.workflowId = message.workflowId;
118
- }
119
116
  if (message.testRunId !== "") {
120
117
  obj.testRunId = message.testRunId;
121
118
  }
@@ -125,6 +122,9 @@ exports.BuildReportSummaryRequest = {
125
122
  if (message.options !== undefined) {
126
123
  obj.options = message.options;
127
124
  }
125
+ if (message.workflowId !== "") {
126
+ obj.workflowId = message.workflowId;
127
+ }
128
128
  return obj;
129
129
  },
130
130
  create(base) {
@@ -134,10 +134,10 @@ exports.BuildReportSummaryRequest = {
134
134
  var _a, _b, _c, _d, _e;
135
135
  const message = createBaseBuildReportSummaryRequest();
136
136
  message.projectId = (_a = object.projectId) !== null && _a !== void 0 ? _a : "";
137
- message.workflowId = (_b = object.workflowId) !== null && _b !== void 0 ? _b : "";
138
- message.testRunId = (_c = object.testRunId) !== null && _c !== void 0 ? _c : "";
139
- message.storageConnectionId = (_d = object.storageConnectionId) !== null && _d !== void 0 ? _d : "";
140
- message.options = (_e = object.options) !== null && _e !== void 0 ? _e : undefined;
137
+ message.testRunId = (_b = object.testRunId) !== null && _b !== void 0 ? _b : "";
138
+ message.storageConnectionId = (_c = object.storageConnectionId) !== null && _c !== void 0 ? _c : "";
139
+ message.options = (_d = object.options) !== null && _d !== void 0 ? _d : undefined;
140
+ message.workflowId = (_e = object.workflowId) !== null && _e !== void 0 ? _e : "";
141
141
  return message;
142
142
  },
143
143
  };
@@ -201,18 +201,18 @@ exports.BuildReportSummaryResponse = {
201
201
  },
202
202
  };
203
203
  function createBaseGetReportRequest() {
204
- return { projectId: "", workflowId: "", testReportId: "" };
204
+ return { projectId: "", testReportId: "", workflowId: "" };
205
205
  }
206
206
  exports.GetReportRequest = {
207
207
  encode(message, writer = new wire_1.BinaryWriter()) {
208
208
  if (message.projectId !== "") {
209
209
  writer.uint32(10).string(message.projectId);
210
210
  }
211
- if (message.workflowId !== "") {
212
- writer.uint32(18).string(message.workflowId);
213
- }
214
211
  if (message.testReportId !== "") {
215
- writer.uint32(26).string(message.testReportId);
212
+ writer.uint32(18).string(message.testReportId);
213
+ }
214
+ if (message.workflowId !== "") {
215
+ writer.uint32(26).string(message.workflowId);
216
216
  }
217
217
  return writer;
218
218
  },
@@ -234,14 +234,14 @@ exports.GetReportRequest = {
234
234
  if (tag !== 18) {
235
235
  break;
236
236
  }
237
- message.workflowId = reader.string();
237
+ message.testReportId = reader.string();
238
238
  continue;
239
239
  }
240
240
  case 3: {
241
241
  if (tag !== 26) {
242
242
  break;
243
243
  }
244
- message.testReportId = reader.string();
244
+ message.workflowId = reader.string();
245
245
  continue;
246
246
  }
247
247
  }
@@ -259,16 +259,16 @@ exports.GetReportRequest = {
259
259
  : isSet(object.project_id)
260
260
  ? globalThis.String(object.project_id)
261
261
  : "",
262
- workflowId: isSet(object.workflowId)
263
- ? globalThis.String(object.workflowId)
264
- : isSet(object.workflow_id)
265
- ? globalThis.String(object.workflow_id)
266
- : "",
267
262
  testReportId: isSet(object.testReportId)
268
263
  ? globalThis.String(object.testReportId)
269
264
  : isSet(object.test_report_id)
270
265
  ? globalThis.String(object.test_report_id)
271
266
  : "",
267
+ workflowId: isSet(object.workflowId)
268
+ ? globalThis.String(object.workflowId)
269
+ : isSet(object.workflow_id)
270
+ ? globalThis.String(object.workflow_id)
271
+ : "",
272
272
  };
273
273
  },
274
274
  toJSON(message) {
@@ -276,12 +276,12 @@ exports.GetReportRequest = {
276
276
  if (message.projectId !== "") {
277
277
  obj.projectId = message.projectId;
278
278
  }
279
- if (message.workflowId !== "") {
280
- obj.workflowId = message.workflowId;
281
- }
282
279
  if (message.testReportId !== "") {
283
280
  obj.testReportId = message.testReportId;
284
281
  }
282
+ if (message.workflowId !== "") {
283
+ obj.workflowId = message.workflowId;
284
+ }
285
285
  return obj;
286
286
  },
287
287
  create(base) {
@@ -291,8 +291,8 @@ exports.GetReportRequest = {
291
291
  var _a, _b, _c;
292
292
  const message = createBaseGetReportRequest();
293
293
  message.projectId = (_a = object.projectId) !== null && _a !== void 0 ? _a : "";
294
- message.workflowId = (_b = object.workflowId) !== null && _b !== void 0 ? _b : "";
295
- message.testReportId = (_c = object.testReportId) !== null && _c !== void 0 ? _c : "";
294
+ message.testReportId = (_b = object.testReportId) !== null && _b !== void 0 ? _b : "";
295
+ message.workflowId = (_c = object.workflowId) !== null && _c !== void 0 ? _c : "";
296
296
  return message;
297
297
  },
298
298
  };
@@ -356,24 +356,24 @@ exports.GetReportResponse = {
356
356
  },
357
357
  };
358
358
  function createBaseListReportsRequest() {
359
- return { projectId: "", workflowId: "", includeArchived: false, pageSize: 0, pageToken: "" };
359
+ return { projectId: "", includeArchived: false, pageSize: 0, pageToken: "", workflowId: "" };
360
360
  }
361
361
  exports.ListReportsRequest = {
362
362
  encode(message, writer = new wire_1.BinaryWriter()) {
363
363
  if (message.projectId !== "") {
364
364
  writer.uint32(10).string(message.projectId);
365
365
  }
366
- if (message.workflowId !== "") {
367
- writer.uint32(18).string(message.workflowId);
368
- }
369
366
  if (message.includeArchived !== false) {
370
- writer.uint32(24).bool(message.includeArchived);
367
+ writer.uint32(16).bool(message.includeArchived);
371
368
  }
372
369
  if (message.pageSize !== 0) {
373
- writer.uint32(32).int32(message.pageSize);
370
+ writer.uint32(24).int32(message.pageSize);
374
371
  }
375
372
  if (message.pageToken !== "") {
376
- writer.uint32(42).string(message.pageToken);
373
+ writer.uint32(34).string(message.pageToken);
374
+ }
375
+ if (message.workflowId !== "") {
376
+ writer.uint32(42).string(message.workflowId);
377
377
  }
378
378
  return writer;
379
379
  },
@@ -392,31 +392,31 @@ exports.ListReportsRequest = {
392
392
  continue;
393
393
  }
394
394
  case 2: {
395
- if (tag !== 18) {
395
+ if (tag !== 16) {
396
396
  break;
397
397
  }
398
- message.workflowId = reader.string();
398
+ message.includeArchived = reader.bool();
399
399
  continue;
400
400
  }
401
401
  case 3: {
402
402
  if (tag !== 24) {
403
403
  break;
404
404
  }
405
- message.includeArchived = reader.bool();
405
+ message.pageSize = reader.int32();
406
406
  continue;
407
407
  }
408
408
  case 4: {
409
- if (tag !== 32) {
409
+ if (tag !== 34) {
410
410
  break;
411
411
  }
412
- message.pageSize = reader.int32();
412
+ message.pageToken = reader.string();
413
413
  continue;
414
414
  }
415
415
  case 5: {
416
416
  if (tag !== 42) {
417
417
  break;
418
418
  }
419
- message.pageToken = reader.string();
419
+ message.workflowId = reader.string();
420
420
  continue;
421
421
  }
422
422
  }
@@ -434,11 +434,6 @@ exports.ListReportsRequest = {
434
434
  : isSet(object.project_id)
435
435
  ? globalThis.String(object.project_id)
436
436
  : "",
437
- workflowId: isSet(object.workflowId)
438
- ? globalThis.String(object.workflowId)
439
- : isSet(object.workflow_id)
440
- ? globalThis.String(object.workflow_id)
441
- : "",
442
437
  includeArchived: isSet(object.includeArchived)
443
438
  ? globalThis.Boolean(object.includeArchived)
444
439
  : isSet(object.include_archived)
@@ -454,6 +449,11 @@ exports.ListReportsRequest = {
454
449
  : isSet(object.page_token)
455
450
  ? globalThis.String(object.page_token)
456
451
  : "",
452
+ workflowId: isSet(object.workflowId)
453
+ ? globalThis.String(object.workflowId)
454
+ : isSet(object.workflow_id)
455
+ ? globalThis.String(object.workflow_id)
456
+ : "",
457
457
  };
458
458
  },
459
459
  toJSON(message) {
@@ -461,9 +461,6 @@ exports.ListReportsRequest = {
461
461
  if (message.projectId !== "") {
462
462
  obj.projectId = message.projectId;
463
463
  }
464
- if (message.workflowId !== "") {
465
- obj.workflowId = message.workflowId;
466
- }
467
464
  if (message.includeArchived !== false) {
468
465
  obj.includeArchived = message.includeArchived;
469
466
  }
@@ -473,6 +470,9 @@ exports.ListReportsRequest = {
473
470
  if (message.pageToken !== "") {
474
471
  obj.pageToken = message.pageToken;
475
472
  }
473
+ if (message.workflowId !== "") {
474
+ obj.workflowId = message.workflowId;
475
+ }
476
476
  return obj;
477
477
  },
478
478
  create(base) {
@@ -482,10 +482,10 @@ exports.ListReportsRequest = {
482
482
  var _a, _b, _c, _d, _e;
483
483
  const message = createBaseListReportsRequest();
484
484
  message.projectId = (_a = object.projectId) !== null && _a !== void 0 ? _a : "";
485
- message.workflowId = (_b = object.workflowId) !== null && _b !== void 0 ? _b : "";
486
- message.includeArchived = (_c = object.includeArchived) !== null && _c !== void 0 ? _c : false;
487
- message.pageSize = (_d = object.pageSize) !== null && _d !== void 0 ? _d : 0;
488
- message.pageToken = (_e = object.pageToken) !== null && _e !== void 0 ? _e : "";
485
+ message.includeArchived = (_b = object.includeArchived) !== null && _b !== void 0 ? _b : false;
486
+ message.pageSize = (_c = object.pageSize) !== null && _c !== void 0 ? _c : 0;
487
+ message.pageToken = (_d = object.pageToken) !== null && _d !== void 0 ? _d : "";
488
+ message.workflowId = (_e = object.workflowId) !== null && _e !== void 0 ? _e : "";
489
489
  return message;
490
490
  },
491
491
  };
@@ -569,18 +569,18 @@ exports.ListReportsResponse = {
569
569
  },
570
570
  };
571
571
  function createBaseArchiveReportRequest() {
572
- return { projectId: "", workflowId: "", testReportId: "" };
572
+ return { projectId: "", testReportId: "", workflowId: "" };
573
573
  }
574
574
  exports.ArchiveReportRequest = {
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.testReportId !== "") {
583
- writer.uint32(26).string(message.testReportId);
580
+ writer.uint32(18).string(message.testReportId);
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.ArchiveReportRequest = {
602
602
  if (tag !== 18) {
603
603
  break;
604
604
  }
605
- message.workflowId = reader.string();
605
+ message.testReportId = reader.string();
606
606
  continue;
607
607
  }
608
608
  case 3: {
609
609
  if (tag !== 26) {
610
610
  break;
611
611
  }
612
- message.testReportId = reader.string();
612
+ message.workflowId = reader.string();
613
613
  continue;
614
614
  }
615
615
  }
@@ -627,16 +627,16 @@ exports.ArchiveReportRequest = {
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
  testReportId: isSet(object.testReportId)
636
631
  ? globalThis.String(object.testReportId)
637
632
  : isSet(object.test_report_id)
638
633
  ? globalThis.String(object.test_report_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.ArchiveReportRequest = {
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.testReportId !== "") {
651
648
  obj.testReportId = message.testReportId;
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.ArchiveReportRequest = {
659
659
  var _a, _b, _c;
660
660
  const message = createBaseArchiveReportRequest();
661
661
  message.projectId = (_a = object.projectId) !== null && _a !== void 0 ? _a : "";
662
- message.workflowId = (_b = object.workflowId) !== null && _b !== void 0 ? _b : "";
663
- message.testReportId = (_c = object.testReportId) !== null && _c !== void 0 ? _c : "";
662
+ message.testReportId = (_b = object.testReportId) !== 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.ArchiveReportResponse = {
724
724
  },
725
725
  };
726
726
  function createBaseDeleteReportRequest() {
727
- return { projectId: "", workflowId: "", testReportId: "" };
727
+ return { projectId: "", testReportId: "", workflowId: "" };
728
728
  }
729
729
  exports.DeleteReportRequest = {
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.testReportId !== "") {
738
- writer.uint32(26).string(message.testReportId);
735
+ writer.uint32(18).string(message.testReportId);
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.DeleteReportRequest = {
757
757
  if (tag !== 18) {
758
758
  break;
759
759
  }
760
- message.workflowId = reader.string();
760
+ message.testReportId = reader.string();
761
761
  continue;
762
762
  }
763
763
  case 3: {
764
764
  if (tag !== 26) {
765
765
  break;
766
766
  }
767
- message.testReportId = reader.string();
767
+ message.workflowId = reader.string();
768
768
  continue;
769
769
  }
770
770
  }
@@ -782,16 +782,16 @@ exports.DeleteReportRequest = {
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
  testReportId: isSet(object.testReportId)
791
786
  ? globalThis.String(object.testReportId)
792
787
  : isSet(object.test_report_id)
793
788
  ? globalThis.String(object.test_report_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.DeleteReportRequest = {
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.testReportId !== "") {
806
803
  obj.testReportId = message.testReportId;
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.DeleteReportRequest = {
814
814
  var _a, _b, _c;
815
815
  const message = createBaseDeleteReportRequest();
816
816
  message.projectId = (_a = object.projectId) !== null && _a !== void 0 ? _a : "";
817
- message.workflowId = (_b = object.workflowId) !== null && _b !== void 0 ? _b : "";
818
- message.testReportId = (_c = object.testReportId) !== null && _c !== void 0 ? _c : "";
817
+ message.testReportId = (_b = object.testReportId) !== null && _b !== void 0 ? _b : "";
818
+ message.workflowId = (_c = object.workflowId) !== null && _c !== void 0 ? _c : "";
819
819
  return message;
820
820
  },
821
821
  };
@@ -857,21 +857,21 @@ exports.DeleteReportResponse = {
857
857
  },
858
858
  };
859
859
  function createBaseListWorkflowEventsRequest() {
860
- return { projectId: "", workflowId: "", pageSize: 0, pageToken: "" };
860
+ return { projectId: "", pageSize: 0, pageToken: "", workflowId: "" };
861
861
  }
862
862
  exports.ListWorkflowEventsRequest = {
863
863
  encode(message, writer = new wire_1.BinaryWriter()) {
864
864
  if (message.projectId !== "") {
865
865
  writer.uint32(10).string(message.projectId);
866
866
  }
867
- if (message.workflowId !== "") {
868
- writer.uint32(18).string(message.workflowId);
869
- }
870
867
  if (message.pageSize !== 0) {
871
- writer.uint32(24).int32(message.pageSize);
868
+ writer.uint32(16).int32(message.pageSize);
872
869
  }
873
870
  if (message.pageToken !== "") {
874
- writer.uint32(34).string(message.pageToken);
871
+ writer.uint32(26).string(message.pageToken);
872
+ }
873
+ if (message.workflowId !== "") {
874
+ writer.uint32(34).string(message.workflowId);
875
875
  }
876
876
  return writer;
877
877
  },
@@ -890,24 +890,24 @@ exports.ListWorkflowEventsRequest = {
890
890
  continue;
891
891
  }
892
892
  case 2: {
893
- if (tag !== 18) {
893
+ if (tag !== 16) {
894
894
  break;
895
895
  }
896
- message.workflowId = reader.string();
896
+ message.pageSize = reader.int32();
897
897
  continue;
898
898
  }
899
899
  case 3: {
900
- if (tag !== 24) {
900
+ if (tag !== 26) {
901
901
  break;
902
902
  }
903
- message.pageSize = reader.int32();
903
+ message.pageToken = reader.string();
904
904
  continue;
905
905
  }
906
906
  case 4: {
907
907
  if (tag !== 34) {
908
908
  break;
909
909
  }
910
- message.pageToken = reader.string();
910
+ message.workflowId = reader.string();
911
911
  continue;
912
912
  }
913
913
  }
@@ -925,11 +925,6 @@ exports.ListWorkflowEventsRequest = {
925
925
  : isSet(object.project_id)
926
926
  ? globalThis.String(object.project_id)
927
927
  : "",
928
- workflowId: isSet(object.workflowId)
929
- ? globalThis.String(object.workflowId)
930
- : isSet(object.workflow_id)
931
- ? globalThis.String(object.workflow_id)
932
- : "",
933
928
  pageSize: isSet(object.pageSize)
934
929
  ? globalThis.Number(object.pageSize)
935
930
  : isSet(object.page_size)
@@ -940,6 +935,11 @@ exports.ListWorkflowEventsRequest = {
940
935
  : isSet(object.page_token)
941
936
  ? globalThis.String(object.page_token)
942
937
  : "",
938
+ workflowId: isSet(object.workflowId)
939
+ ? globalThis.String(object.workflowId)
940
+ : isSet(object.workflow_id)
941
+ ? globalThis.String(object.workflow_id)
942
+ : "",
943
943
  };
944
944
  },
945
945
  toJSON(message) {
@@ -947,15 +947,15 @@ exports.ListWorkflowEventsRequest = {
947
947
  if (message.projectId !== "") {
948
948
  obj.projectId = message.projectId;
949
949
  }
950
- if (message.workflowId !== "") {
951
- obj.workflowId = message.workflowId;
952
- }
953
950
  if (message.pageSize !== 0) {
954
951
  obj.pageSize = Math.round(message.pageSize);
955
952
  }
956
953
  if (message.pageToken !== "") {
957
954
  obj.pageToken = message.pageToken;
958
955
  }
956
+ if (message.workflowId !== "") {
957
+ obj.workflowId = message.workflowId;
958
+ }
959
959
  return obj;
960
960
  },
961
961
  create(base) {
@@ -965,9 +965,9 @@ exports.ListWorkflowEventsRequest = {
965
965
  var _a, _b, _c, _d;
966
966
  const message = createBaseListWorkflowEventsRequest();
967
967
  message.projectId = (_a = object.projectId) !== null && _a !== void 0 ? _a : "";
968
- message.workflowId = (_b = object.workflowId) !== null && _b !== void 0 ? _b : "";
969
- message.pageSize = (_c = object.pageSize) !== null && _c !== void 0 ? _c : 0;
970
- message.pageToken = (_d = object.pageToken) !== null && _d !== void 0 ? _d : "";
968
+ message.pageSize = (_b = object.pageSize) !== null && _b !== void 0 ? _b : 0;
969
+ message.pageToken = (_c = object.pageToken) !== null && _c !== void 0 ? _c : "";
970
+ message.workflowId = (_d = object.workflowId) !== null && _d !== void 0 ? _d : "";
971
971
  return message;
972
972
  },
973
973
  };
@@ -1110,6 +1110,11 @@ exports.ReportServiceDefinition = {
1110
1110
  _unknownFields: {
1111
1111
  578365826: [
1112
1112
  new Uint8Array([
1113
+ 114,
1114
+ 58,
1115
+ 1,
1116
+ 42,
1117
+ 90,
1113
1118
  68,
1114
1119
  58,
1115
1120
  1,
@@ -1179,6 +1184,47 @@ exports.ReportServiceDefinition = {
1179
1184
  105,
1180
1185
  108,
1181
1186
  100,
1187
+ 34,
1188
+ 39,
1189
+ 47,
1190
+ 118,
1191
+ 49,
1192
+ 47,
1193
+ 112,
1194
+ 114,
1195
+ 111,
1196
+ 106,
1197
+ 101,
1198
+ 99,
1199
+ 116,
1200
+ 115,
1201
+ 47,
1202
+ 123,
1203
+ 112,
1204
+ 114,
1205
+ 111,
1206
+ 106,
1207
+ 101,
1208
+ 99,
1209
+ 116,
1210
+ 95,
1211
+ 105,
1212
+ 100,
1213
+ 125,
1214
+ 47,
1215
+ 114,
1216
+ 101,
1217
+ 112,
1218
+ 111,
1219
+ 114,
1220
+ 116,
1221
+ 115,
1222
+ 58,
1223
+ 98,
1224
+ 117,
1225
+ 105,
1226
+ 108,
1227
+ 100,
1182
1228
  ]),
1183
1229
  ],
1184
1230
  },
@@ -1194,6 +1240,9 @@ exports.ReportServiceDefinition = {
1194
1240
  _unknownFields: {
1195
1241
  578365826: [
1196
1242
  new Uint8Array([
1243
+ 130,
1244
+ 1,
1245
+ 90,
1197
1246
  76,
1198
1247
  18,
1199
1248
  74,
@@ -1271,6 +1320,58 @@ exports.ReportServiceDefinition = {
1271
1320
  105,
1272
1321
  100,
1273
1322
  125,
1323
+ 18,
1324
+ 50,
1325
+ 47,
1326
+ 118,
1327
+ 49,
1328
+ 47,
1329
+ 112,
1330
+ 114,
1331
+ 111,
1332
+ 106,
1333
+ 101,
1334
+ 99,
1335
+ 116,
1336
+ 115,
1337
+ 47,
1338
+ 123,
1339
+ 112,
1340
+ 114,
1341
+ 111,
1342
+ 106,
1343
+ 101,
1344
+ 99,
1345
+ 116,
1346
+ 95,
1347
+ 105,
1348
+ 100,
1349
+ 125,
1350
+ 47,
1351
+ 114,
1352
+ 101,
1353
+ 112,
1354
+ 111,
1355
+ 114,
1356
+ 116,
1357
+ 115,
1358
+ 47,
1359
+ 123,
1360
+ 116,
1361
+ 101,
1362
+ 115,
1363
+ 116,
1364
+ 95,
1365
+ 114,
1366
+ 101,
1367
+ 112,
1368
+ 111,
1369
+ 114,
1370
+ 116,
1371
+ 95,
1372
+ 105,
1373
+ 100,
1374
+ 125,
1274
1375
  ]),
1275
1376
  ],
1276
1377
  },
@@ -1286,6 +1387,8 @@ exports.ReportServiceDefinition = {
1286
1387
  _unknownFields: {
1287
1388
  578365826: [
1288
1389
  new Uint8Array([
1390
+ 96,
1391
+ 90,
1289
1392
  59,
1290
1393
  18,
1291
1394
  57,
@@ -1346,6 +1449,41 @@ exports.ReportServiceDefinition = {
1346
1449
  114,
1347
1450
  116,
1348
1451
  115,
1452
+ 18,
1453
+ 33,
1454
+ 47,
1455
+ 118,
1456
+ 49,
1457
+ 47,
1458
+ 112,
1459
+ 114,
1460
+ 111,
1461
+ 106,
1462
+ 101,
1463
+ 99,
1464
+ 116,
1465
+ 115,
1466
+ 47,
1467
+ 123,
1468
+ 112,
1469
+ 114,
1470
+ 111,
1471
+ 106,
1472
+ 101,
1473
+ 99,
1474
+ 116,
1475
+ 95,
1476
+ 105,
1477
+ 100,
1478
+ 125,
1479
+ 47,
1480
+ 114,
1481
+ 101,
1482
+ 112,
1483
+ 111,
1484
+ 114,
1485
+ 116,
1486
+ 115,
1349
1487
  ]),
1350
1488
  ],
1351
1489
  },
@@ -1361,6 +1499,12 @@ exports.ReportServiceDefinition = {
1361
1499
  _unknownFields: {
1362
1500
  578365826: [
1363
1501
  new Uint8Array([
1502
+ 152,
1503
+ 1,
1504
+ 58,
1505
+ 1,
1506
+ 42,
1507
+ 90,
1364
1508
  87,
1365
1509
  58,
1366
1510
  1,
@@ -1449,6 +1593,66 @@ exports.ReportServiceDefinition = {
1449
1593
  105,
1450
1594
  118,
1451
1595
  101,
1596
+ 34,
1597
+ 58,
1598
+ 47,
1599
+ 118,
1600
+ 49,
1601
+ 47,
1602
+ 112,
1603
+ 114,
1604
+ 111,
1605
+ 106,
1606
+ 101,
1607
+ 99,
1608
+ 116,
1609
+ 115,
1610
+ 47,
1611
+ 123,
1612
+ 112,
1613
+ 114,
1614
+ 111,
1615
+ 106,
1616
+ 101,
1617
+ 99,
1618
+ 116,
1619
+ 95,
1620
+ 105,
1621
+ 100,
1622
+ 125,
1623
+ 47,
1624
+ 114,
1625
+ 101,
1626
+ 112,
1627
+ 111,
1628
+ 114,
1629
+ 116,
1630
+ 115,
1631
+ 47,
1632
+ 123,
1633
+ 116,
1634
+ 101,
1635
+ 115,
1636
+ 116,
1637
+ 95,
1638
+ 114,
1639
+ 101,
1640
+ 112,
1641
+ 111,
1642
+ 114,
1643
+ 116,
1644
+ 95,
1645
+ 105,
1646
+ 100,
1647
+ 125,
1648
+ 58,
1649
+ 97,
1650
+ 114,
1651
+ 99,
1652
+ 104,
1653
+ 105,
1654
+ 118,
1655
+ 101,
1452
1656
  ]),
1453
1657
  ],
1454
1658
  },
@@ -1464,6 +1668,9 @@ exports.ReportServiceDefinition = {
1464
1668
  _unknownFields: {
1465
1669
  578365826: [
1466
1670
  new Uint8Array([
1671
+ 130,
1672
+ 1,
1673
+ 90,
1467
1674
  76,
1468
1675
  42,
1469
1676
  74,
@@ -1541,6 +1748,58 @@ exports.ReportServiceDefinition = {
1541
1748
  105,
1542
1749
  100,
1543
1750
  125,
1751
+ 42,
1752
+ 50,
1753
+ 47,
1754
+ 118,
1755
+ 49,
1756
+ 47,
1757
+ 112,
1758
+ 114,
1759
+ 111,
1760
+ 106,
1761
+ 101,
1762
+ 99,
1763
+ 116,
1764
+ 115,
1765
+ 47,
1766
+ 123,
1767
+ 112,
1768
+ 114,
1769
+ 111,
1770
+ 106,
1771
+ 101,
1772
+ 99,
1773
+ 116,
1774
+ 95,
1775
+ 105,
1776
+ 100,
1777
+ 125,
1778
+ 47,
1779
+ 114,
1780
+ 101,
1781
+ 112,
1782
+ 111,
1783
+ 114,
1784
+ 116,
1785
+ 115,
1786
+ 47,
1787
+ 123,
1788
+ 116,
1789
+ 101,
1790
+ 115,
1791
+ 116,
1792
+ 95,
1793
+ 114,
1794
+ 101,
1795
+ 112,
1796
+ 111,
1797
+ 114,
1798
+ 116,
1799
+ 95,
1800
+ 105,
1801
+ 100,
1802
+ 125,
1544
1803
  ]),
1545
1804
  ],
1546
1805
  },
@@ -1556,6 +1815,8 @@ exports.ReportServiceDefinition = {
1556
1815
  _unknownFields: {
1557
1816
  578365826: [
1558
1817
  new Uint8Array([
1818
+ 94,
1819
+ 90,
1559
1820
  58,
1560
1821
  18,
1561
1822
  56,
@@ -1615,6 +1876,40 @@ exports.ReportServiceDefinition = {
1615
1876
  110,
1616
1877
  116,
1617
1878
  115,
1879
+ 18,
1880
+ 32,
1881
+ 47,
1882
+ 118,
1883
+ 49,
1884
+ 47,
1885
+ 112,
1886
+ 114,
1887
+ 111,
1888
+ 106,
1889
+ 101,
1890
+ 99,
1891
+ 116,
1892
+ 115,
1893
+ 47,
1894
+ 123,
1895
+ 112,
1896
+ 114,
1897
+ 111,
1898
+ 106,
1899
+ 101,
1900
+ 99,
1901
+ 116,
1902
+ 95,
1903
+ 105,
1904
+ 100,
1905
+ 125,
1906
+ 47,
1907
+ 101,
1908
+ 118,
1909
+ 101,
1910
+ 110,
1911
+ 116,
1912
+ 115,
1618
1913
  ]),
1619
1914
  ],
1620
1915
  },