@agent-inspect/adapter-sdk 6.14.1 → 6.15.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.
- package/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/package.json +2 -2
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.
|
|
3
|
+
"version": "6.15.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Adapter authoring toolkit with conformance and privacy helpers",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dist"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"agent-inspect": "6.
|
|
37
|
+
"agent-inspect": "6.15.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {},
|
|
40
40
|
"publishConfig": {
|