@flyteorg/flyteidl 0.21.21 → 0.21.22

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.
@@ -6472,6 +6472,15 @@ export namespace flyteidl {
6472
6472
 
6473
6473
  /** ExternalResourceInfo externalId */
6474
6474
  externalId?: (string|null);
6475
+
6476
+ /** ExternalResourceInfo index */
6477
+ index?: (number|null);
6478
+
6479
+ /** ExternalResourceInfo retryAttempt */
6480
+ retryAttempt?: (number|null);
6481
+
6482
+ /** ExternalResourceInfo phase */
6483
+ phase?: (flyteidl.core.TaskExecution.Phase|null);
6475
6484
  }
6476
6485
 
6477
6486
  /** Represents an ExternalResourceInfo. */
@@ -6486,6 +6495,15 @@ export namespace flyteidl {
6486
6495
  /** ExternalResourceInfo externalId. */
6487
6496
  public externalId: string;
6488
6497
 
6498
+ /** ExternalResourceInfo index. */
6499
+ public index: number;
6500
+
6501
+ /** ExternalResourceInfo retryAttempt. */
6502
+ public retryAttempt: number;
6503
+
6504
+ /** ExternalResourceInfo phase. */
6505
+ public phase: flyteidl.core.TaskExecution.Phase;
6506
+
6489
6507
  /**
6490
6508
  * Creates a new ExternalResourceInfo instance using the specified properties.
6491
6509
  * @param [properties] Properties to set
@@ -15667,6 +15667,9 @@ export const flyteidl = $root.flyteidl = (() => {
15667
15667
  * @memberof flyteidl.event
15668
15668
  * @interface IExternalResourceInfo
15669
15669
  * @property {string|null} [externalId] ExternalResourceInfo externalId
15670
+ * @property {number|null} [index] ExternalResourceInfo index
15671
+ * @property {number|null} [retryAttempt] ExternalResourceInfo retryAttempt
15672
+ * @property {flyteidl.core.TaskExecution.Phase|null} [phase] ExternalResourceInfo phase
15670
15673
  */
15671
15674
 
15672
15675
  /**
@@ -15692,6 +15695,30 @@ export const flyteidl = $root.flyteidl = (() => {
15692
15695
  */
15693
15696
  ExternalResourceInfo.prototype.externalId = "";
15694
15697
 
15698
+ /**
15699
+ * ExternalResourceInfo index.
15700
+ * @member {number} index
15701
+ * @memberof flyteidl.event.ExternalResourceInfo
15702
+ * @instance
15703
+ */
15704
+ ExternalResourceInfo.prototype.index = 0;
15705
+
15706
+ /**
15707
+ * ExternalResourceInfo retryAttempt.
15708
+ * @member {number} retryAttempt
15709
+ * @memberof flyteidl.event.ExternalResourceInfo
15710
+ * @instance
15711
+ */
15712
+ ExternalResourceInfo.prototype.retryAttempt = 0;
15713
+
15714
+ /**
15715
+ * ExternalResourceInfo phase.
15716
+ * @member {flyteidl.core.TaskExecution.Phase} phase
15717
+ * @memberof flyteidl.event.ExternalResourceInfo
15718
+ * @instance
15719
+ */
15720
+ ExternalResourceInfo.prototype.phase = 0;
15721
+
15695
15722
  /**
15696
15723
  * Creates a new ExternalResourceInfo instance using the specified properties.
15697
15724
  * @function create
@@ -15718,6 +15745,12 @@ export const flyteidl = $root.flyteidl = (() => {
15718
15745
  writer = $Writer.create();
15719
15746
  if (message.externalId != null && message.hasOwnProperty("externalId"))
15720
15747
  writer.uint32(/* id 1, wireType 2 =*/10).string(message.externalId);
15748
+ if (message.index != null && message.hasOwnProperty("index"))
15749
+ writer.uint32(/* id 2, wireType 0 =*/16).uint32(message.index);
15750
+ if (message.retryAttempt != null && message.hasOwnProperty("retryAttempt"))
15751
+ writer.uint32(/* id 3, wireType 0 =*/24).uint32(message.retryAttempt);
15752
+ if (message.phase != null && message.hasOwnProperty("phase"))
15753
+ writer.uint32(/* id 4, wireType 0 =*/32).int32(message.phase);
15721
15754
  return writer;
15722
15755
  };
15723
15756
 
@@ -15742,6 +15775,15 @@ export const flyteidl = $root.flyteidl = (() => {
15742
15775
  case 1:
15743
15776
  message.externalId = reader.string();
15744
15777
  break;
15778
+ case 2:
15779
+ message.index = reader.uint32();
15780
+ break;
15781
+ case 3:
15782
+ message.retryAttempt = reader.uint32();
15783
+ break;
15784
+ case 4:
15785
+ message.phase = reader.int32();
15786
+ break;
15745
15787
  default:
15746
15788
  reader.skipType(tag & 7);
15747
15789
  break;
@@ -15764,6 +15806,26 @@ export const flyteidl = $root.flyteidl = (() => {
15764
15806
  if (message.externalId != null && message.hasOwnProperty("externalId"))
15765
15807
  if (!$util.isString(message.externalId))
15766
15808
  return "externalId: string expected";
15809
+ if (message.index != null && message.hasOwnProperty("index"))
15810
+ if (!$util.isInteger(message.index))
15811
+ return "index: integer expected";
15812
+ if (message.retryAttempt != null && message.hasOwnProperty("retryAttempt"))
15813
+ if (!$util.isInteger(message.retryAttempt))
15814
+ return "retryAttempt: integer expected";
15815
+ if (message.phase != null && message.hasOwnProperty("phase"))
15816
+ switch (message.phase) {
15817
+ default:
15818
+ return "phase: enum value expected";
15819
+ case 0:
15820
+ case 1:
15821
+ case 2:
15822
+ case 3:
15823
+ case 4:
15824
+ case 5:
15825
+ case 6:
15826
+ case 7:
15827
+ break;
15828
+ }
15767
15829
  return null;
15768
15830
  };
15769
15831
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "0.21.21",
3
+ "version": "0.21.22",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",