footprint-explainable-ui 0.13.1 → 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.
@@ -9,6 +9,8 @@ interface StageSnapshot {
9
9
  stageName: string;
10
10
  /** Human-readable label */
11
11
  stageLabel: string;
12
+ /** Unique per-execution-step identifier. Format: [subflowPath/]stageId#executionIndex. Key for recorder Map lookup. */
13
+ runtimeStageId?: string;
12
14
  /** Accumulated memory state after this stage ran */
13
15
  memory: Record<string, unknown>;
14
16
  /** Narrative text describing what happened */
@@ -9,6 +9,8 @@ interface StageSnapshot {
9
9
  stageName: string;
10
10
  /** Human-readable label */
11
11
  stageLabel: string;
12
+ /** Unique per-execution-step identifier. Format: [subflowPath/]stageId#executionIndex. Key for recorder Map lookup. */
13
+ runtimeStageId?: string;
12
14
  /** Accumulated memory state after this stage ran */
13
15
  memory: Record<string, unknown>;
14
16
  /** Narrative text describing what happened */
package/dist/index.cjs CHANGED
@@ -2331,6 +2331,7 @@ function flattenTree(node, out, sharedState, accumulatedMs = 0, subflowResults,
2331
2331
  out.push({
2332
2332
  stageName: displayName,
2333
2333
  stageLabel: stageId,
2334
+ runtimeStageId: node.runtimeStageId ?? void 0,
2334
2335
  memory,
2335
2336
  narrative,
2336
2337
  startMs,