@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/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
|
}
|
|
@@ -859,7 +879,7 @@ var testsystem2;
|
|
|
859
879
|
constructor(data) {
|
|
860
880
|
super();
|
|
861
881
|
__privateAdd(this, _one_of_decls2, []);
|
|
862
|
-
pb_14.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [14], __privateGet(this, _one_of_decls2));
|
|
882
|
+
pb_14.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [14, 18], __privateGet(this, _one_of_decls2));
|
|
863
883
|
if (!Array.isArray(data) && typeof data == "object") {
|
|
864
884
|
if ("id" in data && data.id != void 0) {
|
|
865
885
|
this.id = data.id;
|
|
@@ -912,6 +932,12 @@ var testsystem2;
|
|
|
912
932
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
913
933
|
this.retry_index = data.retry_index;
|
|
914
934
|
}
|
|
935
|
+
if ("attachments" in data && data.attachments != void 0) {
|
|
936
|
+
this.attachments = data.attachments;
|
|
937
|
+
}
|
|
938
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
939
|
+
this.execution_id = data.execution_id;
|
|
940
|
+
}
|
|
915
941
|
}
|
|
916
942
|
if (!this.metadata)
|
|
917
943
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1024,6 +1050,18 @@ var testsystem2;
|
|
|
1024
1050
|
set retry_index(value) {
|
|
1025
1051
|
pb_14.Message.setField(this, 17, value);
|
|
1026
1052
|
}
|
|
1053
|
+
get attachments() {
|
|
1054
|
+
return pb_14.Message.getRepeatedWrapperField(this, testsystem.v1.common.Attachment, 18);
|
|
1055
|
+
}
|
|
1056
|
+
set attachments(value) {
|
|
1057
|
+
pb_14.Message.setRepeatedWrapperField(this, 18, value);
|
|
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
|
+
}
|
|
1027
1065
|
static fromObject(data) {
|
|
1028
1066
|
const message = new _StepRun({});
|
|
1029
1067
|
if (data.id != null) {
|
|
@@ -1077,6 +1115,12 @@ var testsystem2;
|
|
|
1077
1115
|
if (data.retry_index != null) {
|
|
1078
1116
|
message.retry_index = data.retry_index;
|
|
1079
1117
|
}
|
|
1118
|
+
if (data.attachments != null) {
|
|
1119
|
+
message.attachments = data.attachments.map((item) => testsystem.v1.common.Attachment.fromObject(item));
|
|
1120
|
+
}
|
|
1121
|
+
if (data.execution_id != null) {
|
|
1122
|
+
message.execution_id = data.execution_id;
|
|
1123
|
+
}
|
|
1080
1124
|
return message;
|
|
1081
1125
|
}
|
|
1082
1126
|
toObject() {
|
|
@@ -1132,6 +1176,12 @@ var testsystem2;
|
|
|
1132
1176
|
if (this.retry_index != null) {
|
|
1133
1177
|
data.retry_index = this.retry_index;
|
|
1134
1178
|
}
|
|
1179
|
+
if (this.attachments != null) {
|
|
1180
|
+
data.attachments = this.attachments.map((item) => item.toObject());
|
|
1181
|
+
}
|
|
1182
|
+
if (this.execution_id != null) {
|
|
1183
|
+
data.execution_id = this.execution_id;
|
|
1184
|
+
}
|
|
1135
1185
|
return data;
|
|
1136
1186
|
}
|
|
1137
1187
|
serialize(w) {
|
|
@@ -1174,6 +1224,10 @@ var testsystem2;
|
|
|
1174
1224
|
writer.writeString(16, this.category);
|
|
1175
1225
|
if (this.retry_index != 0)
|
|
1176
1226
|
writer.writeInt32(17, this.retry_index);
|
|
1227
|
+
if (this.attachments.length)
|
|
1228
|
+
writer.writeRepeatedMessage(18, this.attachments, (item) => item.serialize(writer));
|
|
1229
|
+
if (this.execution_id.length)
|
|
1230
|
+
writer.writeString(19, this.execution_id);
|
|
1177
1231
|
if (!w)
|
|
1178
1232
|
return writer.getResultBuffer();
|
|
1179
1233
|
}
|
|
@@ -1234,6 +1288,12 @@ var testsystem2;
|
|
|
1234
1288
|
case 17:
|
|
1235
1289
|
message.retry_index = reader.readInt32();
|
|
1236
1290
|
break;
|
|
1291
|
+
case 18:
|
|
1292
|
+
reader.readMessage(message.attachments, () => pb_14.Message.addToRepeatedWrapperField(message, 18, testsystem.v1.common.Attachment.deserialize(reader), testsystem.v1.common.Attachment));
|
|
1293
|
+
break;
|
|
1294
|
+
case 19:
|
|
1295
|
+
message.execution_id = reader.readString();
|
|
1296
|
+
break;
|
|
1237
1297
|
default:
|
|
1238
1298
|
reader.skipField();
|
|
1239
1299
|
}
|
|
@@ -1336,6 +1396,9 @@ var testsystem3;
|
|
|
1336
1396
|
if ("sub_suites" in data && data.sub_suites != void 0) {
|
|
1337
1397
|
this.sub_suites = data.sub_suites;
|
|
1338
1398
|
}
|
|
1399
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
1400
|
+
this.execution_id = data.execution_id;
|
|
1401
|
+
}
|
|
1339
1402
|
}
|
|
1340
1403
|
if (!this.metadata)
|
|
1341
1404
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1469,6 +1532,12 @@ var testsystem3;
|
|
|
1469
1532
|
set sub_suites(value) {
|
|
1470
1533
|
pb_15.Message.setRepeatedWrapperField(this, 20, value);
|
|
1471
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
|
+
}
|
|
1472
1541
|
static fromObject(data) {
|
|
1473
1542
|
const message = new _TestSuiteRun({});
|
|
1474
1543
|
if (data.id != null) {
|
|
@@ -1531,6 +1600,9 @@ var testsystem3;
|
|
|
1531
1600
|
if (data.sub_suites != null) {
|
|
1532
1601
|
message.sub_suites = data.sub_suites.map((item) => _TestSuiteRun.fromObject(item));
|
|
1533
1602
|
}
|
|
1603
|
+
if (data.execution_id != null) {
|
|
1604
|
+
message.execution_id = data.execution_id;
|
|
1605
|
+
}
|
|
1534
1606
|
return message;
|
|
1535
1607
|
}
|
|
1536
1608
|
toObject() {
|
|
@@ -1595,6 +1667,9 @@ var testsystem3;
|
|
|
1595
1667
|
if (this.sub_suites != null) {
|
|
1596
1668
|
data.sub_suites = this.sub_suites.map((item) => item.toObject());
|
|
1597
1669
|
}
|
|
1670
|
+
if (this.execution_id != null) {
|
|
1671
|
+
data.execution_id = this.execution_id;
|
|
1672
|
+
}
|
|
1598
1673
|
return data;
|
|
1599
1674
|
}
|
|
1600
1675
|
serialize(w) {
|
|
@@ -1643,6 +1718,8 @@ var testsystem3;
|
|
|
1643
1718
|
writer.writeRepeatedMessage(19, this.test_cases, (item) => item.serialize(writer));
|
|
1644
1719
|
if (this.sub_suites.length)
|
|
1645
1720
|
writer.writeRepeatedMessage(20, this.sub_suites, (item) => item.serialize(writer));
|
|
1721
|
+
if (this.execution_id.length)
|
|
1722
|
+
writer.writeString(21, this.execution_id);
|
|
1646
1723
|
if (!w)
|
|
1647
1724
|
return writer.getResultBuffer();
|
|
1648
1725
|
}
|
|
@@ -1712,6 +1789,9 @@ var testsystem3;
|
|
|
1712
1789
|
case 20:
|
|
1713
1790
|
reader.readMessage(message.sub_suites, () => pb_15.Message.addToRepeatedWrapperField(message, 20, _TestSuiteRun.deserialize(reader), _TestSuiteRun));
|
|
1714
1791
|
break;
|
|
1792
|
+
case 21:
|
|
1793
|
+
message.execution_id = reader.readString();
|
|
1794
|
+
break;
|
|
1715
1795
|
default:
|
|
1716
1796
|
reader.skipField();
|
|
1717
1797
|
}
|
|
@@ -2056,6 +2136,9 @@ var testsystem4;
|
|
|
2056
2136
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2057
2137
|
this.retry_index = data.retry_index;
|
|
2058
2138
|
}
|
|
2139
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2140
|
+
this.execution_id = data.execution_id;
|
|
2141
|
+
}
|
|
2059
2142
|
}
|
|
2060
2143
|
}
|
|
2061
2144
|
get test_id() {
|
|
@@ -2103,6 +2186,12 @@ var testsystem4;
|
|
|
2103
2186
|
set retry_index(value) {
|
|
2104
2187
|
pb_16.Message.setField(this, 7, value);
|
|
2105
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
|
+
}
|
|
2106
2195
|
static fromObject(data) {
|
|
2107
2196
|
const message = new _TestFailureEventRequest({});
|
|
2108
2197
|
if (data.test_id != null) {
|
|
@@ -2126,6 +2215,9 @@ var testsystem4;
|
|
|
2126
2215
|
if (data.retry_index != null) {
|
|
2127
2216
|
message.retry_index = data.retry_index;
|
|
2128
2217
|
}
|
|
2218
|
+
if (data.execution_id != null) {
|
|
2219
|
+
message.execution_id = data.execution_id;
|
|
2220
|
+
}
|
|
2129
2221
|
return message;
|
|
2130
2222
|
}
|
|
2131
2223
|
toObject() {
|
|
@@ -2151,6 +2243,9 @@ var testsystem4;
|
|
|
2151
2243
|
if (this.retry_index != null) {
|
|
2152
2244
|
data.retry_index = this.retry_index;
|
|
2153
2245
|
}
|
|
2246
|
+
if (this.execution_id != null) {
|
|
2247
|
+
data.execution_id = this.execution_id;
|
|
2248
|
+
}
|
|
2154
2249
|
return data;
|
|
2155
2250
|
}
|
|
2156
2251
|
serialize(w) {
|
|
@@ -2169,6 +2264,8 @@ var testsystem4;
|
|
|
2169
2264
|
writer.writeString(6, this.run_id);
|
|
2170
2265
|
if (this.retry_index != 0)
|
|
2171
2266
|
writer.writeInt32(7, this.retry_index);
|
|
2267
|
+
if (this.execution_id.length)
|
|
2268
|
+
writer.writeString(8, this.execution_id);
|
|
2172
2269
|
if (!w)
|
|
2173
2270
|
return writer.getResultBuffer();
|
|
2174
2271
|
}
|
|
@@ -2199,6 +2296,9 @@ var testsystem4;
|
|
|
2199
2296
|
case 7:
|
|
2200
2297
|
message.retry_index = reader.readInt32();
|
|
2201
2298
|
break;
|
|
2299
|
+
case 8:
|
|
2300
|
+
message.execution_id = reader.readString();
|
|
2301
|
+
break;
|
|
2202
2302
|
default:
|
|
2203
2303
|
reader.skipField();
|
|
2204
2304
|
}
|
|
@@ -2242,6 +2342,9 @@ var testsystem4;
|
|
|
2242
2342
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2243
2343
|
this.retry_index = data.retry_index;
|
|
2244
2344
|
}
|
|
2345
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2346
|
+
this.execution_id = data.execution_id;
|
|
2347
|
+
}
|
|
2245
2348
|
}
|
|
2246
2349
|
}
|
|
2247
2350
|
get test_id() {
|
|
@@ -2289,6 +2392,12 @@ var testsystem4;
|
|
|
2289
2392
|
set retry_index(value) {
|
|
2290
2393
|
pb_16.Message.setField(this, 7, value);
|
|
2291
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
|
+
}
|
|
2292
2401
|
static fromObject(data) {
|
|
2293
2402
|
const message = new _TestErrorEventRequest({});
|
|
2294
2403
|
if (data.test_id != null) {
|
|
@@ -2312,6 +2421,9 @@ var testsystem4;
|
|
|
2312
2421
|
if (data.retry_index != null) {
|
|
2313
2422
|
message.retry_index = data.retry_index;
|
|
2314
2423
|
}
|
|
2424
|
+
if (data.execution_id != null) {
|
|
2425
|
+
message.execution_id = data.execution_id;
|
|
2426
|
+
}
|
|
2315
2427
|
return message;
|
|
2316
2428
|
}
|
|
2317
2429
|
toObject() {
|
|
@@ -2337,6 +2449,9 @@ var testsystem4;
|
|
|
2337
2449
|
if (this.retry_index != null) {
|
|
2338
2450
|
data.retry_index = this.retry_index;
|
|
2339
2451
|
}
|
|
2452
|
+
if (this.execution_id != null) {
|
|
2453
|
+
data.execution_id = this.execution_id;
|
|
2454
|
+
}
|
|
2340
2455
|
return data;
|
|
2341
2456
|
}
|
|
2342
2457
|
serialize(w) {
|
|
@@ -2355,6 +2470,8 @@ var testsystem4;
|
|
|
2355
2470
|
writer.writeString(6, this.run_id);
|
|
2356
2471
|
if (this.retry_index != 0)
|
|
2357
2472
|
writer.writeInt32(7, this.retry_index);
|
|
2473
|
+
if (this.execution_id.length)
|
|
2474
|
+
writer.writeString(8, this.execution_id);
|
|
2358
2475
|
if (!w)
|
|
2359
2476
|
return writer.getResultBuffer();
|
|
2360
2477
|
}
|
|
@@ -2385,6 +2502,9 @@ var testsystem4;
|
|
|
2385
2502
|
case 7:
|
|
2386
2503
|
message.retry_index = reader.readInt32();
|
|
2387
2504
|
break;
|
|
2505
|
+
case 8:
|
|
2506
|
+
message.execution_id = reader.readString();
|
|
2507
|
+
break;
|
|
2388
2508
|
default:
|
|
2389
2509
|
reader.skipField();
|
|
2390
2510
|
}
|
|
@@ -2425,6 +2545,9 @@ var testsystem4;
|
|
|
2425
2545
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2426
2546
|
this.retry_index = data.retry_index;
|
|
2427
2547
|
}
|
|
2548
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2549
|
+
this.execution_id = data.execution_id;
|
|
2550
|
+
}
|
|
2428
2551
|
}
|
|
2429
2552
|
}
|
|
2430
2553
|
get test_id() {
|
|
@@ -2466,6 +2589,12 @@ var testsystem4;
|
|
|
2466
2589
|
set retry_index(value) {
|
|
2467
2590
|
pb_16.Message.setField(this, 6, value);
|
|
2468
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
|
+
}
|
|
2469
2598
|
static fromObject(data) {
|
|
2470
2599
|
const message = new _StdErrorEventRequest({});
|
|
2471
2600
|
if (data.test_id != null) {
|
|
@@ -2486,6 +2615,9 @@ var testsystem4;
|
|
|
2486
2615
|
if (data.retry_index != null) {
|
|
2487
2616
|
message.retry_index = data.retry_index;
|
|
2488
2617
|
}
|
|
2618
|
+
if (data.execution_id != null) {
|
|
2619
|
+
message.execution_id = data.execution_id;
|
|
2620
|
+
}
|
|
2489
2621
|
return message;
|
|
2490
2622
|
}
|
|
2491
2623
|
toObject() {
|
|
@@ -2508,6 +2640,9 @@ var testsystem4;
|
|
|
2508
2640
|
if (this.retry_index != null) {
|
|
2509
2641
|
data.retry_index = this.retry_index;
|
|
2510
2642
|
}
|
|
2643
|
+
if (this.execution_id != null) {
|
|
2644
|
+
data.execution_id = this.execution_id;
|
|
2645
|
+
}
|
|
2511
2646
|
return data;
|
|
2512
2647
|
}
|
|
2513
2648
|
serialize(w) {
|
|
@@ -2524,6 +2659,8 @@ var testsystem4;
|
|
|
2524
2659
|
writer.writeString(5, this.run_id);
|
|
2525
2660
|
if (this.retry_index != 0)
|
|
2526
2661
|
writer.writeInt32(6, this.retry_index);
|
|
2662
|
+
if (this.execution_id.length)
|
|
2663
|
+
writer.writeString(7, this.execution_id);
|
|
2527
2664
|
if (!w)
|
|
2528
2665
|
return writer.getResultBuffer();
|
|
2529
2666
|
}
|
|
@@ -2551,6 +2688,9 @@ var testsystem4;
|
|
|
2551
2688
|
case 6:
|
|
2552
2689
|
message.retry_index = reader.readInt32();
|
|
2553
2690
|
break;
|
|
2691
|
+
case 7:
|
|
2692
|
+
message.execution_id = reader.readString();
|
|
2693
|
+
break;
|
|
2554
2694
|
default:
|
|
2555
2695
|
reader.skipField();
|
|
2556
2696
|
}
|
|
@@ -2591,6 +2731,9 @@ var testsystem4;
|
|
|
2591
2731
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2592
2732
|
this.retry_index = data.retry_index;
|
|
2593
2733
|
}
|
|
2734
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2735
|
+
this.execution_id = data.execution_id;
|
|
2736
|
+
}
|
|
2594
2737
|
}
|
|
2595
2738
|
}
|
|
2596
2739
|
get test_id() {
|
|
@@ -2632,6 +2775,12 @@ var testsystem4;
|
|
|
2632
2775
|
set retry_index(value) {
|
|
2633
2776
|
pb_16.Message.setField(this, 6, value);
|
|
2634
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
|
+
}
|
|
2635
2784
|
static fromObject(data) {
|
|
2636
2785
|
const message = new _StdOutputEventRequest({});
|
|
2637
2786
|
if (data.test_id != null) {
|
|
@@ -2652,6 +2801,9 @@ var testsystem4;
|
|
|
2652
2801
|
if (data.retry_index != null) {
|
|
2653
2802
|
message.retry_index = data.retry_index;
|
|
2654
2803
|
}
|
|
2804
|
+
if (data.execution_id != null) {
|
|
2805
|
+
message.execution_id = data.execution_id;
|
|
2806
|
+
}
|
|
2655
2807
|
return message;
|
|
2656
2808
|
}
|
|
2657
2809
|
toObject() {
|
|
@@ -2674,6 +2826,9 @@ var testsystem4;
|
|
|
2674
2826
|
if (this.retry_index != null) {
|
|
2675
2827
|
data.retry_index = this.retry_index;
|
|
2676
2828
|
}
|
|
2829
|
+
if (this.execution_id != null) {
|
|
2830
|
+
data.execution_id = this.execution_id;
|
|
2831
|
+
}
|
|
2677
2832
|
return data;
|
|
2678
2833
|
}
|
|
2679
2834
|
serialize(w) {
|
|
@@ -2690,6 +2845,8 @@ var testsystem4;
|
|
|
2690
2845
|
writer.writeString(5, this.run_id);
|
|
2691
2846
|
if (this.retry_index != 0)
|
|
2692
2847
|
writer.writeInt32(6, this.retry_index);
|
|
2848
|
+
if (this.execution_id.length)
|
|
2849
|
+
writer.writeString(7, this.execution_id);
|
|
2693
2850
|
if (!w)
|
|
2694
2851
|
return writer.getResultBuffer();
|
|
2695
2852
|
}
|
|
@@ -2717,6 +2874,9 @@ var testsystem4;
|
|
|
2717
2874
|
case 6:
|
|
2718
2875
|
message.retry_index = reader.readInt32();
|
|
2719
2876
|
break;
|
|
2877
|
+
case 7:
|
|
2878
|
+
message.execution_id = reader.readString();
|
|
2879
|
+
break;
|
|
2720
2880
|
default:
|
|
2721
2881
|
reader.skipField();
|
|
2722
2882
|
}
|
|
@@ -2972,6 +3132,9 @@ var testsystem4;
|
|
|
2972
3132
|
if ("metadata" in data && data.metadata != void 0) {
|
|
2973
3133
|
this.metadata = data.metadata;
|
|
2974
3134
|
}
|
|
3135
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
3136
|
+
this.execution_id = data.execution_id;
|
|
3137
|
+
}
|
|
2975
3138
|
}
|
|
2976
3139
|
if (!this.metadata)
|
|
2977
3140
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -3006,6 +3169,12 @@ var testsystem4;
|
|
|
3006
3169
|
set metadata(value) {
|
|
3007
3170
|
pb_16.Message.setField(this, 5, value);
|
|
3008
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
|
+
}
|
|
3009
3178
|
static fromObject(data) {
|
|
3010
3179
|
const message = new _ReportRunStartEventRequest({});
|
|
3011
3180
|
if (data.run_id != null) {
|
|
@@ -3023,6 +3192,9 @@ var testsystem4;
|
|
|
3023
3192
|
if (typeof data.metadata == "object") {
|
|
3024
3193
|
message.metadata = new Map(Object.entries(data.metadata));
|
|
3025
3194
|
}
|
|
3195
|
+
if (data.execution_id != null) {
|
|
3196
|
+
message.execution_id = data.execution_id;
|
|
3197
|
+
}
|
|
3026
3198
|
return message;
|
|
3027
3199
|
}
|
|
3028
3200
|
toObject() {
|
|
@@ -3042,6 +3214,9 @@ var testsystem4;
|
|
|
3042
3214
|
if (this.metadata != null) {
|
|
3043
3215
|
data.metadata = Object.fromEntries(this.metadata);
|
|
3044
3216
|
}
|
|
3217
|
+
if (this.execution_id != null) {
|
|
3218
|
+
data.execution_id = this.execution_id;
|
|
3219
|
+
}
|
|
3045
3220
|
return data;
|
|
3046
3221
|
}
|
|
3047
3222
|
serialize(w) {
|
|
@@ -3060,6 +3235,8 @@ var testsystem4;
|
|
|
3060
3235
|
writer.writeString(2, value);
|
|
3061
3236
|
});
|
|
3062
3237
|
}
|
|
3238
|
+
if (this.execution_id.length)
|
|
3239
|
+
writer.writeString(6, this.execution_id);
|
|
3063
3240
|
if (!w)
|
|
3064
3241
|
return writer.getResultBuffer();
|
|
3065
3242
|
}
|
|
@@ -3084,6 +3261,9 @@ var testsystem4;
|
|
|
3084
3261
|
case 5:
|
|
3085
3262
|
reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
|
|
3086
3263
|
break;
|
|
3264
|
+
case 6:
|
|
3265
|
+
message.execution_id = reader.readString();
|
|
3266
|
+
break;
|
|
3087
3267
|
default:
|
|
3088
3268
|
reader.skipField();
|
|
3089
3269
|
}
|
|
@@ -3121,6 +3301,9 @@ var testsystem4;
|
|
|
3121
3301
|
if ("metadata" in data && data.metadata != void 0) {
|
|
3122
3302
|
this.metadata = data.metadata;
|
|
3123
3303
|
}
|
|
3304
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
3305
|
+
this.execution_id = data.execution_id;
|
|
3306
|
+
}
|
|
3124
3307
|
}
|
|
3125
3308
|
if (!this.metadata)
|
|
3126
3309
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -3161,6 +3344,12 @@ var testsystem4;
|
|
|
3161
3344
|
set metadata(value) {
|
|
3162
3345
|
pb_16.Message.setField(this, 5, value);
|
|
3163
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
|
+
}
|
|
3164
3353
|
static fromObject(data) {
|
|
3165
3354
|
const message = new _TestRunEndEventRequest({});
|
|
3166
3355
|
if (data.run_id != null) {
|
|
@@ -3178,6 +3367,9 @@ var testsystem4;
|
|
|
3178
3367
|
if (typeof data.metadata == "object") {
|
|
3179
3368
|
message.metadata = new Map(Object.entries(data.metadata));
|
|
3180
3369
|
}
|
|
3370
|
+
if (data.execution_id != null) {
|
|
3371
|
+
message.execution_id = data.execution_id;
|
|
3372
|
+
}
|
|
3181
3373
|
return message;
|
|
3182
3374
|
}
|
|
3183
3375
|
toObject() {
|
|
@@ -3197,6 +3389,9 @@ var testsystem4;
|
|
|
3197
3389
|
if (this.metadata != null) {
|
|
3198
3390
|
data.metadata = Object.fromEntries(this.metadata);
|
|
3199
3391
|
}
|
|
3392
|
+
if (this.execution_id != null) {
|
|
3393
|
+
data.execution_id = this.execution_id;
|
|
3394
|
+
}
|
|
3200
3395
|
return data;
|
|
3201
3396
|
}
|
|
3202
3397
|
serialize(w) {
|
|
@@ -3215,6 +3410,8 @@ var testsystem4;
|
|
|
3215
3410
|
writer.writeString(2, value);
|
|
3216
3411
|
});
|
|
3217
3412
|
}
|
|
3413
|
+
if (this.execution_id.length)
|
|
3414
|
+
writer.writeString(6, this.execution_id);
|
|
3218
3415
|
if (!w)
|
|
3219
3416
|
return writer.getResultBuffer();
|
|
3220
3417
|
}
|
|
@@ -3239,6 +3436,9 @@ var testsystem4;
|
|
|
3239
3436
|
case 5:
|
|
3240
3437
|
reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
|
|
3241
3438
|
break;
|
|
3439
|
+
case 6:
|
|
3440
|
+
message.execution_id = reader.readString();
|
|
3441
|
+
break;
|
|
3242
3442
|
default:
|
|
3243
3443
|
reader.skipField();
|
|
3244
3444
|
}
|