@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.
- package/dist/{chunk-BR7Z6N5S.mjs → chunk-5Q7PEW7T.mjs} +6 -6
- package/dist/{chunk-XIP55YQC.mjs → chunk-5TUCVYG3.mjs} +122 -2
- package/dist/chunk-5TUCVYG3.mjs.map +1 -0
- package/dist/{chunk-WBCHUWL7.mjs → chunk-7T4DREEB.mjs} +82 -2
- package/dist/chunk-7T4DREEB.mjs.map +1 -0
- package/dist/{chunk-XYL4P7DJ.mjs → chunk-GXV2FWLZ.mjs} +2 -2
- package/dist/{chunk-FBR2J74U.mjs → chunk-QENINSQL.mjs} +2 -2
- package/dist/{chunk-34GQCWQN.mjs → chunk-RRKAEIBJ.mjs} +2 -2
- package/dist/{chunk-4YJNHYW7.mjs → chunk-ZLJNJSRC.mjs} +2 -2
- package/dist/index.js +201 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/lib/testsystem/v1/entities/test_case.d.ts +15 -0
- package/dist/lib/testsystem/v1/entities/test_case.d.ts.map +1 -1
- package/dist/lib/testsystem/v1/entities/test_suite.d.ts +5 -0
- package/dist/lib/testsystem/v1/entities/test_suite.d.ts.map +1 -1
- package/dist/lib/testsystem/v1/events/events.d.ts +30 -0
- package/dist/lib/testsystem/v1/events/events.d.ts.map +1 -1
- package/dist/testsystem/index.js +201 -1
- package/dist/testsystem/index.js.map +1 -1
- package/dist/testsystem/index.mjs +7 -7
- package/dist/testsystem/v1/entities/index.js +81 -1
- package/dist/testsystem/v1/entities/index.js.map +1 -1
- package/dist/testsystem/v1/entities/index.mjs +2 -2
- package/dist/testsystem/v1/events/index.js +201 -1
- package/dist/testsystem/v1/events/index.js.map +1 -1
- package/dist/testsystem/v1/events/index.mjs +3 -3
- package/dist/testsystem/v1/index.js +201 -1
- package/dist/testsystem/v1/index.js.map +1 -1
- package/dist/testsystem/v1/index.mjs +9 -9
- package/dist/testsystem/v1/observer/index.js +201 -1
- package/dist/testsystem/v1/observer/index.js.map +1 -1
- package/dist/testsystem/v1/observer/index.mjs +4 -4
- package/lib/testsystem/v1/entities/test_case.ts +70 -1
- package/lib/testsystem/v1/entities/test_suite.ts +23 -0
- package/lib/testsystem/v1/events/events.ts +138 -0
- package/package.json +1 -1
- package/dist/chunk-WBCHUWL7.mjs.map +0 -1
- package/dist/chunk-XIP55YQC.mjs.map +0 -1
- /package/dist/{chunk-BR7Z6N5S.mjs.map → chunk-5Q7PEW7T.mjs.map} +0 -0
- /package/dist/{chunk-XYL4P7DJ.mjs.map → chunk-GXV2FWLZ.mjs.map} +0 -0
- /package/dist/{chunk-FBR2J74U.mjs.map → chunk-QENINSQL.mjs.map} +0 -0
- /package/dist/{chunk-34GQCWQN.mjs.map → chunk-RRKAEIBJ.mjs.map} +0 -0
- /package/dist/{chunk-4YJNHYW7.mjs.map → chunk-ZLJNJSRC.mjs.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -472,6 +472,9 @@ var testsystem2;
|
|
|
472
472
|
if ("timeout" in data && data.timeout != void 0) {
|
|
473
473
|
this.timeout = data.timeout;
|
|
474
474
|
}
|
|
475
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
476
|
+
this.execution_id = data.execution_id;
|
|
477
|
+
}
|
|
475
478
|
}
|
|
476
479
|
if (!this.metadata)
|
|
477
480
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -599,6 +602,12 @@ var testsystem2;
|
|
|
599
602
|
set timeout(value) {
|
|
600
603
|
pb_14.Message.setField(this, 19, value);
|
|
601
604
|
}
|
|
605
|
+
get execution_id() {
|
|
606
|
+
return pb_14.Message.getFieldWithDefault(this, 20, "");
|
|
607
|
+
}
|
|
608
|
+
set execution_id(value) {
|
|
609
|
+
pb_14.Message.setField(this, 20, value);
|
|
610
|
+
}
|
|
602
611
|
static fromObject(data) {
|
|
603
612
|
const message = new _TestCaseRun({});
|
|
604
613
|
if (data.id != null) {
|
|
@@ -658,6 +667,9 @@ var testsystem2;
|
|
|
658
667
|
if (data.timeout != null) {
|
|
659
668
|
message.timeout = data.timeout;
|
|
660
669
|
}
|
|
670
|
+
if (data.execution_id != null) {
|
|
671
|
+
message.execution_id = data.execution_id;
|
|
672
|
+
}
|
|
661
673
|
return message;
|
|
662
674
|
}
|
|
663
675
|
toObject() {
|
|
@@ -719,6 +731,9 @@ var testsystem2;
|
|
|
719
731
|
if (this.timeout != null) {
|
|
720
732
|
data.timeout = this.timeout;
|
|
721
733
|
}
|
|
734
|
+
if (this.execution_id != null) {
|
|
735
|
+
data.execution_id = this.execution_id;
|
|
736
|
+
}
|
|
722
737
|
return data;
|
|
723
738
|
}
|
|
724
739
|
serialize(w) {
|
|
@@ -765,6 +780,8 @@ var testsystem2;
|
|
|
765
780
|
writer.writeInt32(18, this.retry_index);
|
|
766
781
|
if (this.timeout != 0)
|
|
767
782
|
writer.writeInt32(19, this.timeout);
|
|
783
|
+
if (this.execution_id.length)
|
|
784
|
+
writer.writeString(20, this.execution_id);
|
|
768
785
|
if (!w)
|
|
769
786
|
return writer.getResultBuffer();
|
|
770
787
|
}
|
|
@@ -831,6 +848,9 @@ var testsystem2;
|
|
|
831
848
|
case 19:
|
|
832
849
|
message.timeout = reader.readInt32();
|
|
833
850
|
break;
|
|
851
|
+
case 20:
|
|
852
|
+
message.execution_id = reader.readString();
|
|
853
|
+
break;
|
|
834
854
|
default:
|
|
835
855
|
reader.skipField();
|
|
836
856
|
}
|
|
@@ -851,7 +871,7 @@ var testsystem2;
|
|
|
851
871
|
constructor(data) {
|
|
852
872
|
super();
|
|
853
873
|
__privateAdd(this, _one_of_decls2, []);
|
|
854
|
-
pb_14.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [14], __privateGet(this, _one_of_decls2));
|
|
874
|
+
pb_14.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [14, 18], __privateGet(this, _one_of_decls2));
|
|
855
875
|
if (!Array.isArray(data) && typeof data == "object") {
|
|
856
876
|
if ("id" in data && data.id != void 0) {
|
|
857
877
|
this.id = data.id;
|
|
@@ -904,6 +924,12 @@ var testsystem2;
|
|
|
904
924
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
905
925
|
this.retry_index = data.retry_index;
|
|
906
926
|
}
|
|
927
|
+
if ("attachments" in data && data.attachments != void 0) {
|
|
928
|
+
this.attachments = data.attachments;
|
|
929
|
+
}
|
|
930
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
931
|
+
this.execution_id = data.execution_id;
|
|
932
|
+
}
|
|
907
933
|
}
|
|
908
934
|
if (!this.metadata)
|
|
909
935
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1016,6 +1042,18 @@ var testsystem2;
|
|
|
1016
1042
|
set retry_index(value) {
|
|
1017
1043
|
pb_14.Message.setField(this, 17, value);
|
|
1018
1044
|
}
|
|
1045
|
+
get attachments() {
|
|
1046
|
+
return pb_14.Message.getRepeatedWrapperField(this, testsystem.v1.common.Attachment, 18);
|
|
1047
|
+
}
|
|
1048
|
+
set attachments(value) {
|
|
1049
|
+
pb_14.Message.setRepeatedWrapperField(this, 18, value);
|
|
1050
|
+
}
|
|
1051
|
+
get execution_id() {
|
|
1052
|
+
return pb_14.Message.getFieldWithDefault(this, 19, "");
|
|
1053
|
+
}
|
|
1054
|
+
set execution_id(value) {
|
|
1055
|
+
pb_14.Message.setField(this, 19, value);
|
|
1056
|
+
}
|
|
1019
1057
|
static fromObject(data) {
|
|
1020
1058
|
const message = new _StepRun({});
|
|
1021
1059
|
if (data.id != null) {
|
|
@@ -1069,6 +1107,12 @@ var testsystem2;
|
|
|
1069
1107
|
if (data.retry_index != null) {
|
|
1070
1108
|
message.retry_index = data.retry_index;
|
|
1071
1109
|
}
|
|
1110
|
+
if (data.attachments != null) {
|
|
1111
|
+
message.attachments = data.attachments.map((item) => testsystem.v1.common.Attachment.fromObject(item));
|
|
1112
|
+
}
|
|
1113
|
+
if (data.execution_id != null) {
|
|
1114
|
+
message.execution_id = data.execution_id;
|
|
1115
|
+
}
|
|
1072
1116
|
return message;
|
|
1073
1117
|
}
|
|
1074
1118
|
toObject() {
|
|
@@ -1124,6 +1168,12 @@ var testsystem2;
|
|
|
1124
1168
|
if (this.retry_index != null) {
|
|
1125
1169
|
data.retry_index = this.retry_index;
|
|
1126
1170
|
}
|
|
1171
|
+
if (this.attachments != null) {
|
|
1172
|
+
data.attachments = this.attachments.map((item) => item.toObject());
|
|
1173
|
+
}
|
|
1174
|
+
if (this.execution_id != null) {
|
|
1175
|
+
data.execution_id = this.execution_id;
|
|
1176
|
+
}
|
|
1127
1177
|
return data;
|
|
1128
1178
|
}
|
|
1129
1179
|
serialize(w) {
|
|
@@ -1166,6 +1216,10 @@ var testsystem2;
|
|
|
1166
1216
|
writer.writeString(16, this.category);
|
|
1167
1217
|
if (this.retry_index != 0)
|
|
1168
1218
|
writer.writeInt32(17, this.retry_index);
|
|
1219
|
+
if (this.attachments.length)
|
|
1220
|
+
writer.writeRepeatedMessage(18, this.attachments, (item) => item.serialize(writer));
|
|
1221
|
+
if (this.execution_id.length)
|
|
1222
|
+
writer.writeString(19, this.execution_id);
|
|
1169
1223
|
if (!w)
|
|
1170
1224
|
return writer.getResultBuffer();
|
|
1171
1225
|
}
|
|
@@ -1226,6 +1280,12 @@ var testsystem2;
|
|
|
1226
1280
|
case 17:
|
|
1227
1281
|
message.retry_index = reader.readInt32();
|
|
1228
1282
|
break;
|
|
1283
|
+
case 18:
|
|
1284
|
+
reader.readMessage(message.attachments, () => pb_14.Message.addToRepeatedWrapperField(message, 18, testsystem.v1.common.Attachment.deserialize(reader), testsystem.v1.common.Attachment));
|
|
1285
|
+
break;
|
|
1286
|
+
case 19:
|
|
1287
|
+
message.execution_id = reader.readString();
|
|
1288
|
+
break;
|
|
1229
1289
|
default:
|
|
1230
1290
|
reader.skipField();
|
|
1231
1291
|
}
|
|
@@ -1328,6 +1388,9 @@ var testsystem3;
|
|
|
1328
1388
|
if ("sub_suites" in data && data.sub_suites != void 0) {
|
|
1329
1389
|
this.sub_suites = data.sub_suites;
|
|
1330
1390
|
}
|
|
1391
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
1392
|
+
this.execution_id = data.execution_id;
|
|
1393
|
+
}
|
|
1331
1394
|
}
|
|
1332
1395
|
if (!this.metadata)
|
|
1333
1396
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1461,6 +1524,12 @@ var testsystem3;
|
|
|
1461
1524
|
set sub_suites(value) {
|
|
1462
1525
|
pb_15.Message.setRepeatedWrapperField(this, 20, value);
|
|
1463
1526
|
}
|
|
1527
|
+
get execution_id() {
|
|
1528
|
+
return pb_15.Message.getFieldWithDefault(this, 21, "");
|
|
1529
|
+
}
|
|
1530
|
+
set execution_id(value) {
|
|
1531
|
+
pb_15.Message.setField(this, 21, value);
|
|
1532
|
+
}
|
|
1464
1533
|
static fromObject(data) {
|
|
1465
1534
|
const message = new _TestSuiteRun({});
|
|
1466
1535
|
if (data.id != null) {
|
|
@@ -1523,6 +1592,9 @@ var testsystem3;
|
|
|
1523
1592
|
if (data.sub_suites != null) {
|
|
1524
1593
|
message.sub_suites = data.sub_suites.map((item) => _TestSuiteRun.fromObject(item));
|
|
1525
1594
|
}
|
|
1595
|
+
if (data.execution_id != null) {
|
|
1596
|
+
message.execution_id = data.execution_id;
|
|
1597
|
+
}
|
|
1526
1598
|
return message;
|
|
1527
1599
|
}
|
|
1528
1600
|
toObject() {
|
|
@@ -1587,6 +1659,9 @@ var testsystem3;
|
|
|
1587
1659
|
if (this.sub_suites != null) {
|
|
1588
1660
|
data.sub_suites = this.sub_suites.map((item) => item.toObject());
|
|
1589
1661
|
}
|
|
1662
|
+
if (this.execution_id != null) {
|
|
1663
|
+
data.execution_id = this.execution_id;
|
|
1664
|
+
}
|
|
1590
1665
|
return data;
|
|
1591
1666
|
}
|
|
1592
1667
|
serialize(w) {
|
|
@@ -1635,6 +1710,8 @@ var testsystem3;
|
|
|
1635
1710
|
writer.writeRepeatedMessage(19, this.test_cases, (item) => item.serialize(writer));
|
|
1636
1711
|
if (this.sub_suites.length)
|
|
1637
1712
|
writer.writeRepeatedMessage(20, this.sub_suites, (item) => item.serialize(writer));
|
|
1713
|
+
if (this.execution_id.length)
|
|
1714
|
+
writer.writeString(21, this.execution_id);
|
|
1638
1715
|
if (!w)
|
|
1639
1716
|
return writer.getResultBuffer();
|
|
1640
1717
|
}
|
|
@@ -1704,6 +1781,9 @@ var testsystem3;
|
|
|
1704
1781
|
case 20:
|
|
1705
1782
|
reader.readMessage(message.sub_suites, () => pb_15.Message.addToRepeatedWrapperField(message, 20, _TestSuiteRun.deserialize(reader), _TestSuiteRun));
|
|
1706
1783
|
break;
|
|
1784
|
+
case 21:
|
|
1785
|
+
message.execution_id = reader.readString();
|
|
1786
|
+
break;
|
|
1707
1787
|
default:
|
|
1708
1788
|
reader.skipField();
|
|
1709
1789
|
}
|
|
@@ -2024,6 +2104,9 @@ var testsystem4;
|
|
|
2024
2104
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2025
2105
|
this.retry_index = data.retry_index;
|
|
2026
2106
|
}
|
|
2107
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2108
|
+
this.execution_id = data.execution_id;
|
|
2109
|
+
}
|
|
2027
2110
|
}
|
|
2028
2111
|
}
|
|
2029
2112
|
get test_id() {
|
|
@@ -2071,6 +2154,12 @@ var testsystem4;
|
|
|
2071
2154
|
set retry_index(value) {
|
|
2072
2155
|
pb_16.Message.setField(this, 7, value);
|
|
2073
2156
|
}
|
|
2157
|
+
get execution_id() {
|
|
2158
|
+
return pb_16.Message.getFieldWithDefault(this, 8, "");
|
|
2159
|
+
}
|
|
2160
|
+
set execution_id(value) {
|
|
2161
|
+
pb_16.Message.setField(this, 8, value);
|
|
2162
|
+
}
|
|
2074
2163
|
static fromObject(data) {
|
|
2075
2164
|
const message = new _TestFailureEventRequest({});
|
|
2076
2165
|
if (data.test_id != null) {
|
|
@@ -2094,6 +2183,9 @@ var testsystem4;
|
|
|
2094
2183
|
if (data.retry_index != null) {
|
|
2095
2184
|
message.retry_index = data.retry_index;
|
|
2096
2185
|
}
|
|
2186
|
+
if (data.execution_id != null) {
|
|
2187
|
+
message.execution_id = data.execution_id;
|
|
2188
|
+
}
|
|
2097
2189
|
return message;
|
|
2098
2190
|
}
|
|
2099
2191
|
toObject() {
|
|
@@ -2119,6 +2211,9 @@ var testsystem4;
|
|
|
2119
2211
|
if (this.retry_index != null) {
|
|
2120
2212
|
data.retry_index = this.retry_index;
|
|
2121
2213
|
}
|
|
2214
|
+
if (this.execution_id != null) {
|
|
2215
|
+
data.execution_id = this.execution_id;
|
|
2216
|
+
}
|
|
2122
2217
|
return data;
|
|
2123
2218
|
}
|
|
2124
2219
|
serialize(w) {
|
|
@@ -2137,6 +2232,8 @@ var testsystem4;
|
|
|
2137
2232
|
writer.writeString(6, this.run_id);
|
|
2138
2233
|
if (this.retry_index != 0)
|
|
2139
2234
|
writer.writeInt32(7, this.retry_index);
|
|
2235
|
+
if (this.execution_id.length)
|
|
2236
|
+
writer.writeString(8, this.execution_id);
|
|
2140
2237
|
if (!w)
|
|
2141
2238
|
return writer.getResultBuffer();
|
|
2142
2239
|
}
|
|
@@ -2167,6 +2264,9 @@ var testsystem4;
|
|
|
2167
2264
|
case 7:
|
|
2168
2265
|
message.retry_index = reader.readInt32();
|
|
2169
2266
|
break;
|
|
2267
|
+
case 8:
|
|
2268
|
+
message.execution_id = reader.readString();
|
|
2269
|
+
break;
|
|
2170
2270
|
default:
|
|
2171
2271
|
reader.skipField();
|
|
2172
2272
|
}
|
|
@@ -2210,6 +2310,9 @@ var testsystem4;
|
|
|
2210
2310
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2211
2311
|
this.retry_index = data.retry_index;
|
|
2212
2312
|
}
|
|
2313
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2314
|
+
this.execution_id = data.execution_id;
|
|
2315
|
+
}
|
|
2213
2316
|
}
|
|
2214
2317
|
}
|
|
2215
2318
|
get test_id() {
|
|
@@ -2257,6 +2360,12 @@ var testsystem4;
|
|
|
2257
2360
|
set retry_index(value) {
|
|
2258
2361
|
pb_16.Message.setField(this, 7, value);
|
|
2259
2362
|
}
|
|
2363
|
+
get execution_id() {
|
|
2364
|
+
return pb_16.Message.getFieldWithDefault(this, 8, "");
|
|
2365
|
+
}
|
|
2366
|
+
set execution_id(value) {
|
|
2367
|
+
pb_16.Message.setField(this, 8, value);
|
|
2368
|
+
}
|
|
2260
2369
|
static fromObject(data) {
|
|
2261
2370
|
const message = new _TestErrorEventRequest({});
|
|
2262
2371
|
if (data.test_id != null) {
|
|
@@ -2280,6 +2389,9 @@ var testsystem4;
|
|
|
2280
2389
|
if (data.retry_index != null) {
|
|
2281
2390
|
message.retry_index = data.retry_index;
|
|
2282
2391
|
}
|
|
2392
|
+
if (data.execution_id != null) {
|
|
2393
|
+
message.execution_id = data.execution_id;
|
|
2394
|
+
}
|
|
2283
2395
|
return message;
|
|
2284
2396
|
}
|
|
2285
2397
|
toObject() {
|
|
@@ -2305,6 +2417,9 @@ var testsystem4;
|
|
|
2305
2417
|
if (this.retry_index != null) {
|
|
2306
2418
|
data.retry_index = this.retry_index;
|
|
2307
2419
|
}
|
|
2420
|
+
if (this.execution_id != null) {
|
|
2421
|
+
data.execution_id = this.execution_id;
|
|
2422
|
+
}
|
|
2308
2423
|
return data;
|
|
2309
2424
|
}
|
|
2310
2425
|
serialize(w) {
|
|
@@ -2323,6 +2438,8 @@ var testsystem4;
|
|
|
2323
2438
|
writer.writeString(6, this.run_id);
|
|
2324
2439
|
if (this.retry_index != 0)
|
|
2325
2440
|
writer.writeInt32(7, this.retry_index);
|
|
2441
|
+
if (this.execution_id.length)
|
|
2442
|
+
writer.writeString(8, this.execution_id);
|
|
2326
2443
|
if (!w)
|
|
2327
2444
|
return writer.getResultBuffer();
|
|
2328
2445
|
}
|
|
@@ -2353,6 +2470,9 @@ var testsystem4;
|
|
|
2353
2470
|
case 7:
|
|
2354
2471
|
message.retry_index = reader.readInt32();
|
|
2355
2472
|
break;
|
|
2473
|
+
case 8:
|
|
2474
|
+
message.execution_id = reader.readString();
|
|
2475
|
+
break;
|
|
2356
2476
|
default:
|
|
2357
2477
|
reader.skipField();
|
|
2358
2478
|
}
|
|
@@ -2393,6 +2513,9 @@ var testsystem4;
|
|
|
2393
2513
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2394
2514
|
this.retry_index = data.retry_index;
|
|
2395
2515
|
}
|
|
2516
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2517
|
+
this.execution_id = data.execution_id;
|
|
2518
|
+
}
|
|
2396
2519
|
}
|
|
2397
2520
|
}
|
|
2398
2521
|
get test_id() {
|
|
@@ -2434,6 +2557,12 @@ var testsystem4;
|
|
|
2434
2557
|
set retry_index(value) {
|
|
2435
2558
|
pb_16.Message.setField(this, 6, value);
|
|
2436
2559
|
}
|
|
2560
|
+
get execution_id() {
|
|
2561
|
+
return pb_16.Message.getFieldWithDefault(this, 7, "");
|
|
2562
|
+
}
|
|
2563
|
+
set execution_id(value) {
|
|
2564
|
+
pb_16.Message.setField(this, 7, value);
|
|
2565
|
+
}
|
|
2437
2566
|
static fromObject(data) {
|
|
2438
2567
|
const message = new _StdErrorEventRequest({});
|
|
2439
2568
|
if (data.test_id != null) {
|
|
@@ -2454,6 +2583,9 @@ var testsystem4;
|
|
|
2454
2583
|
if (data.retry_index != null) {
|
|
2455
2584
|
message.retry_index = data.retry_index;
|
|
2456
2585
|
}
|
|
2586
|
+
if (data.execution_id != null) {
|
|
2587
|
+
message.execution_id = data.execution_id;
|
|
2588
|
+
}
|
|
2457
2589
|
return message;
|
|
2458
2590
|
}
|
|
2459
2591
|
toObject() {
|
|
@@ -2476,6 +2608,9 @@ var testsystem4;
|
|
|
2476
2608
|
if (this.retry_index != null) {
|
|
2477
2609
|
data.retry_index = this.retry_index;
|
|
2478
2610
|
}
|
|
2611
|
+
if (this.execution_id != null) {
|
|
2612
|
+
data.execution_id = this.execution_id;
|
|
2613
|
+
}
|
|
2479
2614
|
return data;
|
|
2480
2615
|
}
|
|
2481
2616
|
serialize(w) {
|
|
@@ -2492,6 +2627,8 @@ var testsystem4;
|
|
|
2492
2627
|
writer.writeString(5, this.run_id);
|
|
2493
2628
|
if (this.retry_index != 0)
|
|
2494
2629
|
writer.writeInt32(6, this.retry_index);
|
|
2630
|
+
if (this.execution_id.length)
|
|
2631
|
+
writer.writeString(7, this.execution_id);
|
|
2495
2632
|
if (!w)
|
|
2496
2633
|
return writer.getResultBuffer();
|
|
2497
2634
|
}
|
|
@@ -2519,6 +2656,9 @@ var testsystem4;
|
|
|
2519
2656
|
case 6:
|
|
2520
2657
|
message.retry_index = reader.readInt32();
|
|
2521
2658
|
break;
|
|
2659
|
+
case 7:
|
|
2660
|
+
message.execution_id = reader.readString();
|
|
2661
|
+
break;
|
|
2522
2662
|
default:
|
|
2523
2663
|
reader.skipField();
|
|
2524
2664
|
}
|
|
@@ -2559,6 +2699,9 @@ var testsystem4;
|
|
|
2559
2699
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2560
2700
|
this.retry_index = data.retry_index;
|
|
2561
2701
|
}
|
|
2702
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2703
|
+
this.execution_id = data.execution_id;
|
|
2704
|
+
}
|
|
2562
2705
|
}
|
|
2563
2706
|
}
|
|
2564
2707
|
get test_id() {
|
|
@@ -2600,6 +2743,12 @@ var testsystem4;
|
|
|
2600
2743
|
set retry_index(value) {
|
|
2601
2744
|
pb_16.Message.setField(this, 6, value);
|
|
2602
2745
|
}
|
|
2746
|
+
get execution_id() {
|
|
2747
|
+
return pb_16.Message.getFieldWithDefault(this, 7, "");
|
|
2748
|
+
}
|
|
2749
|
+
set execution_id(value) {
|
|
2750
|
+
pb_16.Message.setField(this, 7, value);
|
|
2751
|
+
}
|
|
2603
2752
|
static fromObject(data) {
|
|
2604
2753
|
const message = new _StdOutputEventRequest({});
|
|
2605
2754
|
if (data.test_id != null) {
|
|
@@ -2620,6 +2769,9 @@ var testsystem4;
|
|
|
2620
2769
|
if (data.retry_index != null) {
|
|
2621
2770
|
message.retry_index = data.retry_index;
|
|
2622
2771
|
}
|
|
2772
|
+
if (data.execution_id != null) {
|
|
2773
|
+
message.execution_id = data.execution_id;
|
|
2774
|
+
}
|
|
2623
2775
|
return message;
|
|
2624
2776
|
}
|
|
2625
2777
|
toObject() {
|
|
@@ -2642,6 +2794,9 @@ var testsystem4;
|
|
|
2642
2794
|
if (this.retry_index != null) {
|
|
2643
2795
|
data.retry_index = this.retry_index;
|
|
2644
2796
|
}
|
|
2797
|
+
if (this.execution_id != null) {
|
|
2798
|
+
data.execution_id = this.execution_id;
|
|
2799
|
+
}
|
|
2645
2800
|
return data;
|
|
2646
2801
|
}
|
|
2647
2802
|
serialize(w) {
|
|
@@ -2658,6 +2813,8 @@ var testsystem4;
|
|
|
2658
2813
|
writer.writeString(5, this.run_id);
|
|
2659
2814
|
if (this.retry_index != 0)
|
|
2660
2815
|
writer.writeInt32(6, this.retry_index);
|
|
2816
|
+
if (this.execution_id.length)
|
|
2817
|
+
writer.writeString(7, this.execution_id);
|
|
2661
2818
|
if (!w)
|
|
2662
2819
|
return writer.getResultBuffer();
|
|
2663
2820
|
}
|
|
@@ -2685,6 +2842,9 @@ var testsystem4;
|
|
|
2685
2842
|
case 6:
|
|
2686
2843
|
message.retry_index = reader.readInt32();
|
|
2687
2844
|
break;
|
|
2845
|
+
case 7:
|
|
2846
|
+
message.execution_id = reader.readString();
|
|
2847
|
+
break;
|
|
2688
2848
|
default:
|
|
2689
2849
|
reader.skipField();
|
|
2690
2850
|
}
|
|
@@ -2940,6 +3100,9 @@ var testsystem4;
|
|
|
2940
3100
|
if ("metadata" in data && data.metadata != void 0) {
|
|
2941
3101
|
this.metadata = data.metadata;
|
|
2942
3102
|
}
|
|
3103
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
3104
|
+
this.execution_id = data.execution_id;
|
|
3105
|
+
}
|
|
2943
3106
|
}
|
|
2944
3107
|
if (!this.metadata)
|
|
2945
3108
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -2974,6 +3137,12 @@ var testsystem4;
|
|
|
2974
3137
|
set metadata(value) {
|
|
2975
3138
|
pb_16.Message.setField(this, 5, value);
|
|
2976
3139
|
}
|
|
3140
|
+
get execution_id() {
|
|
3141
|
+
return pb_16.Message.getFieldWithDefault(this, 6, "");
|
|
3142
|
+
}
|
|
3143
|
+
set execution_id(value) {
|
|
3144
|
+
pb_16.Message.setField(this, 6, value);
|
|
3145
|
+
}
|
|
2977
3146
|
static fromObject(data) {
|
|
2978
3147
|
const message = new _ReportRunStartEventRequest({});
|
|
2979
3148
|
if (data.run_id != null) {
|
|
@@ -2991,6 +3160,9 @@ var testsystem4;
|
|
|
2991
3160
|
if (typeof data.metadata == "object") {
|
|
2992
3161
|
message.metadata = new Map(Object.entries(data.metadata));
|
|
2993
3162
|
}
|
|
3163
|
+
if (data.execution_id != null) {
|
|
3164
|
+
message.execution_id = data.execution_id;
|
|
3165
|
+
}
|
|
2994
3166
|
return message;
|
|
2995
3167
|
}
|
|
2996
3168
|
toObject() {
|
|
@@ -3010,6 +3182,9 @@ var testsystem4;
|
|
|
3010
3182
|
if (this.metadata != null) {
|
|
3011
3183
|
data.metadata = Object.fromEntries(this.metadata);
|
|
3012
3184
|
}
|
|
3185
|
+
if (this.execution_id != null) {
|
|
3186
|
+
data.execution_id = this.execution_id;
|
|
3187
|
+
}
|
|
3013
3188
|
return data;
|
|
3014
3189
|
}
|
|
3015
3190
|
serialize(w) {
|
|
@@ -3028,6 +3203,8 @@ var testsystem4;
|
|
|
3028
3203
|
writer.writeString(2, value);
|
|
3029
3204
|
});
|
|
3030
3205
|
}
|
|
3206
|
+
if (this.execution_id.length)
|
|
3207
|
+
writer.writeString(6, this.execution_id);
|
|
3031
3208
|
if (!w)
|
|
3032
3209
|
return writer.getResultBuffer();
|
|
3033
3210
|
}
|
|
@@ -3052,6 +3229,9 @@ var testsystem4;
|
|
|
3052
3229
|
case 5:
|
|
3053
3230
|
reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
|
|
3054
3231
|
break;
|
|
3232
|
+
case 6:
|
|
3233
|
+
message.execution_id = reader.readString();
|
|
3234
|
+
break;
|
|
3055
3235
|
default:
|
|
3056
3236
|
reader.skipField();
|
|
3057
3237
|
}
|
|
@@ -3089,6 +3269,9 @@ var testsystem4;
|
|
|
3089
3269
|
if ("metadata" in data && data.metadata != void 0) {
|
|
3090
3270
|
this.metadata = data.metadata;
|
|
3091
3271
|
}
|
|
3272
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
3273
|
+
this.execution_id = data.execution_id;
|
|
3274
|
+
}
|
|
3092
3275
|
}
|
|
3093
3276
|
if (!this.metadata)
|
|
3094
3277
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -3129,6 +3312,12 @@ var testsystem4;
|
|
|
3129
3312
|
set metadata(value) {
|
|
3130
3313
|
pb_16.Message.setField(this, 5, value);
|
|
3131
3314
|
}
|
|
3315
|
+
get execution_id() {
|
|
3316
|
+
return pb_16.Message.getFieldWithDefault(this, 6, "");
|
|
3317
|
+
}
|
|
3318
|
+
set execution_id(value) {
|
|
3319
|
+
pb_16.Message.setField(this, 6, value);
|
|
3320
|
+
}
|
|
3132
3321
|
static fromObject(data) {
|
|
3133
3322
|
const message = new _TestRunEndEventRequest({});
|
|
3134
3323
|
if (data.run_id != null) {
|
|
@@ -3146,6 +3335,9 @@ var testsystem4;
|
|
|
3146
3335
|
if (typeof data.metadata == "object") {
|
|
3147
3336
|
message.metadata = new Map(Object.entries(data.metadata));
|
|
3148
3337
|
}
|
|
3338
|
+
if (data.execution_id != null) {
|
|
3339
|
+
message.execution_id = data.execution_id;
|
|
3340
|
+
}
|
|
3149
3341
|
return message;
|
|
3150
3342
|
}
|
|
3151
3343
|
toObject() {
|
|
@@ -3165,6 +3357,9 @@ var testsystem4;
|
|
|
3165
3357
|
if (this.metadata != null) {
|
|
3166
3358
|
data.metadata = Object.fromEntries(this.metadata);
|
|
3167
3359
|
}
|
|
3360
|
+
if (this.execution_id != null) {
|
|
3361
|
+
data.execution_id = this.execution_id;
|
|
3362
|
+
}
|
|
3168
3363
|
return data;
|
|
3169
3364
|
}
|
|
3170
3365
|
serialize(w) {
|
|
@@ -3183,6 +3378,8 @@ var testsystem4;
|
|
|
3183
3378
|
writer.writeString(2, value);
|
|
3184
3379
|
});
|
|
3185
3380
|
}
|
|
3381
|
+
if (this.execution_id.length)
|
|
3382
|
+
writer.writeString(6, this.execution_id);
|
|
3186
3383
|
if (!w)
|
|
3187
3384
|
return writer.getResultBuffer();
|
|
3188
3385
|
}
|
|
@@ -3207,6 +3404,9 @@ var testsystem4;
|
|
|
3207
3404
|
case 5:
|
|
3208
3405
|
reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
|
|
3209
3406
|
break;
|
|
3407
|
+
case 6:
|
|
3408
|
+
message.execution_id = reader.readString();
|
|
3409
|
+
break;
|
|
3210
3410
|
default:
|
|
3211
3411
|
reader.skipField();
|
|
3212
3412
|
}
|