@stanterprise/protobuf 0.1.1 → 0.1.3

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 (44) hide show
  1. package/dist/{chunk-BR7Z6N5S.mjs → chunk-5Q7PEW7T.mjs} +6 -6
  2. package/dist/{chunk-XIP55YQC.mjs → chunk-5TUCVYG3.mjs} +122 -2
  3. package/dist/chunk-5TUCVYG3.mjs.map +1 -0
  4. package/dist/{chunk-WBCHUWL7.mjs → chunk-7T4DREEB.mjs} +82 -2
  5. package/dist/chunk-7T4DREEB.mjs.map +1 -0
  6. package/dist/{chunk-XYL4P7DJ.mjs → chunk-GXV2FWLZ.mjs} +2 -2
  7. package/dist/{chunk-FBR2J74U.mjs → chunk-QENINSQL.mjs} +2 -2
  8. package/dist/{chunk-34GQCWQN.mjs → chunk-RRKAEIBJ.mjs} +2 -2
  9. package/dist/{chunk-4YJNHYW7.mjs → chunk-ZLJNJSRC.mjs} +2 -2
  10. package/dist/index.js +201 -1
  11. package/dist/index.js.map +1 -1
  12. package/dist/index.mjs +3 -3
  13. package/dist/lib/testsystem/v1/entities/test_case.d.ts +15 -0
  14. package/dist/lib/testsystem/v1/entities/test_case.d.ts.map +1 -1
  15. package/dist/lib/testsystem/v1/entities/test_suite.d.ts +5 -0
  16. package/dist/lib/testsystem/v1/entities/test_suite.d.ts.map +1 -1
  17. package/dist/lib/testsystem/v1/events/events.d.ts +30 -0
  18. package/dist/lib/testsystem/v1/events/events.d.ts.map +1 -1
  19. package/dist/testsystem/index.js +201 -1
  20. package/dist/testsystem/index.js.map +1 -1
  21. package/dist/testsystem/index.mjs +7 -7
  22. package/dist/testsystem/v1/entities/index.js +81 -1
  23. package/dist/testsystem/v1/entities/index.js.map +1 -1
  24. package/dist/testsystem/v1/entities/index.mjs +2 -2
  25. package/dist/testsystem/v1/events/index.js +201 -1
  26. package/dist/testsystem/v1/events/index.js.map +1 -1
  27. package/dist/testsystem/v1/events/index.mjs +3 -3
  28. package/dist/testsystem/v1/index.js +201 -1
  29. package/dist/testsystem/v1/index.js.map +1 -1
  30. package/dist/testsystem/v1/index.mjs +9 -9
  31. package/dist/testsystem/v1/observer/index.js +201 -1
  32. package/dist/testsystem/v1/observer/index.js.map +1 -1
  33. package/dist/testsystem/v1/observer/index.mjs +4 -4
  34. package/lib/testsystem/v1/entities/test_case.ts +70 -1
  35. package/lib/testsystem/v1/entities/test_suite.ts +23 -0
  36. package/lib/testsystem/v1/events/events.ts +138 -0
  37. package/package.json +1 -1
  38. package/dist/chunk-WBCHUWL7.mjs.map +0 -1
  39. package/dist/chunk-XIP55YQC.mjs.map +0 -1
  40. /package/dist/{chunk-BR7Z6N5S.mjs.map → chunk-5Q7PEW7T.mjs.map} +0 -0
  41. /package/dist/{chunk-XYL4P7DJ.mjs.map → chunk-GXV2FWLZ.mjs.map} +0 -0
  42. /package/dist/{chunk-FBR2J74U.mjs.map → chunk-QENINSQL.mjs.map} +0 -0
  43. /package/dist/{chunk-34GQCWQN.mjs.map → chunk-RRKAEIBJ.mjs.map} +0 -0
  44. /package/dist/{chunk-4YJNHYW7.mjs.map → chunk-ZLJNJSRC.mjs.map} +0 -0
@@ -12,9 +12,9 @@ import {
12
12
  TestErrorEventRequest,
13
13
  TestFailureEventRequest,
14
14
  TestRunEndEventRequest
15
- } from "../../../chunk-XYL4P7DJ.mjs";
16
- import "../../../chunk-XIP55YQC.mjs";
17
- import "../../../chunk-WBCHUWL7.mjs";
15
+ } from "../../../chunk-GXV2FWLZ.mjs";
16
+ import "../../../chunk-5TUCVYG3.mjs";
17
+ import "../../../chunk-7T4DREEB.mjs";
18
18
  import "../../../chunk-EMALOWTT.mjs";
