From 7d162b42da7a2cffc0927a3f85c3c8b373f136c7 Mon Sep 17 00:00:00 2001 From: Sophia Tevosyan Date: Sun, 13 Jul 2025 23:11:34 -0700 Subject: [PATCH 1/2] first commit --- protos/orchestrator_service.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protos/orchestrator_service.proto b/protos/orchestrator_service.proto index b2ca147..6d99eee 100644 --- a/protos/orchestrator_service.proto +++ b/protos/orchestrator_service.proto @@ -333,6 +333,7 @@ message OrchestratorResponse { // The number of work item events that were processed by the orchestrator. // This field is optional. If not set, the service should assume that the orchestrator processed all events. google.protobuf.Int32Value numEventsProcessed = 5; + bool requiresHistory = 6; } message CreateInstanceRequest { From 930a06ef7df4f3156fdaa619e8e4d6439d43fcb5 Mon Sep 17 00:00:00 2001 From: Sophia Tevosyan Date: Fri, 1 Aug 2025 15:57:11 -0700 Subject: [PATCH 2/2] comment update --- protos/orchestrator_service.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protos/orchestrator_service.proto b/protos/orchestrator_service.proto index 6d99eee..8b22a85 100644 --- a/protos/orchestrator_service.proto +++ b/protos/orchestrator_service.proto @@ -333,6 +333,7 @@ message OrchestratorResponse { // The number of work item events that were processed by the orchestrator. // This field is optional. If not set, the service should assume that the orchestrator processed all events. google.protobuf.Int32Value numEventsProcessed = 5; + // Whether or not a history is required to complete the original OrchestratorRequest and none was provided. bool requiresHistory = 6; }