@neat.is/core 0.3.3 → 0.3.5

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
@@ -15,6 +15,18 @@ interface ExtractionError {
15
15
  ts: string;
16
16
  source: 'extract';
17
17
  }
18
+ interface DroppedExtractedEdge {
19
+ source: string;
20
+ target: string;
21
+ type: string;
22
+ confidence: number;
23
+ confidenceKind: string;
24
+ evidence: {
25
+ file: string;
26
+ line?: number;
27
+ snippet?: string;
28
+ };
29
+ }
18
30
 
19
31
  interface ExtractResult {
20
32
  nodesAdded: number;
@@ -23,6 +35,8 @@ interface ExtractResult {
23
35
  extractionErrors: number;
24
36
  errorEntries: ExtractionError[];
25
37
  ghostsRetired: number;
38
+ extractedDropped: number;
39
+ droppedEntries: DroppedExtractedEdge[];
26
40
  }
27
41
  interface ExtractOptions {
28
42
  onPolicyTrigger?: (graph: NeatGraph) => Promise<void> | void;
package/dist/index.d.ts CHANGED
@@ -15,6 +15,18 @@ interface ExtractionError {
15
15
  ts: string;
16
16
  source: 'extract';
17
17
  }
18
+ interface DroppedExtractedEdge {
19
+ source: string;
20
+ target: string;
21
+ type: string;
22
+ confidence: number;
23
+ confidenceKind: string;
24
+ evidence: {
25
+ file: string;
26
+ line?: number;
27
+ snippet?: string;
28
+ };
29
+ }
18
30
 
19
31
  interface ExtractResult {
20
32
  nodesAdded: number;
@@ -23,6 +35,8 @@ interface ExtractResult {
23
35
  extractionErrors: number;
24
36
  errorEntries: ExtractionError[];
25
37
  ghostsRetired: number;
38
+ extractedDropped: number;
39
+ droppedEntries: DroppedExtractedEdge[];
26
40
  }
27
41
  interface ExtractOptions {
28
42
  onPolicyTrigger?: (graph: NeatGraph) => Promise<void> | void;
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  routeSpanToProject,
3
3
  startDaemon
4
- } from "./chunk-ICFH326H.js";
4
+ } from "./chunk-KCEZSFU2.js";
5
5
  import {
6
6
  ProjectNameCollisionError,
7
7
  addProject,
@@ -37,7 +37,7 @@ import {
37
37
  thresholdForEdgeType,
38
38
  touchLastSeen,
39
39
  writeAtomically
40
- } from "./chunk-VABXPLDT.js";
40
+ } from "./chunk-BUB3ASD5.js";
41
41
  import {
42
42
  startOtelGrpcReceiver
43
43
  } from "./chunk-G3PDTGOW.js";