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/flowchart.d.cts +2 -0
- package/dist/flowchart.d.ts +2 -0
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/flowchart.d.cts
CHANGED
|
@@ -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/flowchart.d.ts
CHANGED
|
@@ -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