@flyteorg/flyteidl 0.22.1 → 0.23.0
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
|
@@ -2395,6 +2395,9 @@ export namespace flyteidl {
|
|
|
2395
2395
|
|
|
2396
2396
|
/** Literal map */
|
|
2397
2397
|
map?: (flyteidl.core.ILiteralMap|null);
|
|
2398
|
+
|
|
2399
|
+
/** Literal hash */
|
|
2400
|
+
hash?: (string|null);
|
|
2398
2401
|
}
|
|
2399
2402
|
|
|
2400
2403
|
/** Represents a Literal. */
|
|
@@ -2415,6 +2418,9 @@ export namespace flyteidl {
|
|
|
2415
2418
|
/** Literal map. */
|
|
2416
2419
|
public map?: (flyteidl.core.ILiteralMap|null);
|
|
2417
2420
|
|
|
2421
|
+
/** Literal hash. */
|
|
2422
|
+
public hash: string;
|
|
2423
|
+
|
|
2418
2424
|
/** Literal value. */
|
|
2419
2425
|
public value?: ("scalar"|"collection"|"map");
|
|
2420
2426
|
|
|
@@ -11974,6 +11980,9 @@ export namespace flyteidl {
|
|
|
11974
11980
|
|
|
11975
11981
|
/** NodeExecutionMetaData specNodeId */
|
|
11976
11982
|
specNodeId?: (string|null);
|
|
11983
|
+
|
|
11984
|
+
/** NodeExecutionMetaData isDynamic */
|
|
11985
|
+
isDynamic?: (boolean|null);
|
|
11977
11986
|
}
|
|
11978
11987
|
|
|
11979
11988
|
/** Represents a NodeExecutionMetaData. */
|
|
@@ -11994,6 +12003,9 @@ export namespace flyteidl {
|
|
|
11994
12003
|
/** NodeExecutionMetaData specNodeId. */
|
|
11995
12004
|
public specNodeId: string;
|
|
11996
12005
|
|
|
12006
|
+
/** NodeExecutionMetaData isDynamic. */
|
|
12007
|
+
public isDynamic: boolean;
|
|
12008
|
+
|
|
11997
12009
|
/**
|
|
11998
12010
|
* Creates a new NodeExecutionMetaData instance using the specified properties.
|
|
11999
12011
|
* @param [properties] Properties to set
|
package/gen/pb-js/flyteidl.js
CHANGED
|
@@ -5755,6 +5755,7 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
5755
5755
|
* @property {flyteidl.core.IScalar|null} [scalar] Literal scalar
|
|
5756
5756
|
* @property {flyteidl.core.ILiteralCollection|null} [collection] Literal collection
|
|
5757
5757
|
* @property {flyteidl.core.ILiteralMap|null} [map] Literal map
|
|
5758
|
+
* @property {string|null} [hash] Literal hash
|
|
5758
5759
|
*/
|
|
5759
5760
|
|
|
5760
5761
|
/**
|
|
@@ -5796,6 +5797,14 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
5796
5797
|
*/
|
|
5797
5798
|
Literal.prototype.map = null;
|
|
5798
5799
|
|
|
5800
|
+
/**
|
|
5801
|
+
* Literal hash.
|
|
5802
|
+
* @member {string} hash
|
|
5803
|
+
* @memberof flyteidl.core.Literal
|
|
5804
|
+
* @instance
|
|
5805
|
+
*/
|
|
5806
|
+
Literal.prototype.hash = "";
|
|
5807
|
+
|
|
5799
5808
|
// OneOf field names bound to virtual getters and setters
|
|
5800
5809
|
let $oneOfFields;
|
|
5801
5810
|
|
|
@@ -5840,6 +5849,8 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
5840
5849
|
$root.flyteidl.core.LiteralCollection.encode(message.collection, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim();
|
|
5841
5850
|
if (message.map != null && message.hasOwnProperty("map"))
|
|
5842
5851
|
$root.flyteidl.core.LiteralMap.encode(message.map, writer.uint32(/* id 3, wireType 2 =*/26).fork()).ldelim();
|
|
5852
|
+
if (message.hash != null && message.hasOwnProperty("hash"))
|
|
5853
|
+
writer.uint32(/* id 4, wireType 2 =*/34).string(message.hash);
|
|
5843
5854
|
return writer;
|
|
5844
5855
|
};
|
|
5845
5856
|
|
|
@@ -5870,6 +5881,9 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
5870
5881
|
case 3:
|
|
5871
5882
|
message.map = $root.flyteidl.core.LiteralMap.decode(reader, reader.uint32());
|
|
5872
5883
|
break;
|
|
5884
|
+
case 4:
|
|
5885
|
+
message.hash = reader.string();
|
|
5886
|
+
break;
|
|
5873
5887
|
default:
|
|
5874
5888
|
reader.skipType(tag & 7);
|
|
5875
5889
|
break;
|
|
@@ -5918,6 +5932,9 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
5918
5932
|
return "map." + error;
|
|
5919
5933
|
}
|
|
5920
5934
|
}
|
|
5935
|
+
if (message.hash != null && message.hasOwnProperty("hash"))
|
|
5936
|
+
if (!$util.isString(message.hash))
|
|
5937
|
+
return "hash: string expected";
|
|
5921
5938
|
return null;
|
|
5922
5939
|
};
|
|
5923
5940
|
|
|
@@ -28622,6 +28639,7 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
28622
28639
|
* @property {string|null} [retryGroup] NodeExecutionMetaData retryGroup
|
|
28623
28640
|
* @property {boolean|null} [isParentNode] NodeExecutionMetaData isParentNode
|
|
28624
28641
|
* @property {string|null} [specNodeId] NodeExecutionMetaData specNodeId
|
|
28642
|
+
* @property {boolean|null} [isDynamic] NodeExecutionMetaData isDynamic
|
|
28625
28643
|
*/
|
|
28626
28644
|
|
|
28627
28645
|
/**
|
|
@@ -28663,6 +28681,14 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
28663
28681
|
*/
|
|
28664
28682
|
NodeExecutionMetaData.prototype.specNodeId = "";
|
|
28665
28683
|
|
|
28684
|
+
/**
|
|
28685
|
+
* NodeExecutionMetaData isDynamic.
|
|
28686
|
+
* @member {boolean} isDynamic
|
|
28687
|
+
* @memberof flyteidl.admin.NodeExecutionMetaData
|
|
28688
|
+
* @instance
|
|
28689
|
+
*/
|
|
28690
|
+
NodeExecutionMetaData.prototype.isDynamic = false;
|
|
28691
|
+
|
|
28666
28692
|
/**
|
|
28667
28693
|
* Creates a new NodeExecutionMetaData instance using the specified properties.
|
|
28668
28694
|
* @function create
|
|
@@ -28693,6 +28719,8 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
28693
28719
|
writer.uint32(/* id 2, wireType 0 =*/16).bool(message.isParentNode);
|
|
28694
28720
|
if (message.specNodeId != null && message.hasOwnProperty("specNodeId"))
|
|
28695
28721
|
writer.uint32(/* id 3, wireType 2 =*/26).string(message.specNodeId);
|
|
28722
|
+
if (message.isDynamic != null && message.hasOwnProperty("isDynamic"))
|
|
28723
|
+
writer.uint32(/* id 4, wireType 0 =*/32).bool(message.isDynamic);
|
|
28696
28724
|
return writer;
|
|
28697
28725
|
};
|
|
28698
28726
|
|
|
@@ -28723,6 +28751,9 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
28723
28751
|
case 3:
|
|
28724
28752
|
message.specNodeId = reader.string();
|
|
28725
28753
|
break;
|
|
28754
|
+
case 4:
|
|
28755
|
+
message.isDynamic = reader.bool();
|
|
28756
|
+
break;
|
|
28726
28757
|
default:
|
|
28727
28758
|
reader.skipType(tag & 7);
|
|
28728
28759
|
break;
|
|
@@ -28751,6 +28782,9 @@ export const flyteidl = $root.flyteidl = (() => {
|
|
|
28751
28782
|
if (message.specNodeId != null && message.hasOwnProperty("specNodeId"))
|
|
28752
28783
|
if (!$util.isString(message.specNodeId))
|
|
28753
28784
|
return "specNodeId: string expected";
|
|
28785
|
+
if (message.isDynamic != null && message.hasOwnProperty("isDynamic"))
|
|
28786
|
+
if (typeof message.isDynamic !== "boolean")
|
|
28787
|
+
return "isDynamic: boolean expected";
|
|
28754
28788
|
return null;
|
|
28755
28789
|
};
|
|
28756
28790
|
|