@flyteorg/flyteidl 0.22.3 → 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 +6 -0
- package/gen/pb-js/flyteidl.js +17 -0
- package/package.json +1 -1
- package/protos/docs/admin/admin.rst +341 -341
- package/protos/docs/core/core.rst +41 -40
- package/protos/flyteidl/core/literals.proto +5 -0
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
|
|
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
|
|