@@ -17,7 +17,7 @@ message TaskRouter {
1717 optional string targetAppID = 2 ;
1818}
1919
20- message OrchestrationVersioningInformation {
20+ message OrchestrationVersion {
2121 repeated string patches = 1 ;
2222}
2323
@@ -61,7 +61,7 @@ enum OrchestrationStatus {
6161 ORCHESTRATION_STATUS_TERMINATED = 5 ;
6262 ORCHESTRATION_STATUS_PENDING = 6 ;
6363 ORCHESTRATION_STATUS_SUSPENDED = 7 ;
64- ORCHESTRATION_STATUS_PENDING_PATCH_MISMATCH = 8 ;
64+ ORCHESTRATION_STATUS_STALLED = 8 ;
6565}
6666
6767message ParentInstanceInfo {
@@ -167,7 +167,7 @@ message TimerFiredEvent {
167167}
168168
169169message OrchestratorStartedEvent {
170- optional OrchestrationVersioningInformation versioningInformation = 1 ;
170+ optional OrchestrationVersion version = 1 ;
171171}
172172
173173message OrchestratorCompletedEvent {
@@ -205,8 +205,8 @@ message ExecutionResumedEvent {
205205 google.protobuf.StringValue input = 1 ;
206206}
207207
208- message ExecutionPendingVersionEvent {
209- // No payload data
208+ message ExecutionStalledEvent {
209+ StalledReason reason = 1 ;
210210}
211211
212212message EntityOperationSignaledEvent {
@@ -285,7 +285,7 @@ message HistoryEvent {
285285 EntityLockRequestedEvent entityLockRequested = 27 ;
286286 EntityLockGrantedEvent entityLockGranted = 28 ;
287287 EntityUnlockSentEvent entityUnlockSent = 29 ;
288- ExecutionPendingVersionEvent executionPendingVersion = 31 ;
288+ ExecutionStalledEvent executionStalled = 31 ;
289289 }
290290 optional TaskRouter router = 30 ;
291291}
@@ -375,7 +375,7 @@ message OrchestratorResponse {
375375 // This field is optional. If not set, the service should assume that the orchestrator processed all events.
376376 google.protobuf.Int32Value numEventsProcessed = 5 ;
377377
378- optional OrchestrationVersioningInformation versioningInformation = 6 ;
378+ optional OrchestrationVersion version = 6 ;
379379}
380380
381381message CreateInstanceRequest {
0 commit comments