# `SquidMesh.StepRun`
[🔗](https://github.com/ccarvalho-eng/squid_mesh/blob/main/lib/squid_mesh/step_run.ex#L1)

Public representation of one workflow step execution.

Step runs provide the run timeline needed for inspection, debugging, and
replay decisions without exposing internal persistence records directly.

# `status`

```elixir
@type status() :: :pending | :running | :completed | :failed
```

# `t`

```elixir
@type t() :: %SquidMesh.StepRun{
  attempts: term(),
  id: term(),
  input: term(),
  inserted_at: term(),
  last_error: term(),
  output: term(),
  recovery: term(),
  status: term(),
  step: term(),
  updated_at: term()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