19
19
  export {
20
20
  HeartbeatEventRequest,
@@ -474,6 +474,9 @@ var testsystem2;
474
474
  if ("timeout" in data && data.timeout != void 0) {
475
475
  this.timeout = data.timeout;
476
476
  }
477
+ if ("execution_id" in data && data.execution_id != void 0) {
478
+ this.execution_id = data.execution_id;
479
+ }
477
480
  }
478
481
  if (!this.metadata)
479
482
  this.metadata = /* @__PURE__ */ new Map();
@@ -601,6 +604,12 @@ var testsystem2;
601
604
  set timeout(value) {
602
605
  pb_14.Message.setField(this, 19, value);
603
606
  }
607
+ get execution_id() {
608
+ return pb_14.Message.getFieldWithDefault(this, 20, "");
609
+ }
610
+ set execution_id(value) {
611
+ pb_14.Message.setField(this, 20, value);
612
+ }
604
613
  static fromObject(data) {
605
614
  const message = new _TestCaseRun({});
606
615
  if (data.id != null) {
@@ -660,6 +669,9 @@ var testsystem2;
660
669
  if (data.timeout != null) {
661
670
  message.timeout = data.timeout;
662
671
  }
672
+ if (data.execution_id != null) {
673
+ message.execution_id = data.execution_id;
674
+ }
663
675
  return message;
664
676
  }
665
677
  toObject() {
@@ -721,6 +733,9 @@ var testsystem2;
721
733
  if (this.timeout != null) {
722
734
  data.timeout = this.timeout;
723
735
  }
736
+ if (this.execution_id != null) {
737
+ data.execution_id = this.execution_id;
738
+ }
724
739
  return data;
725
740
  }
726
741
  serialize(w) {
@@ -767,6 +782,8 @@ var testsystem2;
767
782
  writer.writeInt32(18, this.retry_index);
768
783
  if (this.timeout != 0)
769
784
  writer.writeInt32(19, this.timeout);
785
+ if (this.execution_id.length)
786
+ writer.writeString(20, this.execution_id);
770
787
  if (!w)
771
788
  return writer.getResultBuffer();
772
789
  }
@@ -833,6 +850,9 @@ var testsystem2;
833
850
  case 19:
834
851
  message.timeout = reader.readInt32();
835
852
  break;
853
+ case 20:
854
+ message.execution_id = reader.readString();
855
+ break;
836
856
  default:
837
857
  reader.skipField();
838
858
  }
