@agent-inspect/adapter-sdk 6.14.0 → 6.14.2

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
@@ -150,6 +150,14 @@ interface InspectNode {
150
150
  children: InspectNode[];
151
151
  depth: number;
152
152
  }
153
+ /** Bounded parent/cycle summary for visibility-first tree building (6.14.2+). */
154
+ interface RelationshipSummary {
155
+ rootCount: number;
156
+ selfParentCount: number;
157
+ cycleCount: number;
158
+ unresolvedParentCount: number;
159
+ normalizedEdgeCount: number;
160
+ }
153
161
  interface InspectRunTree {
154
162
  runId: string;
155
163
  name?: string;
@@ -162,6 +170,7 @@ interface InspectRunTree {
162
170
  totalEvents: number;
163
171
  confidenceBreakdown: Record<AttributionConfidence, number>;
164
172
  kinds: Record<InspectKind, number>;
173
+ relationshipSummary?: RelationshipSummary;
165
174
  };
166
175
  }
167
176
 
package/dist/index.d.ts CHANGED
@@ -150,6 +150,14 @@ interface InspectNode {
150
150
  children: InspectNode[];
151
151
  depth: number;
152
152
  }
153
+ /** Bounded parent/cycle summary for visibility-first tree building (6.14.2+). */
154
+ interface RelationshipSummary {
155
+ rootCount: number;
156
+ selfParentCount: number;
157
+ cycleCount: number;
158
+ unresolvedParentCount: number;
159
+ normalizedEdgeCount: number;
160
+ }
153
161
  interface InspectRunTree {
154
162
  runId: string;
155
163
  name?: string;
@@ -162,6 +170,7 @@ interface InspectRunTree {
162
170
  totalEvents: number;
163
171
  confidenceBreakdown: Record<AttributionConfidence, number>;
164
172
  kinds: Record<InspectKind, number>;
173
+ relationshipSummary?: RelationshipSummary;
165
174
  };
166
175
  }
167
176
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-inspect/adapter-sdk",
3
- "version": "6.14.0",
3
+ "version": "6.14.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "Adapter authoring toolkit with conformance and privacy helpers",
@@ -34,12 +34,17 @@
34
34
  "dist"
35
35
  ],
36
36
  "dependencies": {
37
- "agent-inspect": "6.14.0"
37
+ "agent-inspect": "6.14.2"
38
38
  },
39
39
  "peerDependencies": {},
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
+ "keywords": [
44
+ "adapter",
45
+ "agent-inspect",
46
+ "typescript"
47
+ ],
43
48
  "scripts": {
44
49
  "build": "pnpm --workspace-root exec tsup --config tsup.adapter-sdk.config.ts",
45
50
  "test": "vitest run -c ../../vitest.config.ts"