@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
|
@@ -12,9 +12,9 @@ import {
|
|
|
12
12
|
TestErrorEventRequest,
|
|
13
13
|
TestFailureEventRequest,
|
|
14
14
|
TestRunEndEventRequest
|
|
15
|
-
} from "../../../chunk-
|
|
16
|
-
import "../../../chunk-
|
|
17
|
-
import "../../../chunk-
|
|
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
|
}
|
|
@@ -909,6 +929,9 @@ var testsystem2;
|
|
|
909
929
|
if ("attachments" in data && data.attachments != void 0) {
|
|
910
930
|
this.attachments = data.attachments;
|
|
911
931
|
}
|
|
932
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
933
|
+
this.execution_id = data.execution_id;
|
|
934
|
+
}
|
|
912
935
|
}
|
|
913
936
|
if (!this.metadata)
|
|
914
937
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1027,6 +1050,12 @@ var testsystem2;
|
|
|
1027
1050
|
set attachments(value) {
|
|
1028
1051
|
pb_14.Message.setRepeatedWrapperField(this, 18, value);
|
|
1029
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
|
+
}
|
|
1030
1059
|
static fromObject(data) {
|
|
1031
1060
|
const message = new _StepRun({});
|
|
1032
1061
|
if (data.id != null) {
|
|
@@ -1083,6 +1112,9 @@ var testsystem2;
|
|
|
1083
1112
|
if (data.attachments != null) {
|
|
1084
1113
|
message.attachments = data.attachments.map((item) => testsystem.v1.common.Attachment.fromObject(item));
|
|
1085
1114
|
}
|
|
1115
|
+
if (data.execution_id != null) {
|
|
1116
|
+
message.execution_id = data.execution_id;
|
|
1117
|
+
}
|
|
1086
1118
|
return message;
|
|
1087
1119
|
}
|
|
1088
1120
|
toObject() {
|
|
@@ -1141,6 +1173,9 @@ var testsystem2;
|
|
|
1141
1173
|
if (this.attachments != null) {
|
|
1142
1174
|
data.attachments = this.attachments.map((item) => item.toObject());
|
|
1143
1175
|
}
|
|
1176
|
+
if (this.execution_id != null) {
|
|
1177
|
+
data.execution_id = this.execution_id;
|
|
1178
|
+
}
|
|
1144
1179
|
return data;
|
|
1145
1180
|
}
|
|
1146
1181
|
serialize(w) {
|
|
@@ -1185,6 +1220,8 @@ var testsystem2;
|
|
|
1185
1220
|
writer.writeInt32(17, this.retry_index);
|
|
1186
1221
|
if (this.attachments.length)
|
|
1187
1222
|
writer.writeRepeatedMessage(18, this.attachments, (item) => item.serialize(writer));
|
|
1223
|
+
if (this.execution_id.length)
|
|
1224
|
+
writer.writeString(19, this.execution_id);
|
|
1188
1225
|
if (!w)
|
|
1189
1226
|
return writer.getResultBuffer();
|
|
1190
1227
|
}
|
|
@@ -1248,6 +1285,9 @@ var testsystem2;
|
|
|
1248
1285
|
case 18:
|
|
1249
1286
|
reader.readMessage(message.attachments, () => pb_14.Message.addToRepeatedWrapperField(message, 18, testsystem.v1.common.Attachment.deserialize(reader), testsystem.v1.common.Attachment));
|
|
1250
1287
|
break;
|
|
1288
|
+
case 19:
|
|
1289
|
+
message.execution_id = reader.readString();
|
|
1290
|
+
break;
|
|
1251
1291
|
default:
|
|
1252
1292
|
reader.skipField();
|
|
1253
1293
|
}
|
|
@@ -1350,6 +1390,9 @@ var testsystem3;
|
|
|
1350
1390
|
if ("sub_suites" in data && data.sub_suites != void 0) {
|
|
1351
1391
|
this.sub_suites = data.sub_suites;
|
|
1352
1392
|
}
|
|
1393
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
1394
|
+
this.execution_id = data.execution_id;
|
|
1395
|
+
}
|
|
1353
1396
|
}
|
|
1354
1397
|
if (!this.metadata)
|
|
1355
1398
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1483,6 +1526,12 @@ var testsystem3;
|
|
|
1483
1526
|
set sub_suites(value) {
|
|
1484
1527
|
pb_15.Message.setRepeatedWrapperField(this, 20, value);
|
|
1485
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
|
+
}
|
|
1486
1535
|
static fromObject(data) {
|
|
1487
1536
|
const message = new _TestSuiteRun({});
|
|
1488
1537
|
if (data.id != null) {
|
|
@@ -1545,6 +1594,9 @@ var testsystem3;
|
|
|
1545
1594
|
if (data.sub_suites != null) {
|
|
1546
1595
|
message.sub_suites = data.sub_suites.map((item) => _TestSuiteRun.fromObject(item));
|
|
1547
1596
|
}
|
|
1597
|
+
if (data.execution_id != null) {
|
|
1598
|
+
message.execution_id = data.execution_id;
|
|
1599
|
+
}
|
|
1548
1600
|
return message;
|
|
1549
1601
|
}
|
|
1550
1602
|
toObject() {
|
|
@@ -1609,6 +1661,9 @@ var testsystem3;
|
|
|
1609
1661
|
if (this.sub_suites != null) {
|
|
1610
1662
|
data.sub_suites = this.sub_suites.map((item) => item.toObject());
|
|
1611
1663
|
}
|
|
1664
|
+
if (this.execution_id != null) {
|
|
1665
|
+
data.execution_id = this.execution_id;
|
|
1666
|
+
}
|
|
1612
1667
|
return data;
|
|
1613
1668
|
}
|
|
1614
1669
|
serialize(w) {
|
|
@@ -1657,6 +1712,8 @@ var testsystem3;
|
|
|
1657
1712
|
writer.writeRepeatedMessage(19, this.test_cases, (item) => item.serialize(writer));
|
|
1658
1713
|
if (this.sub_suites.length)
|
|
1659
1714
|
writer.writeRepeatedMessage(20, this.sub_suites, (item) => item.serialize(writer));
|
|
1715
|
+
if (this.execution_id.length)
|
|
1716
|
+
writer.writeString(21, this.execution_id);
|
|
1660
1717
|
if (!w)
|
|
1661
1718
|
return writer.getResultBuffer();
|
|
1662
1719
|
}
|
|
@@ -1726,6 +1783,9 @@ var testsystem3;
|
|
|
1726
1783
|
case 20:
|
|
1727
1784
|
reader.readMessage(message.sub_suites, () => pb_15.Message.addToRepeatedWrapperField(message, 20, _TestSuiteRun.deserialize(reader), _TestSuiteRun));
|
|
1728
1785
|
break;
|
|
1786
|
+
case 21:
|
|
1787
|
+
message.execution_id = reader.readString();
|
|
1788
|
+
break;
|
|
1729
1789
|
default:
|
|
1730
1790
|
reader.skipField();
|
|
1731
1791
|
}
|
|
@@ -2070,6 +2130,9 @@ var testsystem4;
|
|
|
2070
2130
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2071
2131
|
this.retry_index = data.retry_index;
|
|
2072
2132
|
}
|
|
2133
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2134
|
+
this.execution_id = data.execution_id;
|
|
2135
|
+
}
|
|
2073
2136
|
}
|
|
2074
2137
|
}
|
|
2075
2138
|
get test_id() {
|
|
@@ -2117,6 +2180,12 @@ var testsystem4;
|
|
|
2117
2180
|
set retry_index(value) {
|
|
2118
2181
|
pb_16.Message.setField(this, 7, value);
|
|
2119
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
|
+
}
|
|
2120
2189
|
static fromObject(data) {
|
|
2121
2190
|
const message = new _TestFailureEventRequest({});
|
|
2122
2191
|
if (data.test_id != null) {
|
|
@@ -2140,6 +2209,9 @@ var testsystem4;
|
|
|
2140
2209
|
if (data.retry_index != null) {
|
|
2141
2210
|
message.retry_index = data.retry_index;
|
|
2142
2211
|
}
|
|
2212
|
+
if (data.execution_id != null) {
|
|
2213
|
+
message.execution_id = data.execution_id;
|
|
2214
|
+
}
|
|
2143
2215
|
return message;
|
|
2144
2216
|
}
|
|
2145
2217
|
toObject() {
|
|
@@ -2165,6 +2237,9 @@ var testsystem4;
|
|
|
2165
2237
|
if (this.retry_index != null) {
|
|
2166
2238
|
data.retry_index = this.retry_index;
|
|
2167
2239
|
}
|
|
2240
|
+
if (this.execution_id != null) {
|
|
2241
|
+
data.execution_id = this.execution_id;
|
|
2242
|
+
}
|
|
2168
2243
|
return data;
|
|
2169
2244
|
}
|
|
2170
2245
|
serialize(w) {
|
|
@@ -2183,6 +2258,8 @@ var testsystem4;
|
|
|
2183
2258
|
writer.writeString(6, this.run_id);
|
|
2184
2259
|
if (this.retry_index != 0)
|
|
2185
2260
|
writer.writeInt32(7, this.retry_index);
|
|
2261
|
+
if (this.execution_id.length)
|
|
2262
|
+
writer.writeString(8, this.execution_id);
|
|
2186
2263
|
if (!w)
|
|
2187
2264
|
return writer.getResultBuffer();
|
|
2188
2265
|
}
|
|
@@ -2213,6 +2290,9 @@ var testsystem4;
|
|
|
2213
2290
|
case 7:
|
|
2214
2291
|
message.retry_index = reader.readInt32();
|
|
2215
2292
|
break;
|
|
2293
|
+
case 8:
|
|
2294
|
+
message.execution_id = reader.readString();
|
|
2295
|
+
break;
|
|
2216
2296
|
default:
|
|
2217
2297
|
reader.skipField();
|
|
2218
2298
|
}
|
|
@@ -2256,6 +2336,9 @@ var testsystem4;
|
|
|
2256
2336
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2257
2337
|
this.retry_index = data.retry_index;
|
|
2258
2338
|
}
|
|
2339
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2340
|
+
this.execution_id = data.execution_id;
|
|
2341
|
+
}
|
|
2259
2342
|
}
|
|
2260
2343
|
}
|
|
2261
2344
|
get test_id() {
|
|
@@ -2303,6 +2386,12 @@ var testsystem4;
|
|
|
2303
2386
|
set retry_index(value) {
|
|
2304
2387
|
pb_16.Message.setField(this, 7, value);
|
|
2305
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
|
+
}
|
|
2306
2395
|
static fromObject(data) {
|
|
2307
2396
|
const message = new _TestErrorEventRequest({});
|
|
2308
2397
|
if (data.test_id != null) {
|
|
@@ -2326,6 +2415,9 @@ var testsystem4;
|
|
|
2326
2415
|
if (data.retry_index != null) {
|
|
2327
2416
|
message.retry_index = data.retry_index;
|
|
2328
2417
|
}
|
|
2418
|
+
if (data.execution_id != null) {
|
|
2419
|
+
message.execution_id = data.execution_id;
|
|
2420
|
+
}
|
|
2329
2421
|
return message;
|
|
2330
2422
|
}
|
|
2331
2423
|
toObject() {
|
|
@@ -2351,6 +2443,9 @@ var testsystem4;
|
|
|
2351
2443
|
if (this.retry_index != null) {
|
|
2352
2444
|
data.retry_index = this.retry_index;
|
|
2353
2445
|
}
|
|
2446
|
+
if (this.execution_id != null) {
|
|
2447
|
+
data.execution_id = this.execution_id;
|
|
2448
|
+
}
|
|
2354
2449
|
return data;
|
|
2355
2450
|
}
|
|
2356
2451
|
serialize(w) {
|
|
@@ -2369,6 +2464,8 @@ var testsystem4;
|
|
|
2369
2464
|
writer.writeString(6, this.run_id);
|
|
2370
2465
|
if (this.retry_index != 0)
|
|
2371
2466
|
writer.writeInt32(7, this.retry_index);
|
|
2467
|
+
if (this.execution_id.length)
|
|
2468
|
+
writer.writeString(8, this.execution_id);
|
|
2372
2469
|
if (!w)
|
|
2373
2470
|
return writer.getResultBuffer();
|
|
2374
2471
|
}
|
|
@@ -2399,6 +2496,9 @@ var testsystem4;
|
|
|
2399
2496
|
case 7:
|
|
2400
2497
|
message.retry_index = reader.readInt32();
|
|
2401
2498
|
break;
|
|
2499
|
+
case 8:
|
|
2500
|
+
message.execution_id = reader.readString();
|
|
2501
|
+
break;
|
|
2402
2502
|
default:
|
|
2403
2503
|
reader.skipField();
|
|
2404
2504
|
}
|
|
@@ -2439,6 +2539,9 @@ var testsystem4;
|
|
|
2439
2539
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2440
2540
|
this.retry_index = data.retry_index;
|
|
2441
2541
|
}
|
|
2542
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2543
|
+
this.execution_id = data.execution_id;
|
|
2544
|
+
}
|
|
2442
2545
|
}
|
|
2443
2546
|
}
|
|
2444
2547
|
get test_id() {
|
|
@@ -2480,6 +2583,12 @@ var testsystem4;
|
|
|
2480
2583
|
set retry_index(value) {
|
|
2481
2584
|
pb_16.Message.setField(this, 6, value);
|
|
2482
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
|
+
}
|
|
2483
2592
|
static fromObject(data) {
|
|
2484
2593
|
const message = new _StdErrorEventRequest({});
|
|
2485
2594
|
if (data.test_id != null) {
|
|
@@ -2500,6 +2609,9 @@ var testsystem4;
|
|
|
2500
2609
|
if (data.retry_index != null) {
|
|
2501
2610
|
message.retry_index = data.retry_index;
|
|
2502
2611
|
}
|
|
2612
|
+
if (data.execution_id != null) {
|
|
2613
|
+
message.execution_id = data.execution_id;
|
|
2614
|
+
}
|
|
2503
2615
|
return message;
|
|
2504
2616
|
}
|
|
2505
2617
|
toObject() {
|
|
@@ -2522,6 +2634,9 @@ var testsystem4;
|
|
|
2522
2634
|
if (this.retry_index != null) {
|
|
2523
2635
|
data.retry_index = this.retry_index;
|
|
2524
2636
|
}
|
|
2637
|
+
if (this.execution_id != null) {
|
|
2638
|
+
data.execution_id = this.execution_id;
|
|
2639
|
+
}
|
|
2525
2640
|
return data;
|
|
2526
2641
|
}
|
|
2527
2642
|
serialize(w) {
|
|
@@ -2538,6 +2653,8 @@ var testsystem4;
|
|
|
2538
2653
|
writer.writeString(5, this.run_id);
|
|
2539
2654
|
if (this.retry_index != 0)
|
|
2540
2655
|
writer.writeInt32(6, this.retry_index);
|
|
2656
|
+
if (this.execution_id.length)
|
|
2657
|
+
writer.writeString(7, this.execution_id);
|
|
2541
2658
|
if (!w)
|
|
2542
2659
|
return writer.getResultBuffer();
|
|
2543
2660
|
}
|
|
@@ -2565,6 +2682,9 @@ var testsystem4;
|
|
|
2565
2682
|
case 6:
|
|
2566
2683
|
message.retry_index = reader.readInt32();
|
|
2567
2684
|
break;
|
|
2685
|
+
case 7:
|
|
2686
|
+
message.execution_id = reader.readString();
|
|
2687
|
+
break;
|
|
2568
2688
|
default:
|
|
2569
2689
|
reader.skipField();
|
|
2570
2690
|
}
|
|
@@ -2605,6 +2725,9 @@ var testsystem4;
|
|
|
2605
2725
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2606
2726
|
this.retry_index = data.retry_index;
|
|
2607
2727
|
}
|
|
2728
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2729
|
+
this.execution_id = data.execution_id;
|
|
2730
|
+
}
|
|
2608
2731
|
}
|
|
2609
2732
|
}
|
|
2610
2733
|
get test_id() {
|
|
@@ -2646,6 +2769,12 @@ var testsystem4;
|
|
|
2646
2769
|
set retry_index(value) {
|
|
2647
2770
|
pb_16.Message.setField(this, 6, value);
|
|
2648
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
|
+
}
|
|
2649
2778
|
static fromObject(data) {
|
|
2650
2779
|
const message = new _StdOutputEventRequest({});
|
|
2651
2780
|
if (data.test_id != null) {
|
|
@@ -2666,6 +2795,9 @@ var testsystem4;
|
|
|
2666
2795
|
if (data.retry_index != null) {
|
|
2667
2796
|
message.retry_index = data.retry_index;
|
|
2668
2797
|
}
|
|
2798
|
+
if (data.execution_id != null) {
|
|
2799
|
+
message.execution_id = data.execution_id;
|
|
2800
|
+
}
|
|
2669
2801
|
return message;
|
|
2670
2802
|
}
|
|
2671
2803
|
toObject() {
|
|
@@ -2688,6 +2820,9 @@ var testsystem4;
|
|
|
2688
2820
|
if (this.retry_index != null) {
|
|
2689
2821
|
data.retry_index = this.retry_index;
|
|
2690
2822
|
}
|
|
2823
|
+
if (this.execution_id != null) {
|
|
2824
|
+
data.execution_id = this.execution_id;
|
|
2825
|
+
}
|
|
2691
2826
|
return data;
|
|
2692
2827
|
}
|
|
2693
2828
|
serialize(w) {
|
|
@@ -2704,6 +2839,8 @@ var testsystem4;
|
|
|
2704
2839
|
writer.writeString(5, this.run_id);
|
|
2705
2840
|
if (this.retry_index != 0)
|
|
2706
2841
|
writer.writeInt32(6, this.retry_index);
|
|
2842
|
+
if (this.execution_id.length)
|
|
2843
|
+
writer.writeString(7, this.execution_id);
|
|
2707
2844
|
if (!w)
|
|
2708
2845
|
return writer.getResultBuffer();
|
|
2709
2846
|
}
|
|
@@ -2731,6 +2868,9 @@ var testsystem4;
|
|
|
2731
2868
|
case 6:
|
|
2732
2869
|
message.retry_index = reader.readInt32();
|
|
2733
2870
|
break;
|
|
2871
|
+
case 7:
|
|
2872
|
+
message.execution_id = reader.readString();
|
|
2873
|
+
break;
|
|
2734
2874
|
default:
|
|
2735
2875
|
reader.skipField();
|
|
2736
2876
|
}
|
|
@@ -2986,6 +3126,9 @@ var testsystem4;
|
|
|
2986
3126
|
if ("metadata" in data && data.metadata != void 0) {
|
|
2987
3127
|
this.metadata = data.metadata;
|
|
2988
3128
|
}
|
|
3129
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
3130
|
+
this.execution_id = data.execution_id;
|
|
3131
|
+
}
|
|
2989
3132
|
}
|
|
2990
3133
|
if (!this.metadata)
|
|
2991
3134
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -3020,6 +3163,12 @@ var testsystem4;
|
|
|
3020
3163
|
set metadata(value) {
|
|
3021
3164
|
pb_16.Message.setField(this, 5, value);
|
|
3022
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
|
+
}
|
|
3023
3172
|
static fromObject(data) {
|
|
3024
3173
|
const message = new _ReportRunStartEventRequest({});
|
|
3025
3174
|
if (data.run_id != null) {
|
|
@@ -3037,6 +3186,9 @@ var testsystem4;
|
|
|
3037
3186
|
if (typeof data.metadata == "object") {
|
|
3038
3187
|
message.metadata = new Map(Object.entries(data.metadata));
|
|
3039
3188
|
}
|
|
3189
|
+
if (data.execution_id != null) {
|
|
3190
|
+
message.execution_id = data.execution_id;
|
|
3191
|
+
}
|
|
3040
3192
|
return message;
|
|
3041
3193
|
}
|
|
3042
3194
|
toObject() {
|
|
@@ -3056,6 +3208,9 @@ var testsystem4;
|
|
|
3056
3208
|
if (this.metadata != null) {
|
|
3057
3209
|
data.metadata = Object.fromEntries(this.metadata);
|
|
3058
3210
|
}
|
|
3211
|
+
if (this.execution_id != null) {
|
|
3212
|
+
data.execution_id = this.execution_id;
|
|
3213
|
+
}
|
|
3059
3214
|
return data;
|
|
3060
3215
|
}
|
|
3061
3216
|
serialize(w) {
|
|
@@ -3074,6 +3229,8 @@ var testsystem4;
|
|
|
3074
3229
|
writer.writeString(2, value);
|
|
3075
3230
|
});
|
|
3076
3231
|
}
|
|
3232
|
+
if (this.execution_id.length)
|
|
3233
|
+
writer.writeString(6, this.execution_id);
|
|
3077
3234
|
if (!w)
|
|
3078
3235
|
return writer.getResultBuffer();
|
|
3079
3236
|
}
|
|
@@ -3098,6 +3255,9 @@ var testsystem4;
|
|
|
3098
3255
|
case 5:
|
|
3099
3256
|
reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
|
|
3100
3257
|
break;
|
|
3258
|
+
case 6:
|
|
3259
|
+
message.execution_id = reader.readString();
|
|
3260
|
+
break;
|
|
3101
3261
|
default:
|
|
3102
3262
|
reader.skipField();
|
|
3103
3263
|
}
|
|
@@ -3135,6 +3295,9 @@ var testsystem4;
|
|
|
3135
3295
|
if ("metadata" in data && data.metadata != void 0) {
|
|
3136
3296
|
this.metadata = data.metadata;
|
|
3137
3297
|
}
|
|
3298
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
3299
|
+
this.execution_id = data.execution_id;
|
|
3300
|
+
}
|
|
3138
3301
|
}
|
|
3139
3302
|
if (!this.metadata)
|
|
3140
3303
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -3175,6 +3338,12 @@ var testsystem4;
|
|
|
3175
3338
|
set metadata(value) {
|
|
3176
3339
|
pb_16.Message.setField(this, 5, value);
|
|
3177
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
|
+
}
|
|
3178
3347
|
static fromObject(data) {
|
|
3179
3348
|
const message = new _TestRunEndEventRequest({});
|
|
3180
3349
|
if (data.run_id != null) {
|
|
@@ -3192,6 +3361,9 @@ var testsystem4;
|
|
|
3192
3361
|
if (typeof data.metadata == "object") {
|
|
3193
3362
|
message.metadata = new Map(Object.entries(data.metadata));
|
|
3194
3363
|
}
|
|
3364
|
+
if (data.execution_id != null) {
|
|
3365
|
+
message.execution_id = data.execution_id;
|
|
3366
|
+
}
|
|
3195
3367
|
return message;
|
|
3196
3368
|
}
|
|
3197
3369
|
toObject() {
|
|
@@ -3211,6 +3383,9 @@ var testsystem4;
|
|
|
3211
3383
|
if (this.metadata != null) {
|
|
3212
3384
|
data.metadata = Object.fromEntries(this.metadata);
|
|
3213
3385
|
}
|
|
3386
|
+
if (this.execution_id != null) {
|
|
3387
|
+
data.execution_id = this.execution_id;
|
|
3388
|
+
}
|
|
3214
3389
|
return data;
|
|
3215
3390
|
}
|
|
3216
3391
|
serialize(w) {
|
|
@@ -3229,6 +3404,8 @@ var testsystem4;
|
|
|
3229
3404
|
writer.writeString(2, value);
|
|
3230
3405
|
});
|
|
3231
3406
|
}
|
|
3407
|
+
if (this.execution_id.length)
|
|
3408
|
+
writer.writeString(6, this.execution_id);
|
|
3232
3409
|
if (!w)
|
|
3233
3410
|
return writer.getResultBuffer();
|
|
3234
3411
|
}
|
|
@@ -3253,6 +3430,9 @@ var testsystem4;
|
|
|
3253
3430
|
case 5:
|
|
3254
3431
|
reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
|
|
3255
3432
|
break;
|
|
3433
|
+
case 6:
|
|
3434
|
+
message.execution_id = reader.readString();
|
|
3435
|
+
break;
|
|
3256
3436
|
default:
|
|
3257
3437
|
reader.skipField();
|
|
3258
3438
|
}
|