@@ -853,7 +873,7 @@ var testsystem2;
853
873
  constructor(data) {
854
874
  super();
855
875
  __privateAdd(this, _one_of_decls2, []);
856
- pb_14.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [14], __privateGet(this, _one_of_decls2));
876
+ pb_14.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [14, 18], __privateGet(this, _one_of_decls2));
857
877
  if (!Array.isArray(data) && typeof data == "object") {
858
878
  if ("id" in data && data.id != void 0) {
859
879
  this.id = data.id;
@@ -906,6 +926,12 @@ var testsystem2;
906
926
  if ("retry_index" in data && data.retry_index != void 0) {
907
927
  this.retry_index = data.retry_index;
908
928
  }
929
+ if ("attachments" in data && data.attachments != void 0) {
930
+ this.attachments = data.attachments;
931
+ }
932
+ if ("execution_id" in data && data.execution_id != void 0) {
933
+ this.execution_id = data.execution_id;
934
+ }
909
935
  }
910
936
  if (!this.metadata)
911
937
  this.metadata = /* @__PURE__ */ new Map();
@@ -1018,6 +1044,18 @@ var testsystem2;
1018
1044
  set retry_index(value) {
1019
1045
  pb_14.Message.setField(this, 17, value);
1020
1046
  }
1047
+ get attachments() {
1048
+ return pb_14.Message.getRepeatedWrapperField(this, testsystem.v1.common.Attachment, 18);
1049
+ }
1050
+ set attachments(value) {
1051
+ pb_14.Message.setRepeatedWrapperField(this, 18, value);
1052
+ }
1053
+ get execution_id() {
1054
+ return pb_14.Message.getFieldWithDefault(this, 19, "");
1055
+ }
1056
+ set execution_id(value) {
1057
+ pb_14.Message.setField(this, 19, value);
1058
+ }
1021
1059
  static fromObject(data) {
1022
1060
  const message = new _StepRun({});
1023
1061
  if (data.id != null) {
@@ -1071,6 +1109,12 @@ var testsystem2;
1071
1109
  if (data.retry_index != null) {
1072
1110
  message.retry_index = data.retry_index;
1073
1111
  }
1112
+ if (data.attachments != null) {
1113
+ message.attachments = data.attachments.map((item) => testsystem.v1.common.Attachment.fromObject(item));
1114
+ }
1115
+ if (data.execution_id != null) {
1116
+ message.execution_id = data.execution_id;
1117
+ }
1074
1118
  return message;
1075
1119
  }
1076
1120
  toObject() {
@@ -1126,6 +1170,12 @@ var testsystem2;
1126
1170
  if (this.retry_index != null) {
1127
1171
  data.retry_index = this.retry_index;
1128
1172
  }
1173
+ if (this.attachments != null) {
1174
+ data.attachments = this.attachments.map((item) => item.toObject());
1175
+ }
1176
+ if (this.execution_id != null) {
1177
+ data.execution_id = this.execution_id;
1178
+ }
1129
1179
  return data;
1130
1180
  }
1131
1181
  serialize(w) {
@@ -1168,6 +1218,10 @@ var testsystem2;
1168
1218
  writer.writeString(16, this.category);
1169
1219
  if (this.retry_index != 0)
1170
1220
  writer.writeInt32(17, this.retry_index);
1221
+ if (this.attachments.length)
1222
+ writer.writeRepeatedMessage(18, this.attachments, (item) => item.serialize(writer));
1223
+ if (this.execution_id.length)
1224
+ writer.writeString(19, this.execution_id);
1171
1225
  if (!w)
1172
1226
  return writer.getResultBuffer();
1173
1227
  }
@@ -1228,6 +1282,12 @@ var testsystem2;
1228
1282
  case 17:
1229
1283
  message.retry_index = reader.readInt32();
1230
1284
  break;
1285
+ case 18:
1286
+ reader.readMessage(message.attachments, () => pb_14.Message.addToRepeatedWrapperField(message, 18, testsystem.v1.common.Attachment.deserialize(reader), testsystem.v1.common.Attachment));
1287
+ break;
1288
+ case 19:
1289
+ message.execution_id = reader.readString();
1290
+ break;
1231
1291
  default:
1232
1292
  reader.skipField();
1233
1293
  }
@@ -1330,6 +1390,9 @@ var testsystem3;
1330
1390
  if ("sub_suites" in data && data.sub_suites != void 0) {
1331
1391
  this.sub_suites = data.sub_suites;
1332
1392
  }
1393
+ if ("execution_id" in data && data.execution_id != void 0) {
1394
+ this.execution_id = data.execution_id;
1395
+ }
1333
1396
  }
1334
1397
  if (!this.metadata)
1335
1398
  this.metadata = /* @__PURE__ */ new Map();
@@ -1463,6 +1526,12 @@ var testsystem3;
1463
1526
  set sub_suites(value) {
1464
1527
  pb_15.Message.setRepeatedWrapperField(this, 20, value);
1465
1528
  }
