@@ -29,6 +29,7 @@ message ActivityRequest {
2929 OrchestrationInstance orchestrationInstance = 4 ;
3030 int32 taskId = 5 ;
3131 TraceContext parentTraceContext = 6 ;
32+ string taskExecutionId = 7 ;
3233}
3334
3435message ActivityResponse {
@@ -99,16 +100,19 @@ message TaskScheduledEvent {
99100 google.protobuf.StringValue version = 2 ;
100101 google.protobuf.StringValue input = 3 ;
101102 TraceContext parentTraceContext = 4 ;
103+ string taskExecutionId = 5 ;
102104}
103105
104106message TaskCompletedEvent {
105107 int32 taskScheduledId = 1 ;
106108 google.protobuf.StringValue result = 2 ;
109+ string taskExecutionId = 3 ;
107110}
108111
109112message TaskFailedEvent {
110113 int32 taskScheduledId = 1 ;
111114 TaskFailureDetails failureDetails = 2 ;
115+ string taskExecutionId = 3 ;
112116}
113117
114118message SubOrchestrationInstanceCreatedEvent {
@@ -263,6 +267,7 @@ message ScheduleTaskAction {
263267 google.protobuf.StringValue version = 2 ;
264268 google.protobuf.StringValue input = 3 ;
265269 optional TaskRouter router = 4 ;
270+ string taskExecutionId = 5 ;
266271}
267272
268273message CreateSubOrchestrationAction {
0 commit comments