@stanterprise/protobuf 0.0.19 → 0.0.20

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.
Files changed (37) hide show
  1. package/dist/{chunk-S22XQJQE.mjs → chunk-4SR4H5H3.mjs} +2 -2
  2. package/dist/{chunk-IO237NIP.mjs → chunk-6LZLCU56.mjs} +21 -1
  3. package/dist/chunk-6LZLCU56.mjs.map +1 -0
  4. package/dist/{chunk-VKI55KY6.mjs → chunk-7ZKHPRD4.mjs} +4 -4
  5. package/dist/{chunk-4KEOGRTV.mjs → chunk-AEDC4CB5.mjs} +2 -2
  6. package/dist/{chunk-RZDGHCWW.mjs → chunk-B3U6NKBI.mjs} +2 -2
  7. package/dist/{chunk-LT6VIEMZ.mjs → chunk-ULRGJR5R.mjs} +2 -2
  8. package/dist/{chunk-YFUPSN57.mjs → chunk-XWJCF6BO.mjs} +2 -2
  9. package/dist/index.js +20 -0
  10. package/dist/index.js.map +1 -1
  11. package/dist/index.mjs +3 -3
  12. package/dist/lib/testsystem/v1/entities/test_case.d.ts +5 -0
  13. package/dist/lib/testsystem/v1/entities/test_case.d.ts.map +1 -1
  14. package/dist/testsystem/index.js +20 -0
  15. package/dist/testsystem/index.js.map +1 -1
  16. package/dist/testsystem/index.mjs +7 -7
  17. package/dist/testsystem/v1/entities/index.js +20 -0
  18. package/dist/testsystem/v1/entities/index.js.map +1 -1
  19. package/dist/testsystem/v1/entities/index.mjs +2 -2
  20. package/dist/testsystem/v1/events/index.js +20 -0
  21. package/dist/testsystem/v1/events/index.js.map +1 -1
  22. package/dist/testsystem/v1/events/index.mjs +3 -3
  23. package/dist/testsystem/v1/index.js +20 -0
  24. package/dist/testsystem/v1/index.js.map +1 -1
  25. package/dist/testsystem/v1/index.mjs +7 -7
  26. package/dist/testsystem/v1/observer/index.js +20 -0
  27. package/dist/testsystem/v1/observer/index.js.map +1 -1
  28. package/dist/testsystem/v1/observer/index.mjs +4 -4
  29. package/lib/testsystem/v1/entities/test_case.ts +23 -0
  30. package/package.json +1 -1
  31. package/dist/chunk-IO237NIP.mjs.map +0 -1
  32. /package/dist/{chunk-S22XQJQE.mjs.map → chunk-4SR4H5H3.mjs.map} +0 -0
  33. /package/dist/{chunk-VKI55KY6.mjs.map → chunk-7ZKHPRD4.mjs.map} +0 -0
  34. /package/dist/{chunk-4KEOGRTV.mjs.map → chunk-AEDC4CB5.mjs.map} +0 -0
  35. /package/dist/{chunk-RZDGHCWW.mjs.map → chunk-B3U6NKBI.mjs.map} +0 -0
  36. /package/dist/{chunk-LT6VIEMZ.mjs.map → chunk-ULRGJR5R.mjs.map} +0 -0
  37. /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-VKI55KY6.mjs";
3
+ } from "../chunk-7ZKHPRD4.mjs";
4
4
  import "../chunk-WYXRRQPZ.mjs";
5
- import "../chunk-YFUPSN57.mjs";
6
- import "../chunk-RZDGHCWW.mjs";
7
- import "../chunk-S22XQJQE.mjs";
8
- import "../chunk-4KEOGRTV.mjs";
9
- import "../chunk-LT6VIEMZ.mjs";
10
- import "../chunk-IO237NIP.mjs";
5
+ import "../chunk-XWJCF6BO.mjs";
6
+ import "../chunk-B3U6NKBI.mjs";
7
+ import "../chunk-4SR4H5H3.mjs";
8
+ import "../chunk-AEDC4CB5.mjs";
9
+ import "../chunk-ULRGJR5R.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
  }