Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration WorkflowStatus

Represents the possible statuses for a Workflow in the Workflow Space. Values match the WebSocket message status field from Cognigy: success | error | timeout | onGoing | failed. ON_GOING is the only non-terminal status; all others end the workflow.

Index

Enumeration Members

COMPLETED: "completed"
deprecated

Use SUCCESS. Retained as a compatibility alias so existing consumers compile without changes while they migrate.

ERROR: "error"

Workflow ended with an error.

FAILED: "failed"

Workflow ended in failure.

ON_GOING: "onGoing"

Workflow is in progress.

RUNNING: "ongoing"
deprecated

Use ON_GOING. Retained as a compatibility alias so existing consumers compile without changes while they migrate.

SUCCESS: "success"

Workflow ended successfully.

TIMEOUT: "timeout"

Workflow ended due to a timeout.

WAITING: "waiting"
deprecated

Use ON_GOING. Retained as a compatibility alias so existing consumers compile without changes while they migrate.

Generated using TypeDoc