1529
+ get execution_id() {
1530
+ return pb_15.Message.getFieldWithDefault(this, 21, "");
1531
+ }
1532
+ set execution_id(value) {
1533
+ pb_15.Message.setField(this, 21, value);
1534
+ }
1466
1535
  static fromObject(data) {
1467
1536
  const message = new _TestSuiteRun({});
1468
1537
  if (data.id != null) {
@@ -1525,6 +1594,9 @@ var testsystem3;
1525
1594
  if (data.sub_suites != null) {
1526
1595
  message.sub_suites = data.sub_suites.map((item) => _TestSuiteRun.fromObject(item));
1527
1596
  }
1597
+ if (data.execution_id != null) {
1598
+ message.execution_id = data.execution_id;
1599
+ }
1528
1600
  return message;
1529
1601
  }
1530
1602
  toObject() {
@@ -1589,6 +1661,9 @@ var testsystem3;
1589
1661
  if (this.sub_suites != null) {
1590
1662
  data.sub_suites = this.sub_suites.map((item) => item.toObject());
1591
1663
  }
1664
+ if (this.execution_id != null) {
1665
+ data.execution_id = this.execution_id;
1666
+ }
1592
1667
  return data;
1593
1668
  }
1594
1669
  serialize(w) {
@@ -1637,6 +1712,8 @@ var testsystem3;
1637
1712
  writer.writeRepeatedMessage(19, this.test_cases, (item) => item.serialize(writer));
1638
1713
  if (this.sub_suites.length)
1639
1714
  writer.writeRepeatedMessage(20, this.sub_suites, (item) => item.serialize(writer));
1715
+ if (this.execution_id.length)
1716
+ writer.writeString(21, this.execution_id);
1640
1717
  if (!w)
1641
1718
  return writer.getResultBuffer();
1642
1719
  }
@@ -1706,6 +1783,9 @@ var testsystem3;
1706
1783
  case 20:
1707
1784
  reader.readMessage(message.sub_suites, () => pb_15.Message.addToRepeatedWrapperField(message, 20, _TestSuiteRun.deserialize(reader), _TestSuiteRun));
1708
1785
  break;
1786
+ case 21:
1787
+ message.execution_id = reader.readString();
1788
+ break;
1709
1789
  default:
1710
1790
  reader.skipField();
1711
1791
  }
@@ -2050,6 +2130,9 @@ var testsystem4;
2050
2130
  if ("retry_index" in data && data.retry_index != void 0) {
2051
2131
  this.retry_index = data.retry_index;
2052
2132
  }
2133
+ if ("execution_id" in data && data.execution_id != void 0) {
2134
+ this.execution_id = data.execution_id;
2135
+ }
2053
2136
  }
2054
2137
  }
2055
2138
  get test_id() {
@@ -2097,6 +2180,12 @@ var testsystem4;
2097
2180
  set retry_index(value) {
2098
2181
  pb_16.Message.setField(this, 7, value);
2099
2182
  }
2183
+ get execution_id() {
2184
+ return pb_16.Message.getFieldWithDefault(this, 8, "");
2185
+ }
2186
+ set execution_id(value) {
2187
+ pb_16.Message.setField(this, 8, value);
2188
+ }
2100
2189
  static fromObject(data) {
2101
2190
  const message = new _TestFailureEventRequest({});
2102
2191
  if (data.test_id != null) {
@@ -2120,6 +2209,9 @@ var testsystem4;
2120
2209
  if (data.retry_index != null) {
2121
2210
  message.retry_index = data.retry_index;
2122
2211
  }
2212
+ if (data.execution_id != null) {
2213
+ message.execution_id = data.execution_id;
2214
+ }
2123
2215
  return message;
2124
2216
  }
2125
2217
  toObject() {
@@ -2145,6 +2237,9 @@ var testsystem4;
2145
2237
  if (this.retry_index != null) {
2146
2238
  data.retry_index = this.retry_index;
2147
2239
  }
2240
+ if (this.execution_id != null) {
2241
+ data.execution_id = this.execution_id;
2242
+ }
2148
2243
  return data;
2149
2244
  }
2150
2245
  serialize(w) {
@@ -2163,6 +2258,8 @@ var testsystem4;
2163
2258
  writer.writeString(6, this.run_id);
2164
2259
  if (this.retry_index != 0)
2165
2260
  writer.writeInt32(7, this.retry_index);
2261
+ if (this.execution_id.length)
2262
+ writer.writeString(8, this.execution_id);
2166
2263
  if (!w)
2167
2264
  return writer.getResultBuffer();
2168
2265
  }
@@ -2193,6 +2290,9 @@ var testsystem4;
2193
2290
  case 7:
2194
2291
  message.retry_index = reader.readInt32();
2195
2292
  break;
2293
+ case 8:
2294
+ message.execution_id = reader.readString();
2295
+ break;
2196
2296
  default:
2197
2297
  reader.skipField();
2198
2298
  }
@@ -2236,6 +2336,9 @@ var testsystem4;
2236
2336
  if ("retry_index" in data && data.retry_index != void 0) {
2237
2337
  this.retry_index = data.retry_index;
2238
2338
  }
2339
+ if ("execution_id" in data && data.execution_id != void 0) {
2340
+ this.execution_id = data.execution_id;
2341
+ }
2239
2342
  }
