@@ -29,6 +29,7 @@ message ActivityRequest {
29
29
OrchestrationInstance orchestrationInstance = 4 ;
30
30
int32 taskId = 5 ;
31
31
TraceContext parentTraceContext = 6 ;
32
+ string taskExecutionId = 7 ;
32
33
}
33
34
34
35
message ActivityResponse {
@@ -99,16 +100,19 @@ message TaskScheduledEvent {
99
100
google.protobuf.StringValue version = 2 ;
100
101
google.protobuf.StringValue input = 3 ;
101
102
TraceContext parentTraceContext = 4 ;
103
+ string taskExecutionId = 5 ;
102
104
}
103
105
104
106
message TaskCompletedEvent {
105
107
int32 taskScheduledId = 1 ;
106
108
google.protobuf.StringValue result = 2 ;
109
+ string taskExecutionId = 3 ;
107
110
}
108
111
109
112
message TaskFailedEvent {
110
113
int32 taskScheduledId = 1 ;
111
114
TaskFailureDetails failureDetails = 2 ;
115
+ string taskExecutionId = 3 ;
112
116
}
113
117
114
118
message SubOrchestrationInstanceCreatedEvent {
@@ -263,6 +267,7 @@ message ScheduleTaskAction {
263
267
google.protobuf.StringValue version = 2 ;
264
268
google.protobuf.StringValue input = 3 ;
265
269
optional TaskRouter router = 4 ;
270
+ string taskExecutionId = 5 ;
266
271
}
267
272
268
273
message CreateSubOrchestrationAction {
0 commit comments