@flyteorg/flyteidl 1.1.6 → 1.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "1.1.6",
3
+ "version": "1.1.9",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -645,7 +645,7 @@ Represents the error message from the execution.
645
645
  NodeExecution
646
646
  ------------------------------------------------------------------
647
647
 
648
- Indicates various phases of Node Execution
648
+ Indicates various phases of Node Execution that only include the time spent to run the nodes/workflows
649
649
 
650
650
 
651
651
 
@@ -22,7 +22,7 @@ message WorkflowExecution {
22
22
  }
23
23
  }
24
24
 
25
- // Indicates various phases of Node Execution
25
+ // Indicates various phases of Node Execution that only include the time spent to run the nodes/workflows
26
26
  message NodeExecution {
27
27
  enum Phase {
28
28
  UNDEFINED = 0;
@@ -6,6 +6,8 @@ import "flyteidl/core/literals.proto";
6
6
  import "google/protobuf/duration.proto";
7
7
  import "google/protobuf/timestamp.proto";
8
8
 
9
+ option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/datacatalog";
10
+
9
11
  /*
10
12
  * Data Catalog service definition
11
13
  * Data Catalog is a service for indexing parameterized, strongly-typed data artifacts across revisions.
@@ -37,7 +39,7 @@ service DataCatalog {
37
39
 
38
40
  // Attempts to get or extend a reservation for the corresponding artifact. If one already exists
39
41
  // (ie. another entity owns the reservation) then that reservation is retrieved.
40
- // Once you acquire a reservation, you need to periodically extend the reservation with an
42
+ // Once you acquire a reservation, you need to periodically extend the reservation with an
41
43
  // identical call. If the reservation is not extended before the defined expiration, it may be
42
44
  // acquired by another task.
43
45
  // Note: We may have multiple concurrent tasks with the same signature and the same input that