2240
2343
  }
2241
2344
  get test_id() {
@@ -2283,6 +2386,12 @@ var testsystem4;
2283
2386
  set retry_index(value) {
2284
2387
  pb_16.Message.setField(this, 7, value);
2285
2388
  }
2389
+ get execution_id() {
2390
+ return pb_16.Message.getFieldWithDefault(this, 8, "");
2391
+ }
2392
+ set execution_id(value) {
2393
+ pb_16.Message.setField(this, 8, value);
2394
+ }
2286
2395
  static fromObject(data) {
2287
2396
  const message = new _TestErrorEventRequest({});
2288
2397
  if (data.test_id != null) {
@@ -2306,6 +2415,9 @@ var testsystem4;
2306
2415
  if (data.retry_index != null) {
2307
2416
  message.retry_index = data.retry_index;
2308
2417
  }
2418
+ if (data.execution_id != null) {
2419
+ message.execution_id = data.execution_id;
2420
+ }
2309
2421
  return message;
2310
2422
  }
2311
2423
  toObject() {
@@ -2331,6 +2443,9 @@ var testsystem4;
2331
2443
  if (this.retry_index != null) {
2332
2444
  data.retry_index = this.retry_index;
2333
2445
  }
2446
+ if (this.execution_id != null) {
2447
+ data.execution_id = this.execution_id;
2448
+ }
2334
2449
  return data;
2335
2450
  }
2336
2451
  serialize(w) {
@@ -2349,6 +2464,8 @@ var testsystem4;
2349
2464
  writer.writeString(6, this.run_id);
2350
2465
  if (this.retry_index != 0)
2351
2466
  writer.writeInt32(7, this.retry_index);
2467
+ if (this.execution_id.length)
2468
+ writer.writeString(8, this.execution_id);
2352
2469
  if (!w)
2353
2470
  return writer.getResultBuffer();
2354
2471
  }
@@ -2379,6 +2496,9 @@ var testsystem4;
2379
2496
  case 7:
2380
2497
  message.retry_index = reader.readInt32();
2381
2498
  break;
2499
+ case 8:
2500
+ message.execution_id = reader.readString();
2501
+ break;
2382
2502
  default:
2383
2503
  reader.skipField();
2384
2504
  }
@@ -2419,6 +2539,9 @@ var testsystem4;
2419
2539
  if ("retry_index" in data && data.retry_index != void 0) {
2420
2540
  this.retry_index = data.retry_index;
2421
2541
  }
2542
+ if ("execution_id" in data && data.execution_id != void 0) {
2543
+ this.execution_id = data.execution_id;
2544
+ }
2422
2545
  }
2423
2546
  }
2424
2547
  get test_id() {
@@ -2460,6 +2583,12 @@ var testsystem4;
2460
2583
  set retry_index(value) {
2461
2584
  pb_16.Message.setField(this, 6, value);
2462
2585
  }
2586
+ get execution_id() {
2587
+ return pb_16.Message.getFieldWithDefault(this, 7, "");
2588
+ }
2589
+ set execution_id(value) {
2590
+ pb_16.Message.setField(this, 7, value);
2591
+ }
2463
2592
  static fromObject(data) {
2464
2593
  const message = new _StdErrorEventRequest({});
2465
2594
  if (data.test_id != null) {
@@ -2480,6 +2609,9 @@ var testsystem4;
2480
2609
  if (data.retry_index != null) {
2481
2610
  message.retry_index = data.retry_index;
2482
2611
  }
2612
+ if (data.execution_id != null) {
2613
+ message.execution_id = data.execution_id;
2614
+ }
2483
2615
  return message;
2484
2616
  }
2485
2617
  toObject() {
@@ -2502,6 +2634,9 @@ var testsystem4;
2502
2634
  if (this.retry_index != null) {
2503
2635
  data.retry_index = this.retry_index;
2504
2636
  }
2637
+ if (this.execution_id != null) {
2638
+ data.execution_id = this.execution_id;
2639
+ }
2505
2640
  return data;
2506
2641
  }
2507
2642
  serialize(w) {
@@ -2518,6 +2653,8 @@ var testsystem4;
2518
2653
  writer.writeString(5, this.run_id);
2519
2654
  if (this.retry_index != 0)
2520
2655
  writer.writeInt32(6, this.retry_index);
2656
+ if (this.execution_id.length)
2657
+ writer.writeString(7, this.execution_id);
2521
2658
  if (!w)
2522
2659
  return writer.getResultBuffer();
2523
2660
  }
@@ -2545,6 +2682,9 @@ var testsystem4;
2545
2682
  case 6:
2546
2683
  message.retry_index = reader.readInt32();
2547
2684
  break;
2685
+ case 7:
2686
+ message.execution_id = reader.readString();
2687
+ break;
2548
2688
  default:
2549
2689
  reader.skipField();
2550
2690
  }
@@ -2585,6 +2725,9 @@ var testsystem4;
2585
2725
  if ("retry_index" in data && data.retry_index != void 0) {
2586
2726
  this.retry_index = data.retry_index;
2587
2727
  }
2728
+ if ("execution_id" in data && data.execution_id != void 0) {
2729
+ this.execution_id = data.execution_id;
2730
+ }
2588
2731
  }
