Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/keboola_agent_cli/services/flow_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,12 @@ def get_flow_detail(
config_id: str,
branch_id: int | None = None,
) -> dict[str, Any]:
"""Return full flow detail including phases, tasks, and schedule info.
"""Return flow configuration detail including parsed phases and tasks.

The result is the raw config detail enriched with ``phases``, ``tasks``,
``phase_count``, ``task_count``, ``component_id``, ``branch_id`` and
``project_alias``. Schedule info is NOT included -- schedules live in a
separate scheduler config (see ``list_flows(with_schedules=True)``).

Raises:
ConfigError: If alias is not found.
Expand Down