@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
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import {
|
|
2
2
|
v1_exports
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-X3JXEIL7.mjs";
|
|
4
4
|
import "../chunk-WYXRRQPZ.mjs";
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-
|
|
9
|
-
import "../chunk-
|
|
10
|
-
import "../chunk-
|
|
5
|
+
import "../chunk-XWJCF6BO.mjs";
|
|
6
|
+
import "../chunk-LQLPOAWU.mjs";
|
|
7
|
+
import "../chunk-WRPZRLMU.mjs";
|
|
8
|
+
import "../chunk-Q4ZGL32L.mjs";
|
|
9
|
+
import "../chunk-L6UHOMOP.mjs";
|
|
10
|
+
import "../chunk-6LZLCU56.mjs";
|
|
11
11
|
import "../chunk-YUDCZY2W.mjs";
|
|
12
12
|
export {
|
|
13
13
|
v1_exports as v1
|
|
@@ -892,6 +892,9 @@ var testsystem2;
|
|
|
892
892
|
if ("category" in data && data.category != void 0) {
|
|
893
893
|
this.category = data.category;
|
|
894
894
|
}
|
|
895
|
+
if ("retry_index" in data && data.retry_index != void 0) {
|
|
896
|
+
this.retry_index = data.retry_index;
|
|
897
|
+
}
|
|
895
898
|
}
|
|
896
899
|
if (!this.metadata)
|
|
897
900
|
this.metadata = /* @__PURE__ */ new Map();
|
|
@@ -998,6 +1001,12 @@ var testsystem2;
|
|
|
998
1001
|
set category(value) {
|
|
999
1002
|
pb_14.Message.setField(this, 16, value);
|
|
1000
1003
|
}
|
|
1004
|
+
get retry_index() {
|
|
1005
|
+
return pb_14.Message.getFieldWithDefault(this, 17, 0);
|
|
1006
|
+
}
|
|
1007
|
+
set retry_index(value) {
|
|
1008
|
+
pb_14.Message.setField(this, 17, value);
|
|
1009
|
+
}
|
|
1001
1010
|
static fromObject(data) {
|
|
1002
1011
|
const message = new _StepRun({});
|
|
1003
1012
|
if (data.id != null) {
|
|
@@ -1048,6 +1057,9 @@ var testsystem2;
|
|
|
1048
1057
|
if (data.category != null) {
|
|
1049
1058
|
message.category = data.category;
|
|
1050
1059
|
}
|
|
1060
|
+
if (data.retry_index != null) {
|
|
1061
|
+
message.retry_index = data.retry_index;
|
|
1062
|
+
}
|
|
1051
1063
|
return message;
|
|
1052
1064
|
}
|
|
1053
1065
|
toObject() {
|
|
@@ -1100,6 +1112,9 @@ var testsystem2;
|
|
|
1100
1112
|
if (this.category != null) {
|
|
1101
1113
|
data.category = this.category;
|
|
1102
1114
|
}
|
|
1115
|
+
if (this.retry_index != null) {
|
|
1116
|
+
data.retry_index = this.retry_index;
|
|
1117
|
+
}
|
|
1103
1118
|
return data;
|
|
1104
1119
|
}
|
|
1105
1120
|
serialize(w) {
|
|
@@ -1140,6 +1155,8 @@ var testsystem2;
|
|
|
1140
1155
|
writer.writeString(15, this.location);
|
|
1141
1156
|
if (this.category.length)
|
|
1142
1157
|
writer.writeString(16, this.category);
|
|
1158
|
+
if (this.retry_index != 0)
|
|
1159
|
+
writer.writeInt32(17, this.retry_index);
|
|
1143
1160
|
if (!w)
|
|
1144
1161
|
return writer.getResultBuffer();
|
|
1145
1162
|
}
|
|
@@ -1197,6 +1214,9 @@ var testsystem2;
|
|
|
1197
1214
|
case 16:
|
|
1198
1215
|
message.category = reader.readString();
|
|
1199
1216
|
break;
|
|
1217
|
+
case 17:
|
|
1218
|
+
message.retry_index = reader.readInt32();
|
|
1219
|
+
break;
|
|
1200
1220
|
default:
|
|
1201
1221
|
reader.skipField();
|
|
1202
1222
|
}
|