2589
2732
  }
2590
2733
  get test_id() {
@@ -2626,6 +2769,12 @@ var testsystem4;
2626
2769
  set retry_index(value) {
2627
2770
  pb_16.Message.setField(this, 6, value);
2628
2771
  }
2772
+ get execution_id() {
2773
+ return pb_16.Message.getFieldWithDefault(this, 7, "");
2774
+ }
2775
+ set execution_id(value) {
2776
+ pb_16.Message.setField(this, 7, value);
2777
+ }
2629
2778
  static fromObject(data) {
2630
2779
  const message = new _StdOutputEventRequest({});
2631
2780
  if (data.test_id != null) {
@@ -2646,6 +2795,9 @@ var testsystem4;
2646
2795
  if (data.retry_index != null) {
2647
2796
  message.retry_index = data.retry_index;
2648
2797
  }
2798
+ if (data.execution_id != null) {
2799
+ message.execution_id = data.execution_id;
2800
+ }
2649
2801
  return message;
2650
2802
  }
2651
2803
  toObject() {
@@ -2668,6 +2820,9 @@ var testsystem4;
2668
2820
  if (this.retry_index != null) {
2669
2821
  data.retry_index = this.retry_index;
2670
2822
  }
2823
+ if (this.execution_id != null) {
2824
+ data.execution_id = this.execution_id;
2825
+ }
2671
2826
  return data;
2672
2827
  }
2673
2828
  serialize(w) {
@@ -2684,6 +2839,8 @@ var testsystem4;
2684
2839
  writer.writeString(5, this.run_id);
2685
2840
  if (this.retry_index != 0)
2686
2841
  writer.writeInt32(6, this.retry_index);
2842
+ if (this.execution_id.length)
2843
+ writer.writeString(7, this.execution_id);
2687
2844
  if (!w)
2688
2845
  return writer.getResultBuffer();
2689
2846
  }
@@ -2711,6 +2868,9 @@ var testsystem4;
2711
2868
  case 6:
2712
2869
  message.retry_index = reader.readInt32();
2713
2870
  break;
2871
+ case 7:
2872
+ message.execution_id = reader.readString();
2873
+ break;
2714
2874
  default:
2715
2875
  reader.skipField();
2716
2876
  }
@@ -2966,6 +3126,9 @@ var testsystem4;
2966
3126
  if ("metadata" in data && data.metadata != void 0) {
2967
3127
  this.metadata = data.metadata;
2968
3128
  }
3129
+ if ("execution_id" in data && data.execution_id != void 0) {
3130
+ this.execution_id = data.execution_id;
3131
+ }
2969
3132
  }
2970
3133
  if (!this.metadata)
2971
3134
  this.metadata = /* @__PURE__ */ new Map();
@@ -3000,6 +3163,12 @@ var testsystem4;
3000
3163
  set metadata(value) {
3001
3164
  pb_16.Message.setField(this, 5, value);
3002
3165
  }
