@flyteorg/flyteidl 1.15.0 → 1.15.1

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.
@@ -4598,6 +4598,9 @@ export namespace flyteidl {
4598
4598
 
4599
4599
  /** ArrayNode dataMode */
4600
4600
  dataMode?: (flyteidl.core.ArrayNode.DataMode|null);
4601
+
4602
+ /** ArrayNode boundInputs */
4603
+ boundInputs?: (string[]|null);
4601
4604
  }
4602
4605
 
4603
4606
  /** Represents an ArrayNode. */
@@ -4630,6 +4633,9 @@ export namespace flyteidl {
4630
4633
  /** ArrayNode dataMode. */
4631
4634
  public dataMode: flyteidl.core.ArrayNode.DataMode;
4632
4635
 
4636
+ /** ArrayNode boundInputs. */
4637
+ public boundInputs: string[];
4638
+
4633
4639
  /** ArrayNode parallelismOption. */
4634
4640
  public parallelismOption?: "parallelism";
4635
4641
 
@@ -11008,6 +11008,7 @@
11008
11008
  * @property {flyteidl.core.ArrayNode.ExecutionMode|null} [executionMode] ArrayNode executionMode
11009
11009
  * @property {google.protobuf.IBoolValue|null} [isOriginalSubNodeInterface] ArrayNode isOriginalSubNodeInterface
11010
11010
  * @property {flyteidl.core.ArrayNode.DataMode|null} [dataMode] ArrayNode dataMode
11011
+ * @property {Array.<string>|null} [boundInputs] ArrayNode boundInputs
11011
11012
  */
11012
11013
 
11013
11014
  /**
@@ -11019,6 +11020,7 @@
11019
11020
  * @param {flyteidl.core.IArrayNode=} [properties] Properties to set
11020
11021
  */
11021
11022
  function ArrayNode(properties) {
11023
+ this.boundInputs = [];
11022
11024
  if (properties)
11023
11025
  for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i)
11024
11026
  if (properties[keys[i]] != null)
@@ -11081,6 +11083,14 @@
11081
11083
  */
11082
11084
  ArrayNode.prototype.dataMode = 0;
11083
11085
 
11086
+ /**
11087
+ * ArrayNode boundInputs.
11088
+ * @member {Array.<string>} boundInputs
11089
+ * @memberof flyteidl.core.ArrayNode
11090
+ * @instance
11091
+ */
11092
+ ArrayNode.prototype.boundInputs = $util.emptyArray;
11093
+
11084
11094
  // OneOf field names bound to virtual getters and setters
11085
11095
  var $oneOfFields;
11086
11096
 
@@ -11144,6 +11154,9 @@
11144
11154
  $root.google.protobuf.BoolValue.encode(message.isOriginalSubNodeInterface, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim();
11145
11155
  if (message.dataMode != null && message.hasOwnProperty("dataMode"))
11146
11156
  writer.uint32(/* id 7, wireType 0 =*/56).int32(message.dataMode);
11157
+ if (message.boundInputs != null && message.boundInputs.length)
11158
+ for (var i = 0; i < message.boundInputs.length; ++i)
11159
+ writer.uint32(/* id 8, wireType 2 =*/66).string(message.boundInputs[i]);
11147
11160
  return writer;
11148
11161
  };
11149
11162
 
@@ -11186,6 +11199,11 @@
11186
11199
  case 7:
11187
11200
  message.dataMode = reader.int32();
11188
11201
  break;
11202
+ case 8:
11203
+ if (!(message.boundInputs && message.boundInputs.length))
11204
+ message.boundInputs = [];
11205
+ message.boundInputs.push(reader.string());
11206
+ break;
11189
11207
  default:
11190
11208
  reader.skipType(tag & 7);
11191
11209
  break;
@@ -11249,6 +11267,13 @@
11249
11267
  case 1:
11250
11268
  break;
11251
11269
  }
11270
+ if (message.boundInputs != null && message.hasOwnProperty("boundInputs")) {
11271
+ if (!Array.isArray(message.boundInputs))
11272
+ return "boundInputs: array expected";
11273
+ for (var i = 0; i < message.boundInputs.length; ++i)
11274
+ if (!$util.isString(message.boundInputs[i]))
11275
+ return "boundInputs: string[] expected";
11276
+ }
11252
11277
  return null;
11253
11278
  };
11254
11279
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "1.15.0",
3
+ "version": "1.15.1",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -167,6 +167,9 @@ message ArrayNode {
167
167
 
168
168
  // data_mode determines how input data is passed to the sub-nodes
169
169
  DataMode data_mode = 7;
170
+
171
+ //+optional. Specifies input bindings that are not mapped over for the node.
172
+ repeated string bound_inputs = 8;
170
173
  }
171
174
 
172
175
  // Defines extra information about the Node.