@flyteorg/flyteidl 1.13.8 → 1.13.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.
package/gen/pb-js/flyteidl.d.ts
CHANGED
|
@@ -4586,6 +4586,9 @@ export namespace flyteidl {
|
|
|
4586
4586
|
|
|
4587
4587
|
/** ArrayNode executionMode */
|
|
4588
4588
|
executionMode?: (flyteidl.core.ArrayNode.ExecutionMode|null);
|
|
4589
|
+
|
|
4590
|
+
/** ArrayNode isOriginalSubNodeInterface */
|
|
4591
|
+
isOriginalSubNodeInterface?: (google.protobuf.IBoolValue|null);
|
|
4589
4592
|
}
|
|
4590
4593
|
|
|
4591
4594
|
/** Represents an ArrayNode. */
|
|
@@ -4612,6 +4615,9 @@ export namespace flyteidl {
|
|
|
4612
4615
|
/** ArrayNode executionMode. */
|
|
4613
4616
|
public executionMode: flyteidl.core.ArrayNode.ExecutionMode;
|
|
4614
4617
|
|
|
4618
|
+
/** ArrayNode isOriginalSubNodeInterface. */
|
|
4619
|
+
public isOriginalSubNodeInterface?: (google.protobuf.IBoolValue|null);
|
|
4620
|
+
|
|
4615
4621
|
/** ArrayNode parallelismOption. */
|
|
4616
4622
|
public parallelismOption?: "parallelism";
|
|
4617
4623
|
|
package/gen/pb-js/flyteidl.js
CHANGED
|
@@ -10982,6 +10982,7 @@
|
|
|
10982
10982
|
* @property {number|null} [minSuccesses] ArrayNode minSuccesses
|
|
10983
10983
|
* @property {number|null} [minSuccessRatio] ArrayNode minSuccessRatio
|
|
10984
10984
|
* @property {flyteidl.core.ArrayNode.ExecutionMode|null} [executionMode] ArrayNode executionMode
|
|
10985
|
+
* @property {google.protobuf.IBoolValue|null} [isOriginalSubNodeInterface] ArrayNode isOriginalSubNodeInterface
|
|
10985
10986
|
*/
|
|
10986
10987
|
|
|
10987
10988
|
/**
|
|
@@ -11039,6 +11040,14 @@
|
|
|
11039
11040
|
*/
|
|
11040
11041
|
ArrayNode.prototype.executionMode = 0;
|
|
11041
11042
|
|
|
11043
|
+
/**
|
|
11044
|
+
* ArrayNode isOriginalSubNodeInterface.
|
|
11045
|
+
* @member {google.protobuf.IBoolValue|null|undefined} isOriginalSubNodeInterface
|
|
11046
|
+
* @memberof flyteidl.core.ArrayNode
|
|
11047
|
+
* @instance
|
|
11048
|
+
*/
|
|
11049
|
+
ArrayNode.prototype.isOriginalSubNodeInterface = null;
|
|
11050
|
+
|
|
11042
11051
|
// OneOf field names bound to virtual getters and setters
|
|
11043
11052
|
var $oneOfFields;
|
|
11044
11053
|
|
|
@@ -11098,6 +11107,8 @@
|
|
|
11098
11107
|
writer.uint32(/* id 4, wireType 5 =*/37).float(message.minSuccessRatio);
|
|
11099
11108
|
if (message.executionMode != null && message.hasOwnProperty("executionMode"))
|
|
11100
11109
|
writer.uint32(/* id 5, wireType 0 =*/40).int32(message.executionMode);
|
|
11110
|
+
if (message.isOriginalSubNodeInterface != null && message.hasOwnProperty("isOriginalSubNodeInterface"))
|
|
11111
|
+
$root.google.protobuf.BoolValue.encode(message.isOriginalSubNodeInterface, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim();
|
|
11101
11112
|
return writer;
|
|
11102
11113
|
};
|
|
11103
11114
|
|
|
@@ -11134,6 +11145,9 @@
|
|
|
11134
11145
|
case 5:
|
|
11135
11146
|
message.executionMode = reader.int32();
|
|
11136
11147
|
break;
|
|
11148
|
+
case 6:
|
|
11149
|
+
message.isOriginalSubNodeInterface = $root.google.protobuf.BoolValue.decode(reader, reader.uint32());
|
|
11150
|
+
break;
|
|
11137
11151
|
default:
|
|
11138
11152
|
reader.skipType(tag & 7);
|
|
11139
11153
|
break;
|
|
@@ -11184,6 +11198,11 @@
|
|
|
11184
11198
|
case 1:
|
|
11185
11199
|
break;
|
|
11186
11200
|
}
|
|
11201
|
+
if (message.isOriginalSubNodeInterface != null && message.hasOwnProperty("isOriginalSubNodeInterface")) {
|
|
11202
|
+
var error = $root.google.protobuf.BoolValue.verify(message.isOriginalSubNodeInterface);
|
|
11203
|
+
if (error)
|
|
11204
|
+
return "isOriginalSubNodeInterface." + error;
|
|
11205
|
+
}
|
|
11187
11206
|
return null;
|
|
11188
11207
|
};
|
|
11189
11208
|
|
package/package.json
CHANGED
|
@@ -147,6 +147,9 @@ message ArrayNode {
|
|
|
147
147
|
|
|
148
148
|
// execution_mode determines the execution path for ArrayNode.
|
|
149
149
|
ExecutionMode execution_mode = 5;
|
|
150
|
+
|
|
151
|
+
// Indicates whether the sub node's original interface was altered
|
|
152
|
+
google.protobuf.BoolValue is_original_sub_node_interface = 6;
|
|
150
153
|
}
|
|
151
154
|
|
|
152
155
|
// Defines extra information about the Node.
|