From d4e5a6b74ea2c09725822bca579debae093f85ce Mon Sep 17 00:00:00 2001 From: rob-buskens-sp <105882429+rob-buskens-sp@users.noreply.github.com> Date: Mon, 27 May 2024 12:37:38 -0500 Subject: [PATCH] missing enum definitions that cause sdks failures --- idn/v3/schemas/workflows/WorkflowExecution.yaml | 1 + idn/v3/schemas/workflows/WorkflowExecutionEvent.yaml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/idn/v3/schemas/workflows/WorkflowExecution.yaml b/idn/v3/schemas/workflows/WorkflowExecution.yaml index bdcf21787..c7a4e9b33 100644 --- a/idn/v3/schemas/workflows/WorkflowExecution.yaml +++ b/idn/v3/schemas/workflows/WorkflowExecution.yaml @@ -26,6 +26,7 @@ properties: description: The workflow execution status type: string enum: + - "Executing" - "Completed" - "Failed" - "Canceled" diff --git a/idn/v3/schemas/workflows/WorkflowExecutionEvent.yaml b/idn/v3/schemas/workflows/WorkflowExecutionEvent.yaml index 371522633..8405e22ad 100644 --- a/idn/v3/schemas/workflows/WorkflowExecutionEvent.yaml +++ b/idn/v3/schemas/workflows/WorkflowExecutionEvent.yaml @@ -1,8 +1,11 @@ type: object properties: type: + type: string description: The type of event enum: + - TimerFired + - TimerStarted - WorkflowExecutionScheduled - WorkflowExecutionStarted - WorkflowExecutionCompleted @@ -11,6 +14,7 @@ properties: - WorkflowTaskStarted - WorkflowTaskCompleted - WorkflowTaskFailed + - WorkflowTaskTimedOut - ActivityTaskScheduled - ActivityTaskStarted - ActivityTaskCompleted