@@ -24,6 +24,7 @@ message ActivityRequest {
24
24
OrchestrationInstance orchestrationInstance = 4 ;
25
25
int32 taskId = 5 ;
26
26
TraceContext parentTraceContext = 6 ;
27
+ string taskExecutionId = 7 ;
27
28
}
28
29
29
30
message ActivityResponse {
@@ -94,16 +95,19 @@ message TaskScheduledEvent {
94
95
google.protobuf.StringValue version = 2 ;
95
96
google.protobuf.StringValue input = 3 ;
96
97
TraceContext parentTraceContext = 4 ;
98
+ string taskExecutionId = 5 ;
97
99
}
98
100
99
101
message TaskCompletedEvent {
100
102
int32 taskScheduledId = 1 ;
101
103
google.protobuf.StringValue result = 2 ;
104
+ string taskExecutionId = 3 ;
102
105
}
103
106
104
107
message TaskFailedEvent {
105
108
int32 taskScheduledId = 1 ;
106
109
TaskFailureDetails failureDetails = 2 ;
110
+ string taskExecutionId = 3 ;
107
111
}
108
112
109
113
message SubOrchestrationInstanceCreatedEvent {
@@ -256,6 +260,7 @@ message ScheduleTaskAction {
256
260
string name = 1 ;
257
261
google.protobuf.StringValue version = 2 ;
258
262
google.protobuf.StringValue input = 3 ;
263
+ string taskExecutionId = 4 ;
259
264
}
260
265
261
266
message CreateSubOrchestrationAction {
0 commit comments