@stanterprise/protobuf 0.0.19 → 0.0.21
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-IO237NIP.mjs → chunk-6LZLCU56.mjs} +21 -1
- package/dist/chunk-6LZLCU56.mjs.map +1 -0
- package/dist/{chunk-LT6VIEMZ.mjs → chunk-L6UHOMOP.mjs} +82 -2
- package/dist/chunk-L6UHOMOP.mjs.map +1 -0
- package/dist/{chunk-RZDGHCWW.mjs → chunk-LQLPOAWU.mjs} +2 -2
- package/dist/{chunk-4KEOGRTV.mjs → chunk-Q4ZGL32L.mjs} +2 -2
- package/dist/{chunk-S22XQJQE.mjs → chunk-WRPZRLMU.mjs} +2 -2
- package/dist/{chunk-VKI55KY6.mjs → chunk-X3JXEIL7.mjs} +4 -4
- package/dist/{chunk-YFUPSN57.mjs → chunk-XWJCF6BO.mjs} +2 -2
- package/dist/index.js +100 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/lib/testsystem/v1/entities/test_case.d.ts +5 -0
- package/dist/lib/testsystem/v1/entities/test_case.d.ts.map +1 -1
- package/dist/lib/testsystem/v1/events/events.d.ts +20 -0
- package/dist/lib/testsystem/v1/events/events.d.ts.map +1 -1
- package/dist/testsystem/index.js +100 -0
- package/dist/testsystem/index.js.map +1 -1
- package/dist/testsystem/index.mjs +7 -7
- package/dist/testsystem/v1/entities/index.js +20 -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 +100 -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 +100 -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 +100 -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 +23 -0
- package/lib/testsystem/v1/events/events.ts +92 -0
- package/package.json +1 -1
- package/dist/chunk-IO237NIP.mjs.map +0 -1
- package/dist/chunk-LT6VIEMZ.mjs.map +0 -1
- /package/dist/{chunk-RZDGHCWW.mjs.map → chunk-LQLPOAWU.mjs.map} +0 -0
- /package/dist/{chunk-4KEOGRTV.mjs.map → chunk-Q4ZGL32L.mjs.map} +0 -0
- /package/dist/{chunk-S22XQJQE.mjs.map → chunk-WRPZRLMU.mjs.map} +0 -0
- /package/dist/{chunk-VKI55KY6.mjs.map → chunk-X3JXEIL7.mjs.map} +0 -0
- /package/dist/{chunk-YFUPSN57.mjs.map → chunk-XWJCF6BO.mjs.map} +0 -0
|
@@ -901,6 +901,9 @@ var testsystem2;
|
|
|
901
901
|
if ("category" in data && data.category != void 0) {
|
|
902
902
|
this.category = data.category;
|
|
903
903
|
}
|
|
904
|
+
if ("retry_index" in data && data.retry_index != void 0) {
|
|
905
|
+
this.retry_index = data.retry_index;
|
|
906
|
+
}
|
|
904
907
|
}
|
|
905
908
|
if (!this.metadata)
|
|
906
909
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -1007,6 +1010,12 @@ var testsystem2;
|
|
|
1007
1010
|
set category(value) {
|
|
1008
1011
|
pb_14.Message.setField(this, 16, value);
|
|
1009
1012
|
}
|
|
1013
|
+
get retry_index() {
|
|
1014
|
+
return pb_14.Message.getFieldWithDefault(this, 17, 0);
|
|
1015
|
+
}
|
|
1016
|
+
set retry_index(value) {
|
|
1017
|
+
pb_14.Message.setField(this, 17, value);
|
|
1018
|
+
}
|
|
1010
1019
|
static fromObject(data) {
|
|
1011
1020
|
const message = new _StepRun({});
|
|
1012
1021
|
if (data.id != null) {
|
|
@@ -1057,6 +1066,9 @@ var testsystem2;
|
|
|
1057
1066
|
if (data.category != null) {
|
|
1058
1067
|
message.category = data.category;
|
|
1059
1068
|
}
|
|
1069
|
+
if (data.retry_index != null) {
|
|
1070
|
+
message.retry_index = data.retry_index;
|
|
1071
|
+
}
|
|
1060
1072
|
return message;
|
|
1061
1073
|
}
|
|
1062
1074
|
toObject() {
|
|
@@ -1109,6 +1121,9 @@ var testsystem2;
|
|
|
1109
1121
|
if (this.category != null) {
|
|
1110
1122
|
data.category = this.category;
|
|
1111
1123
|
}
|
|
1124
|
+
if (this.retry_index != null) {
|
|
1125
|
+
data.retry_index = this.retry_index;
|
|
1126
|
+
}
|
|
1112
1127
|
return data;
|
|
1113
1128
|
}
|
|
1114
1129
|
serialize(w) {
|
|
@@ -1149,6 +1164,8 @@ var testsystem2;
|
|
|
1149
1164
|
writer.writeString(15, this.location);
|
|
1150
1165
|
if (this.category.length)
|
|
1151
1166
|
writer.writeString(16, this.category);
|
|
1167
|
+
if (this.retry_index != 0)
|
|
1168
|
+
writer.writeInt32(17, this.retry_index);
|
|
1152
1169
|
if (!w)
|
|
1153
1170
|
return writer.getResultBuffer();
|
|
1154
1171
|
}
|
|
@@ -1206,6 +1223,9 @@ var testsystem2;
|
|
|
1206
1223
|
case 16:
|
|
1207
1224
|
message.category = reader.readString();
|
|
1208
1225
|
break;
|
|
1226
|
+
case 17:
|
|
1227
|
+
message.retry_index = reader.readInt32();
|
|
1228
|
+
break;
|
|
1209
1229
|
default:
|
|
1210
1230
|
reader.skipField();
|
|
1211
1231
|
}
|
|
@@ -2001,6 +2021,9 @@ var testsystem4;
|
|
|
2001
2021
|
if ("run_id" in data && data.run_id != void 0) {
|
|
2002
2022
|
this.run_id = data.run_id;
|
|
2003
2023
|
}
|
|
2024
|
+
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2025
|
+
this.retry_index = data.retry_index;
|
|
2026
|
+
}
|
|
2004
2027
|
}
|
|
2005
2028
|
}
|
|
2006
2029
|
get test_id() {
|
|
@@ -2042,6 +2065,12 @@ var testsystem4;
|
|
|
2042
2065
|
set run_id(value) {
|
|
2043
2066
|
pb_16.Message.setField(this, 6, value);
|
|
2044
2067
|
}
|
|
2068
|
+
get retry_index() {
|
|
2069
|
+
return pb_16.Message.getFieldWithDefault(this, 7, 0);
|
|
2070
|
+
}
|
|
2071
|
+
set retry_index(value) {
|
|
2072
|
+
pb_16.Message.setField(this, 7, value);
|
|
2073
|
+
}
|
|
2045
2074
|
static fromObject(data) {
|
|
2046
2075
|
const message = new _TestFailureEventRequest({});
|
|
2047
2076
|
if (data.test_id != null) {
|
|
@@ -2062,6 +2091,9 @@ var testsystem4;
|
|
|
2062
2091
|
if (data.run_id != null) {
|
|
2063
2092
|
message.run_id = data.run_id;
|
|
2064
2093
|
}
|
|
2094
|
+
if (data.retry_index != null) {
|
|
2095
|
+
message.retry_index = data.retry_index;
|
|
2096
|
+
}
|
|
2065
2097
|
return message;
|
|
2066
2098
|
}
|
|
2067
2099
|
toObject() {
|
|
@@ -2084,6 +2116,9 @@ var testsystem4;
|
|
|
2084
2116
|
if (this.run_id != null) {
|
|
2085
2117
|
data.run_id = this.run_id;
|
|
2086
2118
|
}
|
|
2119
|
+
if (this.retry_index != null) {
|
|
2120
|
+
data.retry_index = this.retry_index;
|
|
2121
|
+
}
|
|
2087
2122
|
return data;
|
|
2088
2123
|
}
|
|
2089
2124
|
serialize(w) {
|
|
@@ -2100,6 +2135,8 @@ var testsystem4;
|
|
|
2100
2135
|
writer.writeRepeatedMessage(5, this.attachments, (item) => item.serialize(writer));
|
|
2101
2136
|
if (this.run_id.length)
|
|
2102
2137
|
writer.writeString(6, this.run_id);
|
|
2138
|
+
if (this.retry_index != 0)
|
|
2139
|
+
writer.writeInt32(7, this.retry_index);
|
|
2103
2140
|
if (!w)
|
|
2104
2141
|
return writer.getResultBuffer();
|
|
2105
2142
|
}
|
|
@@ -2127,6 +2164,9 @@ var testsystem4;
|
|
|
2127
2164
|
case 6:
|
|
2128
2165
|
message.run_id = reader.readString();
|
|
2129
2166
|
break;
|
|
2167
|
+
case 7:
|
|
2168
|
+
message.retry_index = reader.readInt32();
|
|
2169
|
+
break;
|
|
2130
2170
|
default:
|
|
2131
2171
|
reader.skipField();
|
|
2132
2172
|
}
|
|
@@ -2167,6 +2207,9 @@ var testsystem4;
|
|
|
2167
2207
|
if ("run_id" in data && data.run_id != void 0) {
|
|
2168
2208
|
this.run_id = data.run_id;
|
|
2169
2209
|
}
|
|
2210
|
+
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2211
|
+
this.retry_index = data.retry_index;
|
|
2212
|
+
}
|
|
2170
2213
|
}
|
|
2171
2214
|
}
|
|
2172
2215
|
get test_id() {
|
|
@@ -2208,6 +2251,12 @@ var testsystem4;
|
|
|
2208
2251
|
set run_id(value) {
|
|
2209
2252
|
pb_16.Message.setField(this, 6, value);
|
|
2210
2253
|
}
|
|
2254
|
+
get retry_index() {
|
|
2255
|
+
return pb_16.Message.getFieldWithDefault(this, 7, 0);
|
|
2256
|
+
}
|
|
2257
|
+
set retry_index(value) {
|
|
2258
|
+
pb_16.Message.setField(this, 7, value);
|
|
2259
|
+
}
|
|
2211
2260
|
static fromObject(data) {
|
|
2212
2261
|
const message = new _TestErrorEventRequest({});
|
|
2213
2262
|
if (data.test_id != null) {
|
|
@@ -2228,6 +2277,9 @@ var testsystem4;
|
|
|
2228
2277
|
if (data.run_id != null) {
|
|
2229
2278
|
message.run_id = data.run_id;
|
|
2230
2279
|
}
|
|
2280
|
+
if (data.retry_index != null) {
|
|
2281
|
+
message.retry_index = data.retry_index;
|
|
2282
|
+
}
|
|
2231
2283
|
return message;
|
|
2232
2284
|
}
|
|
2233
2285
|
toObject() {
|
|
@@ -2250,6 +2302,9 @@ var testsystem4;
|
|
|
2250
2302
|
if (this.run_id != null) {
|
|
2251
2303
|
data.run_id = this.run_id;
|
|
2252
2304
|
}
|
|
2305
|
+
if (this.retry_index != null) {
|
|
2306
|
+
data.retry_index = this.retry_index;
|
|
2307
|
+
}
|
|
2253
2308
|
return data;
|
|
2254
2309
|
}
|
|
2255
2310
|
serialize(w) {
|
|
@@ -2266,6 +2321,8 @@ var testsystem4;
|
|
|
2266
2321
|
writer.writeRepeatedMessage(5, this.attachments, (item) => item.serialize(writer));
|
|
2267
2322
|
if (this.run_id.length)
|
|
2268
2323
|
writer.writeString(6, this.run_id);
|
|
2324
|
+
if (this.retry_index != 0)
|
|
2325
|
+
writer.writeInt32(7, this.retry_index);
|
|
2269
2326
|
if (!w)
|
|
2270
2327
|
return writer.getResultBuffer();
|
|
2271
2328
|
}
|
|
@@ -2293,6 +2350,9 @@ var testsystem4;
|
|
|
2293
2350
|
case 6:
|
|
2294
2351
|
message.run_id = reader.readString();
|
|
2295
2352
|
break;
|
|
2353
|
+
case 7:
|
|
2354
|
+
message.retry_index = reader.readInt32();
|
|
2355
|
+
break;
|
|
2296
2356
|
default:
|
|
2297
2357
|
reader.skipField();
|
|
2298
2358
|
}
|
|
@@ -2330,6 +2390,9 @@ var testsystem4;
|
|
|
2330
2390
|
if ("run_id" in data && data.run_id != void 0) {
|
|
2331
2391
|
this.run_id = data.run_id;
|
|
2332
2392
|
}
|
|
2393
|
+
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2394
|
+
this.retry_index = data.retry_index;
|
|
2395
|
+
}
|
|
2333
2396
|
}
|
|
2334
2397
|
}
|
|
2335
2398
|
get test_id() {
|
|
@@ -2365,6 +2428,12 @@ var testsystem4;
|
|
|
2365
2428
|
set run_id(value) {
|
|
2366
2429
|
pb_16.Message.setField(this, 5, value);
|
|
2367
2430
|
}
|
|
2431
|
+
get retry_index() {
|
|
2432
|
+
return pb_16.Message.getFieldWithDefault(this, 6, 0);
|
|
2433
|
+
}
|
|
2434
|
+
set retry_index(value) {
|
|
2435
|
+
pb_16.Message.setField(this, 6, value);
|
|
2436
|
+
}
|
|
2368
2437
|
static fromObject(data) {
|
|
2369
2438
|
const message = new _StdErrorEventRequest({});
|
|
2370
2439
|
if (data.test_id != null) {
|
|
@@ -2382,6 +2451,9 @@ var testsystem4;
|
|
|
2382
2451
|
if (data.run_id != null) {
|
|
2383
2452
|
message.run_id = data.run_id;
|
|
2384
2453
|
}
|
|
2454
|
+
if (data.retry_index != null) {
|
|
2455
|
+
message.retry_index = data.retry_index;
|
|
2456
|
+
}
|
|
2385
2457
|
return message;
|
|
2386
2458
|
}
|
|
2387
2459
|
toObject() {
|
|
@@ -2401,6 +2473,9 @@ var testsystem4;
|
|
|
2401
2473
|
if (this.run_id != null) {
|
|
2402
2474
|
data.run_id = this.run_id;
|
|
2403
2475
|
}
|
|
2476
|
+
if (this.retry_index != null) {
|
|
2477
|
+
data.retry_index = this.retry_index;
|
|
2478
|
+
}
|
|
2404
2479
|
return data;
|
|
2405
2480
|
}
|
|
2406
2481
|
serialize(w) {
|
|
@@ -2415,6 +2490,8 @@ var testsystem4;
|
|
|
2415
2490
|
writer.writeString(4, this.test_case_run_id);
|
|
2416
2491
|
if (this.run_id.length)
|
|
2417
2492
|
writer.writeString(5, this.run_id);
|
|
2493
|
+
if (this.retry_index != 0)
|
|
2494
|
+
writer.writeInt32(6, this.retry_index);
|
|
2418
2495
|
if (!w)
|
|
2419
2496
|
return writer.getResultBuffer();
|
|
2420
2497
|
}
|
|
@@ -2439,6 +2516,9 @@ var testsystem4;
|
|
|
2439
2516
|
case 5:
|
|
2440
2517
|
message.run_id = reader.readString();
|
|
2441
2518
|
break;
|
|
2519
|
+
case 6:
|
|
2520
|
+
message.retry_index = reader.readInt32();
|
|
2521
|
+
break;
|
|
2442
2522
|
default:
|
|
2443
2523
|
reader.skipField();
|
|
2444
2524
|
}
|
|
@@ -2476,6 +2556,9 @@ var testsystem4;
|
|
|
2476
2556
|
if ("run_id" in data && data.run_id != void 0) {
|
|
2477
2557
|
this.run_id = data.run_id;
|
|
2478
2558
|
}
|
|
2559
|
+
if ("retry_index" in data && data.retry_index != void 0) {
|
|
2560
|
+
this.retry_index = data.retry_index;
|
|
2561
|
+
}
|
|
2479
2562
|
}
|
|
2480
2563
|
}
|
|
2481
2564
|
get test_id() {
|
|
@@ -2511,6 +2594,12 @@ var testsystem4;
|
|
|
2511
2594
|
set run_id(value) {
|
|
2512
2595
|
pb_16.Message.setField(this, 5, value);
|
|
2513
2596
|
}
|
|
2597
|
+
get retry_index() {
|
|
2598
|
+
return pb_16.Message.getFieldWithDefault(this, 6, 0);
|
|
2599
|
+
}
|
|
2600
|
+
set retry_index(value) {
|
|
2601
|
+
pb_16.Message.setField(this, 6, value);
|
|
2602
|
+
}
|
|
2514
2603
|
static fromObject(data) {
|
|
2515
2604
|
const message = new _StdOutputEventRequest({});
|
|
2516
2605
|
if (data.test_id != null) {
|
|
@@ -2528,6 +2617,9 @@ var testsystem4;
|
|
|
2528
2617
|
if (data.run_id != null) {
|
|
2529
2618
|
message.run_id = data.run_id;
|
|
2530
2619
|
}
|
|
2620
|
+
if (data.retry_index != null) {
|
|
2621
|
+
message.retry_index = data.retry_index;
|
|
2622
|
+
}
|
|
2531
2623
|
return message;
|
|
2532
2624
|
}
|
|
2533
2625
|
toObject() {
|
|
@@ -2547,6 +2639,9 @@ var testsystem4;
|
|
|
2547
2639
|
if (this.run_id != null) {
|
|
2548
2640
|
data.run_id = this.run_id;
|
|
2549
2641
|
}
|
|
2642
|
+
if (this.retry_index != null) {
|
|
2643
|
+
data.retry_index = this.retry_index;
|
|
2644
|
+
}
|
|
2550
2645
|
return data;
|
|
2551
2646
|
}
|
|
2552
2647
|
serialize(w) {
|
|
@@ -2561,6 +2656,8 @@ var testsystem4;
|
|
|
2561
2656
|
writer.writeString(4, this.test_case_run_id);
|
|
2562
2657
|
if (this.run_id.length)
|
|
2563
2658
|
writer.writeString(5, this.run_id);
|
|
2659
|
+
if (this.retry_index != 0)
|
|
2660
|
+
writer.writeInt32(6, this.retry_index);
|
|
2564
2661
|
if (!w)
|
|
2565
2662
|
return writer.getResultBuffer();
|
|
2566
2663
|
}
|
|
@@ -2585,6 +2682,9 @@ var testsystem4;
|
|
|
2585
2682
|
case 5:
|
|
2586
2683
|
message.run_id = reader.readString();
|
|
2587
2684
|
break;
|
|
2685
|
+
case 6:
|
|
2686
|
+
message.retry_index = reader.readInt32();
|
|
2687
|
+
break;
|
|
2588
2688
|
default:
|
|
2589
2689
|
reader.skipField();
|
|
2590
2690
|
}
|