Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -13559,6 +13559,11 @@
"executionDuration": {
"type": "string",
"description": "The difference between close time and scheduled time.\nThis field is only populated if the activity is closed."
},
"executionTime": {
"type": "string",
"format": "date-time",
"description": "The time at which the first activity task is made available for dispatch, computed as\n`schedule_time + start_delay`. Same as `schedule_time` if `start_delay` is not set."
}
},
"description": "Limited activity information returned in the list response.\nWhen adding fields here, ensure that it is also present in ActivityExecutionInfo (note that it\nmay already be present in ActivityExecutionInfo but not at the top-level)."
Expand Down
6 changes: 6 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9913,6 +9913,12 @@ components:
description: |-
The difference between close time and scheduled time.
This field is only populated if the activity is closed.
executionTime:
type: string
description: |-
The time at which the first activity task is made available for dispatch, computed as
`schedule_time + start_delay`. Same as `schedule_time` if `start_delay` is not set.
format: date-time
description: |-
Limited activity information returned in the list response.
When adding fields here, ensure that it is also present in ActivityExecutionInfo (note that it
Expand Down
3 changes: 3 additions & 0 deletions temporal/api/activity/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,9 @@ message ActivityExecutionListInfo {
// The difference between close time and scheduled time.
// This field is only populated if the activity is closed.
google.protobuf.Duration execution_duration = 11;
// The time at which the first activity task is made available for dispatch, computed as
// `schedule_time + start_delay`. Same as `schedule_time` if `start_delay` is not set.
google.protobuf.Timestamp execution_time = 12;
}

// CallbackInfo contains the state of an attached activity callback.
Expand Down
Loading