refresh collected sites/mcp for docstring changes in dagpipe, mail-intake, openapi-first

This commit is contained in:
2026-09-14 00:18:17 +05:30
parent 9516e0b4cb
commit bbd9863d23
36 changed files with 1037 additions and 299 deletions

View File

@@ -737,6 +737,21 @@
</span>
</a>
<nav class="md-nav" aria-label="StepResult">
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="#dagpipe.engine.StepResult-functions" class="md-nav__link">
<span class="md-ellipsis">
Functions
</span>
</a>
</li>
</ul>
</nav>
</li>
</ul>
@@ -1023,6 +1038,21 @@
</span>
</a>
<nav class="md-nav" aria-label="StepResult">
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="#dagpipe.engine.StepResult-functions" class="md-nav__link">
<span class="md-ellipsis">
Functions
</span>
</a>
</li>
</ul>
</nav>
</li>
</ul>
@@ -1497,7 +1527,7 @@ are both supported.</p>
<tr class="doc-section-item">
<td><code>resume_from</code></td>
<td>
<code>int</code>
<code>int | None</code>
</td>
<td>
<div class="doc-md-description">
@@ -1512,7 +1542,7 @@ Steps are 0-indexed.</p>
<tr class="doc-section-item">
<td><code>on_step</code></td>
<td>
<code><span title="dagpipe.engine.StepHook">StepHook</span></code>
<code><span title="dagpipe.engine.StepHook">StepHook</span> | None</code>
</td>
<td>
<div class="doc-md-description">
@@ -1619,7 +1649,7 @@ orchestrator. Use <code>run_steps_async</code> for async nodes.</p>
<tr class="doc-section-item">
<td><code>resume_from</code></td>
<td>
<code>int</code>
<code>int | None</code>
</td>
<td>
<div class="doc-md-description">
@@ -1633,7 +1663,7 @@ orchestrator. Use <code>run_steps_async</code> for async nodes.</p>
<tr class="doc-section-item">
<td><code>on_step</code></td>
<td>
<code><span title="dagpipe.engine.AsyncStepHook">AsyncStepHook</span></code>
<code><span title="dagpipe.engine.AsyncStepHook">AsyncStepHook</span> | None</code>
</td>
<td>
<div class="doc-md-description">
@@ -1805,7 +1835,7 @@ callers can surface counts/lines/errors without coupling the engine to pydantic.
<tr class="doc-section-item">
<td><code><span title="dagpipe.engine.StepResult.states">states</span></code></td>
<td>
<code>Tuple[<a class="autorefs autorefs-internal" title="dagpipe.state.State" href="../dagpipe/state/#dagpipe.state.State">State</a>, ...]</code>
<code>tuple[<a class="autorefs autorefs-internal" title="dagpipe.state.State" href="../dagpipe/state/#dagpipe.state.State">State</a>, ...]</code>
</td>
<td>
<div class="doc-md-description">
@@ -1827,6 +1857,79 @@ callers can surface counts/lines/errors without coupling the engine to pydantic.
</tbody>
</table>
<p>Initialise StepResult.</p>
<p><span class="doc-section-title">Parameters:</span></p>
<table>
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
<th>Default</th>
</tr>
</thead>
<tbody>
<tr class="doc-section-item">
<td><code>index</code></td>
<td>
<code>int</code>
</td>
<td>
<div class="doc-md-description">
<p>Ordinal index of the step.</p>
</div>
</td>
<td>
<em>required</em>
</td>
</tr>
<tr class="doc-section-item">
<td><code>node_id</code></td>
<td>
<code>str</code>
</td>
<td>
<div class="doc-md-description">
<p>Identifier of the node associated with this step.</p>
</div>
</td>
<td>
<em>required</em>
</td>
</tr>
<tr class="doc-section-item">
<td><code>states</code></td>
<td>
<code>tuple[<a class="autorefs autorefs-internal" title="dagpipe.state.State" href="../dagpipe/state/#dagpipe.state.State">State</a>, ...]</code>
</td>
<td>
<div class="doc-md-description">
<p>States produced by running this step.</p>
</div>
</td>
<td>
<em>required</em>
</td>
</tr>
<tr class="doc-section-item">
<td><code>completed</code></td>
<td>
<code>bool</code>
</td>
<td>
<div class="doc-md-description">
<p>Whether this step succeeded (vs. paused/interrupted).</p>
</div>
</td>
<td>
<em>required</em>
</td>
</tr>
</tbody>
</table>
@@ -1838,7 +1941,7 @@ callers can surface counts/lines/errors without coupling the engine to pydantic.
<h5 id="dagpipe.engine.StepResult-functions">Functions</h5>