Skip to content

Commit

Permalink
fix(workflowexecutions): update the API
Browse files Browse the repository at this point in the history
#### workflowexecutions:v1

The following keys were changed:
- schemas.StepEntryMetadata.properties.progressNumber.description
  • Loading branch information
yoshi-automation authored and sofisl committed Jan 29, 2025
1 parent 1de1750 commit 9d7a90d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions discovery/workflowexecutions-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@
}
}
},
"revision": "20240916",
"revision": "20241001",
"rootUrl": "https://workflowexecutions.googleapis.com/",
"schemas": {
"Callback": {
Expand Down Expand Up @@ -1105,7 +1105,7 @@
"type": "string"
},
"progressNumber": {
"description": "Progress number represents the current state of the current progress. eg: A step entry represents the 4th iteration in a progress of PROGRESS_TYPE_FOR.",
"description": "Progress number represents the current state of the current progress. eg: A step entry represents the 4th iteration in a progress of PROGRESS_TYPE_FOR. Note: This field is only populated when an iteration exists and the starting value is 1.",
"format": "int64",
"type": "string"
},
Expand Down
2 changes: 1 addition & 1 deletion src/apis/workflowexecutions/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ export namespace workflowexecutions_v1 {
*/
expectedIteration?: string | null;
/**
* Progress number represents the current state of the current progress. eg: A step entry represents the 4th iteration in a progress of PROGRESS_TYPE_FOR.
* Progress number represents the current state of the current progress. eg: A step entry represents the 4th iteration in a progress of PROGRESS_TYPE_FOR. Note: This field is only populated when an iteration exists and the starting value is 1.
*/
progressNumber?: string | null;
/**
Expand Down

0 comments on commit 9d7a90d

Please sign in to comment.