footprintjs 4.4.1 → 4.5.0

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.
@@ -7,6 +7,8 @@
7
7
  */
8
8
  export interface RecorderContext {
9
9
  stageName: string;
10
+ /** Stable stage identifier (matches spec node id). */
11
+ stageId: string;
10
12
  pipelineId: string;
11
13
  timestamp: number;
12
14
  }
@@ -39,11 +41,9 @@ export interface StageEvent extends RecorderContext {
39
41
  duration?: number;
40
42
  }
41
43
  export interface PauseEvent extends RecorderContext {
42
- stageId: string;
43
44
  pauseData?: unknown;
44
45
  }
45
46
  export interface ResumeEvent extends RecorderContext {
46
- stageId: string;
47
47
  hasInput: boolean;
48
48
  }
49
49
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "footprintjs",
3
- "version": "4.4.1",
3
+ "version": "4.5.0",
4
4
  "description": "Explainable backend flows — automatic causal traces, decision evidence, and MCP tool generation for AI agents",
5
5
  "license": "MIT",
6
6
  "author": "Sanjay Krishna Anbalagan",