@flyteorg/flyteidl 0.24.8 → 0.24.9

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.
@@ -6245,6 +6245,15 @@ export namespace flyteidl {
6245
6245
 
6246
6246
  /** NodeExecutionEvent nodeName */
6247
6247
  nodeName?: (string|null);
6248
+
6249
+ /** NodeExecutionEvent eventVersion */
6250
+ eventVersion?: (number|null);
6251
+
6252
+ /** NodeExecutionEvent isParent */
6253
+ isParent?: (boolean|null);
6254
+
6255
+ /** NodeExecutionEvent isDynamic */
6256
+ isDynamic?: (boolean|null);
6248
6257
  }
6249
6258
 
6250
6259
  /** Represents a NodeExecutionEvent. */
@@ -6301,6 +6310,15 @@ export namespace flyteidl {
6301
6310
  /** NodeExecutionEvent nodeName. */
6302
6311
  public nodeName: string;
6303
6312
 
6313
+ /** NodeExecutionEvent eventVersion. */
6314
+ public eventVersion: number;
6315
+
6316
+ /** NodeExecutionEvent isParent. */
6317
+ public isParent: boolean;
6318
+
6319
+ /** NodeExecutionEvent isDynamic. */
6320
+ public isDynamic: boolean;
6321
+
6304
6322
  /** NodeExecutionEvent outputResult. */
6305
6323
  public outputResult?: ("outputUri"|"error"|"outputData");
6306
6324
 
@@ -14890,6 +14890,9 @@ export const flyteidl = $root.flyteidl = (() => {
14890
14890
  * @property {string|null} [retryGroup] NodeExecutionEvent retryGroup
14891
14891
  * @property {string|null} [specNodeId] NodeExecutionEvent specNodeId
14892
14892
  * @property {string|null} [nodeName] NodeExecutionEvent nodeName
14893
+ * @property {number|null} [eventVersion] NodeExecutionEvent eventVersion
14894
+ * @property {boolean|null} [isParent] NodeExecutionEvent isParent
14895
+ * @property {boolean|null} [isDynamic] NodeExecutionEvent isDynamic
14893
14896
  */
14894
14897
 
14895
14898
  /**
@@ -15027,6 +15030,30 @@ export const flyteidl = $root.flyteidl = (() => {
15027
15030
  */
15028
15031
  NodeExecutionEvent.prototype.nodeName = "";
15029
15032
 
15033
+ /**
15034
+ * NodeExecutionEvent eventVersion.
15035
+ * @member {number} eventVersion
15036
+ * @memberof flyteidl.event.NodeExecutionEvent
15037
+ * @instance
15038
+ */
15039
+ NodeExecutionEvent.prototype.eventVersion = 0;
15040
+
15041
+ /**
15042
+ * NodeExecutionEvent isParent.
15043
+ * @member {boolean} isParent
15044
+ * @memberof flyteidl.event.NodeExecutionEvent
15045
+ * @instance
15046
+ */
15047
+ NodeExecutionEvent.prototype.isParent = false;
15048
+
15049
+ /**
15050
+ * NodeExecutionEvent isDynamic.
15051
+ * @member {boolean} isDynamic
15052
+ * @memberof flyteidl.event.NodeExecutionEvent
15053
+ * @instance
15054
+ */
15055
+ NodeExecutionEvent.prototype.isDynamic = false;
15056
+
15030
15057
  // OneOf field names bound to virtual getters and setters
15031
15058
  let $oneOfFields;
15032
15059
 
@@ -15106,6 +15133,12 @@ export const flyteidl = $root.flyteidl = (() => {
15106
15133
  $root.flyteidl.event.TaskNodeMetadata.encode(message.taskNodeMetadata, writer.uint32(/* id 14, wireType 2 =*/114).fork()).ldelim();
15107
15134
  if (message.outputData != null && message.hasOwnProperty("outputData"))
15108
15135
  $root.flyteidl.core.LiteralMap.encode(message.outputData, writer.uint32(/* id 15, wireType 2 =*/122).fork()).ldelim();
15136
+ if (message.eventVersion != null && message.hasOwnProperty("eventVersion"))
15137
+ writer.uint32(/* id 16, wireType 0 =*/128).int32(message.eventVersion);
15138
+ if (message.isParent != null && message.hasOwnProperty("isParent"))
15139
+ writer.uint32(/* id 17, wireType 0 =*/136).bool(message.isParent);
15140
+ if (message.isDynamic != null && message.hasOwnProperty("isDynamic"))
15141
+ writer.uint32(/* id 18, wireType 0 =*/144).bool(message.isDynamic);
15109
15142
  return writer;
15110
15143
  };
15111
15144
 
@@ -15172,6 +15205,15 @@ export const flyteidl = $root.flyteidl = (() => {
15172
15205
  case 13:
15173
15206
  message.nodeName = reader.string();
15174
15207
  break;
15208
+ case 16:
15209
+ message.eventVersion = reader.int32();
15210
+ break;
15211
+ case 17:
15212
+ message.isParent = reader.bool();
15213
+ break;
15214
+ case 18:
15215
+ message.isDynamic = reader.bool();
15216
+ break;
15175
15217
  default:
15176
15218
  reader.skipType(tag & 7);
15177
15219
  break;
@@ -15287,6 +15329,15 @@ export const flyteidl = $root.flyteidl = (() => {
15287
15329
  if (message.nodeName != null && message.hasOwnProperty("nodeName"))
15288
15330
  if (!$util.isString(message.nodeName))
15289
15331
  return "nodeName: string expected";
15332
+ if (message.eventVersion != null && message.hasOwnProperty("eventVersion"))
15333
+ if (!$util.isInteger(message.eventVersion))
15334
+ return "eventVersion: integer expected";
15335
+ if (message.isParent != null && message.hasOwnProperty("isParent"))
15336
+ if (typeof message.isParent !== "boolean")
15337
+ return "isParent: boolean expected";
15338
+ if (message.isDynamic != null && message.hasOwnProperty("isDynamic"))
15339
+ if (typeof message.isDynamic !== "boolean")
15340
+ return "isDynamic: boolean expected";
15290
15341
  return null;
15291
15342
  };
15292
15343
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "0.24.8",
3
+ "version": "0.24.9",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",