@flyteorg/flyteidl 0.22.2 → 0.23.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.
@@ -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
 
@@ -9478,6 +9484,9 @@ export namespace flyteidl {
9478
9484
 
9479
9485
  /** ExecutionSpec maxParallelism */
9480
9486
  maxParallelism?: (number|null);
9487
+
9488
+ /** ExecutionSpec rawOutputDataConfig */
9489
+ rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null);
9481
9490
  }
9482
9491
 
9483
9492
  /** Represents an ExecutionSpec. */
@@ -9522,6 +9531,9 @@ export namespace flyteidl {
9522
9531
  /** ExecutionSpec maxParallelism. */
9523
9532
  public maxParallelism: number;
9524
9533
 
9534
+ /** ExecutionSpec rawOutputDataConfig. */
9535
+ public rawOutputDataConfig?: (flyteidl.admin.IRawOutputDataConfig|null);
9536
+
9525
9537
  /** ExecutionSpec notificationOverrides. */
9526
9538
  public notificationOverrides?: ("notifications"|"disableAll");
9527
9539
 
@@ -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
 
@@ -22672,6 +22689,7 @@ export const flyteidl = $root.flyteidl = (() => {
22672
22689
  * @property {flyteidl.admin.IAuthRole|null} [authRole] ExecutionSpec authRole
22673
22690
  * @property {flyteidl.core.IQualityOfService|null} [qualityOfService] ExecutionSpec qualityOfService
22674
22691
  * @property {number|null} [maxParallelism] ExecutionSpec maxParallelism
22692
+ * @property {flyteidl.admin.IRawOutputDataConfig|null} [rawOutputDataConfig] ExecutionSpec rawOutputDataConfig
22675
22693
  */
22676
22694
 
22677
22695
  /**
@@ -22777,6 +22795,14 @@ export const flyteidl = $root.flyteidl = (() => {
22777
22795
  */
22778
22796
  ExecutionSpec.prototype.maxParallelism = 0;
22779
22797
 
22798
+ /**
22799
+ * ExecutionSpec rawOutputDataConfig.
22800
+ * @member {flyteidl.admin.IRawOutputDataConfig|null|undefined} rawOutputDataConfig
22801
+ * @memberof flyteidl.admin.ExecutionSpec
22802
+ * @instance
22803
+ */
22804
+ ExecutionSpec.prototype.rawOutputDataConfig = null;
22805
+
22780
22806
  // OneOf field names bound to virtual getters and setters
22781
22807
  let $oneOfFields;
22782
22808
 
@@ -22837,6 +22863,8 @@ export const flyteidl = $root.flyteidl = (() => {
22837
22863
  $root.flyteidl.core.QualityOfService.encode(message.qualityOfService, writer.uint32(/* id 17, wireType 2 =*/138).fork()).ldelim();
22838
22864
  if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism"))
22839
22865
  writer.uint32(/* id 18, wireType 0 =*/144).int32(message.maxParallelism);
22866
+ if (message.rawOutputDataConfig != null && message.hasOwnProperty("rawOutputDataConfig"))
22867
+ $root.flyteidl.admin.RawOutputDataConfig.encode(message.rawOutputDataConfig, writer.uint32(/* id 19, wireType 2 =*/154).fork()).ldelim();
22840
22868
  return writer;
22841
22869
  };
22842
22870
 
@@ -22891,6 +22919,9 @@ export const flyteidl = $root.flyteidl = (() => {
22891
22919
  case 18:
22892
22920
  message.maxParallelism = reader.int32();
22893
22921
  break;
22922
+ case 19:
22923
+ message.rawOutputDataConfig = $root.flyteidl.admin.RawOutputDataConfig.decode(reader, reader.uint32());
22924
+ break;
22894
22925
  default:
22895
22926
  reader.skipType(tag & 7);
22896
22927
  break;
@@ -22969,6 +23000,11 @@ export const flyteidl = $root.flyteidl = (() => {
22969
23000
  if (message.maxParallelism != null && message.hasOwnProperty("maxParallelism"))
22970
23001
  if (!$util.isInteger(message.maxParallelism))
22971
23002
  return "maxParallelism: integer expected";
23003
+ if (message.rawOutputDataConfig != null && message.hasOwnProperty("rawOutputDataConfig")) {
23004
+ let error = $root.flyteidl.admin.RawOutputDataConfig.verify(message.rawOutputDataConfig);
23005
+ if (error)
23006
+ return "rawOutputDataConfig." + error;
23007
+ }
22972
23008
  return null;
22973
23009
  };
22974
23010
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "0.22.2",
3
+ "version": "0.23.1",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",