diff --git a/protos/orchestrator_service.proto b/protos/orchestrator_service.proto index 7334c59..f795d3b 100644 --- a/protos/orchestrator_service.proto +++ b/protos/orchestrator_service.proto @@ -161,8 +161,15 @@ message TimerFiredEvent { int32 timerId = 2; } +// Contains values used to identify which workflow is executed as part of a versioned operation. +message WorkflowVersion { + // The name of the workflow executed as part of this version. + string name = 1; +} + message OrchestratorStartedEvent { - // No payload data + // Optionally identifies the workflow executed as part of a versioned operation. + optional WorkflowVersion Version = 1; } message OrchestratorCompletedEvent {