@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
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import "../../chunk-
|
|
1
|
+
import "../../chunk-5Q7PEW7T.mjs";
|
|
2
2
|
import {
|
|
3
3
|
common_exports
|
|
4
4
|
} from "../../chunk-WHGMBNCF.mjs";
|
|
5
5
|
import {
|
|
6
6
|
entities_exports
|
|
7
|
-
} from "../../chunk-
|
|
7
|
+
} from "../../chunk-RRKAEIBJ.mjs";
|
|
8
8
|
import {
|
|
9
9
|
events_exports
|
|
10
|
-
} from "../../chunk-
|
|
10
|
+
} from "../../chunk-GXV2FWLZ.mjs";
|
|
11
11
|
import {
|
|
12
12
|
observer_exports
|
|
13
|
-
} from "../../chunk-
|
|
14
|
-
import "../../chunk-
|
|
15
|
-
import "../../chunk-
|
|
16
|
-
import "../../chunk-
|
|
13
|
+
} from "../../chunk-QENINSQL.mjs";
|
|
14
|
+
import "../../chunk-ZLJNJSRC.mjs";
|
|
15
|
+
import "../../chunk-5TUCVYG3.mjs";
|
|
16
|
+
import "../../chunk-7T4DREEB.mjs";
|
|
17
17
|
import "../../chunk-EMALOWTT.mjs";
|
|
18
18
|
export {
|
|
19
19
|
common_exports as common,
|
|
@@ -463,6 +463,9 @@ var testsystem2;
|
|
|
463
463
|
if ("timeout" in data && data.timeout != void 0) {
|
|
464
464
|
this.timeout = data.timeout;
|
|
465
465
|
}
|
|
466
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
467
|
+
this.execution_id = data.execution_id;
|
|
468
|
+
}
|
|
466
469
|
}
|
|
467
470
|
if (!this.metadata)
|
|
468
471
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -590,6 +593,12 @@ var testsystem2;
|
|
|
590
593
|
set timeout(value) {
|
|
591
594
|
pb_14.Message.setField(this, 19, value);
|
|
592
595
|
}
|
|
596
|
+
get execution_id() {
|
|
597
|
+
return pb_14.Message.getFieldWithDefault(this, 20, "");
|
|
598
|
+
}
|
|
599
|
+
set execution_id(value) {
|
|
600
|
+
pb_14.Message.setField(this, 20, value);
|
|
601
|
+
}
|
|
593
602
|
static fromObject(data) {
|
|
594
603
|
const message = new _TestCaseRun({});
|
|
595
604
|
if (data.id != null) {
|
|
@@ -649,6 +658,9 @@ var testsystem2;
|
|
|
649
658
|
if (data.timeout != null) {
|
|
650
659
|
message.timeout = data.timeout;
|
|
651
660
|
}
|
|
661
|
+
if (data.execution_id != null) {
|
|
662
|
+
message.execution_id = data.execution_id;
|
|
663
|
+
}
|
|
652
664
|
return message;
|
|
653
665
|
}
|
|
654
666
|
toObject() {
|
|
@@ -710,6 +722,9 @@ var testsystem2;
|
|
|
710
722
|
if (this.timeout != null) {
|
|
711
723
|
data.timeout = this.timeout;
|
|
712
724
|
}
|
|
725
|
+
if (this.execution_id != null) {
|
|
726
|
+
data.execution_id = this.execution_id;
|
|
727
|
+
}
|
|
713
728
|
return data;
|
|
714
729
|
}
|
|
715
730
|
serialize(w) {
|
|
@@ -756,6 +771,8 @@ var testsystem2;
|
|
|
756
771
|
writer.writeInt32(18, this.retry_index);
|
|
757
772
|
if (this.timeout != 0)
|
|
758
773
|
writer.writeInt32(19, this.timeout);
|
|
774
|
+
if (this.execution_id.length)
|
|
775
|
+
writer.writeString(20, this.execution_id);
|
|
759
776
|
if (!w)
|
|
760
777
|
return writer.getResultBuffer();
|
|
761
778
|
}
|
|
@@ -822,6 +839,9 @@ var testsystem2;
|
|
|
822
839
|
case 19:
|
|
823
840
|
message.timeout = reader.readInt32();
|
|
824
841
|
break;
|
|
842
|
+
case 20:
|
|
843
|
+
message.execution_id = reader.readString();
|
|
844
|
+
break;
|
|
825
845
|
default:
|
|
826
846
|
reader.skipField();
|
|
827
847
|
}
|
|
@@ -898,6 +918,9 @@ var testsystem2;
|
|
|
898
918
|
if ("attachments" in data && data.attachments != void 0) {
|
|
899
919
|
this.attachments = data.attachments;
|
|
900
920
|
}
|
|
921
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
922
|
+
this.execution_id = data.execution_id;
|
|
923
|
+
}
|
|
901
924
|
}
|
|
902
925
|
if (!this.metadata)
|
|
903
926
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1016,6 +1039,12 @@ var testsystem2;
|
|
|
1016
1039
|
set attachments(value) {
|
|
1017
1040
|
pb_14.Message.setRepeatedWrapperField(this, 18, value);
|
|
1018
1041
|
}
|
|
1042
|
+
get execution_id() {
|
|
1043
|
+
return pb_14.Message.getFieldWithDefault(this, 19, "");
|
|
1044
|
+
}
|
|
1045
|
+
set execution_id(value) {
|
|
1046
|
+
pb_14.Message.setField(this, 19, value);
|
|
1047
|
+
}
|
|
1019
1048
|
static fromObject(data) {
|
|
1020
1049
|
const message = new _StepRun({});
|
|
1021
1050
|
if (data.id != null) {
|
|
@@ -1072,6 +1101,9 @@ var testsystem2;
|
|
|
1072
1101
|
if (data.attachments != null) {
|
|
1073
1102
|
message.attachments = data.attachments.map((item) => testsystem.v1.common.Attachment.fromObject(item));
|
|
1074
1103
|
}
|
|
1104
|
+
if (data.execution_id != null) {
|
|
1105
|
+
message.execution_id = data.execution_id;
|
|
1106
|
+
}
|
|
1075
1107
|
return message;
|
|
1076
1108
|
}
|
|
1077
1109
|
toObject() {
|
|
@@ -1130,6 +1162,9 @@ var testsystem2;
|
|
|
1130
1162
|
if (this.attachments != null) {
|
|
1131
1163
|
data.attachments = this.attachments.map((item) => item.toObject());
|
|
1132
1164
|
}
|
|
1165
|
+
if (this.execution_id != null) {
|
|
1166
|
+
data.execution_id = this.execution_id;
|
|
1167
|
+
}
|
|
1133
1168
|
return data;
|
|
1134
1169
|
}
|
|
1135
1170
|
serialize(w) {
|
|
@@ -1174,6 +1209,8 @@ var testsystem2;
|
|
|
1174
1209
|
writer.writeInt32(17, this.retry_index);
|
|
1175
1210
|
if (this.attachments.length)
|
|
1176
1211
|
writer.writeRepeatedMessage(18, this.attachments, (item) => item.serialize(writer));
|
|
1212
|
+
if (this.execution_id.length)
|
|
1213
|
+
writer.writeString(19, this.execution_id);
|
|
1177
1214
|
if (!w)
|
|
1178
1215
|
return writer.getResultBuffer();
|
|
1179
1216
|
}
|
|
@@ -1237,6 +1274,9 @@ var testsystem2;
|
|
|
1237
1274
|
case 18:
|
|
1238
1275
|
reader.readMessage(message.attachments, () => pb_14.Message.addToRepeatedWrapperField(message, 18, testsystem.v1.common.Attachment.deserialize(reader), testsystem.v1.common.Attachment));
|
|
1239
1276
|
break;
|
|
1277
|
+
case 19:
|
|
1278
|
+
message.execution_id = reader.readString();
|
|
1279
|
+
break;
|
|
1240
1280
|
default:
|
|
1241
1281
|
reader.skipField();
|
|
1242
1282
|
}
|
|
@@ -1339,6 +1379,9 @@ var testsystem3;
|
|
|
1339
1379
|
if ("sub_suites" in data && data.sub_suites != void 0) {
|
|
1340
1380
|
this.sub_suites = data.sub_suites;
|
|
1341
1381
|
}
|
|
1382
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
1383
|
+
this.execution_id = data.execution_id;
|
|
1384
|
+
}
|
|
1342
1385
|
}
|
|
1343
1386
|
if (!this.metadata)
|
|
1344
1387
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1472,6 +1515,12 @@ var testsystem3;
|
|
|
1472
1515
|
set sub_suites(value) {
|
|
1473
1516
|
pb_15.Message.setRepeatedWrapperField(this, 20, value);
|
|
1474
1517
|
}
|
|
1518
|
+
get execution_id() {
|
|
1519
|
+
return pb_15.Message.getFieldWithDefault(this, 21, "");
|
|
1520
|
+
}
|
|
1521
|
+
set execution_id(value) {
|
|
1522
|
+
pb_15.Message.setField(this, 21, value);
|
|
1523
|
+
}
|
|
1475
1524
|
static fromObject(data) {
|
|
1476
1525
|
const message = new _TestSuiteRun({});
|
|
1477
1526
|
if (data.id != null) {
|
|
@@ -1534,6 +1583,9 @@ var testsystem3;
|
|
|
1534
1583
|
if (data.sub_suites != null) {
|
|
1535
1584
|
message.sub_suites = data.sub_suites.map((item) => _TestSuiteRun.fromObject(item));
|
|
1536
1585
|
}
|
|
1586
|
+
if (data.execution_id != null) {
|
|
1587
|
+
message.execution_id = data.execution_id;
|
|
1588
|
+
}
|
|
1537
1589
|
return message;
|
|
1538
1590
|
}
|
|
1539
1591
|
toObject() {
|
|
@@ -1598,6 +1650,9 @@ var testsystem3;
|
|
|
1598
1650
|
if (this.sub_suites != null) {
|
|
1599
1651
|
data.sub_suites = this.sub_suites.map((item) => item.toObject());
|
|
1600
1652
|
}
|
|
1653
|
+
if (this.execution_id != null) {
|
|
1654
|
+
data.execution_id = this.execution_id;
|
|
1655
|
+
}
|
|
1601
1656
|
return data;
|
|
1602
1657
|
}
|
|
1603
1658
|
serialize(w) {
|
|
@@ -1646,6 +1701,8 @@ var testsystem3;
|
|
|
1646
1701
|
writer.writeRepeatedMessage(19, this.test_cases, (item) => item.serialize(writer));
|
|
1647
1702
|
if (this.sub_suites.length)
|
|
1648
1703
|
writer.writeRepeatedMessage(20, this.sub_suites, (item) => item.serialize(writer));
|
|
1704
|
+
if (this.execution_id.length)
|
|
1705
|
+
writer.writeString(21, this.execution_id);
|
|
1649
1706
|
if (!w)
|
|
1650
1707
|
return writer.getResultBuffer();
|
|
1651
1708
|
}
|
|
@@ -1715,6 +1772,9 @@ var testsystem3;
|
|
|
1715
1772
|
case 20:
|
|
1716
1773
|
reader.readMessage(message.sub_suites, () => pb_15.Message.addToRepeatedWrapperField(message, 20, _TestSuiteRun.deserialize(reader), _TestSuiteRun));
|
|
1717
1774
|
break;
|
|
1775
|
+
case 21:
|
|
1776
|
+
message.execution_id = reader.readString();
|
|
1777
|
+
break;
|
|
1718
1778
|
default:
|
|
1719
1779
|
reader.skipField();
|
|
1720
1780
|
}
|
|
@@ -2035,6 +2095,9 @@ var testsystem4;
|
|
|
2035
2095
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2036
2096
|
this.retry_index = data.retry_index;
|
|
2037
2097
|
}
|
|
2098
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2099
|
+
this.execution_id = data.execution_id;
|
|
2100
|
+
}
|
|
2038
2101
|
}
|
|
2039
2102
|
}
|
|
2040
2103
|
get test_id() {
|
|
@@ -2082,6 +2145,12 @@ var testsystem4;
|
|
|
2082
2145
|
set retry_index(value) {
|
|
2083
2146
|
pb_16.Message.setField(this, 7, value);
|
|
2084
2147
|
}
|
|
2148
|
+
get execution_id() {
|
|
2149
|
+
return pb_16.Message.getFieldWithDefault(this, 8, "");
|
|
2150
|
+
}
|
|
2151
|
+
set execution_id(value) {
|
|
2152
|
+
pb_16.Message.setField(this, 8, value);
|
|
2153
|
+
}
|
|
2085
2154
|
static fromObject(data) {
|
|
2086
2155
|
const message = new _TestFailureEventRequest({});
|
|
2087
2156
|
if (data.test_id != null) {
|
|
@@ -2105,6 +2174,9 @@ var testsystem4;
|
|
|
2105
2174
|
if (data.retry_index != null) {
|
|
2106
2175
|
message.retry_index = data.retry_index;
|
|
2107
2176
|
}
|
|
2177
|
+
if (data.execution_id != null) {
|
|
2178
|
+
message.execution_id = data.execution_id;
|
|
2179
|
+
}
|
|
2108
2180
|
return message;
|
|
2109
2181
|
}
|
|
2110
2182
|
toObject() {
|
|
@@ -2130,6 +2202,9 @@ var testsystem4;
|
|
|
2130
2202
|
if (this.retry_index != null) {
|
|
2131
2203
|
data.retry_index = this.retry_index;
|
|
2132
2204
|
}
|
|
2205
|
+
if (this.execution_id != null) {
|
|
2206
|
+
data.execution_id = this.execution_id;
|
|
2207
|
+
}
|
|
2133
2208
|
return data;
|
|
2134
2209
|
}
|
|
2135
2210
|
serialize(w) {
|
|
@@ -2148,6 +2223,8 @@ var testsystem4;
|
|
|
2148
2223
|
writer.writeString(6, this.run_id);
|
|
2149
2224
|
if (this.retry_index != 0)
|
|
2150
2225
|
writer.writeInt32(7, this.retry_index);
|
|
2226
|
+
if (this.execution_id.length)
|
|
2227
|
+
writer.writeString(8, this.execution_id);
|
|
2151
2228
|
if (!w)
|
|
2152
2229
|
return writer.getResultBuffer();
|
|
2153
2230
|
}
|
|
@@ -2178,6 +2255,9 @@ var testsystem4;
|
|
|
2178
2255
|
case 7:
|
|
2179
2256
|
message.retry_index = reader.readInt32();
|
|
2180
2257
|
break;
|
|
2258
|
+
case 8:
|
|
2259
|
+
message.execution_id = reader.readString();
|
|
2260
|
+
break;
|
|
2181
2261
|
default:
|
|
2182
2262
|
reader.skipField();
|
|
2183
2263
|
}
|
|
@@ -2221,6 +2301,9 @@ var testsystem4;
|
|
|
2221
2301
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2222
2302
|
this.retry_index = data.retry_index;
|
|
2223
2303
|
}
|
|
2304
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2305
|
+
this.execution_id = data.execution_id;
|
|
2306
|
+
}
|
|
2224
2307
|
}
|
|
2225
2308
|
}
|
|
2226
2309
|
get test_id() {
|
|
@@ -2268,6 +2351,12 @@ var testsystem4;
|
|
|
2268
2351
|
set retry_index(value) {
|
|
2269
2352
|
pb_16.Message.setField(this, 7, value);
|
|
2270
2353
|
}
|
|
2354
|
+
get execution_id() {
|
|
2355
|
+
return pb_16.Message.getFieldWithDefault(this, 8, "");
|
|
2356
|
+
}
|
|
2357
|
+
set execution_id(value) {
|
|
2358
|
+
pb_16.Message.setField(this, 8, value);
|
|
2359
|
+
}
|
|
2271
2360
|
static fromObject(data) {
|
|
2272
2361
|
const message = new _TestErrorEventRequest({});
|
|
2273
2362
|
if (data.test_id != null) {
|
|
@@ -2291,6 +2380,9 @@ var testsystem4;
|
|
|
2291
2380
|
if (data.retry_index != null) {
|
|
2292
2381
|
message.retry_index = data.retry_index;
|
|
2293
2382
|
}
|
|
2383
|
+
if (data.execution_id != null) {
|
|
2384
|
+
message.execution_id = data.execution_id;
|
|
2385
|
+
}
|
|
2294
2386
|
return message;
|
|
2295
2387
|
}
|
|
2296
2388
|
toObject() {
|
|
@@ -2316,6 +2408,9 @@ var testsystem4;
|
|
|
2316
2408
|
if (this.retry_index != null) {
|
|
2317
2409
|
data.retry_index = this.retry_index;
|
|
2318
2410
|
}
|
|
2411
|
+
if (this.execution_id != null) {
|
|
2412
|
+
data.execution_id = this.execution_id;
|
|
2413
|
+
}
|
|
2319
2414
|
return data;
|
|
2320
2415
|
}
|
|
2321
2416
|
serialize(w) {
|
|
@@ -2334,6 +2429,8 @@ var testsystem4;
|
|
|
2334
2429
|
writer.writeString(6, this.run_id);
|
|
2335
2430
|
if (this.retry_index != 0)
|
|
2336
2431
|
writer.writeInt32(7, this.retry_index);
|
|
2432
|
+
if (this.execution_id.length)
|
|
2433
|
+
writer.writeString(8, this.execution_id);
|
|
2337
2434
|
if (!w)
|
|
2338
2435
|
return writer.getResultBuffer();
|
|
2339
2436
|
}
|
|
@@ -2364,6 +2461,9 @@ var testsystem4;
|
|
|
2364
2461
|
case 7:
|
|
2365
2462
|
message.retry_index = reader.readInt32();
|
|
2366
2463
|
break;
|
|
2464
|
+
case 8:
|
|
2465
|
+
message.execution_id = reader.readString();
|
|
2466
|
+
break;
|
|
2367
2467
|
default:
|
|
2368
2468
|
reader.skipField();
|
|
2369
2469
|
}
|
|
@@ -2404,6 +2504,9 @@ var testsystem4;
|
|
|
2404
2504
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2405
2505
|
this.retry_index = data.retry_index;
|
|
2406
2506
|
}
|
|
2507
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2508
|
+
this.execution_id = data.execution_id;
|
|
2509
|
+
}
|
|
2407
2510
|
}
|
|
2408
2511
|
}
|
|
2409
2512
|
get test_id() {
|
|
@@ -2445,6 +2548,12 @@ var testsystem4;
|
|
|
2445
2548
|
set retry_index(value) {
|
|
2446
2549
|
pb_16.Message.setField(this, 6, value);
|
|
2447
2550
|
}
|
|
2551
|
+
get execution_id() {
|
|
2552
|
+
return pb_16.Message.getFieldWithDefault(this, 7, "");
|
|
2553
|
+
}
|
|
2554
|
+
set execution_id(value) {
|
|
2555
|
+
pb_16.Message.setField(this, 7, value);
|
|
2556
|
+
}
|
|
2448
2557
|
static fromObject(data) {
|
|
2449
2558
|
const message = new _StdErrorEventRequest({});
|
|
2450
2559
|
if (data.test_id != null) {
|
|
@@ -2465,6 +2574,9 @@ var testsystem4;
|
|
|
2465
2574
|
if (data.retry_index != null) {
|
|
2466
2575
|
message.retry_index = data.retry_index;
|
|
2467
2576
|
}
|
|
2577
|
+
if (data.execution_id != null) {
|
|
2578
|
+
message.execution_id = data.execution_id;
|
|
2579
|
+
}
|
|
2468
2580
|
return message;
|
|
2469
2581
|
}
|
|
2470
2582
|
toObject() {
|
|
@@ -2487,6 +2599,9 @@ var testsystem4;
|
|
|
2487
2599
|
if (this.retry_index != null) {
|
|
2488
2600
|
data.retry_index = this.retry_index;
|
|
2489
2601
|
}
|
|
2602
|
+
if (this.execution_id != null) {
|
|
2603
|
+
data.execution_id = this.execution_id;
|
|
2604
|
+
}
|
|
2490
2605
|
return data;
|
|
2491
2606
|
}
|
|
2492
2607
|
serialize(w) {
|
|
@@ -2503,6 +2618,8 @@ var testsystem4;
|
|
|
2503
2618
|
writer.writeString(5, this.run_id);
|
|
2504
2619
|
if (this.retry_index != 0)
|
|
2505
2620
|
writer.writeInt32(6, this.retry_index);
|
|
2621
|
+
if (this.execution_id.length)
|
|
2622
|
+
writer.writeString(7, this.execution_id);
|
|
2506
2623
|
if (!w)
|
|
2507
2624
|
return writer.getResultBuffer();
|
|
2508
2625
|
}
|
|
@@ -2530,6 +2647,9 @@ var testsystem4;
|
|
|
2530
2647
|
case 6:
|
|
2531
2648
|
message.retry_index = reader.readInt32();
|
|
2532
2649
|
break;
|
|
2650
|
+
case 7:
|
|
2651
|
+
message.execution_id = reader.readString();
|
|
2652
|
+
break;
|
|
2533
2653
|
default:
|
|
2534
2654
|
reader.skipField();
|
|
2535
2655
|
}
|
|
@@ -2570,6 +2690,9 @@ var testsystem4;
|
|
|
2570
2690
|
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2571
2691
|
this.retry_index = data.retry_index;
|
|
2572
2692
|
}
|
|
2693
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
2694
|
+
this.execution_id = data.execution_id;
|
|
2695
|
+
}
|
|
2573
2696
|
}
|
|
2574
2697
|
}
|
|
2575
2698
|
get test_id() {
|
|
@@ -2611,6 +2734,12 @@ var testsystem4;
|
|
|
2611
2734
|
set retry_index(value) {
|
|
2612
2735
|
pb_16.Message.setField(this, 6, value);
|
|
2613
2736
|
}
|
|
2737
|
+
get execution_id() {
|
|
2738
|
+
return pb_16.Message.getFieldWithDefault(this, 7, "");
|
|
2739
|
+
}
|
|
2740
|
+
set execution_id(value) {
|
|
2741
|
+
pb_16.Message.setField(this, 7, value);
|
|
2742
|
+
}
|
|
2614
2743
|
static fromObject(data) {
|
|
2615
2744
|
const message = new _StdOutputEventRequest({});
|
|
2616
2745
|
if (data.test_id != null) {
|
|
@@ -2631,6 +2760,9 @@ var testsystem4;
|
|
|
2631
2760
|
if (data.retry_index != null) {
|
|
2632
2761
|
message.retry_index = data.retry_index;
|
|
2633
2762
|
}
|
|
2763
|
+
if (data.execution_id != null) {
|
|
2764
|
+
message.execution_id = data.execution_id;
|
|
2765
|
+
}
|
|
2634
2766
|
return message;
|
|
2635
2767
|
}
|
|
2636
2768
|
toObject() {
|
|
@@ -2653,6 +2785,9 @@ var testsystem4;
|
|
|
2653
2785
|
if (this.retry_index != null) {
|
|
2654
2786
|
data.retry_index = this.retry_index;
|
|
2655
2787
|
}
|
|
2788
|
+
if (this.execution_id != null) {
|
|
2789
|
+
data.execution_id = this.execution_id;
|
|
2790
|
+
}
|
|
2656
2791
|
return data;
|
|
2657
2792
|
}
|
|
2658
2793
|
serialize(w) {
|
|
@@ -2669,6 +2804,8 @@ var testsystem4;
|
|
|
2669
2804
|
writer.writeString(5, this.run_id);
|
|
2670
2805
|
if (this.retry_index != 0)
|
|
2671
2806
|
writer.writeInt32(6, this.retry_index);
|
|
2807
|
+
if (this.execution_id.length)
|
|
2808
|
+
writer.writeString(7, this.execution_id);
|
|
2672
2809
|
if (!w)
|
|
2673
2810
|
return writer.getResultBuffer();
|
|
2674
2811
|
}
|
|
@@ -2696,6 +2833,9 @@ var testsystem4;
|
|
|
2696
2833
|
case 6:
|
|
2697
2834
|
message.retry_index = reader.readInt32();
|
|
2698
2835
|
break;
|
|
2836
|
+
case 7:
|
|
2837
|
+
message.execution_id = reader.readString();
|
|
2838
|
+
break;
|
|
2699
2839
|
default:
|
|
2700
2840
|
reader.skipField();
|
|
2701
2841
|
}
|
|
@@ -2951,6 +3091,9 @@ var testsystem4;
|
|
|
2951
3091
|
if ("metadata" in data && data.metadata != void 0) {
|
|
2952
3092
|
this.metadata = data.metadata;
|
|
2953
3093
|
}
|
|
3094
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
3095
|
+
this.execution_id = data.execution_id;
|
|
3096
|
+
}
|
|
2954
3097
|
}
|
|
2955
3098
|
if (!this.metadata)
|
|
2956
3099
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -2985,6 +3128,12 @@ var testsystem4;
|
|
|
2985
3128
|
set metadata(value) {
|
|
2986
3129
|
pb_16.Message.setField(this, 5, value);
|
|
2987
3130
|
}
|
|
3131
|
+
get execution_id() {
|
|
3132
|
+
return pb_16.Message.getFieldWithDefault(this, 6, "");
|
|
3133
|
+
}
|
|
3134
|
+
set execution_id(value) {
|
|
3135
|
+
pb_16.Message.setField(this, 6, value);
|
|
3136
|
+
}
|
|
2988
3137
|
static fromObject(data) {
|
|
2989
3138
|
const message = new _ReportRunStartEventRequest({});
|
|
2990
3139
|
if (data.run_id != null) {
|
|
@@ -3002,6 +3151,9 @@ var testsystem4;
|
|
|
3002
3151
|
if (typeof data.metadata == "object") {
|
|
3003
3152
|
message.metadata = new Map(Object.entries(data.metadata));
|
|
3004
3153
|
}
|
|
3154
|
+
if (data.execution_id != null) {
|
|
3155
|
+
message.execution_id = data.execution_id;
|
|
3156
|
+
}
|
|
3005
3157
|
return message;
|
|
3006
3158
|
}
|
|
3007
3159
|
toObject() {
|
|
@@ -3021,6 +3173,9 @@ var testsystem4;
|
|
|
3021
3173
|
if (this.metadata != null) {
|
|
3022
3174
|
data.metadata = Object.fromEntries(this.metadata);
|
|
3023
3175
|
}
|
|
3176
|
+
if (this.execution_id != null) {
|
|
3177
|
+
data.execution_id = this.execution_id;
|
|
3178
|
+
}
|
|
3024
3179
|
return data;
|
|
3025
3180
|
}
|
|
3026
3181
|
serialize(w) {
|
|
@@ -3039,6 +3194,8 @@ var testsystem4;
|
|
|
3039
3194
|
writer.writeString(2, value);
|
|
3040
3195
|
});
|
|
3041
3196
|
}
|
|
3197
|
+
if (this.execution_id.length)
|
|
3198
|
+
writer.writeString(6, this.execution_id);
|
|
3042
3199
|
if (!w)
|
|
3043
3200
|
return writer.getResultBuffer();
|
|
3044
3201
|
}
|
|
@@ -3063,6 +3220,9 @@ var testsystem4;
|
|
|
3063
3220
|
case 5:
|
|
3064
3221
|
reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
|
|
3065
3222
|
break;
|
|
3223
|
+
case 6:
|
|
3224
|
+
message.execution_id = reader.readString();
|
|
3225
|
+
break;
|
|
3066
3226
|
default:
|
|
3067
3227
|
reader.skipField();
|
|
3068
3228
|
}
|
|
@@ -3100,6 +3260,9 @@ var testsystem4;
|
|
|
3100
3260
|
if ("metadata" in data && data.metadata != void 0) {
|
|
3101
3261
|
this.metadata = data.metadata;
|
|
3102
3262
|
}
|
|
3263
|
+
if ("execution_id" in data && data.execution_id != void 0) {
|
|
3264
|
+
this.execution_id = data.execution_id;
|
|
3265
|
+
}
|
|
3103
3266
|
}
|
|
3104
3267
|
if (!this.metadata)
|
|
3105
3268
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -3140,6 +3303,12 @@ var testsystem4;
|
|
|
3140
3303
|
set metadata(value) {
|
|
3141
3304
|
pb_16.Message.setField(this, 5, value);
|
|
3142
3305
|
}
|
|
3306
|
+
get execution_id() {
|
|
3307
|
+
return pb_16.Message.getFieldWithDefault(this, 6, "");
|
|
3308
|
+
}
|
|
3309
|
+
set execution_id(value) {
|
|
3310
|
+
pb_16.Message.setField(this, 6, value);
|
|
3311
|
+
}
|
|
3143
3312
|
static fromObject(data) {
|
|
3144
3313
|
const message = new _TestRunEndEventRequest({});
|
|
3145
3314
|
if (data.run_id != null) {
|
|
@@ -3157,6 +3326,9 @@ var testsystem4;
|
|
|
3157
3326
|
if (typeof data.metadata == "object") {
|
|
3158
3327
|
message.metadata = new Map(Object.entries(data.metadata));
|
|
3159
3328
|
}
|
|
3329
|
+
if (data.execution_id != null) {
|
|
3330
|
+
message.execution_id = data.execution_id;
|
|
3331
|
+
}
|
|
3160
3332
|
return message;
|
|
3161
3333
|
}
|
|
3162
3334
|
toObject() {
|
|
@@ -3176,6 +3348,9 @@ var testsystem4;
|
|
|
3176
3348
|
if (this.metadata != null) {
|
|
3177
3349
|
data.metadata = Object.fromEntries(this.metadata);
|
|
3178
3350
|
}
|
|
3351
|
+
if (this.execution_id != null) {
|
|
3352
|
+
data.execution_id = this.execution_id;
|
|
3353
|
+
}
|
|
3179
3354
|
return data;
|
|
3180
3355
|
}
|
|
3181
3356
|
serialize(w) {
|
|
@@ -3194,6 +3369,8 @@ var testsystem4;
|
|
|
3194
3369
|
writer.writeString(2, value);
|
|
3195
3370
|
});
|
|
3196
3371
|
}
|
|
3372
|
+
if (this.execution_id.length)
|
|
3373
|
+
writer.writeString(6, this.execution_id);
|
|
3197
3374
|
if (!w)
|
|
3198
3375
|
return writer.getResultBuffer();
|
|
3199
3376
|
}
|
|
@@ -3218,6 +3395,9 @@ var testsystem4;
|
|
|
3218
3395
|
case 5:
|
|
3219
3396
|
reader.readMessage(message, () => pb_16.Map.deserializeBinary(message.metadata, reader, reader.readString, reader.readString));
|
|
3220
3397
|
break;
|
|
3398
|
+
case 6:
|
|
3399
|
+
message.execution_id = reader.readString();
|
|
3400
|
+
break;
|
|
3221
3401
|
default:
|
|
3222
3402
|
reader.skipField();
|
|
3223
3403
|
}
|