@@ -24,6 +24,7 @@ message ActivityRequest {
2424 OrchestrationInstance orchestrationInstance = 4 ;
2525 int32 taskId = 5 ;
2626 TraceContext parentTraceContext = 6 ;
27+ string taskExecutionId = 7 ;
2728}
2829
2930message ActivityResponse {
@@ -94,16 +95,19 @@ message TaskScheduledEvent {
9495 google.protobuf.StringValue version = 2 ;
9596 google.protobuf.StringValue input = 3 ;
9697 TraceContext parentTraceContext = 4 ;
98+ string taskExecutionId = 5 ;
9799}
98100
99101message TaskCompletedEvent {
100102 int32 taskScheduledId = 1 ;
101103 google.protobuf.StringValue result = 2 ;
104+ string taskExecutionId = 3 ;
102105}
103106
104107message TaskFailedEvent {
105108 int32 taskScheduledId = 1 ;
106109 TaskFailureDetails failureDetails = 2 ;
110+ string taskExecutionId = 3 ;
107111}
108112
109113message SubOrchestrationInstanceCreatedEvent {
@@ -256,6 +260,7 @@ message ScheduleTaskAction {
256260 string name = 1 ;
257261 google.protobuf.StringValue version = 2 ;
258262 google.protobuf.StringValue input = 3 ;
263+ string taskExecutionId = 4 ;
259264}
260265
261266message CreateSubOrchestrationAction {
0 commit comments