@stanterprise/protobuf 0.1.2 → 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-CXXQBC7L.mjs → chunk-5Q7PEW7T.mjs} +4 -4
- package/dist/{chunk-SKWN4PET.mjs → chunk-5TUCVYG3.mjs} +122 -2
- package/dist/chunk-5TUCVYG3.mjs.map +1 -0
- package/dist/{chunk-YCV7GOOQ.mjs → chunk-7T4DREEB.mjs} +61 -1
- package/dist/chunk-7T4DREEB.mjs.map +1 -0
- package/dist/{chunk-NYHT7SLS.mjs → chunk-GXV2FWLZ.mjs} +2 -2
- package/dist/{chunk-UNDYBCII.mjs → chunk-QENINSQL.mjs} +2 -2
- package/dist/{chunk-GWOJPJ3V.mjs → chunk-RRKAEIBJ.mjs} +2 -2
- package/dist/{chunk-JV43EC5A.mjs → chunk-ZLJNJSRC.mjs} +2 -2
- package/dist/index.js +180 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/lib/testsystem/v1/entities/test_case.d.ts +10 -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 +180 -0
- package/dist/testsystem/index.js.map +1 -1
- package/dist/testsystem/index.mjs +7 -7
- package/dist/testsystem/v1/entities/index.js +60 -0
- 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 +180 -0
- 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 +180 -0
- package/dist/testsystem/v1/index.js.map +1 -1
- package/dist/testsystem/v1/index.mjs +7 -7
- package/dist/testsystem/v1/observer/index.js +180 -0
- 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 +46 -0
- 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-SKWN4PET.mjs.map +0 -1
- package/dist/chunk-YCV7GOOQ.mjs.map +0 -1
- /package/dist/{chunk-CXXQBC7L.mjs.map → chunk-5Q7PEW7T.mjs.map} +0 -0
- /package/dist/{chunk-NYHT7SLS.mjs.map → chunk-GXV2FWLZ.mjs.map} +0 -0
- /package/dist/{chunk-UNDYBCII.mjs.map → chunk-QENINSQL.mjs.map} +0 -0
- /package/dist/{chunk-GWOJPJ3V.mjs.map → chunk-RRKAEIBJ.mjs.map} +0 -0
- /package/dist/{chunk-JV43EC5A.mjs.map → chunk-ZLJNJSRC.mjs.map} +0 -0
|
@@ -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
|
}
|
|
@@ -907,6 +927,9 @@ var testsystem2;
|
|
|
907
927
|
if ("attachments" in data && data.attachments != void 0) {
|
|
908
928
|
this.attachments = data.attachments;
|
|
909
929
|
}
|
|
930
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
931
|
+
this.execution_id = data.execution_id;
|
|
932
|
+
}
|
|
910
933
|
}
|
|
911
934
|
if (!this.metadata)
|
|
912
935
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1025,6 +1048,12 @@ var testsystem2;
|
|
|
1025
1048
|
set attachments(value) {
|
|
1026
1049
|
pb_14.Message.setRepeatedWrapperField(this, 18, value);
|
|
1027
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
|
+
}
|
|
1028
1057
|
static fromObject(data) {
|
|
1029
1058
|
const message = new _StepRun({});
|
|
1030
1059
|
if (data.id != null) {
|
|
@@ -1081,6 +1110,9 @@ var testsystem2;
|
|
|
1081
1110
|
if (data.attachments != null) {
|
|
1082
1111
|
message.attachments = data.attachments.map((item) => testsystem.v1.common.Attachment.fromObject(item));
|
|
1083
1112
|
}
|
|
1113
|
+
if (data.execution_id != null) {
|
|
1114
|
+
message.execution_id = data.execution_id;
|
|
1115
|
+
}
|
|
1084
1116
|
return message;
|
|
1085
1117
|
}
|
|
1086
1118
|
toObject() {
|
|
@@ -1139,6 +1171,9 @@ var testsystem2;
|
|
|
1139
1171
|
if (this.attachments != null) {
|
|
1140
1172
|
data.attachments = this.attachments.map((item) => item.toObject());
|
|
1141
1173
|
}
|
|
1174
|
+
if (this.execution_id != null) {
|
|
1175
|
+
data.execution_id = this.execution_id;
|
|
1176
|
+
}
|
|
1142
1177
|
return data;
|
|
1143
1178
|
}
|
|
1144
1179
|
serialize(w) {
|
|
@@ -1183,6 +1218,8 @@ var testsystem2;
|
|
|
1183
1218
|
writer.writeInt32(17, this.retry_index);
|
|
1184
1219
|
if (this.attachments.length)
|
|
1185
1220
|
writer.writeRepeatedMessage(18, this.attachments, (item) => item.serialize(writer));
|
|
1221
|
+
if (this.execution_id.length)
|
|
1222
|
+
writer.writeString(19, this.execution_id);
|
|
1186
1223
|
if (!w)
|
|
1187
1224
|
return writer.getResultBuffer();
|
|
1188
1225
|
}
|
|
@@ -1246,6 +1283,9 @@ var testsystem2;
|
|
|
1246
1283
|
case 18:
|
|
1247
1284
|
reader.readMessage(message.attachments, () => pb_14.Message.addToRepeatedWrapperField(message, 18, testsystem.v1.common.Attachment.deserialize(reader), testsystem.v1.common.Attachment));
|
|
1248
1285
|
break;
|
|
1286
|
+
case 19:
|
|
1287
|
+
message.execution_id = reader.readString();
|
|
1288
|
+
break;
|
|
1249
1289
|
default:
|
|
1250
1290
|
reader.skipField();
|
|
1251
1291
|
}
|
|
@@ -1348,6 +1388,9 @@ var testsystem3;
|
|
|
1348
1388
|
if ("sub_suites" in data && data.sub_suites != void 0) {
|
|
1349
1389
|
this.sub_suites = data.sub_suites;
|
|
1350
1390
|
}
|
|
1391
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
1392
|
+
this.execution_id = data.execution_id;
|
|
1393
|
+
}
|
|
1351
1394
|
}
|
|
1352
1395
|
if (!this.metadata)
|
|
1353
1396
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1481,6 +1524,12 @@ var testsystem3;
|
|
|
1481
1524
|
set sub_suites(value) {
|
|
1482
1525
|
pb_15.Message.setRepeatedWrapperField(this, 20, value);
|
|
1483
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
|
+
}
|
|
1484
1533
|
static fromObject(data) {
|
|
1485
1534
|
const message = new _TestSuiteRun({});
|
|
1486
1535
|
if (data.id != null) {
|
|
@@ -1543,6 +1592,9 @@ var testsystem3;
|
|
|
1543
1592
|
if (data.sub_suites != null) {
|
|
1544
1593
|
message.sub_suites = data.sub_suites.map((item) => _TestSuiteRun.fromObject(item));
|
|
1545
1594
|
}
|
|
1595
|
+
if (data.execution_id != null) {
|
|
1596
|
+
message.execution_id = data.execution_id;
|
|
1597
|
+
}
|
|
1546
1598
|
return message;
|
|
1547
1599
|
}
|
|
1548
1600
|
toObject() {
|
|
@@ -1607,6 +1659,9 @@ var testsystem3;
|
|
|
1607
1659
|
if (this.sub_suites != null) {
|
|
1608
1660
|
data.sub_suites = this.sub_suites.map((item) => item.toObject());
|
|
1609
1661
|
}
|
|
1662
|
+
if (this.execution_id != null) {
|
|
1663
|
+
data.execution_id = this.execution_id;
|
|
1664
|
+
}
|
|
1610
1665
|
return data;
|
|
1611
1666
|
}
|
|
1612
1667
|
serialize(w) {
|
|
@@ -1655,6 +1710,8 @@ var testsystem3;
|
|
|
1655
1710
|
writer.writeRepeatedMessage(19, this.test_cases, (item) => item.serialize(writer));
|
|
1656
1711
|
if (this.sub_suites.length)
|
|
1657
1712
|
writer.writeRepeatedMessage(20, this.sub_suites, (item) => item.serialize(writer));
|
|
1713
|
+
if (this.execution_id.length)
|
|
1714
|
+
writer.writeString(21, this.execution_id);
|
|
1658
1715
|
if (!w)
|
|
1659
1716
|
return writer.getResultBuffer();
|
|
1660
1717
|
}
|
|
@@ -1724,6 +1781,9 @@ var testsystem3;
|
|
|
1724
1781
|
case 20:
|
|
1725
1782
|
reader.readMessage(message.sub_suites, () => pb_15.Message.addToRepeatedWrapperField(message, 20, _TestSuiteRun.deserialize(reader), _TestSuiteRun));
|
|
1726
1783
|
break;
|
|
1784
|
+
case 21:
|
|
1785
|
+
message.execution_id = reader.readString();
|
|
1786
|
+
break;
|
|
1727
1787
|
default:
|
|
1728
1788
|
reader.skipField();
|
|
1729
1789
|
}
|
|
@@ -2044,6 +2104,9 @@ var testsystem4;
|
|
|
2044
2104
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2045
2105
|
this.retry_index = data.retry_index;
|
|
2046
2106
|
}
|
|
2107
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2108
|
+
this.execution_id = data.execution_id;
|
|
2109
|
+
}
|
|
2047
2110
|
}
|
|
2048
2111
|
}
|
|
2049
2112
|
get test_id() {
|
|
@@ -2091,6 +2154,12 @@ var testsystem4;
|
|
|
2091
2154
|
set retry_index(value) {
|
|
2092
2155
|
pb_16.Message.setField(this, 7, value);
|
|
2093
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
|
+
}
|
|
2094
2163
|
static fromObject(data) {
|
|
2095
2164
|
const message = new _TestFailureEventRequest({});
|
|
2096
2165
|
if (data.test_id != null) {
|
|
@@ -2114,6 +2183,9 @@ var testsystem4;
|
|
|
2114
2183
|
if (data.retry_index != null) {
|
|
2115
2184
|
message.retry_index = data.retry_index;
|
|
2116
2185
|
}
|
|
2186
|
+
if (data.execution_id != null) {
|
|
2187
|
+
message.execution_id = data.execution_id;
|
|
2188
|
+
}
|
|
2117
2189
|
return message;
|
|
2118
2190
|
}
|
|
2119
2191
|
toObject() {
|
|
@@ -2139,6 +2211,9 @@ var testsystem4;
|
|
|
2139
2211
|
if (this.retry_index != null) {
|
|
2140
2212
|
data.retry_index = this.retry_index;
|
|
2141
2213
|
}
|
|
2214
|
+
if (this.execution_id != null) {
|
|
2215
|
+
data.execution_id = this.execution_id;
|
|
2216
|
+
}
|
|
2142
2217
|
return data;
|
|
2143
2218
|
}
|
|
2144
2219
|
serialize(w) {
|
|
@@ -2157,6 +2232,8 @@ var testsystem4;
|
|
|
2157
2232
|
writer.writeString(6, this.run_id);
|
|
2158
2233
|
if (this.retry_index != 0)
|
|
2159
2234
|
writer.writeInt32(7, this.retry_index);
|
|
2235
|
+
if (this.execution_id.length)
|
|
2236
|
+
writer.writeString(8, this.execution_id);
|
|
2160
2237
|
if (!w)
|
|
2161
2238
|
return writer.getResultBuffer();
|
|
2162
2239
|
}
|
|
@@ -2187,6 +2264,9 @@ var testsystem4;
|
|
|
2187
2264
|
case 7:
|
|
2188
2265
|
message.retry_index = reader.readInt32();
|
|
2189
2266
|
break;
|
|
2267
|
+
case 8:
|
|
2268
|
+
message.execution_id = reader.readString();
|
|
2269
|
+
break;
|
|
2190
2270
|
default:
|
|
2191
2271
|
reader.skipField();
|
|
2192
2272
|
}
|
|
@@ -2230,6 +2310,9 @@ var testsystem4;
|
|
|
2230
2310
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2231
2311
|
this.retry_index = data.retry_index;
|
|
2232
2312
|
}
|
|
2313
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2314
|
+
this.execution_id = data.execution_id;
|
|
2315
|
+
}
|
|
2233
2316
|
}
|
|
2234
2317
|
}
|
|
2235
2318
|
get test_id() {
|
|
@@ -2277,6 +2360,12 @@ var testsystem4;
|
|
|
2277
2360
|
set retry_index(value) {
|
|
2278
2361
|
pb_16.Message.setField(this, 7, value);
|
|
2279
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
|
+
}
|
|
2280
2369
|
static fromObject(data) {
|
|
2281
2370
|
const message = new _TestErrorEventRequest({});
|
|
2282
2371
|
if (data.test_id != null) {
|
|
@@ -2300,6 +2389,9 @@ var testsystem4;
|
|
|
2300
2389
|
if (data.retry_index != null) {
|
|
2301
2390
|
message.retry_index = data.retry_index;
|
|
2302
2391
|
}
|
|
2392
|
+
if (data.execution_id != null) {
|
|
2393
|
+
message.execution_id = data.execution_id;
|
|
2394
|
+
}
|
|
2303
2395
|
return message;
|
|
2304
2396
|
}
|
|
2305
2397
|
toObject() {
|
|
@@ -2325,6 +2417,9 @@ var testsystem4;
|
|
|
2325
2417
|
if (this.retry_index != null) {
|
|
2326
2418
|
data.retry_index = this.retry_index;
|
|
2327
2419
|
}
|
|
2420
|
+
if (this.execution_id != null) {
|
|
2421
|
+
data.execution_id = this.execution_id;
|
|
2422
|
+
}
|
|
2328
2423
|
return data;
|
|
2329
2424
|
}
|
|
2330
2425
|
serialize(w) {
|
|
@@ -2343,6 +2438,8 @@ var testsystem4;
|
|
|
2343
2438
|
writer.writeString(6, this.run_id);
|
|
2344
2439
|
if (this.retry_index != 0)
|
|
2345
2440
|
writer.writeInt32(7, this.retry_index);
|
|
2441
|
+
if (this.execution_id.length)
|
|
2442
|
+
writer.writeString(8, this.execution_id);
|
|
2346
2443
|
if (!w)
|
|
2347
2444
|
return writer.getResultBuffer();
|
|
2348
2445
|
}
|
|
@@ -2373,6 +2470,9 @@ var testsystem4;
|
|
|
2373
2470
|
case 7:
|
|
2374
2471
|
message.retry_index = reader.readInt32();
|
|
2375
2472
|
break;
|
|
2473
|
+
case 8:
|
|
2474
|
+
message.execution_id = reader.readString();
|
|
2475
|
+
break;
|
|
2376
2476
|
default:
|
|
2377
2477
|
reader.skipField();
|
|
2378
2478
|
}
|
|
@@ -2413,6 +2513,9 @@ var testsystem4;
|
|
|
2413
2513
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2414
2514
|
this.retry_index = data.retry_index;
|
|
2415
2515
|
}
|
|
2516
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2517
|
+
this.execution_id = data.execution_id;
|
|
2518
|
+
}
|
|
2416
2519
|
}
|
|
2417
2520
|
}
|
|
2418
2521
|
get test_id() {
|
|
@@ -2454,6 +2557,12 @@ var testsystem4;
|
|
|
2454
2557
|
set retry_index(value) {
|
|
2455
2558
|
pb_16.Message.setField(this, 6, value);
|
|
2456
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
|
+
}
|
|
2457
2566
|
static fromObject(data) {
|
|
2458
2567
|
const message = new _StdErrorEventRequest({});
|
|
2459
2568
|
if (data.test_id != null) {
|
|
@@ -2474,6 +2583,9 @@ var testsystem4;
|
|
|
2474
2583
|
if (data.retry_index != null) {
|
|
2475
2584
|
message.retry_index = data.retry_index;
|
|
2476
2585
|
}
|
|
2586
|
+
if (data.execution_id != null) {
|
|
2587
|
+
message.execution_id = data.execution_id;
|
|
2588
|
+
}
|
|
2477
2589
|
return message;
|
|
2478
2590
|
}
|
|
2479
2591
|
toObject() {
|
|
@@ -2496,6 +2608,9 @@ var testsystem4;
|
|
|
2496
2608
|
if (this.retry_index != null) {
|
|
2497
2609
|
data.retry_index = this.retry_index;
|
|
2498
2610
|
}
|
|
2611
|
+
if (this.execution_id != null) {
|
|
2612
|
+
data.execution_id = this.execution_id;
|
|
2613
|
+
}
|
|
2499
2614
|
return data;
|
|
2500
2615
|
}
|
|
2501
2616
|
serialize(w) {
|
|
@@ -2512,6 +2627,8 @@ var testsystem4;
|
|
|
2512
2627
|
writer.writeString(5, this.run_id);
|
|
2513
2628
|
if (this.retry_index != 0)
|
|
2514
2629
|
writer.writeInt32(6, this.retry_index);
|
|
2630
|
+
if (this.execution_id.length)
|
|
2631
|
+
writer.writeString(7, this.execution_id);
|
|
2515
2632
|
if (!w)
|
|
2516
2633
|
return writer.getResultBuffer();
|
|
2517
2634
|
}
|
|
@@ -2539,6 +2656,9 @@ var testsystem4;
|
|
|
2539
2656
|
case 6:
|
|
2540
2657
|
message.retry_index = reader.readInt32();
|
|
2541
2658
|
break;
|
|
2659
|
+
case 7:
|
|
2660
|
+
message.execution_id = reader.readString();
|
|
2661
|
+
break;
|
|
2542
2662
|
default:
|
|
2543
2663
|
reader.skipField();
|
|
2544
2664
|
}
|
|
@@ -2579,6 +2699,9 @@ var testsystem4;
|
|
|
2579
2699
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2580
2700
|
this.retry_index = data.retry_index;
|
|
2581
2701
|
}
|
|
2702
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2703
|
+
this.execution_id = data.execution_id;
|
|
2704
|
+
}
|
|
2582
2705
|
}
|
|
2583
2706
|
}
|
|
2584
2707
|
get test_id() {
|
|
@@ -2620,6 +2743,12 @@ var testsystem4;
|
|
|
2620
2743
|
set retry_index(value) {
|
|
2621
2744
|
pb_16.Message.setField(this, 6, value);
|
|
2622
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
|
+
}
|
|
2623
2752
|
static fromObject(data) {
|
|
2624
2753
|
const message = new _StdOutputEventRequest({});
|
|
2625
2754
|
if (data.test_id != null) {
|
|
@@ -2640,6 +2769,9 @@ var testsystem4;
|
|
|
2640
2769
|
if (data.retry_index != null) {
|
|
2641
2770
|
message.retry_index = data.retry_index;
|
|
2642
2771
|
}
|
|
2772
|
+
if (data.execution_id != null) {
|
|
2773
|
+
message.execution_id = data.execution_id;
|
|
2774
|
+
}
|
|
2643
2775
|
return message;
|
|
2644
2776
|
}
|
|
2645
2777
|
toObject() {
|
|
@@ -2662,6 +2794,9 @@ var testsystem4;
|
|
|
2662
2794
|
if (this.retry_index != null) {
|
|
2663
2795
|
data.retry_index = this.retry_index;
|
|
2664
2796
|
}
|
|
2797
|
+
if (this.execution_id != null) {
|
|
2798
|
+
data.execution_id = this.execution_id;
|
|
2799
|
+
}
|
|
2665
2800
|
return data;
|
|
2666
2801
|
}
|
|
2667
2802
|
serialize(w) {
|
|
@@ -2678,6 +2813,8 @@ var testsystem4;
|
|
|
2678
2813
|
writer.writeString(5, this.run_id);
|
|
2679
2814
|
if (this.retry_index != 0)
|
|
2680
2815
|
writer.writeInt32(6, this.retry_index);
|
|
2816
|
+
if (this.execution_id.length)
|
|
2817
|
+
writer.writeString(7, this.execution_id);
|
|
2681
2818
|
if (!w)
|
|
2682
2819
|
return writer.getResultBuffer();
|
|
2683
2820
|
}
|
|
@@ -2705,6 +2842,9 @@ var testsystem4;
|
|
|
2705
2842
|
case 6:
|
|
2706
2843
|
message.retry_index = reader.readInt32();
|
|
2707
2844
|
break;
|
|
2845
|
+
case 7:
|
|
2846
|
+
message.execution_id = reader.readString();
|
|
2847
|
+
break;
|
|
2708
2848
|
default:
|
|
2709
2849
|
reader.skipField();
|
|
2710
2850
|
}
|
|
@@ -2960,6 +3100,9 @@ var testsystem4;
|
|
|
2960
3100
|
if ("metadata" in data && data.metadata != void 0) {
|
|
2961
3101
|
this.metadata = data.metadata;
|
|
2962
3102
|
}
|
|
3103
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
3104
|
+
this.execution_id = data.execution_id;
|
|
3105
|
+
}
|
|
2963
3106
|
}
|
|
2964
3107
|
if (!this.metadata)
|
|
2965
3108
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -2994,6 +3137,12 @@ var testsystem4;
|
|
|
2994
3137
|
set metadata(value) {
|
|
2995
3138
|
pb_16.Message.setField(this, 5, value);
|
|
2996
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
|
+
}
|
|
2997
3146
|
static fromObject(data) {
|
|
2998
3147
|
const message = new _ReportRunStartEventRequest({});
|
|
2999
3148
|
if (data.run_id != null) {
|
|
@@ -3011,6 +3160,9 @@ var testsystem4;
|
|
|
3011
3160
|
if (typeof data.metadata == "object") {
|
|
3012
3161
|
message.metadata = new Map(Object.entries(data.metadata));
|
|
3013
3162
|
}
|
|
3163
|
+
if (data.execution_id != null) {
|
|
3164
|
+
message.execution_id = data.execution_id;
|
|
3165
|
+
}
|
|
3014
3166
|
return message;
|
|
3015
3167
|
}
|
|
3016
3168
|
toObject() {
|
|
@@ -3030,6 +3182,9 @@ var testsystem4;
|
|
|
3030
3182
|
if (this.metadata != null) {
|
|
3031
3183
|
data.metadata = Object.fromEntries(this.metadata);
|
|
3032
3184
|
}
|
|
3185
|
+
if (this.execution_id != null) {
|
|
3186
|
+
data.execution_id = this.execution_id;
|
|
3187
|
+
}
|
|
3033
3188
|
return data;
|
|
3034
3189
|
}
|
|
3035
3190
|
serialize(w) {
|
|
@@ -3048,6 +3203,8 @@ var testsystem4;
|
|
|
3048
3203
|
writer.writeString(2, value);
|
|
3049
3204
|
});
|
|
3050
3205
|
}
|
|
3206
|
+
if (this.execution_id.length)
|
|
3207
|
+
writer.writeString(6, this.execution_id);
|
|
3051
3208
|
if (!w)
|
|
3052
3209
|
return writer.getResultBuffer();
|
|
3053
3210
|
}
|
|
@@ -3072,6 +3229,9 @@ var testsystem4;
|
|
|
3072
3229
|
case 5:
|
|
3073
3230
|
reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
|
|
3074
3231
|
break;
|
|
3232
|
+
case 6:
|
|
3233
|
+
message.execution_id = reader.readString();
|
|
3234
|
+
break;
|
|
3075
3235
|
default:
|
|
3076
3236
|
reader.skipField();
|
|
3077
3237
|
}
|
|
@@ -3109,6 +3269,9 @@ var testsystem4;
|
|
|
3109
3269
|
if ("metadata" in data && data.metadata != void 0) {
|
|
3110
3270
|
this.metadata = data.metadata;
|
|
3111
3271
|
}
|
|
3272
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
3273
|
+
this.execution_id = data.execution_id;
|
|
3274
|
+
}
|
|
3112
3275
|
}
|
|
3113
3276
|
if (!this.metadata)
|
|
3114
3277
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -3149,6 +3312,12 @@ var testsystem4;
|
|
|
3149
3312
|
set metadata(value) {
|
|
3150
3313
|
pb_16.Message.setField(this, 5, value);
|
|
3151
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
|
+
}
|
|
3152
3321
|
static fromObject(data) {
|
|
3153
3322
|
const message = new _TestRunEndEventRequest({});
|
|
3154
3323
|
if (data.run_id != null) {
|
|
@@ -3166,6 +3335,9 @@ var testsystem4;
|
|
|
3166
3335
|
if (typeof data.metadata == "object") {
|
|
3167
3336
|
message.metadata = new Map(Object.entries(data.metadata));
|
|
3168
3337
|
}
|
|
3338
|
+
if (data.execution_id != null) {
|
|
3339
|
+
message.execution_id = data.execution_id;
|
|
3340
|
+
}
|
|
3169
3341
|
return message;
|
|
3170
3342
|
}
|
|
3171
3343
|
toObject() {
|
|
@@ -3185,6 +3357,9 @@ var testsystem4;
|
|
|
3185
3357
|
if (this.metadata != null) {
|
|
3186
3358
|
data.metadata = Object.fromEntries(this.metadata);
|
|
3187
3359
|
}
|
|
3360
|
+
if (this.execution_id != null) {
|
|
3361
|
+
data.execution_id = this.execution_id;
|
|
3362
|
+
}
|
|
3188
3363
|
return data;
|
|
3189
3364
|
}
|
|
3190
3365
|
serialize(w) {
|
|
@@ -3203,6 +3378,8 @@ var testsystem4;
|
|
|
3203
3378
|
writer.writeString(2, value);
|
|
3204
3379
|
});
|
|
3205
3380
|
}
|
|
3381
|
+
if (this.execution_id.length)
|
|
3382
|
+
writer.writeString(6, this.execution_id);
|
|
3206
3383
|
if (!w)
|
|
3207
3384
|
return writer.getResultBuffer();
|
|
3208
3385
|
}
|
|
@@ -3227,6 +3404,9 @@ var testsystem4;
|
|
|
3227
3404
|
case 5:
|
|
3228
3405
|
reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
|
|
3229
3406
|
break;
|
|
3407
|
+
case 6:
|
|
3408
|
+
message.execution_id = reader.readString();
|
|
3409
|
+
break;
|
|
3230
3410
|
default:
|
|
3231
3411
|
reader.skipField();
|
|
3232
3412
|
}
|