3166
+ get execution_id() {
3167
+ return pb_16.Message.getFieldWithDefault(this, 6, "");
3168
+ }
3169
+ set execution_id(value) {
3170
+ pb_16.Message.setField(this, 6, value);
3171
+ }
3003
3172
  static fromObject(data) {
3004
3173
  const message = new _ReportRunStartEventRequest({});
3005
3174
  if (data.run_id != null) {
@@ -3017,6 +3186,9 @@ var testsystem4;
3017
3186
  if (typeof data.metadata == "object") {
3018
3187
  message.metadata = new Map(Object.entries(data.metadata));
3019
3188
  }
3189
+ if (data.execution_id != null) {
3190
+ message.execution_id = data.execution_id;
3191
+ }
3020
3192
  return message;
3021
3193
  }
3022
3194
  toObject() {
@@ -3036,6 +3208,9 @@ var testsystem4;
3036
3208
  if (this.metadata != null) {
3037
3209
  data.metadata = Object.fromEntries(this.metadata);
3038
3210
  }
3211
+ if (this.execution_id != null) {
3212
+ data.execution_id = this.execution_id;
3213
+ }
3039
3214
  return data;
3040
3215
  }
3041
3216
  serialize(w) {
@@ -3054,6 +3229,8 @@ var testsystem4;
3054
3229
  writer.writeString(2, value);
3055
3230
  });
3056
3231
  }
3232
+ if (this.execution_id.length)
3233
+ writer.writeString(6, this.execution_id);
3057
3234
  if (!w)
3058
3235
  return writer.getResultBuffer();
3059
3236
  }
@@ -3078,6 +3255,9 @@ var testsystem4;
3078
3255
  case 5:
3079
3256
  reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
3080
3257
  break;
3258
+ case 6:
3259
+ message.execution_id = reader.readString();
3260
+ break;
3081
3261
  default:
3082
3262
  reader.skipField();
3083
3263
  }
@@ -3115,6 +3295,9 @@ var testsystem4;
3115
3295
  if ("metadata" in data && data.metadata != void 0) {
3116
3296
  this.metadata = data.metadata;
3117
3297
  }
3298
+ if ("execution_id" in data && data.execution_id != void 0) {
3299
+ this.execution_id = data.execution_id;
3300
+ }
3118
3301
  }
3119
3302
  if (!this.metadata)
3120
3303
  this.metadata = /* @__PURE__ */ new Map();
@@ -3155,6 +3338,12 @@ var testsystem4;
3155
3338
  set metadata(value) {
3156
3339
  pb_16.Message.setField(this, 5, value);
3157
3340
  }
3341
+ get execution_id() {
3342
+ return pb_16.Message.getFieldWithDefault(this, 6, "");
3343
+ }
3344
+ set execution_id(value) {
3345
+ pb_16.Message.setField(this, 6, value);
3346
+ }
3158
3347
  static fromObject(data) {
3159
3348
  const message = new _TestRunEndEventRequest({});
3160
3349
  if (data.run_id != null) {
@@ -3172,6 +3361,9 @@ var testsystem4;
3172
3361
  if (typeof data.metadata == "object") {
3173
3362
  message.metadata = new Map(Object.entries(data.metadata));
3174
3363
  }
3364
+ if (data.execution_id != null) {
3365
+ message.execution_id = data.execution_id;
3366
+ }
3175
3367
  return message;
3176
3368
  }
3177
3369
  toObject() {
@@ -3191,6 +3383,9 @@ var testsystem4;
3191
3383
  if (this.metadata != null) {
3192
3384
  data.metadata = Object.fromEntries(this.metadata);
3193
3385
  }
3386
+ if (this.execution_id != null) {
3387
+ data.execution_id = this.execution_id;
3388
+ }
3194
3389
  return data;
3195
3390
  }
3196
3391
  serialize(w) {
@@ -3209,6 +3404,8 @@ var testsystem4;
3209
3404
  writer.writeString(2, value);
3210
3405
  });
3211
3406
  }
3407
+ if (this.execution_id.length)
3408
+ writer.writeString(6, this.execution_id);
3212
3409
  if (!w)
3213
3410
  return writer.getResultBuffer();
3214
3411
  }
@@ -3233,6 +3430,9 @@ var testsystem4;
3233
3430
  case 5:
3234
3431
  reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
3235
3432
  break;
3433
+ case 6:
3434
+ message.execution_id = reader.readString();
3435
+ break;
3236
3436
  default:
3237
3437
  reader.skipField();
3238
3438
  }