@flyteorg/flyteidl 1.15.4-b0 → 1.16.0-b1

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.
@@ -5772,7 +5772,8 @@ export namespace flyteidl {
5772
5772
  ABORTED = 4,
5773
5773
  FAILED = 5,
5774
5774
  INITIALIZING = 6,
5775
- WAITING_FOR_RESOURCES = 7
5775
+ WAITING_FOR_RESOURCES = 7,
5776
+ RETRYABLE_FAILED = 8
5776
5777
  }
5777
5778
  }
5778
5779
 
@@ -13948,6 +13948,7 @@
13948
13948
  * @property {number} FAILED=5 FAILED value
13949
13949
  * @property {number} INITIALIZING=6 INITIALIZING value
13950
13950
  * @property {number} WAITING_FOR_RESOURCES=7 WAITING_FOR_RESOURCES value
13951
+ * @property {number} RETRYABLE_FAILED=8 RETRYABLE_FAILED value
13951
13952
  */
13952
13953
  TaskExecution.Phase = (function() {
13953
13954
  var valuesById = {}, values = Object.create(valuesById);
@@ -13959,6 +13960,7 @@
13959
13960
  values[valuesById[5] = "FAILED"] = 5;
13960
13961
  values[valuesById[6] = "INITIALIZING"] = 6;
13961
13962
  values[valuesById[7] = "WAITING_FOR_RESOURCES"] = 7;
13963
+ values[valuesById[8] = "RETRYABLE_FAILED"] = 8;
13962
13964
  return values;
13963
13965
  })();
13964
13966
 
@@ -23504,6 +23506,7 @@
23504
23506
  case 5:
23505
23507
  case 6:
23506
23508
  case 7:
23509
+ case 8:
23507
23510
  break;
23508
23511
  }
23509
23512
  if (message.producerId != null && message.hasOwnProperty("producerId"))
@@ -23863,6 +23866,7 @@
23863
23866
  case 5:
23864
23867
  case 6:
23865
23868
  case 7:
23869
+ case 8:
23866
23870
  break;
23867
23871
  }
23868
23872
  if (message.cacheStatus != null && message.hasOwnProperty("cacheStatus"))
@@ -25976,6 +25980,7 @@
25976
25980
  case 5:
25977
25981
  case 6:
25978
25982
  case 7:
25983
+ case 8:
25979
25984
  break;
25980
25985
  }
25981
25986
  if (message.customInfo != null && message.hasOwnProperty("customInfo")) {
@@ -50350,6 +50355,7 @@
50350
50355
  case 5:
50351
50356
  case 6:
50352
50357
  case 7:
50358
+ case 8:
50353
50359
  break;
50354
50360
  }
50355
50361
  if (message.logs != null && message.hasOwnProperty("logs")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "1.15.4b0",
3
+ "version": "1.16.0b1",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -54,6 +54,7 @@ message TaskExecution{
54
54
  INITIALIZING = 6;
55
55
  // To address cases, where underlying resource is not available: Backoff error, Resource quota exceeded
56
56
  WAITING_FOR_RESOURCES = 7;
57
+ RETRYABLE_FAILED = 8;
57
58
  }
58
59
  }
59
60