@flyteorg/flyteidl 0.21.15 → 0.21.16

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.
@@ -3308,7 +3308,8 @@ export namespace flyteidl {
3308
3308
  FAILING = 5,
3309
3309
  FAILED = 6,
3310
3310
  ABORTED = 7,
3311
- TIMED_OUT = 8
3311
+ TIMED_OUT = 8,
3312
+ ABORTING = 9
3312
3313
  }
3313
3314
  }
3314
3315
 
@@ -7927,6 +7927,7 @@ export const flyteidl = $root.flyteidl = (() => {
7927
7927
  * @property {number} FAILED=6 FAILED value
7928
7928
  * @property {number} ABORTED=7 ABORTED value
7929
7929
  * @property {number} TIMED_OUT=8 TIMED_OUT value
7930
+ * @property {number} ABORTING=9 ABORTING value
7930
7931
  */
7931
7932
  WorkflowExecution.Phase = (function() {
7932
7933
  const valuesById = {}, values = Object.create(valuesById);
@@ -7939,6 +7940,7 @@ export const flyteidl = $root.flyteidl = (() => {
7939
7940
  values[valuesById[6] = "FAILED"] = 6;
7940
7941
  values[valuesById[7] = "ABORTED"] = 7;
7941
7942
  values[valuesById[8] = "TIMED_OUT"] = 8;
7943
+ values[valuesById[9] = "ABORTING"] = 9;
7942
7944
  return values;
7943
7945
  })();
7944
7946
 
@@ -13532,6 +13534,7 @@ export const flyteidl = $root.flyteidl = (() => {
13532
13534
  case 6:
13533
13535
  case 7:
13534
13536
  case 8:
13537
+ case 9:
13535
13538
  break;
13536
13539
  }
13537
13540
  if (message.occurredAt != null && message.hasOwnProperty("occurredAt")) {
@@ -18042,6 +18045,7 @@ export const flyteidl = $root.flyteidl = (() => {
18042
18045
  case 6:
18043
18046
  case 7:
18044
18047
  case 8:
18048
+ case 9:
18045
18049
  break;
18046
18050
  }
18047
18051
  }
@@ -21326,6 +21330,7 @@ export const flyteidl = $root.flyteidl = (() => {
21326
21330
  case 6:
21327
21331
  case 7:
21328
21332
  case 8:
21333
+ case 9:
21329
21334
  break;
21330
21335
  }
21331
21336
  if (message.startedAt != null && message.hasOwnProperty("startedAt")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "0.21.15",
3
+ "version": "0.21.16",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -832,6 +832,7 @@ WorkflowExecution.Phase
832
832
  "FAILED", "6", ""
833
833
  "ABORTED", "7", ""
834
834
  "TIMED_OUT", "8", ""
835
+ "ABORTING", "9", ""
835
836
 
836
837
 
837
838
 
@@ -18,6 +18,7 @@ message WorkflowExecution {
18
18
  FAILED = 6;
19
19
  ABORTED = 7;
20
20
  TIMED_OUT = 8;
21
+ ABORTING = 9;
21
22
  }
22
23
  }
23
24