footprint-explainable-ui 0.13.2 → 0.13.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -7,6 +7,8 @@ interface StageSnapshot {
7
7
  stageName: string;
8
8
  /** Human-readable label */
9
9
  stageLabel: string;
10
+ /** Unique per-execution-step identifier. Format: [subflowPath/]stageId#executionIndex. Key for recorder Map lookup. */
11
+ runtimeStageId?: string;
10
12
  /** Accumulated memory state after this stage ran */
11
13
  memory: Record<string, unknown>;
12
14
  /** Narrative text describing what happened */
package/dist/index.d.ts CHANGED
@@ -7,6 +7,8 @@ interface StageSnapshot {
7
7
  stageName: string;
8
8
  /** Human-readable label */
9
9
  stageLabel: string;
10
+ /** Unique per-execution-step identifier. Format: [subflowPath/]stageId#executionIndex. Key for recorder Map lookup. */
11
+ runtimeStageId?: string;
10
12
  /** Accumulated memory state after this stage ran */
11
13
  memory: Record<string, unknown>;
12
14
  /** Narrative text describing what happened */
package/dist/index.js CHANGED
@@ -2278,6 +2278,7 @@ function flattenTree(node, out, sharedState, accumulatedMs = 0, subflowResults,
2278
2278
  out.push({
2279
2279
  stageName: displayName,
2280
2280
  stageLabel: stageId,
2281
+ runtimeStageId: node.runtimeStageId ?? void 0,
2281
2282
  memory,
2282
2283
  narrative,
2283
2284
  startMs,