@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
package/dist/testsystem/index.js
CHANGED
|
@@ -480,6 +480,9 @@ var testsystem2;
|
|
|
480
480
|
if ("timeout" in data && data.timeout != void 0) {
|
|
481
481
|
this.timeout = data.timeout;
|
|
482
482
|
}
|
|
483
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
484
|
+
this.execution_id = data.execution_id;
|
|
485
|
+
}
|
|
483
486
|
}
|
|
484
487
|
if (!this.metadata)
|
|
485
488
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -607,6 +610,12 @@ var testsystem2;
|
|
|
607
610
|
set timeout(value) {
|
|
608
611
|
pb_14.Message.setField(this, 19, value);
|
|
609
612
|
}
|
|
613
|
+
get execution_id() {
|
|
614
|
+
return pb_14.Message.getFieldWithDefault(this, 20, "");
|
|
615
|
+
}
|
|
616
|
+
set execution_id(value) {
|
|
617
|
+
pb_14.Message.setField(this, 20, value);
|
|
618
|
+
}
|
|
610
619
|
static fromObject(data) {
|
|
611
620
|
const message = new _TestCaseRun({});
|
|
612
621
|
if (data.id != null) {
|
|
@@ -666,6 +675,9 @@ var testsystem2;
|
|
|
666
675
|
if (data.timeout != null) {
|
|
667
676
|
message.timeout = data.timeout;
|
|
668
677
|
}
|
|
678
|
+
if (data.execution_id != null) {
|
|
679
|
+
message.execution_id = data.execution_id;
|
|
680
|
+
}
|
|
669
681
|
return message;
|
|
670
682
|
}
|
|
671
683
|
toObject() {
|
|
@@ -727,6 +739,9 @@ var testsystem2;
|
|
|
727
739
|
if (this.timeout != null) {
|
|
728
740
|
data.timeout = this.timeout;
|
|
729
741
|
}
|
|
742
|
+
if (this.execution_id != null) {
|
|
743
|
+
data.execution_id = this.execution_id;
|
|
744
|
+
}
|
|
730
745
|
return data;
|
|
731
746
|
}
|
|
732
747
|
serialize(w) {
|
|
@@ -773,6 +788,8 @@ var testsystem2;
|
|
|
773
788
|
writer.writeInt32(18, this.retry_index);
|
|
774
789
|
if (this.timeout != 0)
|
|
775
790
|
writer.writeInt32(19, this.timeout);
|
|
791
|
+
if (this.execution_id.length)
|
|
792
|
+
writer.writeString(20, this.execution_id);
|
|
776
793
|
if (!w)
|
|
777
794
|
return writer.getResultBuffer();
|
|
778
795
|
}
|
|
@@ -839,6 +856,9 @@ var testsystem2;
|
|
|
839
856
|
case 19:
|
|
840
857
|
message.timeout = reader.readInt32();
|
|
841
858
|
break;
|
|
859
|
+
case 20:
|
|
860
|
+
message.execution_id = reader.readString();
|
|
861
|
+
break;
|
|
842
862
|
default:
|
|
843
863
|
reader.skipField();
|
|
844
864
|
}
|
|
@@ -915,6 +935,9 @@ var testsystem2;
|
|
|
915
935
|
if ("attachments" in data && data.attachments != void 0) {
|
|
916
936
|
this.attachments = data.attachments;
|
|
917
937
|
}
|
|
938
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
939
|
+
this.execution_id = data.execution_id;
|
|
940
|
+
}
|
|
918
941
|
}
|
|
919
942
|
if (!this.metadata)
|
|
920
943
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1033,6 +1056,12 @@ var testsystem2;
|
|
|
1033
1056
|
set attachments(value) {
|
|
1034
1057
|
pb_14.Message.setRepeatedWrapperField(this, 18, value);
|
|
1035
1058
|
}
|
|
1059
|
+
get execution_id() {
|
|
1060
|
+
return pb_14.Message.getFieldWithDefault(this, 19, "");
|
|
1061
|
+
}
|
|
1062
|
+
set execution_id(value) {
|
|
1063
|
+
pb_14.Message.setField(this, 19, value);
|
|
1064
|
+
}
|
|
1036
1065
|
static fromObject(data) {
|
|
1037
1066
|
const message = new _StepRun({});
|
|
1038
1067
|
if (data.id != null) {
|
|
@@ -1089,6 +1118,9 @@ var testsystem2;
|
|
|
1089
1118
|
if (data.attachments != null) {
|
|
1090
1119
|
message.attachments = data.attachments.map((item) => testsystem.v1.common.Attachment.fromObject(item));
|
|
1091
1120
|
}
|
|
1121
|
+
if (data.execution_id != null) {
|
|
1122
|
+
message.execution_id = data.execution_id;
|
|
1123
|
+
}
|
|
1092
1124
|
return message;
|
|
1093
1125
|
}
|
|
1094
1126
|
toObject() {
|
|
@@ -1147,6 +1179,9 @@ var testsystem2;
|
|
|
1147
1179
|
if (this.attachments != null) {
|
|
1148
1180
|
data.attachments = this.attachments.map((item) => item.toObject());
|
|
1149
1181
|
}
|
|
1182
|
+
if (this.execution_id != null) {
|
|
1183
|
+
data.execution_id = this.execution_id;
|
|
1184
|
+
}
|
|
1150
1185
|
return data;
|
|
1151
1186
|
}
|
|
1152
1187
|
serialize(w) {
|
|
@@ -1191,6 +1226,8 @@ var testsystem2;
|
|
|
1191
1226
|
writer.writeInt32(17, this.retry_index);
|
|
1192
1227
|
if (this.attachments.length)
|
|
1193
1228
|
writer.writeRepeatedMessage(18, this.attachments, (item) => item.serialize(writer));
|
|
1229
|
+
if (this.execution_id.length)
|
|
1230
|
+
writer.writeString(19, this.execution_id);
|
|
1194
1231
|
if (!w)
|
|
1195
1232
|
return writer.getResultBuffer();
|
|
1196
1233
|
}
|
|
@@ -1254,6 +1291,9 @@ var testsystem2;
|
|
|
1254
1291
|
case 18:
|
|
1255
1292
|
reader.readMessage(message.attachments, () => pb_14.Message.addToRepeatedWrapperField(message, 18, testsystem.v1.common.Attachment.deserialize(reader), testsystem.v1.common.Attachment));
|
|
1256
1293
|
break;
|
|
1294
|
+
case 19:
|
|
1295
|
+
message.execution_id = reader.readString();
|
|
1296
|
+
break;
|
|
1257
1297
|
default:
|
|
1258
1298
|
reader.skipField();
|
|
1259
1299
|
}
|
|
@@ -1356,6 +1396,9 @@ var testsystem3;
|
|
|
1356
1396
|
if ("sub_suites" in data && data.sub_suites != void 0) {
|
|
1357
1397
|
this.sub_suites = data.sub_suites;
|
|
1358
1398
|
}
|
|
1399
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
1400
|
+
this.execution_id = data.execution_id;
|
|
1401
|
+
}
|
|
1359
1402
|
}
|
|
1360
1403
|
if (!this.metadata)
|
|
1361
1404
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1489,6 +1532,12 @@ var testsystem3;
|
|
|
1489
1532
|
set sub_suites(value) {
|
|
1490
1533
|
pb_15.Message.setRepeatedWrapperField(this, 20, value);
|
|
1491
1534
|
}
|
|
1535
|
+
get execution_id() {
|
|
1536
|
+
return pb_15.Message.getFieldWithDefault(this, 21, "");
|
|
1537
|
+
}
|
|
1538
|
+
set execution_id(value) {
|
|
1539
|
+
pb_15.Message.setField(this, 21, value);
|
|
1540
|
+
}
|
|
1492
1541
|
static fromObject(data) {
|
|
1493
1542
|
const message = new _TestSuiteRun({});
|
|
1494
1543
|
if (data.id != null) {
|
|
@@ -1551,6 +1600,9 @@ var testsystem3;
|
|
|
1551
1600
|
if (data.sub_suites != null) {
|
|
1552
1601
|
message.sub_suites = data.sub_suites.map((item) => _TestSuiteRun.fromObject(item));
|
|
1553
1602
|
}
|
|
1603
|
+
if (data.execution_id != null) {
|
|
1604
|
+
message.execution_id = data.execution_id;
|
|
1605
|
+
}
|
|
1554
1606
|
return message;
|
|
1555
1607
|
}
|
|
1556
1608
|
toObject() {
|
|
@@ -1615,6 +1667,9 @@ var testsystem3;
|
|
|
1615
1667
|
if (this.sub_suites != null) {
|
|
1616
1668
|
data.sub_suites = this.sub_suites.map((item) => item.toObject());
|
|
1617
1669
|
}
|
|
1670
|
+
if (this.execution_id != null) {
|
|
1671
|
+
data.execution_id = this.execution_id;
|
|
1672
|
+
}
|
|
1618
1673
|
return data;
|
|
1619
1674
|
}
|
|
1620
1675
|
serialize(w) {
|
|
@@ -1663,6 +1718,8 @@ var testsystem3;
|
|
|
1663
1718
|
writer.writeRepeatedMessage(19, this.test_cases, (item) => item.serialize(writer));
|
|
1664
1719
|
if (this.sub_suites.length)
|
|
1665
1720
|
writer.writeRepeatedMessage(20, this.sub_suites, (item) => item.serialize(writer));
|
|
1721
|
+
if (this.execution_id.length)
|
|
1722
|
+
writer.writeString(21, this.execution_id);
|
|
1666
1723
|
if (!w)
|
|
1667
1724
|
return writer.getResultBuffer();
|
|
1668
1725
|
}
|
|
@@ -1732,6 +1789,9 @@ var testsystem3;
|
|
|
1732
1789
|
case 20:
|
|
1733
1790
|
reader.readMessage(message.sub_suites, () => pb_15.Message.addToRepeatedWrapperField(message, 20, _TestSuiteRun.deserialize(reader), _TestSuiteRun));
|
|
1734
1791
|
break;
|
|
1792
|
+
case 21:
|
|
1793
|
+
message.execution_id = reader.readString();
|
|
1794
|
+
break;
|
|
1735
1795
|
default:
|
|
1736
1796
|
reader.skipField();
|
|
1737
1797
|
}
|
|
@@ -2076,6 +2136,9 @@ var testsystem4;
|
|
|
2076
2136
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2077
2137
|
this.retry_index = data.retry_index;
|
|
2078
2138
|
}
|
|
2139
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2140
|
+
this.execution_id = data.execution_id;
|
|
2141
|
+
}
|
|
2079
2142
|
}
|
|
2080
2143
|
}
|
|
2081
2144
|
get test_id() {
|
|
@@ -2123,6 +2186,12 @@ var testsystem4;
|
|
|
2123
2186
|
set retry_index(value) {
|
|
2124
2187
|
pb_16.Message.setField(this, 7, value);
|
|
2125
2188
|
}
|
|
2189
|
+
get execution_id() {
|
|
2190
|
+
return pb_16.Message.getFieldWithDefault(this, 8, "");
|
|
2191
|
+
}
|
|
2192
|
+
set execution_id(value) {
|
|
2193
|
+
pb_16.Message.setField(this, 8, value);
|
|
2194
|
+
}
|
|
2126
2195
|
static fromObject(data) {
|
|
2127
2196
|
const message = new _TestFailureEventRequest({});
|
|
2128
2197
|
if (data.test_id != null) {
|
|
@@ -2146,6 +2215,9 @@ var testsystem4;
|
|
|
2146
2215
|
if (data.retry_index != null) {
|
|
2147
2216
|
message.retry_index = data.retry_index;
|
|
2148
2217
|
}
|
|
2218
|
+
if (data.execution_id != null) {
|
|
2219
|
+
message.execution_id = data.execution_id;
|
|
2220
|
+
}
|
|
2149
2221
|
return message;
|
|
2150
2222
|
}
|
|
2151
2223
|
toObject() {
|
|
@@ -2171,6 +2243,9 @@ var testsystem4;
|
|
|
2171
2243
|
if (this.retry_index != null) {
|
|
2172
2244
|
data.retry_index = this.retry_index;
|
|
2173
2245
|
}
|
|
2246
|
+
if (this.execution_id != null) {
|
|
2247
|
+
data.execution_id = this.execution_id;
|
|
2248
|
+
}
|
|
2174
2249
|
return data;
|
|
2175
2250
|
}
|
|
2176
2251
|
serialize(w) {
|
|
@@ -2189,6 +2264,8 @@ var testsystem4;
|
|
|
2189
2264
|
writer.writeString(6, this.run_id);
|
|
2190
2265
|
if (this.retry_index != 0)
|
|
2191
2266
|
writer.writeInt32(7, this.retry_index);
|
|
2267
|
+
if (this.execution_id.length)
|
|
2268
|
+
writer.writeString(8, this.execution_id);
|
|
2192
2269
|
if (!w)
|
|
2193
2270
|
return writer.getResultBuffer();
|
|
2194
2271
|
}
|
|
@@ -2219,6 +2296,9 @@ var testsystem4;
|
|
|
2219
2296
|
case 7:
|
|
2220
2297
|
message.retry_index = reader.readInt32();
|
|
2221
2298
|
break;
|
|
2299
|
+
case 8:
|
|
2300
|
+
message.execution_id = reader.readString();
|
|
2301
|
+
break;
|
|
2222
2302
|
default:
|
|
2223
2303
|
reader.skipField();
|
|
2224
2304
|
}
|
|
@@ -2262,6 +2342,9 @@ var testsystem4;
|
|
|
2262
2342
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2263
2343
|
this.retry_index = data.retry_index;
|
|
2264
2344
|
}
|
|
2345
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2346
|
+
this.execution_id = data.execution_id;
|
|
2347
|
+
}
|
|
2265
2348
|
}
|
|
2266
2349
|
}
|
|
2267
2350
|
get test_id() {
|
|
@@ -2309,6 +2392,12 @@ var testsystem4;
|
|
|
2309
2392
|
set retry_index(value) {
|
|
2310
2393
|
pb_16.Message.setField(this, 7, value);
|
|
2311
2394
|
}
|
|
2395
|
+
get execution_id() {
|
|
2396
|
+
return pb_16.Message.getFieldWithDefault(this, 8, "");
|
|
2397
|
+
}
|
|
2398
|
+
set execution_id(value) {
|
|
2399
|
+
pb_16.Message.setField(this, 8, value);
|
|
2400
|
+
}
|
|
2312
2401
|
static fromObject(data) {
|
|
2313
2402
|
const message = new _TestErrorEventRequest({});
|
|
2314
2403
|
if (data.test_id != null) {
|
|
@@ -2332,6 +2421,9 @@ var testsystem4;
|
|
|
2332
2421
|
if (data.retry_index != null) {
|
|
2333
2422
|
message.retry_index = data.retry_index;
|
|
2334
2423
|
}
|
|
2424
|
+
if (data.execution_id != null) {
|
|
2425
|
+
message.execution_id = data.execution_id;
|
|
2426
|
+
}
|
|
2335
2427
|
return message;
|
|
2336
2428
|
}
|
|
2337
2429
|
toObject() {
|
|
@@ -2357,6 +2449,9 @@ var testsystem4;
|
|
|
2357
2449
|
if (this.retry_index != null) {
|
|
2358
2450
|
data.retry_index = this.retry_index;
|
|
2359
2451
|
}
|
|
2452
|
+
if (this.execution_id != null) {
|
|
2453
|
+
data.execution_id = this.execution_id;
|
|
2454
|
+
}
|
|
2360
2455
|
return data;
|
|
2361
2456
|
}
|
|
2362
2457
|
serialize(w) {
|
|
@@ -2375,6 +2470,8 @@ var testsystem4;
|
|
|
2375
2470
|
writer.writeString(6, this.run_id);
|
|
2376
2471
|
if (this.retry_index != 0)
|
|
2377
2472
|
writer.writeInt32(7, this.retry_index);
|
|
2473
|
+
if (this.execution_id.length)
|
|
2474
|
+
writer.writeString(8, this.execution_id);
|
|
2378
2475
|
if (!w)
|
|
2379
2476
|
return writer.getResultBuffer();
|
|
2380
2477
|
}
|
|
@@ -2405,6 +2502,9 @@ var testsystem4;
|
|
|
2405
2502
|
case 7:
|
|
2406
2503
|
message.retry_index = reader.readInt32();
|
|
2407
2504
|
break;
|
|
2505
|
+
case 8:
|
|
2506
|
+
message.execution_id = reader.readString();
|
|
2507
|
+
break;
|
|
2408
2508
|
default:
|
|
2409
2509
|
reader.skipField();
|
|
2410
2510
|
}
|
|
@@ -2445,6 +2545,9 @@ var testsystem4;
|
|
|
2445
2545
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2446
2546
|
this.retry_index = data.retry_index;
|
|
2447
2547
|
}
|
|
2548
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2549
|
+
this.execution_id = data.execution_id;
|
|
2550
|
+
}
|
|
2448
2551
|
}
|
|
2449
2552
|
}
|
|
2450
2553
|
get test_id() {
|
|
@@ -2486,6 +2589,12 @@ var testsystem4;
|
|
|
2486
2589
|
set retry_index(value) {
|
|
2487
2590
|
pb_16.Message.setField(this, 6, value);
|
|
2488
2591
|
}
|
|
2592
|
+
get execution_id() {
|
|
2593
|
+
return pb_16.Message.getFieldWithDefault(this, 7, "");
|
|
2594
|
+
}
|
|
2595
|
+
set execution_id(value) {
|
|
2596
|
+
pb_16.Message.setField(this, 7, value);
|
|
2597
|
+
}
|
|
2489
2598
|
static fromObject(data) {
|
|
2490
2599
|
const message = new _StdErrorEventRequest({});
|
|
2491
2600
|
if (data.test_id != null) {
|
|
@@ -2506,6 +2615,9 @@ var testsystem4;
|
|
|
2506
2615
|
if (data.retry_index != null) {
|
|
2507
2616
|
message.retry_index = data.retry_index;
|
|
2508
2617
|
}
|
|
2618
|
+
if (data.execution_id != null) {
|
|
2619
|
+
message.execution_id = data.execution_id;
|
|
2620
|
+
}
|
|
2509
2621
|
return message;
|
|
2510
2622
|
}
|
|
2511
2623
|
toObject() {
|
|
@@ -2528,6 +2640,9 @@ var testsystem4;
|
|
|
2528
2640
|
if (this.retry_index != null) {
|
|
2529
2641
|
data.retry_index = this.retry_index;
|
|
2530
2642
|
}
|
|
2643
|
+
if (this.execution_id != null) {
|
|
2644
|
+
data.execution_id = this.execution_id;
|
|
2645
|
+
}
|
|
2531
2646
|
return data;
|
|
2532
2647
|
}
|
|
2533
2648
|
serialize(w) {
|
|
@@ -2544,6 +2659,8 @@ var testsystem4;
|
|
|
2544
2659
|
writer.writeString(5, this.run_id);
|
|
2545
2660
|
if (this.retry_index != 0)
|
|
2546
2661
|
writer.writeInt32(6, this.retry_index);
|
|
2662
|
+
if (this.execution_id.length)
|
|
2663
|
+
writer.writeString(7, this.execution_id);
|
|
2547
2664
|
if (!w)
|
|
2548
2665
|
return writer.getResultBuffer();
|
|
2549
2666
|
}
|
|
@@ -2571,6 +2688,9 @@ var testsystem4;
|
|
|
2571
2688
|
case 6:
|
|
2572
2689
|
message.retry_index = reader.readInt32();
|
|
2573
2690
|
break;
|
|
2691
|
+
case 7:
|
|
2692
|
+
message.execution_id = reader.readString();
|
|
2693
|
+
break;
|
|
2574
2694
|
default:
|
|
2575
2695
|
reader.skipField();
|
|
2576
2696
|
}
|
|
@@ -2611,6 +2731,9 @@ var testsystem4;
|
|
|
2611
2731
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2612
2732
|
this.retry_index = data.retry_index;
|
|
2613
2733
|
}
|
|
2734
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2735
|
+
this.execution_id = data.execution_id;
|
|
2736
|
+
}
|
|
2614
2737
|
}
|
|
2615
2738
|
}
|
|
2616
2739
|
get test_id() {
|
|
@@ -2652,6 +2775,12 @@ var testsystem4;
|
|
|
2652
2775
|
set retry_index(value) {
|
|
2653
2776
|
pb_16.Message.setField(this, 6, value);
|
|
2654
2777
|
}
|
|
2778
|
+
get execution_id() {
|
|
2779
|
+
return pb_16.Message.getFieldWithDefault(this, 7, "");
|
|
2780
|
+
}
|
|
2781
|
+
set execution_id(value) {
|
|
2782
|
+
pb_16.Message.setField(this, 7, value);
|
|
2783
|
+
}
|
|
2655
2784
|
static fromObject(data) {
|
|
2656
2785
|
const message = new _StdOutputEventRequest({});
|
|
2657
2786
|
if (data.test_id != null) {
|
|
@@ -2672,6 +2801,9 @@ var testsystem4;
|
|
|
2672
2801
|
if (data.retry_index != null) {
|
|
2673
2802
|
message.retry_index = data.retry_index;
|
|
2674
2803
|
}
|
|
2804
|
+
if (data.execution_id != null) {
|
|
2805
|
+
message.execution_id = data.execution_id;
|
|
2806
|
+
}
|
|
2675
2807
|
return message;
|
|
2676
2808
|
}
|
|
2677
2809
|
toObject() {
|
|
@@ -2694,6 +2826,9 @@ var testsystem4;
|
|
|
2694
2826
|
if (this.retry_index != null) {
|
|
2695
2827
|
data.retry_index = this.retry_index;
|
|
2696
2828
|
}
|
|
2829
|
+
if (this.execution_id != null) {
|
|
2830
|
+
data.execution_id = this.execution_id;
|
|
2831
|
+
}
|
|
2697
2832
|
return data;
|
|
2698
2833
|
}
|
|
2699
2834
|
serialize(w) {
|
|
@@ -2710,6 +2845,8 @@ var testsystem4;
|
|
|
2710
2845
|
writer.writeString(5, this.run_id);
|
|
2711
2846
|
if (this.retry_index != 0)
|
|
2712
2847
|
writer.writeInt32(6, this.retry_index);
|
|
2848
|
+
if (this.execution_id.length)
|
|
2849
|
+
writer.writeString(7, this.execution_id);
|
|
2713
2850
|
if (!w)
|
|
2714
2851
|
return writer.getResultBuffer();
|
|
2715
2852
|
}
|
|
@@ -2737,6 +2874,9 @@ var testsystem4;
|
|
|
2737
2874
|
case 6:
|
|
2738
2875
|
message.retry_index = reader.readInt32();
|
|
2739
2876
|
break;
|
|
2877
|
+
case 7:
|
|
2878
|
+
message.execution_id = reader.readString();
|
|
2879
|
+
break;
|
|
2740
2880
|
default:
|
|
2741
2881
|
reader.skipField();
|
|
2742
2882
|
}
|
|
@@ -2992,6 +3132,9 @@ var testsystem4;
|
|
|
2992
3132
|
if ("metadata" in data && data.metadata != void 0) {
|
|
2993
3133
|
this.metadata = data.metadata;
|
|
2994
3134
|
}
|
|
3135
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
3136
|
+
this.execution_id = data.execution_id;
|
|
3137
|
+
}
|
|
2995
3138
|
}
|
|
2996
3139
|
if (!this.metadata)
|
|
2997
3140
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -3026,6 +3169,12 @@ var testsystem4;
|
|
|
3026
3169
|
set metadata(value) {
|
|
3027
3170
|
pb_16.Message.setField(this, 5, value);
|
|
3028
3171
|
}
|
|
3172
|
+
get execution_id() {
|
|
3173
|
+
return pb_16.Message.getFieldWithDefault(this, 6, "");
|
|
3174
|
+
}
|
|
3175
|
+
set execution_id(value) {
|
|
3176
|
+
pb_16.Message.setField(this, 6, value);
|
|
3177
|
+
}
|
|
3029
3178
|
static fromObject(data) {
|
|
3030
3179
|
const message = new _ReportRunStartEventRequest({});
|
|
3031
3180
|
if (data.run_id != null) {
|
|
@@ -3043,6 +3192,9 @@ var testsystem4;
|
|
|
3043
3192
|
if (typeof data.metadata == "object") {
|
|
3044
3193
|
message.metadata = new Map(Object.entries(data.metadata));
|
|
3045
3194
|
}
|
|
3195
|
+
if (data.execution_id != null) {
|
|
3196
|
+
message.execution_id = data.execution_id;
|
|
3197
|
+
}
|
|
3046
3198
|
return message;
|
|
3047
3199
|
}
|
|
3048
3200
|
toObject() {
|
|
@@ -3062,6 +3214,9 @@ var testsystem4;
|
|
|
3062
3214
|
if (this.metadata != null) {
|
|
3063
3215
|
data.metadata = Object.fromEntries(this.metadata);
|
|
3064
3216
|
}
|
|
3217
|
+
if (this.execution_id != null) {
|
|
3218
|
+
data.execution_id = this.execution_id;
|
|
3219
|
+
}
|
|
3065
3220
|
return data;
|
|
3066
3221
|
}
|
|
3067
3222
|
serialize(w) {
|
|
@@ -3080,6 +3235,8 @@ var testsystem4;
|
|
|
3080
3235
|
writer.writeString(2, value);
|
|
3081
3236
|
});
|
|
3082
3237
|
}
|
|
3238
|
+
if (this.execution_id.length)
|
|
3239
|
+
writer.writeString(6, this.execution_id);
|
|
3083
3240
|
if (!w)
|
|
3084
3241
|
return writer.getResultBuffer();
|
|
3085
3242
|
}
|
|
@@ -3104,6 +3261,9 @@ var testsystem4;
|
|
|
3104
3261
|
case 5:
|
|
3105
3262
|
reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
|
|
3106
3263
|
break;
|
|
3264
|
+
case 6:
|
|
3265
|
+
message.execution_id = reader.readString();
|
|
3266
|
+
break;
|
|
3107
3267
|
default:
|
|
3108
3268
|
reader.skipField();
|
|
3109
3269
|
}
|
|
@@ -3141,6 +3301,9 @@ var testsystem4;
|
|
|
3141
3301
|
if ("metadata" in data && data.metadata != void 0) {
|
|
3142
3302
|
this.metadata = data.metadata;
|
|
3143
3303
|
}
|
|
3304
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
3305
|
+
this.execution_id = data.execution_id;
|
|
3306
|
+
}
|
|
3144
3307
|
}
|
|
3145
3308
|
if (!this.metadata)
|
|
3146
3309
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -3181,6 +3344,12 @@ var testsystem4;
|
|
|
3181
3344
|
set metadata(value) {
|
|
3182
3345
|
pb_16.Message.setField(this, 5, value);
|
|
3183
3346
|
}
|
|
3347
|
+
get execution_id() {
|
|
3348
|
+
return pb_16.Message.getFieldWithDefault(this, 6, "");
|
|
3349
|
+
}
|
|
3350
|
+
set execution_id(value) {
|
|
3351
|
+
pb_16.Message.setField(this, 6, value);
|
|
3352
|
+
}
|
|
3184
3353
|
static fromObject(data) {
|
|
3185
3354
|
const message = new _TestRunEndEventRequest({});
|
|
3186
3355
|
if (data.run_id != null) {
|
|
@@ -3198,6 +3367,9 @@ var testsystem4;
|
|
|
3198
3367
|
if (typeof data.metadata == "object") {
|
|
3199
3368
|
message.metadata = new Map(Object.entries(data.metadata));
|
|
3200
3369
|
}
|
|
3370
|
+
if (data.execution_id != null) {
|
|
3371
|
+
message.execution_id = data.execution_id;
|
|
3372
|
+
}
|
|
3201
3373
|
return message;
|
|
3202
3374
|
}
|
|
3203
3375
|
toObject() {
|
|
@@ -3217,6 +3389,9 @@ var testsystem4;
|
|
|
3217
3389
|
if (this.metadata != null) {
|
|
3218
3390
|
data.metadata = Object.fromEntries(this.metadata);
|
|
3219
3391
|
}
|
|
3392
|
+
if (this.execution_id != null) {
|
|
3393
|
+
data.execution_id = this.execution_id;
|
|
3394
|
+
}
|
|
3220
3395
|
return data;
|
|
3221
3396
|
}
|
|
3222
3397
|
serialize(w) {
|
|
@@ -3235,6 +3410,8 @@ var testsystem4;
|
|
|
3235
3410
|
writer.writeString(2, value);
|
|
3236
3411
|
});
|
|
3237
3412
|
}
|
|
3413
|
+
if (this.execution_id.length)
|
|
3414
|
+
writer.writeString(6, this.execution_id);
|
|
3238
3415
|
if (!w)
|
|
3239
3416
|
return writer.getResultBuffer();
|
|
3240
3417
|
}
|
|
@@ -3259,6 +3436,9 @@ var testsystem4;
|
|
|
3259
3436
|
case 5:
|
|
3260
3437
|
reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
|
|
3261
3438
|
break;
|
|
3439
|
+
case 6:
|
|
3440
|
+
message.execution_id = reader.readString();
|
|
3441
|
+
break;
|
|
3262
3442
|
default:
|
|
3263
3443
|
reader.skipField();
|
|
3264
3444
|
}
|