@neat.is/types 0.6.3 → 0.7.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 CHANGED
@@ -17,6 +17,8 @@ declare const EdgeType: {
17
17
  readonly RUNS_ON: "RUNS_ON";
18
18
  readonly CONTAINS: "CONTAINS";
19
19
  readonly IMPORTS: "IMPORTS";
20
+ readonly INHERITS: "INHERITS";
21
+ readonly IMPLEMENTS: "IMPLEMENTS";
20
22
  };
21
23
  type EdgeTypeValue = (typeof EdgeType)[keyof typeof EdgeType];
22
24
  declare const NodeType: {
@@ -30,10 +32,11 @@ declare const NodeType: {
30
32
  readonly GraphQLOperationNode: "GraphQLOperationNode";
31
33
  readonly GrpcMethodNode: "GrpcMethodNode";
32
34
  readonly WebSocketChannelNode: "WebSocketChannelNode";
35
+ readonly SymbolNode: "SymbolNode";
33
36
  };
34
37
  type NodeTypeValue = (typeof NodeType)[keyof typeof NodeType];
35
38
 
36
- declare const NodeTypeSchema: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
39
+ declare const NodeTypeSchema: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
37
40
 
38
41
  declare const CompatibleDriverSchema: z.ZodObject<{
39
42
  name: z.ZodString;
@@ -522,6 +525,63 @@ declare const WebSocketChannelNodeSchema: z.ZodObject<{
522
525
  line?: number | undefined;
523
526
  }>;
524
527
  type WebSocketChannelNode = z.infer<typeof WebSocketChannelNodeSchema>;
528
+ declare const SymbolKindSchema: z.ZodEnum<["function", "method", "constructor", "class"]>;
529
+ type SymbolKind = z.infer<typeof SymbolKindSchema>;
530
+ declare const SymbolSpanSchema: z.ZodObject<{
531
+ startLine: z.ZodNumber;
532
+ endLine: z.ZodNumber;
533
+ }, "strip", z.ZodTypeAny, {
534
+ startLine: number;
535
+ endLine: number;
536
+ }, {
537
+ startLine: number;
538
+ endLine: number;
539
+ }>;
540
+ type SymbolSpan = z.infer<typeof SymbolSpanSchema>;
541
+ declare const SymbolNodeSchema: z.ZodObject<{
542
+ id: z.ZodString;
543
+ type: z.ZodLiteral<"SymbolNode">;
544
+ kind: z.ZodEnum<["function", "method", "constructor", "class"]>;
545
+ qualname: z.ZodString;
546
+ span: z.ZodObject<{
547
+ startLine: z.ZodNumber;
548
+ endLine: z.ZodNumber;
549
+ }, "strip", z.ZodTypeAny, {
550
+ startLine: number;
551
+ endLine: number;
552
+ }, {
553
+ startLine: number;
554
+ endLine: number;
555
+ }>;
556
+ service: z.ZodString;
557
+ relPath: z.ZodString;
558
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
559
+ }, "strip", z.ZodTypeAny, {
560
+ type: "SymbolNode";
561
+ id: string;
562
+ kind: "function" | "method" | "constructor" | "class";
563
+ service: string;
564
+ qualname: string;
565
+ span: {
566
+ startLine: number;
567
+ endLine: number;
568
+ };
569
+ relPath: string;
570
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
571
+ }, {
572
+ type: "SymbolNode";
573
+ id: string;
574
+ kind: "function" | "method" | "constructor" | "class";
575
+ service: string;
576
+ qualname: string;
577
+ span: {
578
+ startLine: number;
579
+ endLine: number;
580
+ };
581
+ relPath: string;
582
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
583
+ }>;
584
+ type SymbolNode = z.infer<typeof SymbolNodeSchema>;
525
585
  declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
526
586
  id: z.ZodString;
527
587
  type: z.ZodLiteral<"ServiceNode">;
@@ -976,11 +1036,53 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
976
1036
  path?: string | undefined;
977
1037
  discoveredVia?: "static" | "otel" | "merged" | undefined;
978
1038
  line?: number | undefined;
1039
+ }>, z.ZodObject<{
1040
+ id: z.ZodString;
1041
+ type: z.ZodLiteral<"SymbolNode">;
1042
+ kind: z.ZodEnum<["function", "method", "constructor", "class"]>;
1043
+ qualname: z.ZodString;
1044
+ span: z.ZodObject<{
1045
+ startLine: z.ZodNumber;
1046
+ endLine: z.ZodNumber;
1047
+ }, "strip", z.ZodTypeAny, {
1048
+ startLine: number;
1049
+ endLine: number;
1050
+ }, {
1051
+ startLine: number;
1052
+ endLine: number;
1053
+ }>;
1054
+ service: z.ZodString;
1055
+ relPath: z.ZodString;
1056
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
1057
+ }, "strip", z.ZodTypeAny, {
1058
+ type: "SymbolNode";
1059
+ id: string;
1060
+ kind: "function" | "method" | "constructor" | "class";
1061
+ service: string;
1062
+ qualname: string;
1063
+ span: {
1064
+ startLine: number;
1065
+ endLine: number;
1066
+ };
1067
+ relPath: string;
1068
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
1069
+ }, {
1070
+ type: "SymbolNode";
1071
+ id: string;
1072
+ kind: "function" | "method" | "constructor" | "class";
1073
+ service: string;
1074
+ qualname: string;
1075
+ span: {
1076
+ startLine: number;
1077
+ endLine: number;
1078
+ };
1079
+ relPath: string;
1080
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
979
1081
  }>]>;
980
1082
  type GraphNode = z.infer<typeof GraphNodeSchema>;
981
1083
 
982
1084
  declare const ProvenanceSchema: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
983
- declare const EdgeTypeSchema: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1085
+ declare const EdgeTypeSchema: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
984
1086
  declare const EdgeEvidenceSchema: z.ZodObject<{
985
1087
  file: z.ZodString;
986
1088
  line: z.ZodOptional<z.ZodNumber>;
@@ -1019,7 +1121,7 @@ declare const GraphEdgeSchema: z.ZodObject<{
1019
1121
  id: z.ZodString;
1020
1122
  source: z.ZodString;
1021
1123
  target: z.ZodString;
1022
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1124
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
1023
1125
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1024
1126
  confidence: z.ZodOptional<z.ZodNumber>;
1025
1127
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -1058,7 +1160,7 @@ declare const GraphEdgeSchema: z.ZodObject<{
1058
1160
  }>>;
1059
1161
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
1060
1162
  }, "strip", z.ZodTypeAny, {
1061
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1163
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1062
1164
  id: string;
1063
1165
  source: string;
1064
1166
  target: string;
@@ -1080,7 +1182,7 @@ declare const GraphEdgeSchema: z.ZodObject<{
1080
1182
  } | undefined;
1081
1183
  grain?: "service" | "file" | undefined;
1082
1184
  }, {
1083
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1185
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1084
1186
  id: string;
1085
1187
  source: string;
1086
1188
  target: string;
@@ -1310,16 +1412,16 @@ type BlastRadiusResult = z.infer<typeof BlastRadiusResultSchema>;
1310
1412
  declare const TransitiveDependencySchema: z.ZodObject<{
1311
1413
  nodeId: z.ZodString;
1312
1414
  distance: z.ZodNumber;
1313
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1415
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
1314
1416
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1315
1417
  }, "strip", z.ZodTypeAny, {
1316
1418
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1317
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1419
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1318
1420
  nodeId: string;
1319
1421
  distance: number;
1320
1422
  }, {
1321
1423
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1322
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1424
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1323
1425
  nodeId: string;
1324
1426
  distance: number;
1325
1427
  }>;
@@ -1330,16 +1432,16 @@ declare const TransitiveDependenciesResultSchema: z.ZodObject<{
1330
1432
  dependencies: z.ZodArray<z.ZodObject<{
1331
1433
  nodeId: z.ZodString;
1332
1434
  distance: z.ZodNumber;
1333
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1435
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
1334
1436
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1335
1437
  }, "strip", z.ZodTypeAny, {
1336
1438
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1337
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1439
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1338
1440
  nodeId: string;
1339
1441
  distance: number;
1340
1442
  }, {
1341
1443
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1342
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1444
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1343
1445
  nodeId: string;
1344
1446
  distance: number;
1345
1447
  }>, "many">;
@@ -1347,7 +1449,7 @@ declare const TransitiveDependenciesResultSchema: z.ZodObject<{
1347
1449
  }, "strip", z.ZodTypeAny, {
1348
1450
  dependencies: {
1349
1451
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1350
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1452
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1351
1453
  nodeId: string;
1352
1454
  distance: number;
1353
1455
  }[];
@@ -1357,7 +1459,7 @@ declare const TransitiveDependenciesResultSchema: z.ZodObject<{
1357
1459
  }, {
1358
1460
  dependencies: {
1359
1461
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1360
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1462
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1361
1463
  nodeId: string;
1362
1464
  distance: number;
1363
1465
  }[];
@@ -1372,7 +1474,7 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1372
1474
  id: z.ZodString;
1373
1475
  source: z.ZodString;
1374
1476
  target: z.ZodString;
1375
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1477
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
1376
1478
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1377
1479
  confidence: z.ZodOptional<z.ZodNumber>;
1378
1480
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -1411,7 +1513,7 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1411
1513
  }>>;
1412
1514
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
1413
1515
  }, "strip", z.ZodTypeAny, {
1414
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1516
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1415
1517
  id: string;
1416
1518
  source: string;
1417
1519
  target: string;
@@ -1433,7 +1535,7 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1433
1535
  } | undefined;
1434
1536
  grain?: "service" | "file" | undefined;
1435
1537
  }, {
1436
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1538
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1437
1539
  id: string;
1438
1540
  source: string;
1439
1541
  target: string;
@@ -1460,7 +1562,7 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1460
1562
  hasExtractedOutbound: z.ZodBoolean;
1461
1563
  }, "strip", z.ZodTypeAny, {
1462
1564
  dependencies: {
1463
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1565
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1464
1566
  id: string;
1465
1567
  source: string;
1466
1568
  target: string;
@@ -1488,7 +1590,7 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1488
1590
  hasExtractedOutbound: boolean;
1489
1591
  }, {
1490
1592
  dependencies: {
1491
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1593
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1492
1594
  id: string;
1493
1595
  source: string;
1494
1596
  target: string;
@@ -1561,6 +1663,13 @@ declare function parseWebsocketChannelId(id: string): {
1561
1663
  service: string;
1562
1664
  channel: string;
1563
1665
  } | null;
1666
+ declare function symbolId(service: string, relPath: string, qualname: string, disambiguator?: number): string;
1667
+ declare function parseSymbolId(id: string): {
1668
+ service: string;
1669
+ relPath: string;
1670
+ qualname: string;
1671
+ disambiguator?: number;
1672
+ } | null;
1564
1673
  declare function extractedEdgeId(source: string, target: string, type: string): string;
1565
1674
  declare function observedEdgeId(source: string, target: string, type: string): string;
1566
1675
  declare function inferredEdgeId(source: string, target: string, type: string): string;
@@ -1578,19 +1687,19 @@ declare const PolicyActionSchema: z.ZodEnum<["log", "alert", "block"]>;
1578
1687
  type PolicyAction = z.infer<typeof PolicyActionSchema>;
1579
1688
  declare const StructuralRuleSchema: z.ZodObject<{
1580
1689
  type: z.ZodLiteral<"structural">;
1581
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1582
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1583
- toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1690
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1691
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
1692
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1584
1693
  }, "strip", z.ZodTypeAny, {
1585
1694
  type: "structural";
1586
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1587
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1588
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1695
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1696
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1697
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1589
1698
  }, {
1590
1699
  type: "structural";
1591
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1592
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1593
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1700
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1701
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1702
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1594
1703
  }>;
1595
1704
  type StructuralRule = z.infer<typeof StructuralRuleSchema>;
1596
1705
  declare const CompatibilityRuleSchema: z.ZodObject<{
@@ -1606,67 +1715,67 @@ declare const CompatibilityRuleSchema: z.ZodObject<{
1606
1715
  type CompatibilityRule = z.infer<typeof CompatibilityRuleSchema>;
1607
1716
  declare const ProvenanceRuleSchema: z.ZodObject<{
1608
1717
  type: z.ZodLiteral<"provenance">;
1609
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1718
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
1610
1719
  targetNodeId: z.ZodOptional<z.ZodString>;
1611
1720
  required: z.ZodUnion<[z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">]>;
1612
1721
  }, "strip", z.ZodTypeAny, {
1613
1722
  type: "provenance";
1614
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1723
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1615
1724
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1616
1725
  targetNodeId?: string | undefined;
1617
1726
  }, {
1618
1727
  type: "provenance";
1619
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1728
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1620
1729
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1621
1730
  targetNodeId?: string | undefined;
1622
1731
  }>;
1623
1732
  type ProvenanceRule = z.infer<typeof ProvenanceRuleSchema>;
1624
1733
  declare const OwnershipRuleSchema: z.ZodObject<{
1625
1734
  type: z.ZodLiteral<"ownership">;
1626
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1735
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1627
1736
  field: z.ZodDefault<z.ZodString>;
1628
1737
  }, "strip", z.ZodTypeAny, {
1629
1738
  type: "ownership";
1630
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1739
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1631
1740
  field: string;
1632
1741
  }, {
1633
1742
  type: "ownership";
1634
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1743
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1635
1744
  field?: string | undefined;
1636
1745
  }>;
1637
1746
  type OwnershipRule = z.infer<typeof OwnershipRuleSchema>;
1638
1747
  declare const BlastRadiusRuleSchema: z.ZodObject<{
1639
1748
  type: z.ZodLiteral<"blast-radius">;
1640
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1749
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1641
1750
  maxAffected: z.ZodNumber;
1642
1751
  depth: z.ZodOptional<z.ZodNumber>;
1643
1752
  }, "strip", z.ZodTypeAny, {
1644
1753
  type: "blast-radius";
1645
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1754
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1646
1755
  maxAffected: number;
1647
1756
  depth?: number | undefined;
1648
1757
  }, {
1649
1758
  type: "blast-radius";
1650
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1759
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1651
1760
  maxAffected: number;
1652
1761
  depth?: number | undefined;
1653
1762
  }>;
1654
1763
  type BlastRadiusRule = z.infer<typeof BlastRadiusRuleSchema>;
1655
1764
  declare const PolicyRuleSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1656
1765
  type: z.ZodLiteral<"structural">;
1657
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1658
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1659
- toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1766
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1767
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
1768
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1660
1769
  }, "strip", z.ZodTypeAny, {
1661
1770
  type: "structural";
1662
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1663
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1664
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1771
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1772
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1773
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1665
1774
  }, {
1666
1775
  type: "structural";
1667
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1668
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1669
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1776
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1777
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1778
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1670
1779
  }>, z.ZodObject<{
1671
1780
  type: z.ZodLiteral<"compatibility">;
1672
1781
  kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
@@ -1678,44 +1787,44 @@ declare const PolicyRuleSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1678
1787
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1679
1788
  }>, z.ZodObject<{
1680
1789
  type: z.ZodLiteral<"provenance">;
1681
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1790
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
1682
1791
  targetNodeId: z.ZodOptional<z.ZodString>;
1683
1792
  required: z.ZodUnion<[z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">]>;
1684
1793
  }, "strip", z.ZodTypeAny, {
1685
1794
  type: "provenance";
1686
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1795
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1687
1796
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1688
1797
  targetNodeId?: string | undefined;
1689
1798
  }, {
1690
1799
  type: "provenance";
1691
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1800
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1692
1801
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1693
1802
  targetNodeId?: string | undefined;
1694
1803
  }>, z.ZodObject<{
1695
1804
  type: z.ZodLiteral<"ownership">;
1696
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1805
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1697
1806
  field: z.ZodDefault<z.ZodString>;
1698
1807
  }, "strip", z.ZodTypeAny, {
1699
1808
  type: "ownership";
1700
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1809
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1701
1810
  field: string;
1702
1811
  }, {
1703
1812
  type: "ownership";
1704
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1813
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1705
1814
  field?: string | undefined;
1706
1815
  }>, z.ZodObject<{
1707
1816
  type: z.ZodLiteral<"blast-radius">;
1708
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1817
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1709
1818
  maxAffected: z.ZodNumber;
1710
1819
  depth: z.ZodOptional<z.ZodNumber>;
1711
1820
  }, "strip", z.ZodTypeAny, {
1712
1821
  type: "blast-radius";
1713
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1822
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1714
1823
  maxAffected: number;
1715
1824
  depth?: number | undefined;
1716
1825
  }, {
1717
1826
  type: "blast-radius";
1718
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1827
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1719
1828
  maxAffected: number;
1720
1829
  depth?: number | undefined;
1721
1830
  }>]>;
@@ -1728,19 +1837,19 @@ declare const PolicySchema: z.ZodObject<{
1728
1837
  onViolation: z.ZodOptional<z.ZodEnum<["log", "alert", "block"]>>;
1729
1838
  rule: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1730
1839
  type: z.ZodLiteral<"structural">;
1731
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1732
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1733
- toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1840
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1841
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
1842
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1734
1843
  }, "strip", z.ZodTypeAny, {
1735
1844
  type: "structural";
1736
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1737
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1738
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1845
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1846
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1847
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1739
1848
  }, {
1740
1849
  type: "structural";
1741
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1742
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1743
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1850
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1851
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1852
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1744
1853
  }>, z.ZodObject<{
1745
1854
  type: z.ZodLiteral<"compatibility">;
1746
1855
  kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
@@ -1752,44 +1861,44 @@ declare const PolicySchema: z.ZodObject<{
1752
1861
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1753
1862
  }>, z.ZodObject<{
1754
1863
  type: z.ZodLiteral<"provenance">;
1755
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1864
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
1756
1865
  targetNodeId: z.ZodOptional<z.ZodString>;
1757
1866
  required: z.ZodUnion<[z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">]>;
1758
1867
  }, "strip", z.ZodTypeAny, {
1759
1868
  type: "provenance";
1760
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1869
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1761
1870
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1762
1871
  targetNodeId?: string | undefined;
1763
1872
  }, {
1764
1873
  type: "provenance";
1765
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1874
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1766
1875
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1767
1876
  targetNodeId?: string | undefined;
1768
1877
  }>, z.ZodObject<{
1769
1878
  type: z.ZodLiteral<"ownership">;
1770
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1879
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1771
1880
  field: z.ZodDefault<z.ZodString>;
1772
1881
  }, "strip", z.ZodTypeAny, {
1773
1882
  type: "ownership";
1774
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1883
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1775
1884
  field: string;
1776
1885
  }, {
1777
1886
  type: "ownership";
1778
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1887
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1779
1888
  field?: string | undefined;
1780
1889
  }>, z.ZodObject<{
1781
1890
  type: z.ZodLiteral<"blast-radius">;
1782
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1891
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1783
1892
  maxAffected: z.ZodNumber;
1784
1893
  depth: z.ZodOptional<z.ZodNumber>;
1785
1894
  }, "strip", z.ZodTypeAny, {
1786
1895
  type: "blast-radius";
1787
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1896
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1788
1897
  maxAffected: number;
1789
1898
  depth?: number | undefined;
1790
1899
  }, {
1791
1900
  type: "blast-radius";
1792
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1901
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1793
1902
  maxAffected: number;
1794
1903
  depth?: number | undefined;
1795
1904
  }>]>;
@@ -1799,24 +1908,24 @@ declare const PolicySchema: z.ZodObject<{
1799
1908
  severity: "info" | "warning" | "error" | "critical";
1800
1909
  rule: {
1801
1910
  type: "structural";
1802
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1803
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1804
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1911
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1912
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1913
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1805
1914
  } | {
1806
1915
  type: "compatibility";
1807
1916
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1808
1917
  } | {
1809
1918
  type: "provenance";
1810
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1919
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1811
1920
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1812
1921
  targetNodeId?: string | undefined;
1813
1922
  } | {
1814
1923
  type: "ownership";
1815
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1924
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1816
1925
  field: string;
1817
1926
  } | {
1818
1927
  type: "blast-radius";
1819
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1928
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1820
1929
  maxAffected: number;
1821
1930
  depth?: number | undefined;
1822
1931
  };
@@ -1828,24 +1937,24 @@ declare const PolicySchema: z.ZodObject<{
1828
1937
  severity: "info" | "warning" | "error" | "critical";
1829
1938
  rule: {
1830
1939
  type: "structural";
1831
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1832
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1833
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1940
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1941
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1942
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1834
1943
  } | {
1835
1944
  type: "compatibility";
1836
1945
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1837
1946
  } | {
1838
1947
  type: "provenance";
1839
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1948
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1840
1949
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1841
1950
  targetNodeId?: string | undefined;
1842
1951
  } | {
1843
1952
  type: "ownership";
1844
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1953
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1845
1954
  field?: string | undefined;
1846
1955
  } | {
1847
1956
  type: "blast-radius";
1848
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1957
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1849
1958
  maxAffected: number;
1850
1959
  depth?: number | undefined;
1851
1960
  };
@@ -1863,19 +1972,19 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1863
1972
  onViolation: z.ZodOptional<z.ZodEnum<["log", "alert", "block"]>>;
1864
1973
  rule: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1865
1974
  type: z.ZodLiteral<"structural">;
1866
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1867
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1868
- toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1975
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1976
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
1977
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1869
1978
  }, "strip", z.ZodTypeAny, {
1870
1979
  type: "structural";
1871
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1872
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1873
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1980
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1981
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1982
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1874
1983
  }, {
1875
1984
  type: "structural";
1876
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1877
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1878
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1985
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1986
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1987
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1879
1988
  }>, z.ZodObject<{
1880
1989
  type: z.ZodLiteral<"compatibility">;
1881
1990
  kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
@@ -1887,44 +1996,44 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1887
1996
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1888
1997
  }>, z.ZodObject<{
1889
1998
  type: z.ZodLiteral<"provenance">;
1890
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1999
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
1891
2000
  targetNodeId: z.ZodOptional<z.ZodString>;
1892
2001
  required: z.ZodUnion<[z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">]>;
1893
2002
  }, "strip", z.ZodTypeAny, {
1894
2003
  type: "provenance";
1895
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2004
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1896
2005
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1897
2006
  targetNodeId?: string | undefined;
1898
2007
  }, {
1899
2008
  type: "provenance";
1900
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2009
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1901
2010
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1902
2011
  targetNodeId?: string | undefined;
1903
2012
  }>, z.ZodObject<{
1904
2013
  type: z.ZodLiteral<"ownership">;
1905
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
2014
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1906
2015
  field: z.ZodDefault<z.ZodString>;
1907
2016
  }, "strip", z.ZodTypeAny, {
1908
2017
  type: "ownership";
1909
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2018
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1910
2019
  field: string;
1911
2020
  }, {
1912
2021
  type: "ownership";
1913
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2022
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1914
2023
  field?: string | undefined;
1915
2024
  }>, z.ZodObject<{
1916
2025
  type: z.ZodLiteral<"blast-radius">;
1917
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
2026
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode", "SymbolNode"]>;
1918
2027
  maxAffected: z.ZodNumber;
1919
2028
  depth: z.ZodOptional<z.ZodNumber>;
1920
2029
  }, "strip", z.ZodTypeAny, {
1921
2030
  type: "blast-radius";
1922
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2031
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1923
2032
  maxAffected: number;
1924
2033
  depth?: number | undefined;
1925
2034
  }, {
1926
2035
  type: "blast-radius";
1927
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2036
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1928
2037
  maxAffected: number;
1929
2038
  depth?: number | undefined;
1930
2039
  }>]>;
@@ -1934,24 +2043,24 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1934
2043
  severity: "info" | "warning" | "error" | "critical";
1935
2044
  rule: {
1936
2045
  type: "structural";
1937
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1938
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1939
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2046
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2047
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2048
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1940
2049
  } | {
1941
2050
  type: "compatibility";
1942
2051
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1943
2052
  } | {
1944
2053
  type: "provenance";
1945
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2054
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1946
2055
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1947
2056
  targetNodeId?: string | undefined;
1948
2057
  } | {
1949
2058
  type: "ownership";
1950
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2059
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1951
2060
  field: string;
1952
2061
  } | {
1953
2062
  type: "blast-radius";
1954
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2063
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1955
2064
  maxAffected: number;
1956
2065
  depth?: number | undefined;
1957
2066
  };
@@ -1963,24 +2072,24 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1963
2072
  severity: "info" | "warning" | "error" | "critical";
1964
2073
  rule: {
1965
2074
  type: "structural";
1966
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1967
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1968
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2075
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2076
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2077
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1969
2078
  } | {
1970
2079
  type: "compatibility";
1971
2080
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1972
2081
  } | {
1973
2082
  type: "provenance";
1974
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2083
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
1975
2084
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1976
2085
  targetNodeId?: string | undefined;
1977
2086
  } | {
1978
2087
  type: "ownership";
1979
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2088
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1980
2089
  field?: string | undefined;
1981
2090
  } | {
1982
2091
  type: "blast-radius";
1983
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2092
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
1984
2093
  maxAffected: number;
1985
2094
  depth?: number | undefined;
1986
2095
  };
@@ -1995,24 +2104,24 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1995
2104
  severity: "info" | "warning" | "error" | "critical";
1996
2105
  rule: {
1997
2106
  type: "structural";
1998
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1999
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2000
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2107
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2108
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2109
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2001
2110
  } | {
2002
2111
  type: "compatibility";
2003
2112
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
2004
2113
  } | {
2005
2114
  type: "provenance";
2006
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2115
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2007
2116
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
2008
2117
  targetNodeId?: string | undefined;
2009
2118
  } | {
2010
2119
  type: "ownership";
2011
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2120
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2012
2121
  field: string;
2013
2122
  } | {
2014
2123
  type: "blast-radius";
2015
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2124
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2016
2125
  maxAffected: number;
2017
2126
  depth?: number | undefined;
2018
2127
  };
@@ -2027,24 +2136,24 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
2027
2136
  severity: "info" | "warning" | "error" | "critical";
2028
2137
  rule: {
2029
2138
  type: "structural";
2030
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2031
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2032
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2139
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2140
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2141
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2033
2142
  } | {
2034
2143
  type: "compatibility";
2035
2144
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
2036
2145
  } | {
2037
2146
  type: "provenance";
2038
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2147
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2039
2148
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
2040
2149
  targetNodeId?: string | undefined;
2041
2150
  } | {
2042
2151
  type: "ownership";
2043
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2152
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2044
2153
  field?: string | undefined;
2045
2154
  } | {
2046
2155
  type: "blast-radius";
2047
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2156
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2048
2157
  maxAffected: number;
2049
2158
  depth?: number | undefined;
2050
2159
  };
@@ -2059,24 +2168,24 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
2059
2168
  severity: "info" | "warning" | "error" | "critical";
2060
2169
  rule: {
2061
2170
  type: "structural";
2062
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2063
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2064
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2171
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2172
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2173
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2065
2174
  } | {
2066
2175
  type: "compatibility";
2067
2176
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
2068
2177
  } | {
2069
2178
  type: "provenance";
2070
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2179
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2071
2180
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
2072
2181
  targetNodeId?: string | undefined;
2073
2182
  } | {
2074
2183
  type: "ownership";
2075
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2184
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2076
2185
  field: string;
2077
2186
  } | {
2078
2187
  type: "blast-radius";
2079
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2188
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2080
2189
  maxAffected: number;
2081
2190
  depth?: number | undefined;
2082
2191
  };
@@ -2091,24 +2200,24 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
2091
2200
  severity: "info" | "warning" | "error" | "critical";
2092
2201
  rule: {
2093
2202
  type: "structural";
2094
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2095
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2096
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2203
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2204
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2205
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2097
2206
  } | {
2098
2207
  type: "compatibility";
2099
2208
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
2100
2209
  } | {
2101
2210
  type: "provenance";
2102
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2211
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2103
2212
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
2104
2213
  targetNodeId?: string | undefined;
2105
2214
  } | {
2106
2215
  type: "ownership";
2107
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2216
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2108
2217
  field?: string | undefined;
2109
2218
  } | {
2110
2219
  type: "blast-radius";
2111
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2220
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode" | "SymbolNode";
2112
2221
  maxAffected: number;
2113
2222
  depth?: number | undefined;
2114
2223
  };
@@ -2130,20 +2239,20 @@ declare const HypotheticalActionSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
2130
2239
  kind: z.ZodLiteral<"add-edge">;
2131
2240
  source: z.ZodString;
2132
2241
  target: z.ZodString;
2133
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2242
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
2134
2243
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2135
2244
  }, "strip", z.ZodTypeAny, {
2136
2245
  kind: "add-edge";
2137
2246
  source: string;
2138
2247
  target: string;
2139
2248
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2140
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2249
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2141
2250
  }, {
2142
2251
  kind: "add-edge";
2143
2252
  source: string;
2144
2253
  target: string;
2145
2254
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2146
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2255
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2147
2256
  }>]>;
2148
2257
  type HypotheticalAction = z.infer<typeof HypotheticalActionSchema>;
2149
2258
  declare const PoliciesCheckBodySchema: z.ZodObject<{
@@ -2160,20 +2269,20 @@ declare const PoliciesCheckBodySchema: z.ZodObject<{
2160
2269
  kind: z.ZodLiteral<"add-edge">;
2161
2270
  source: z.ZodString;
2162
2271
  target: z.ZodString;
2163
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2272
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
2164
2273
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2165
2274
  }, "strip", z.ZodTypeAny, {
2166
2275
  kind: "add-edge";
2167
2276
  source: string;
2168
2277
  target: string;
2169
2278
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2170
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2279
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2171
2280
  }, {
2172
2281
  kind: "add-edge";
2173
2282
  source: string;
2174
2283
  target: string;
2175
2284
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2176
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2285
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2177
2286
  }>]>>;
2178
2287
  }, "strip", z.ZodTypeAny, {
2179
2288
  hypotheticalAction?: {
@@ -2184,7 +2293,7 @@ declare const PoliciesCheckBodySchema: z.ZodObject<{
2184
2293
  source: string;
2185
2294
  target: string;
2186
2295
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2187
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2296
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2188
2297
  } | undefined;
2189
2298
  }, {
2190
2299
  hypotheticalAction?: {
@@ -2195,7 +2304,7 @@ declare const PoliciesCheckBodySchema: z.ZodObject<{
2195
2304
  source: string;
2196
2305
  target: string;
2197
2306
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2198
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2307
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2199
2308
  } | undefined;
2200
2309
  }>;
2201
2310
  type PoliciesCheckBody = z.infer<typeof PoliciesCheckBodySchema>;
@@ -2427,12 +2536,12 @@ type RegistryFile = z.infer<typeof RegistryFileSchema>;
2427
2536
  declare const EMPTY_REGISTRY: RegistryFile;
2428
2537
 
2429
2538
  declare const MissingObservedDivergenceSchema: z.ZodObject<{
2430
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2539
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
2431
2540
  extracted: z.ZodObject<{
2432
2541
  id: z.ZodString;
2433
2542
  source: z.ZodString;
2434
2543
  target: z.ZodString;
2435
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2544
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
2436
2545
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2437
2546
  confidence: z.ZodOptional<z.ZodNumber>;
2438
2547
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2471,7 +2580,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2471
2580
  }>>;
2472
2581
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
2473
2582
  }, "strip", z.ZodTypeAny, {
2474
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2583
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2475
2584
  id: string;
2476
2585
  source: string;
2477
2586
  target: string;
@@ -2493,7 +2602,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2493
2602
  } | undefined;
2494
2603
  grain?: "service" | "file" | undefined;
2495
2604
  }, {
2496
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2605
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2497
2606
  id: string;
2498
2607
  source: string;
2499
2608
  target: string;
@@ -2527,9 +2636,9 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2527
2636
  source: string;
2528
2637
  target: string;
2529
2638
  confidence: number;
2530
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2639
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2531
2640
  extracted: {
2532
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2641
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2533
2642
  id: string;
2534
2643
  source: string;
2535
2644
  target: string;
@@ -2558,9 +2667,9 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2558
2667
  source: string;
2559
2668
  target: string;
2560
2669
  confidence: number;
2561
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2670
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2562
2671
  extracted: {
2563
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2672
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2564
2673
  id: string;
2565
2674
  source: string;
2566
2675
  target: string;
@@ -2586,12 +2695,12 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2586
2695
  }>;
2587
2696
  type MissingObservedDivergence = z.infer<typeof MissingObservedDivergenceSchema>;
2588
2697
  declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2589
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2698
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
2590
2699
  observed: z.ZodObject<{
2591
2700
  id: z.ZodString;
2592
2701
  source: z.ZodString;
2593
2702
  target: z.ZodString;
2594
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2703
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
2595
2704
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2596
2705
  confidence: z.ZodOptional<z.ZodNumber>;
2597
2706
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2630,7 +2739,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2630
2739
  }>>;
2631
2740
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
2632
2741
  }, "strip", z.ZodTypeAny, {
2633
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2742
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2634
2743
  id: string;
2635
2744
  source: string;
2636
2745
  target: string;
@@ -2652,7 +2761,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2652
2761
  } | undefined;
2653
2762
  grain?: "service" | "file" | undefined;
2654
2763
  }, {
2655
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2764
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2656
2765
  id: string;
2657
2766
  source: string;
2658
2767
  target: string;
@@ -2686,9 +2795,9 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2686
2795
  source: string;
2687
2796
  target: string;
2688
2797
  confidence: number;
2689
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2798
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2690
2799
  observed: {
2691
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2800
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2692
2801
  id: string;
2693
2802
  source: string;
2694
2803
  target: string;
@@ -2717,9 +2826,9 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2717
2826
  source: string;
2718
2827
  target: string;
2719
2828
  confidence: number;
2720
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2829
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2721
2830
  observed: {
2722
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2831
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2723
2832
  id: string;
2724
2833
  source: string;
2725
2834
  target: string;
@@ -2851,7 +2960,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2851
2960
  id: z.ZodString;
2852
2961
  source: z.ZodString;
2853
2962
  target: z.ZodString;
2854
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2963
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
2855
2964
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2856
2965
  confidence: z.ZodOptional<z.ZodNumber>;
2857
2966
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2890,7 +2999,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2890
2999
  }>>;
2891
3000
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
2892
3001
  }, "strip", z.ZodTypeAny, {
2893
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3002
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2894
3003
  id: string;
2895
3004
  source: string;
2896
3005
  target: string;
@@ -2912,7 +3021,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2912
3021
  } | undefined;
2913
3022
  grain?: "service" | "file" | undefined;
2914
3023
  }, {
2915
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3024
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2916
3025
  id: string;
2917
3026
  source: string;
2918
3027
  target: string;
@@ -2947,7 +3056,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2947
3056
  target: string;
2948
3057
  confidence: number;
2949
3058
  observed: {
2950
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3059
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2951
3060
  id: string;
2952
3061
  source: string;
2953
3062
  target: string;
@@ -2984,7 +3093,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2984
3093
  target: string;
2985
3094
  confidence: number;
2986
3095
  observed: {
2987
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3096
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
2988
3097
  id: string;
2989
3098
  source: string;
2990
3099
  target: string;
@@ -3017,12 +3126,12 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
3017
3126
  }>;
3018
3127
  type CompatViolationDivergence = z.infer<typeof CompatViolationDivergenceSchema>;
3019
3128
  declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3020
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
3129
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
3021
3130
  extracted: z.ZodObject<{
3022
3131
  id: z.ZodString;
3023
3132
  source: z.ZodString;
3024
3133
  target: z.ZodString;
3025
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
3134
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
3026
3135
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
3027
3136
  confidence: z.ZodOptional<z.ZodNumber>;
3028
3137
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -3061,7 +3170,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3061
3170
  }>>;
3062
3171
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
3063
3172
  }, "strip", z.ZodTypeAny, {
3064
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3173
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3065
3174
  id: string;
3066
3175
  source: string;
3067
3176
  target: string;
@@ -3083,7 +3192,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3083
3192
  } | undefined;
3084
3193
  grain?: "service" | "file" | undefined;
3085
3194
  }, {
3086
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3195
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3087
3196
  id: string;
3088
3197
  source: string;
3089
3198
  target: string;
@@ -3117,9 +3226,9 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3117
3226
  source: string;
3118
3227
  target: string;
3119
3228
  confidence: number;
3120
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3229
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3121
3230
  extracted: {
3122
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3231
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3123
3232
  id: string;
3124
3233
  source: string;
3125
3234
  target: string;
@@ -3148,9 +3257,9 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3148
3257
  source: string;
3149
3258
  target: string;
3150
3259
  confidence: number;
3151
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3260
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3152
3261
  extracted: {
3153
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3262
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3154
3263
  id: string;
3155
3264
  source: string;
3156
3265
  target: string;
@@ -3174,12 +3283,12 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3174
3283
  };
3175
3284
  recommendation: string;
3176
3285
  }>, z.ZodObject<{
3177
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
3286
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
3178
3287
  observed: z.ZodObject<{
3179
3288
  id: z.ZodString;
3180
3289
  source: z.ZodString;
3181
3290
  target: z.ZodString;
3182
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
3291
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
3183
3292
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
3184
3293
  confidence: z.ZodOptional<z.ZodNumber>;
3185
3294
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -3218,7 +3327,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3218
3327
  }>>;
3219
3328
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
3220
3329
  }, "strip", z.ZodTypeAny, {
3221
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3330
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3222
3331
  id: string;
3223
3332
  source: string;
3224
3333
  target: string;
@@ -3240,7 +3349,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3240
3349
  } | undefined;
3241
3350
  grain?: "service" | "file" | undefined;
3242
3351
  }, {
3243
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3352
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3244
3353
  id: string;
3245
3354
  source: string;
3246
3355
  target: string;
@@ -3274,9 +3383,9 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3274
3383
  source: string;
3275
3384
  target: string;
3276
3385
  confidence: number;
3277
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3386
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3278
3387
  observed: {
3279
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3388
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3280
3389
  id: string;
3281
3390
  source: string;
3282
3391
  target: string;
@@ -3305,9 +3414,9 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3305
3414
  source: string;
3306
3415
  target: string;
3307
3416
  confidence: number;
3308
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3417
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3309
3418
  observed: {
3310
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3419
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3311
3420
  id: string;
3312
3421
  source: string;
3313
3422
  target: string;
@@ -3411,7 +3520,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3411
3520
  id: z.ZodString;
3412
3521
  source: z.ZodString;
3413
3522
  target: z.ZodString;
3414
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
3523
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
3415
3524
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
3416
3525
  confidence: z.ZodOptional<z.ZodNumber>;
3417
3526
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -3450,7 +3559,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3450
3559
  }>>;
3451
3560
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
3452
3561
  }, "strip", z.ZodTypeAny, {
3453
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3562
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3454
3563
  id: string;
3455
3564
  source: string;
3456
3565
  target: string;
@@ -3472,7 +3581,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3472
3581
  } | undefined;
3473
3582
  grain?: "service" | "file" | undefined;
3474
3583
  }, {
3475
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3584
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3476
3585
  id: string;
3477
3586
  source: string;
3478
3587
  target: string;
@@ -3507,7 +3616,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3507
3616
  target: string;
3508
3617
  confidence: number;
3509
3618
  observed: {
3510
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3619
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3511
3620
  id: string;
3512
3621
  source: string;
3513
3622
  target: string;
@@ -3544,7 +3653,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3544
3653
  target: string;
3545
3654
  confidence: number;
3546
3655
  observed: {
3547
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3656
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3548
3657
  id: string;
3549
3658
  source: string;
3550
3659
  target: string;
@@ -3578,12 +3687,12 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3578
3687
  type Divergence = z.infer<typeof DivergenceSchema>;
3579
3688
  declare const DivergenceResultSchema: z.ZodObject<{
3580
3689
  divergences: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3581
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
3690
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
3582
3691
  extracted: z.ZodObject<{
3583
3692
  id: z.ZodString;
3584
3693
  source: z.ZodString;
3585
3694
  target: z.ZodString;
3586
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
3695
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
3587
3696
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
3588
3697
  confidence: z.ZodOptional<z.ZodNumber>;
3589
3698
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -3622,7 +3731,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3622
3731
  }>>;
3623
3732
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
3624
3733
  }, "strip", z.ZodTypeAny, {
3625
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3734
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3626
3735
  id: string;
3627
3736
  source: string;
3628
3737
  target: string;
@@ -3644,7 +3753,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3644
3753
  } | undefined;
3645
3754
  grain?: "service" | "file" | undefined;
3646
3755
  }, {
3647
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3756
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3648
3757
  id: string;
3649
3758
  source: string;
3650
3759
  target: string;
@@ -3678,9 +3787,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
3678
3787
  source: string;
3679
3788
  target: string;
3680
3789
  confidence: number;
3681
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3790
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3682
3791
  extracted: {
3683
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3792
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3684
3793
  id: string;
3685
3794
  source: string;
3686
3795
  target: string;
@@ -3709,9 +3818,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
3709
3818
  source: string;
3710
3819
  target: string;
3711
3820
  confidence: number;
3712
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3821
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3713
3822
  extracted: {
3714
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3823
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3715
3824
  id: string;
3716
3825
  source: string;
3717
3826
  target: string;
@@ -3735,12 +3844,12 @@ declare const DivergenceResultSchema: z.ZodObject<{
3735
3844
  };
3736
3845
  recommendation: string;
3737
3846
  }>, z.ZodObject<{
3738
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
3847
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
3739
3848
  observed: z.ZodObject<{
3740
3849
  id: z.ZodString;
3741
3850
  source: z.ZodString;
3742
3851
  target: z.ZodString;
3743
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
3852
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
3744
3853
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
3745
3854
  confidence: z.ZodOptional<z.ZodNumber>;
3746
3855
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -3779,7 +3888,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3779
3888
  }>>;
3780
3889
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
3781
3890
  }, "strip", z.ZodTypeAny, {
3782
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3891
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3783
3892
  id: string;
3784
3893
  source: string;
3785
3894
  target: string;
@@ -3801,7 +3910,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3801
3910
  } | undefined;
3802
3911
  grain?: "service" | "file" | undefined;
3803
3912
  }, {
3804
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3913
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3805
3914
  id: string;
3806
3915
  source: string;
3807
3916
  target: string;
@@ -3835,9 +3944,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
3835
3944
  source: string;
3836
3945
  target: string;
3837
3946
  confidence: number;
3838
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3947
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3839
3948
  observed: {
3840
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3949
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3841
3950
  id: string;
3842
3951
  source: string;
3843
3952
  target: string;
@@ -3866,9 +3975,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
3866
3975
  source: string;
3867
3976
  target: string;
3868
3977
  confidence: number;
3869
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3978
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3870
3979
  observed: {
3871
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3980
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
3872
3981
  id: string;
3873
3982
  source: string;
3874
3983
  target: string;
@@ -3972,7 +4081,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3972
4081
  id: z.ZodString;
3973
4082
  source: z.ZodString;
3974
4083
  target: z.ZodString;
3975
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
4084
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
3976
4085
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
3977
4086
  confidence: z.ZodOptional<z.ZodNumber>;
3978
4087
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -4011,7 +4120,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
4011
4120
  }>>;
4012
4121
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
4013
4122
  }, "strip", z.ZodTypeAny, {
4014
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4123
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4015
4124
  id: string;
4016
4125
  source: string;
4017
4126
  target: string;
@@ -4033,7 +4142,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
4033
4142
  } | undefined;
4034
4143
  grain?: "service" | "file" | undefined;
4035
4144
  }, {
4036
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4145
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4037
4146
  id: string;
4038
4147
  source: string;
4039
4148
  target: string;
@@ -4068,7 +4177,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
4068
4177
  target: string;
4069
4178
  confidence: number;
4070
4179
  observed: {
4071
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4180
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4072
4181
  id: string;
4073
4182
  source: string;
4074
4183
  target: string;
@@ -4105,7 +4214,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
4105
4214
  target: string;
4106
4215
  confidence: number;
4107
4216
  observed: {
4108
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4217
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4109
4218
  id: string;
4110
4219
  source: string;
4111
4220
  target: string;
@@ -4146,9 +4255,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
4146
4255
  source: string;
4147
4256
  target: string;
4148
4257
  confidence: number;
4149
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4258
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4150
4259
  extracted: {
4151
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4260
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4152
4261
  id: string;
4153
4262
  source: string;
4154
4263
  target: string;
@@ -4177,9 +4286,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
4177
4286
  source: string;
4178
4287
  target: string;
4179
4288
  confidence: number;
4180
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4289
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4181
4290
  observed: {
4182
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4291
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4183
4292
  id: string;
4184
4293
  source: string;
4185
4294
  target: string;
@@ -4228,7 +4337,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
4228
4337
  target: string;
4229
4338
  confidence: number;
4230
4339
  observed: {
4231
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4340
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4232
4341
  id: string;
4233
4342
  source: string;
4234
4343
  target: string;
@@ -4268,9 +4377,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
4268
4377
  source: string;
4269
4378
  target: string;
4270
4379
  confidence: number;
4271
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4380
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4272
4381
  extracted: {
4273
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4382
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4274
4383
  id: string;
4275
4384
  source: string;
4276
4385
  target: string;
@@ -4299,9 +4408,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
4299
4408
  source: string;
4300
4409
  target: string;
4301
4410
  confidence: number;
4302
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4411
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4303
4412
  observed: {
4304
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4413
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4305
4414
  id: string;
4306
4415
  source: string;
4307
4416
  target: string;
@@ -4350,7 +4459,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
4350
4459
  target: string;
4351
4460
  confidence: number;
4352
4461
  observed: {
4353
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4462
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
4354
4463
  id: string;
4355
4464
  source: string;
4356
4465
  target: string;
@@ -5156,6 +5265,48 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
5156
5265
  path?: string | undefined;
5157
5266
  discoveredVia?: "static" | "otel" | "merged" | undefined;
5158
5267
  line?: number | undefined;
5268
+ }>, z.ZodObject<{
5269
+ id: z.ZodString;
5270
+ type: z.ZodLiteral<"SymbolNode">;
5271
+ kind: z.ZodEnum<["function", "method", "constructor", "class"]>;
5272
+ qualname: z.ZodString;
5273
+ span: z.ZodObject<{
5274
+ startLine: z.ZodNumber;
5275
+ endLine: z.ZodNumber;
5276
+ }, "strip", z.ZodTypeAny, {
5277
+ startLine: number;
5278
+ endLine: number;
5279
+ }, {
5280
+ startLine: number;
5281
+ endLine: number;
5282
+ }>;
5283
+ service: z.ZodString;
5284
+ relPath: z.ZodString;
5285
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
5286
+ }, "strip", z.ZodTypeAny, {
5287
+ type: "SymbolNode";
5288
+ id: string;
5289
+ kind: "function" | "method" | "constructor" | "class";
5290
+ service: string;
5291
+ qualname: string;
5292
+ span: {
5293
+ startLine: number;
5294
+ endLine: number;
5295
+ };
5296
+ relPath: string;
5297
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5298
+ }, {
5299
+ type: "SymbolNode";
5300
+ id: string;
5301
+ kind: "function" | "method" | "constructor" | "class";
5302
+ service: string;
5303
+ qualname: string;
5304
+ span: {
5305
+ startLine: number;
5306
+ endLine: number;
5307
+ };
5308
+ relPath: string;
5309
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5159
5310
  }>]>;
5160
5311
  }, "strip", z.ZodTypeAny, {
5161
5312
  node: {
@@ -5286,6 +5437,18 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
5286
5437
  path?: string | undefined;
5287
5438
  discoveredVia?: "static" | "otel" | "merged" | undefined;
5288
5439
  line?: number | undefined;
5440
+ } | {
5441
+ type: "SymbolNode";
5442
+ id: string;
5443
+ kind: "function" | "method" | "constructor" | "class";
5444
+ service: string;
5445
+ qualname: string;
5446
+ span: {
5447
+ startLine: number;
5448
+ endLine: number;
5449
+ };
5450
+ relPath: string;
5451
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5289
5452
  };
5290
5453
  }, {
5291
5454
  node: {
@@ -5416,6 +5579,18 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
5416
5579
  path?: string | undefined;
5417
5580
  discoveredVia?: "static" | "otel" | "merged" | undefined;
5418
5581
  line?: number | undefined;
5582
+ } | {
5583
+ type: "SymbolNode";
5584
+ id: string;
5585
+ kind: "function" | "method" | "constructor" | "class";
5586
+ service: string;
5587
+ qualname: string;
5588
+ span: {
5589
+ startLine: number;
5590
+ endLine: number;
5591
+ };
5592
+ relPath: string;
5593
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5419
5594
  };
5420
5595
  }>;
5421
5596
  type GraphNodeResponse = z.infer<typeof GraphNodeResponseSchema>;
@@ -5424,7 +5599,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
5424
5599
  id: z.ZodString;
5425
5600
  source: z.ZodString;
5426
5601
  target: z.ZodString;
5427
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
5602
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
5428
5603
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
5429
5604
  confidence: z.ZodOptional<z.ZodNumber>;
5430
5605
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -5463,7 +5638,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
5463
5638
  }>>;
5464
5639
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
5465
5640
  }, "strip", z.ZodTypeAny, {
5466
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5641
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
5467
5642
  id: string;
5468
5643
  source: string;
5469
5644
  target: string;
@@ -5485,7 +5660,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
5485
5660
  } | undefined;
5486
5661
  grain?: "service" | "file" | undefined;
5487
5662
  }, {
5488
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5663
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
5489
5664
  id: string;
5490
5665
  source: string;
5491
5666
  target: string;
@@ -5511,7 +5686,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
5511
5686
  id: z.ZodString;
5512
5687
  source: z.ZodString;
5513
5688
  target: z.ZodString;
5514
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
5689
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
5515
5690
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
5516
5691
  confidence: z.ZodOptional<z.ZodNumber>;
5517
5692
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -5550,7 +5725,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
5550
5725
  }>>;
5551
5726
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
5552
5727
  }, "strip", z.ZodTypeAny, {
5553
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5728
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
5554
5729
  id: string;
5555
5730
  source: string;
5556
5731
  target: string;
@@ -5572,7 +5747,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
5572
5747
  } | undefined;
5573
5748
  grain?: "service" | "file" | undefined;
5574
5749
  }, {
5575
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5750
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
5576
5751
  id: string;
5577
5752
  source: string;
5578
5753
  target: string;
@@ -5596,7 +5771,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
5596
5771
  }>, "many">;
5597
5772
  }, "strip", z.ZodTypeAny, {
5598
5773
  inbound: {
5599
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5774
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
5600
5775
  id: string;
5601
5776
  source: string;
5602
5777
  target: string;
@@ -5619,7 +5794,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
5619
5794
  grain?: "service" | "file" | undefined;
5620
5795
  }[];
5621
5796
  outbound: {
5622
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5797
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
5623
5798
  id: string;
5624
5799
  source: string;
5625
5800
  target: string;
@@ -5643,7 +5818,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
5643
5818
  }[];
5644
5819
  }, {
5645
5820
  inbound: {
5646
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5821
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
5647
5822
  id: string;
5648
5823
  source: string;
5649
5824
  target: string;
@@ -5666,7 +5841,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
5666
5841
  grain?: "service" | "file" | undefined;
5667
5842
  }[];
5668
5843
  outbound: {
5669
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5844
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
5670
5845
  id: string;
5671
5846
  source: string;
5672
5847
  target: string;
@@ -5690,18 +5865,83 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
5690
5865
  }[];
5691
5866
  }>;
5692
5867
  type GraphEdgesResponse = z.infer<typeof GraphEdgesResponseSchema>;
5868
+ declare const ExtractionCoverageSchema: z.ZodObject<{
5869
+ skippedFiles: z.ZodNumber;
5870
+ byProducer: z.ZodRecord<z.ZodString, z.ZodNumber>;
5871
+ files: z.ZodArray<z.ZodString, "many">;
5872
+ updatedAt: z.ZodString;
5873
+ }, "strip", z.ZodTypeAny, {
5874
+ skippedFiles: number;
5875
+ byProducer: Record<string, number>;
5876
+ files: string[];
5877
+ updatedAt: string;
5878
+ }, {
5879
+ skippedFiles: number;
5880
+ byProducer: Record<string, number>;
5881
+ files: string[];
5882
+ updatedAt: string;
5883
+ }>;
5884
+ type ExtractionCoverage = z.infer<typeof ExtractionCoverageSchema>;
5693
5885
  declare const HealthResponseSchema: z.ZodObject<{
5694
5886
  ok: z.ZodBoolean;
5695
5887
  project: z.ZodString;
5696
5888
  uptimeMs: z.ZodNumber;
5889
+ coverage: z.ZodOptional<z.ZodObject<{
5890
+ skippedFiles: z.ZodNumber;
5891
+ byProducer: z.ZodRecord<z.ZodString, z.ZodNumber>;
5892
+ files: z.ZodArray<z.ZodString, "many">;
5893
+ updatedAt: z.ZodString;
5894
+ }, "strip", z.ZodTypeAny, {
5895
+ skippedFiles: number;
5896
+ byProducer: Record<string, number>;
5897
+ files: string[];
5898
+ updatedAt: string;
5899
+ }, {
5900
+ skippedFiles: number;
5901
+ byProducer: Record<string, number>;
5902
+ files: string[];
5903
+ updatedAt: string;
5904
+ }>>;
5697
5905
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
5698
5906
  ok: z.ZodBoolean;
5699
5907
  project: z.ZodString;
5700
5908
  uptimeMs: z.ZodNumber;
5909
+ coverage: z.ZodOptional<z.ZodObject<{
5910
+ skippedFiles: z.ZodNumber;
5911
+ byProducer: z.ZodRecord<z.ZodString, z.ZodNumber>;
5912
+ files: z.ZodArray<z.ZodString, "many">;
5913
+ updatedAt: z.ZodString;
5914
+ }, "strip", z.ZodTypeAny, {
5915
+ skippedFiles: number;
5916
+ byProducer: Record<string, number>;
5917
+ files: string[];
5918
+ updatedAt: string;
5919
+ }, {
5920
+ skippedFiles: number;
5921
+ byProducer: Record<string, number>;
5922
+ files: string[];
5923
+ updatedAt: string;
5924
+ }>>;
5701
5925
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
5702
5926
  ok: z.ZodBoolean;
5703
5927
  project: z.ZodString;
5704
5928
  uptimeMs: z.ZodNumber;
5929
+ coverage: z.ZodOptional<z.ZodObject<{
5930
+ skippedFiles: z.ZodNumber;
5931
+ byProducer: z.ZodRecord<z.ZodString, z.ZodNumber>;
5932
+ files: z.ZodArray<z.ZodString, "many">;
5933
+ updatedAt: z.ZodString;
5934
+ }, "strip", z.ZodTypeAny, {
5935
+ skippedFiles: number;
5936
+ byProducer: Record<string, number>;
5937
+ files: string[];
5938
+ updatedAt: string;
5939
+ }, {
5940
+ skippedFiles: number;
5941
+ byProducer: Record<string, number>;
5942
+ files: string[];
5943
+ updatedAt: string;
5944
+ }>>;
5705
5945
  }, z.ZodTypeAny, "passthrough">>;
5706
5946
  type HealthResponse = z.infer<typeof HealthResponseSchema>;
5707
5947
  declare const DaemonHealthResponseSchema: z.ZodObject<{
@@ -5754,6 +5994,47 @@ declare const DaemonHealthResponseSchema: z.ZodObject<{
5754
5994
  }, z.ZodTypeAny, "passthrough">>, "many">;
5755
5995
  }, z.ZodTypeAny, "passthrough">>;
5756
5996
  type DaemonHealthResponse = z.infer<typeof DaemonHealthResponseSchema>;
5997
+ declare const ProjectListEntrySchema: z.ZodObject<{
5998
+ name: z.ZodString;
5999
+ path: z.ZodString;
6000
+ registeredAt: z.ZodString;
6001
+ lastSeenAt: z.ZodOptional<z.ZodString>;
6002
+ languages: z.ZodArray<z.ZodString, "many">;
6003
+ status: z.ZodEnum<["active", "paused", "broken"]>;
6004
+ } & {
6005
+ hostedHere: z.ZodBoolean;
6006
+ }, "strip", z.ZodTypeAny, {
6007
+ name: string;
6008
+ path: string;
6009
+ status: "active" | "paused" | "broken";
6010
+ registeredAt: string;
6011
+ languages: string[];
6012
+ hostedHere: boolean;
6013
+ lastSeenAt?: string | undefined;
6014
+ }, {
6015
+ name: string;
6016
+ path: string;
6017
+ status: "active" | "paused" | "broken";
6018
+ registeredAt: string;
6019
+ languages: string[];
6020
+ hostedHere: boolean;
6021
+ lastSeenAt?: string | undefined;
6022
+ }>;
6023
+ type ProjectListEntry = z.infer<typeof ProjectListEntrySchema>;
6024
+ declare const ProjectServedBySchema: z.ZodObject<{
6025
+ path: z.ZodString;
6026
+ restPort: z.ZodNumber;
6027
+ live: z.ZodBoolean;
6028
+ }, "strip", z.ZodTypeAny, {
6029
+ path: string;
6030
+ restPort: number;
6031
+ live: boolean;
6032
+ }, {
6033
+ path: string;
6034
+ restPort: number;
6035
+ live: boolean;
6036
+ }>;
6037
+ type ProjectServedBy = z.infer<typeof ProjectServedBySchema>;
5757
6038
  declare const SingleProjectResponseSchema: z.ZodObject<{
5758
6039
  project: z.ZodObject<{
5759
6040
  name: z.ZodString;
@@ -5762,12 +6043,15 @@ declare const SingleProjectResponseSchema: z.ZodObject<{
5762
6043
  lastSeenAt: z.ZodOptional<z.ZodString>;
5763
6044
  languages: z.ZodArray<z.ZodString, "many">;
5764
6045
  status: z.ZodEnum<["active", "paused", "broken"]>;
6046
+ } & {
6047
+ hostedHere: z.ZodBoolean;
5765
6048
  }, "strip", z.ZodTypeAny, {
5766
6049
  name: string;
5767
6050
  path: string;
5768
6051
  status: "active" | "paused" | "broken";
5769
6052
  registeredAt: string;
5770
6053
  languages: string[];
6054
+ hostedHere: boolean;
5771
6055
  lastSeenAt?: string | undefined;
5772
6056
  }, {
5773
6057
  name: string;
@@ -5775,8 +6059,22 @@ declare const SingleProjectResponseSchema: z.ZodObject<{
5775
6059
  status: "active" | "paused" | "broken";
5776
6060
  registeredAt: string;
5777
6061
  languages: string[];
6062
+ hostedHere: boolean;
5778
6063
  lastSeenAt?: string | undefined;
5779
6064
  }>;
6065
+ servedBy: z.ZodOptional<z.ZodObject<{
6066
+ path: z.ZodString;
6067
+ restPort: z.ZodNumber;
6068
+ live: z.ZodBoolean;
6069
+ }, "strip", z.ZodTypeAny, {
6070
+ path: string;
6071
+ restPort: number;
6072
+ live: boolean;
6073
+ }, {
6074
+ path: string;
6075
+ restPort: number;
6076
+ live: boolean;
6077
+ }>>;
5780
6078
  }, "strip", z.ZodTypeAny, {
5781
6079
  project: {
5782
6080
  name: string;
@@ -5784,8 +6082,14 @@ declare const SingleProjectResponseSchema: z.ZodObject<{
5784
6082
  status: "active" | "paused" | "broken";
5785
6083
  registeredAt: string;
5786
6084
  languages: string[];
6085
+ hostedHere: boolean;
5787
6086
  lastSeenAt?: string | undefined;
5788
6087
  };
6088
+ servedBy?: {
6089
+ path: string;
6090
+ restPort: number;
6091
+ live: boolean;
6092
+ } | undefined;
5789
6093
  }, {
5790
6094
  project: {
5791
6095
  name: string;
@@ -5793,8 +6097,14 @@ declare const SingleProjectResponseSchema: z.ZodObject<{
5793
6097
  status: "active" | "paused" | "broken";
5794
6098
  registeredAt: string;
5795
6099
  languages: string[];
6100
+ hostedHere: boolean;
5796
6101
  lastSeenAt?: string | undefined;
5797
6102
  };
6103
+ servedBy?: {
6104
+ path: string;
6105
+ restPort: number;
6106
+ live: boolean;
6107
+ } | undefined;
5798
6108
  }>;
5799
6109
  type SingleProjectResponse = z.infer<typeof SingleProjectResponseSchema>;
5800
6110
  declare const ConnectorPollStateSchema: z.ZodEnum<["idle", "healthy", "error", "stale"]>;
@@ -6428,12 +6738,54 @@ declare const SerializedGraphSchema: z.ZodObject<{
6428
6738
  path?: string | undefined;
6429
6739
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6430
6740
  line?: number | undefined;
6741
+ }>, z.ZodObject<{
6742
+ id: z.ZodString;
6743
+ type: z.ZodLiteral<"SymbolNode">;
6744
+ kind: z.ZodEnum<["function", "method", "constructor", "class"]>;
6745
+ qualname: z.ZodString;
6746
+ span: z.ZodObject<{
6747
+ startLine: z.ZodNumber;
6748
+ endLine: z.ZodNumber;
6749
+ }, "strip", z.ZodTypeAny, {
6750
+ startLine: number;
6751
+ endLine: number;
6752
+ }, {
6753
+ startLine: number;
6754
+ endLine: number;
6755
+ }>;
6756
+ service: z.ZodString;
6757
+ relPath: z.ZodString;
6758
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
6759
+ }, "strip", z.ZodTypeAny, {
6760
+ type: "SymbolNode";
6761
+ id: string;
6762
+ kind: "function" | "method" | "constructor" | "class";
6763
+ service: string;
6764
+ qualname: string;
6765
+ span: {
6766
+ startLine: number;
6767
+ endLine: number;
6768
+ };
6769
+ relPath: string;
6770
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6771
+ }, {
6772
+ type: "SymbolNode";
6773
+ id: string;
6774
+ kind: "function" | "method" | "constructor" | "class";
6775
+ service: string;
6776
+ qualname: string;
6777
+ span: {
6778
+ startLine: number;
6779
+ endLine: number;
6780
+ };
6781
+ relPath: string;
6782
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6431
6783
  }>]>, "many">;
6432
6784
  edges: z.ZodArray<z.ZodObject<{
6433
6785
  id: z.ZodString;
6434
6786
  source: z.ZodString;
6435
6787
  target: z.ZodString;
6436
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
6788
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
6437
6789
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
6438
6790
  confidence: z.ZodOptional<z.ZodNumber>;
6439
6791
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -6472,7 +6824,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
6472
6824
  }>>;
6473
6825
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
6474
6826
  }, "strip", z.ZodTypeAny, {
6475
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
6827
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
6476
6828
  id: string;
6477
6829
  source: string;
6478
6830
  target: string;
@@ -6494,7 +6846,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
6494
6846
  } | undefined;
6495
6847
  grain?: "service" | "file" | undefined;
6496
6848
  }, {
6497
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
6849
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
6498
6850
  id: string;
6499
6851
  source: string;
6500
6852
  target: string;
@@ -6645,9 +6997,21 @@ declare const SerializedGraphSchema: z.ZodObject<{
6645
6997
  path?: string | undefined;
6646
6998
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6647
6999
  line?: number | undefined;
7000
+ } | {
7001
+ type: "SymbolNode";
7002
+ id: string;
7003
+ kind: "function" | "method" | "constructor" | "class";
7004
+ service: string;
7005
+ qualname: string;
7006
+ span: {
7007
+ startLine: number;
7008
+ endLine: number;
7009
+ };
7010
+ relPath: string;
7011
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6648
7012
  })[];
6649
7013
  edges: {
6650
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7014
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
6651
7015
  id: string;
6652
7016
  source: string;
6653
7017
  target: string;
@@ -6798,9 +7162,21 @@ declare const SerializedGraphSchema: z.ZodObject<{
6798
7162
  path?: string | undefined;
6799
7163
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6800
7164
  line?: number | undefined;
7165
+ } | {
7166
+ type: "SymbolNode";
7167
+ id: string;
7168
+ kind: "function" | "method" | "constructor" | "class";
7169
+ service: string;
7170
+ qualname: string;
7171
+ span: {
7172
+ startLine: number;
7173
+ endLine: number;
7174
+ };
7175
+ relPath: string;
7176
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6801
7177
  })[];
6802
7178
  edges: {
6803
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7179
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
6804
7180
  id: string;
6805
7181
  source: string;
6806
7182
  target: string;
@@ -7294,12 +7670,54 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7294
7670
  path?: string | undefined;
7295
7671
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7296
7672
  line?: number | undefined;
7673
+ }>, z.ZodObject<{
7674
+ id: z.ZodString;
7675
+ type: z.ZodLiteral<"SymbolNode">;
7676
+ kind: z.ZodEnum<["function", "method", "constructor", "class"]>;
7677
+ qualname: z.ZodString;
7678
+ span: z.ZodObject<{
7679
+ startLine: z.ZodNumber;
7680
+ endLine: z.ZodNumber;
7681
+ }, "strip", z.ZodTypeAny, {
7682
+ startLine: number;
7683
+ endLine: number;
7684
+ }, {
7685
+ startLine: number;
7686
+ endLine: number;
7687
+ }>;
7688
+ service: z.ZodString;
7689
+ relPath: z.ZodString;
7690
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
7691
+ }, "strip", z.ZodTypeAny, {
7692
+ type: "SymbolNode";
7693
+ id: string;
7694
+ kind: "function" | "method" | "constructor" | "class";
7695
+ service: string;
7696
+ qualname: string;
7697
+ span: {
7698
+ startLine: number;
7699
+ endLine: number;
7700
+ };
7701
+ relPath: string;
7702
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7703
+ }, {
7704
+ type: "SymbolNode";
7705
+ id: string;
7706
+ kind: "function" | "method" | "constructor" | "class";
7707
+ service: string;
7708
+ qualname: string;
7709
+ span: {
7710
+ startLine: number;
7711
+ endLine: number;
7712
+ };
7713
+ relPath: string;
7714
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7297
7715
  }>]>, "many">;
7298
7716
  edges: z.ZodArray<z.ZodObject<{
7299
7717
  id: z.ZodString;
7300
7718
  source: z.ZodString;
7301
7719
  target: z.ZodString;
7302
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
7720
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
7303
7721
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
7304
7722
  confidence: z.ZodOptional<z.ZodNumber>;
7305
7723
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -7338,7 +7756,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7338
7756
  }>>;
7339
7757
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
7340
7758
  }, "strip", z.ZodTypeAny, {
7341
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7759
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
7342
7760
  id: string;
7343
7761
  source: string;
7344
7762
  target: string;
@@ -7360,7 +7778,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7360
7778
  } | undefined;
7361
7779
  grain?: "service" | "file" | undefined;
7362
7780
  }, {
7363
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7781
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
7364
7782
  id: string;
7365
7783
  source: string;
7366
7784
  target: string;
@@ -7511,9 +7929,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7511
7929
  path?: string | undefined;
7512
7930
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7513
7931
  line?: number | undefined;
7932
+ } | {
7933
+ type: "SymbolNode";
7934
+ id: string;
7935
+ kind: "function" | "method" | "constructor" | "class";
7936
+ service: string;
7937
+ qualname: string;
7938
+ span: {
7939
+ startLine: number;
7940
+ endLine: number;
7941
+ };
7942
+ relPath: string;
7943
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7514
7944
  })[];
7515
7945
  edges: {
7516
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7946
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
7517
7947
  id: string;
7518
7948
  source: string;
7519
7949
  target: string;
@@ -7664,9 +8094,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7664
8094
  path?: string | undefined;
7665
8095
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7666
8096
  line?: number | undefined;
8097
+ } | {
8098
+ type: "SymbolNode";
8099
+ id: string;
8100
+ kind: "function" | "method" | "constructor" | "class";
8101
+ service: string;
8102
+ qualname: string;
8103
+ span: {
8104
+ startLine: number;
8105
+ endLine: number;
8106
+ };
8107
+ relPath: string;
8108
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7667
8109
  })[];
7668
8110
  edges: {
7669
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8111
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
7670
8112
  id: string;
7671
8113
  source: string;
7672
8114
  target: string;
@@ -8144,12 +8586,54 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8144
8586
  path?: string | undefined;
8145
8587
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8146
8588
  line?: number | undefined;
8589
+ }>, z.ZodObject<{
8590
+ id: z.ZodString;
8591
+ type: z.ZodLiteral<"SymbolNode">;
8592
+ kind: z.ZodEnum<["function", "method", "constructor", "class"]>;
8593
+ qualname: z.ZodString;
8594
+ span: z.ZodObject<{
8595
+ startLine: z.ZodNumber;
8596
+ endLine: z.ZodNumber;
8597
+ }, "strip", z.ZodTypeAny, {
8598
+ startLine: number;
8599
+ endLine: number;
8600
+ }, {
8601
+ startLine: number;
8602
+ endLine: number;
8603
+ }>;
8604
+ service: z.ZodString;
8605
+ relPath: z.ZodString;
8606
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
8607
+ }, "strip", z.ZodTypeAny, {
8608
+ type: "SymbolNode";
8609
+ id: string;
8610
+ kind: "function" | "method" | "constructor" | "class";
8611
+ service: string;
8612
+ qualname: string;
8613
+ span: {
8614
+ startLine: number;
8615
+ endLine: number;
8616
+ };
8617
+ relPath: string;
8618
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8619
+ }, {
8620
+ type: "SymbolNode";
8621
+ id: string;
8622
+ kind: "function" | "method" | "constructor" | "class";
8623
+ service: string;
8624
+ qualname: string;
8625
+ span: {
8626
+ startLine: number;
8627
+ endLine: number;
8628
+ };
8629
+ relPath: string;
8630
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8147
8631
  }>]>, "many">;
8148
8632
  edges: z.ZodArray<z.ZodObject<{
8149
8633
  id: z.ZodString;
8150
8634
  source: z.ZodString;
8151
8635
  target: z.ZodString;
8152
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
8636
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
8153
8637
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
8154
8638
  confidence: z.ZodOptional<z.ZodNumber>;
8155
8639
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -8188,7 +8672,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8188
8672
  }>>;
8189
8673
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
8190
8674
  }, "strip", z.ZodTypeAny, {
8191
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8675
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
8192
8676
  id: string;
8193
8677
  source: string;
8194
8678
  target: string;
@@ -8210,7 +8694,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8210
8694
  } | undefined;
8211
8695
  grain?: "service" | "file" | undefined;
8212
8696
  }, {
8213
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8697
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
8214
8698
  id: string;
8215
8699
  source: string;
8216
8700
  target: string;
@@ -8361,9 +8845,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8361
8845
  path?: string | undefined;
8362
8846
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8363
8847
  line?: number | undefined;
8848
+ } | {
8849
+ type: "SymbolNode";
8850
+ id: string;
8851
+ kind: "function" | "method" | "constructor" | "class";
8852
+ service: string;
8853
+ qualname: string;
8854
+ span: {
8855
+ startLine: number;
8856
+ endLine: number;
8857
+ };
8858
+ relPath: string;
8859
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8364
8860
  })[];
8365
8861
  edges: {
8366
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8862
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
8367
8863
  id: string;
8368
8864
  source: string;
8369
8865
  target: string;
@@ -8514,9 +9010,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8514
9010
  path?: string | undefined;
8515
9011
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8516
9012
  line?: number | undefined;
9013
+ } | {
9014
+ type: "SymbolNode";
9015
+ id: string;
9016
+ kind: "function" | "method" | "constructor" | "class";
9017
+ service: string;
9018
+ qualname: string;
9019
+ span: {
9020
+ startLine: number;
9021
+ endLine: number;
9022
+ };
9023
+ relPath: string;
9024
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8517
9025
  })[];
8518
9026
  edges: {
8519
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
9027
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
8520
9028
  id: string;
8521
9029
  source: string;
8522
9030
  target: string;
@@ -8996,6 +9504,48 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8996
9504
  path?: string | undefined;
8997
9505
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8998
9506
  line?: number | undefined;
9507
+ }>, z.ZodObject<{
9508
+ id: z.ZodString;
9509
+ type: z.ZodLiteral<"SymbolNode">;
9510
+ kind: z.ZodEnum<["function", "method", "constructor", "class"]>;
9511
+ qualname: z.ZodString;
9512
+ span: z.ZodObject<{
9513
+ startLine: z.ZodNumber;
9514
+ endLine: z.ZodNumber;
9515
+ }, "strip", z.ZodTypeAny, {
9516
+ startLine: number;
9517
+ endLine: number;
9518
+ }, {
9519
+ startLine: number;
9520
+ endLine: number;
9521
+ }>;
9522
+ service: z.ZodString;
9523
+ relPath: z.ZodString;
9524
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
9525
+ }, "strip", z.ZodTypeAny, {
9526
+ type: "SymbolNode";
9527
+ id: string;
9528
+ kind: "function" | "method" | "constructor" | "class";
9529
+ service: string;
9530
+ qualname: string;
9531
+ span: {
9532
+ startLine: number;
9533
+ endLine: number;
9534
+ };
9535
+ relPath: string;
9536
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9537
+ }, {
9538
+ type: "SymbolNode";
9539
+ id: string;
9540
+ kind: "function" | "method" | "constructor" | "class";
9541
+ service: string;
9542
+ qualname: string;
9543
+ span: {
9544
+ startLine: number;
9545
+ endLine: number;
9546
+ };
9547
+ relPath: string;
9548
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8999
9549
  }>]>;
9000
9550
  after: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
9001
9551
  id: z.ZodString;
@@ -9451,6 +10001,48 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9451
10001
  path?: string | undefined;
9452
10002
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9453
10003
  line?: number | undefined;
10004
+ }>, z.ZodObject<{
10005
+ id: z.ZodString;
10006
+ type: z.ZodLiteral<"SymbolNode">;
10007
+ kind: z.ZodEnum<["function", "method", "constructor", "class"]>;
10008
+ qualname: z.ZodString;
10009
+ span: z.ZodObject<{
10010
+ startLine: z.ZodNumber;
10011
+ endLine: z.ZodNumber;
10012
+ }, "strip", z.ZodTypeAny, {
10013
+ startLine: number;
10014
+ endLine: number;
10015
+ }, {
10016
+ startLine: number;
10017
+ endLine: number;
10018
+ }>;
10019
+ service: z.ZodString;
10020
+ relPath: z.ZodString;
10021
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
10022
+ }, "strip", z.ZodTypeAny, {
10023
+ type: "SymbolNode";
10024
+ id: string;
10025
+ kind: "function" | "method" | "constructor" | "class";
10026
+ service: string;
10027
+ qualname: string;
10028
+ span: {
10029
+ startLine: number;
10030
+ endLine: number;
10031
+ };
10032
+ relPath: string;
10033
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10034
+ }, {
10035
+ type: "SymbolNode";
10036
+ id: string;
10037
+ kind: "function" | "method" | "constructor" | "class";
10038
+ service: string;
10039
+ qualname: string;
10040
+ span: {
10041
+ startLine: number;
10042
+ endLine: number;
10043
+ };
10044
+ relPath: string;
10045
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9454
10046
  }>]>;
9455
10047
  }, "strip", z.ZodTypeAny, {
9456
10048
  id: string;
@@ -9582,6 +10174,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9582
10174
  path?: string | undefined;
9583
10175
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9584
10176
  line?: number | undefined;
10177
+ } | {
10178
+ type: "SymbolNode";
10179
+ id: string;
10180
+ kind: "function" | "method" | "constructor" | "class";
10181
+ service: string;
10182
+ qualname: string;
10183
+ span: {
10184
+ startLine: number;
10185
+ endLine: number;
10186
+ };
10187
+ relPath: string;
10188
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9585
10189
  };
9586
10190
  after: {
9587
10191
  name: string;
@@ -9711,6 +10315,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9711
10315
  path?: string | undefined;
9712
10316
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9713
10317
  line?: number | undefined;
10318
+ } | {
10319
+ type: "SymbolNode";
10320
+ id: string;
10321
+ kind: "function" | "method" | "constructor" | "class";
10322
+ service: string;
10323
+ qualname: string;
10324
+ span: {
10325
+ startLine: number;
10326
+ endLine: number;
10327
+ };
10328
+ relPath: string;
10329
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9714
10330
  };
9715
10331
  }, {
9716
10332
  id: string;
@@ -9842,6 +10458,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9842
10458
  path?: string | undefined;
9843
10459
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9844
10460
  line?: number | undefined;
10461
+ } | {
10462
+ type: "SymbolNode";
10463
+ id: string;
10464
+ kind: "function" | "method" | "constructor" | "class";
10465
+ service: string;
10466
+ qualname: string;
10467
+ span: {
10468
+ startLine: number;
10469
+ endLine: number;
10470
+ };
10471
+ relPath: string;
10472
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9845
10473
  };
9846
10474
  after: {
9847
10475
  name: string;
@@ -9971,6 +10599,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9971
10599
  path?: string | undefined;
9972
10600
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9973
10601
  line?: number | undefined;
10602
+ } | {
10603
+ type: "SymbolNode";
10604
+ id: string;
10605
+ kind: "function" | "method" | "constructor" | "class";
10606
+ service: string;
10607
+ qualname: string;
10608
+ span: {
10609
+ startLine: number;
10610
+ endLine: number;
10611
+ };
10612
+ relPath: string;
10613
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9974
10614
  };
9975
10615
  }>, "many">;
9976
10616
  edges: z.ZodArray<z.ZodObject<{
@@ -9979,7 +10619,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9979
10619
  id: z.ZodString;
9980
10620
  source: z.ZodString;
9981
10621
  target: z.ZodString;
9982
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
10622
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
9983
10623
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
9984
10624
  confidence: z.ZodOptional<z.ZodNumber>;
9985
10625
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -10018,7 +10658,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10018
10658
  }>>;
10019
10659
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
10020
10660
  }, "strip", z.ZodTypeAny, {
10021
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
10661
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
10022
10662
  id: string;
10023
10663
  source: string;
10024
10664
  target: string;
@@ -10040,7 +10680,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10040
10680
  } | undefined;
10041
10681
  grain?: "service" | "file" | undefined;
10042
10682
  }, {
10043
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
10683
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
10044
10684
  id: string;
10045
10685
  source: string;
10046
10686
  target: string;
@@ -10066,7 +10706,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10066
10706
  id: z.ZodString;
10067
10707
  source: z.ZodString;
10068
10708
  target: z.ZodString;
10069
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
10709
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS"]>;
10070
10710
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
10071
10711
  confidence: z.ZodOptional<z.ZodNumber>;
10072
10712
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -10105,7 +10745,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10105
10745
  }>>;
10106
10746
  grain: z.ZodOptional<z.ZodEnum<["file", "service"]>>;
10107
10747
  }, "strip", z.ZodTypeAny, {
10108
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
10748
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
10109
10749
  id: string;
10110
10750
  source: string;
10111
10751
  target: string;
@@ -10127,7 +10767,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10127
10767
  } | undefined;
10128
10768
  grain?: "service" | "file" | undefined;
10129
10769
  }, {
10130
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
10770
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
10131
10771
  id: string;
10132
10772
  source: string;
10133
10773
  target: string;
@@ -10152,7 +10792,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10152
10792
  }, "strip", z.ZodTypeAny, {
10153
10793
  id: string;
10154
10794
  before: {
10155
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
10795
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
10156
10796
  id: string;
10157
10797
  source: string;
10158
10798
  target: string;
@@ -10175,7 +10815,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10175
10815
  grain?: "service" | "file" | undefined;
10176
10816
  };
10177
10817
  after: {
10178
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
10818
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
10179
10819
  id: string;
10180
10820
  source: string;
10181
10821
  target: string;
@@ -10200,7 +10840,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10200
10840
  }, {
10201
10841
  id: string;
10202
10842
  before: {
10203
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
10843
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
10204
10844
  id: string;
10205
10845
  source: string;
10206
10846
  target: string;
@@ -10223,7 +10863,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10223
10863
  grain?: "service" | "file" | undefined;
10224
10864
  };
10225
10865
  after: {
10226
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
10866
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
10227
10867
  id: string;
10228
10868
  source: string;
10229
10869
  target: string;
@@ -10377,6 +11017,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10377
11017
  path?: string | undefined;
10378
11018
  discoveredVia?: "static" | "otel" | "merged" | undefined;
10379
11019
  line?: number | undefined;
11020
+ } | {
11021
+ type: "SymbolNode";
11022
+ id: string;
11023
+ kind: "function" | "method" | "constructor" | "class";
11024
+ service: string;
11025
+ qualname: string;
11026
+ span: {
11027
+ startLine: number;
11028
+ endLine: number;
11029
+ };
11030
+ relPath: string;
11031
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10380
11032
  };
10381
11033
  after: {
10382
11034
  name: string;
@@ -10506,12 +11158,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10506
11158
  path?: string | undefined;
10507
11159
  discoveredVia?: "static" | "otel" | "merged" | undefined;
10508
11160
  line?: number | undefined;
11161
+ } | {
11162
+ type: "SymbolNode";
11163
+ id: string;
11164
+ kind: "function" | "method" | "constructor" | "class";
11165
+ service: string;
11166
+ qualname: string;
11167
+ span: {
11168
+ startLine: number;
11169
+ endLine: number;
11170
+ };
11171
+ relPath: string;
11172
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10509
11173
  };
10510
11174
  }[];
10511
11175
  edges: {
10512
11176
  id: string;
10513
11177
  before: {
10514
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
11178
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
10515
11179
  id: string;
10516
11180
  source: string;
10517
11181
  target: string;
@@ -10534,7 +11198,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10534
11198
  grain?: "service" | "file" | undefined;
10535
11199
  };
10536
11200
  after: {
10537
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
11201
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
10538
11202
  id: string;
10539
11203
  source: string;
10540
11204
  target: string;
@@ -10688,6 +11352,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10688
11352
  path?: string | undefined;
10689
11353
  discoveredVia?: "static" | "otel" | "merged" | undefined;
10690
11354
  line?: number | undefined;
11355
+ } | {
11356
+ type: "SymbolNode";
11357
+ id: string;
11358
+ kind: "function" | "method" | "constructor" | "class";
11359
+ service: string;
11360
+ qualname: string;
11361
+ span: {
11362
+ startLine: number;
11363
+ endLine: number;
11364
+ };
11365
+ relPath: string;
11366
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10691
11367
  };
10692
11368
  after: {
10693
11369
  name: string;
@@ -10817,12 +11493,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10817
11493
  path?: string | undefined;
10818
11494
  discoveredVia?: "static" | "otel" | "merged" | undefined;
10819
11495
  line?: number | undefined;
11496
+ } | {
11497
+ type: "SymbolNode";
11498
+ id: string;
11499
+ kind: "function" | "method" | "constructor" | "class";
11500
+ service: string;
11501
+ qualname: string;
11502
+ span: {
11503
+ startLine: number;
11504
+ endLine: number;
11505
+ };
11506
+ relPath: string;
11507
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10820
11508
  };
10821
11509
  }[];
10822
11510
  edges: {
10823
11511
  id: string;
10824
11512
  before: {
10825
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
11513
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
10826
11514
  id: string;
10827
11515
  source: string;
10828
11516
  target: string;
@@ -10845,7 +11533,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
10845
11533
  grain?: "service" | "file" | undefined;
10846
11534
  };
10847
11535
  after: {
10848
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
11536
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
10849
11537
  id: string;
10850
11538
  source: string;
10851
11539
  target: string;
@@ -11005,9 +11693,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
11005
11693
  path?: string | undefined;
11006
11694
  discoveredVia?: "static" | "otel" | "merged" | undefined;
11007
11695
  line?: number | undefined;
11696
+ } | {
11697
+ type: "SymbolNode";
11698
+ id: string;
11699
+ kind: "function" | "method" | "constructor" | "class";
11700
+ service: string;
11701
+ qualname: string;
11702
+ span: {
11703
+ startLine: number;
11704
+ endLine: number;
11705
+ };
11706
+ relPath: string;
11707
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11008
11708
  })[];
11009
11709
  edges: {
11010
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
11710
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
11011
11711
  id: string;
11012
11712
  source: string;
11013
11713
  target: string;
@@ -11159,9 +11859,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
11159
11859
  path?: string | undefined;
11160
11860
  discoveredVia?: "static" | "otel" | "merged" | undefined;
11161
11861
  line?: number | undefined;
11862
+ } | {
11863
+ type: "SymbolNode";
11864
+ id: string;
11865
+ kind: "function" | "method" | "constructor" | "class";
11866
+ service: string;
11867
+ qualname: string;
11868
+ span: {
11869
+ startLine: number;
11870
+ endLine: number;
11871
+ };
11872
+ relPath: string;
11873
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11162
11874
  })[];
11163
11875
  edges: {
11164
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
11876
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
11165
11877
  id: string;
11166
11878
  source: string;
11167
11879
  target: string;
@@ -11315,6 +12027,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
11315
12027
  path?: string | undefined;
11316
12028
  discoveredVia?: "static" | "otel" | "merged" | undefined;
11317
12029
  line?: number | undefined;
12030
+ } | {
12031
+ type: "SymbolNode";
12032
+ id: string;
12033
+ kind: "function" | "method" | "constructor" | "class";
12034
+ service: string;
12035
+ qualname: string;
12036
+ span: {
12037
+ startLine: number;
12038
+ endLine: number;
12039
+ };
12040
+ relPath: string;
12041
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11318
12042
  };
11319
12043
  after: {
11320
12044
  name: string;
@@ -11444,12 +12168,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
11444
12168
  path?: string | undefined;
11445
12169
  discoveredVia?: "static" | "otel" | "merged" | undefined;
11446
12170
  line?: number | undefined;
12171
+ } | {
12172
+ type: "SymbolNode";
12173
+ id: string;
12174
+ kind: "function" | "method" | "constructor" | "class";
12175
+ service: string;
12176
+ qualname: string;
12177
+ span: {
12178
+ startLine: number;
12179
+ endLine: number;
12180
+ };
12181
+ relPath: string;
12182
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11447
12183
  };
11448
12184
  }[];
11449
12185
  edges: {
11450
12186
  id: string;
11451
12187
  before: {
11452
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
12188
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
11453
12189
  id: string;
11454
12190
  source: string;
11455
12191
  target: string;
@@ -11472,7 +12208,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
11472
12208
  grain?: "service" | "file" | undefined;
11473
12209
  };
11474
12210
  after: {
11475
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
12211
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
11476
12212
  id: string;
11477
12213
  source: string;
11478
12214
  target: string;
@@ -11632,9 +12368,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
11632
12368
  path?: string | undefined;
11633
12369
  discoveredVia?: "static" | "otel" | "merged" | undefined;
11634
12370
  line?: number | undefined;
12371
+ } | {
12372
+ type: "SymbolNode";
12373
+ id: string;
12374
+ kind: "function" | "method" | "constructor" | "class";
12375
+ service: string;
12376
+ qualname: string;
12377
+ span: {
12378
+ startLine: number;
12379
+ endLine: number;
12380
+ };
12381
+ relPath: string;
12382
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11635
12383
  })[];
11636
12384
  edges: {
11637
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
12385
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
11638
12386
  id: string;
11639
12387
  source: string;
11640
12388
  target: string;
@@ -11786,9 +12534,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
11786
12534
  path?: string | undefined;
11787
12535
  discoveredVia?: "static" | "otel" | "merged" | undefined;
11788
12536
  line?: number | undefined;
12537
+ } | {
12538
+ type: "SymbolNode";
12539
+ id: string;
12540
+ kind: "function" | "method" | "constructor" | "class";
12541
+ service: string;
12542
+ qualname: string;
12543
+ span: {
12544
+ startLine: number;
12545
+ endLine: number;
12546
+ };
12547
+ relPath: string;
12548
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11789
12549
  })[];
11790
12550
  edges: {
11791
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
12551
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
11792
12552
  id: string;
11793
12553
  source: string;
11794
12554
  target: string;
@@ -11942,6 +12702,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
11942
12702
  path?: string | undefined;
11943
12703
  discoveredVia?: "static" | "otel" | "merged" | undefined;
11944
12704
  line?: number | undefined;
12705
+ } | {
12706
+ type: "SymbolNode";
12707
+ id: string;
12708
+ kind: "function" | "method" | "constructor" | "class";
12709
+ service: string;
12710
+ qualname: string;
12711
+ span: {
12712
+ startLine: number;
12713
+ endLine: number;
12714
+ };
12715
+ relPath: string;
12716
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11945
12717
  };
11946
12718
  after: {
11947
12719
  name: string;
@@ -12071,12 +12843,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
12071
12843
  path?: string | undefined;
12072
12844
  discoveredVia?: "static" | "otel" | "merged" | undefined;
12073
12845
  line?: number | undefined;
12846
+ } | {
12847
+ type: "SymbolNode";
12848
+ id: string;
12849
+ kind: "function" | "method" | "constructor" | "class";
12850
+ service: string;
12851
+ qualname: string;
12852
+ span: {
12853
+ startLine: number;
12854
+ endLine: number;
12855
+ };
12856
+ relPath: string;
12857
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
12074
12858
  };
12075
12859
  }[];
12076
12860
  edges: {
12077
12861
  id: string;
12078
12862
  before: {
12079
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
12863
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
12080
12864
  id: string;
12081
12865
  source: string;
12082
12866
  target: string;
@@ -12099,7 +12883,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
12099
12883
  grain?: "service" | "file" | undefined;
12100
12884
  };
12101
12885
  after: {
12102
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
12886
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS";
12103
12887
  id: string;
12104
12888
  source: string;
12105
12889
  target: string;
@@ -12134,4 +12918,4 @@ declare const DEFAULT_EXTRACTED_PRECISION_FLOOR = 0.7;
12134
12918
  declare function extractedPrecisionFloor(): number;
12135
12919
  declare function passesExtractedFloor(confidence: number): boolean;
12136
12920
 
12137
- export { type ApplicablePoliciesResponse, ApplicablePoliciesResponseSchema, type ApplicablePolicy, ApplicablePolicySchema, type BlastRadiusAffectedNode, BlastRadiusAffectedNodeSchema, type BlastRadiusResult, BlastRadiusResultSchema, type BlastRadiusRule, BlastRadiusRuleSchema, type CheckPoliciesScope, CheckPoliciesScopeSchema, type CompatRuleRef, CompatRuleRefSchema, type CompatViolationDivergence, CompatViolationDivergenceSchema, type CompatibilityRule, CompatibilityRuleSchema, type CompatibilityVerdict, CompatibilityVerdictSchema, type CompatibleDriver, CompatibleDriverSchema, type ConfigNode, ConfigNodeSchema, type ConnectorPollState, ConnectorPollStateSchema, type ConnectorPollState as ConnectorState, ConnectorPollStateSchema as ConnectorStateSchema, type ConnectorStatus, type ConnectorStatusEntry, ConnectorStatusEntrySchema, ConnectorStatusSchema, type ConnectorStatusEntry as ConnectorSummary, ConnectorStatusEntrySchema as ConnectorSummarySchema, type ConnectorsStatusResponse as ConnectorsResponse, ConnectorsStatusResponseSchema as ConnectorsResponseSchema, type ConnectorsStatusResponse, ConnectorsStatusResponseSchema, DEFAULT_EXTRACTED_PRECISION_FLOOR, type DaemonHealthResponse, DaemonHealthResponseSchema, type DatabaseNode, DatabaseNodeSchema, type DiscoveredVia, DiscoveredViaSchema, type Divergence, type DivergenceResult, DivergenceResultSchema, DivergenceSchema, type DivergenceType, DivergenceTypeSchema, EMPTY_REGISTRY, EXTRACTED_CONFIDENCE, type EdgeEvidence, EdgeEvidenceSchema, type EdgeSignal, EdgeSignalSchema, EdgeType, EdgeTypeSchema, type EdgeTypeValue, type ErrorEvent, ErrorEventSchema, type ExtractedConfidenceKind, type FileNode, FileNodeSchema, type FrontierNode, FrontierNodeSchema, type GraphDiffResult, GraphDiffResultSchema, type GraphEdge, GraphEdgeSchema, type GraphEdgesResponse, GraphEdgesResponseSchema, type GraphNode, type GraphNodeResponse, GraphNodeResponseSchema, GraphNodeSchema, type GraphQLOperationNode, GraphQLOperationNodeSchema, type GrpcMethodNode, GrpcMethodNodeSchema, type HealthResponse, HealthResponseSchema, type HostMismatchDivergence, HostMismatchDivergenceSchema, type HypotheticalAction, HypotheticalActionSchema, type IncidentsResponse, IncidentsResponseSchema, type InfraNode, InfraNodeSchema, type LogEntry, LogEntrySchema, type LogSource, LogSourceSchema, type LogsResponse, LogsResponseSchema, type MCPToolName, MCP_TOOL_NAMES, type MissingExtractedDivergence, MissingExtractedDivergenceSchema, type MissingObservedDivergence, MissingObservedDivergenceSchema, NodeType, NodeTypeSchema, type NodeTypeValue, type ObservedDependenciesResult, ObservedDependenciesResultSchema, type OwnershipRule, OwnershipRuleSchema, PROV_RANK, type PoliciesCheckBody, PoliciesCheckBodySchema, type PoliciesViolationsResponse, PoliciesViolationsResponseSchema, type Policy, type PolicyAction, PolicyActionSchema, type PolicyFile, PolicyFileSchema, type PolicyRule, PolicyRuleSchema, PolicySchema, type PolicySeverity, PolicySeveritySchema, type PolicyViolation, PolicyViolationSchema, Provenance, type ProvenanceRule, ProvenanceRuleSchema, ProvenanceSchema, type ProvenanceValue, type RegistryEntry, RegistryEntrySchema, type RegistryFile, RegistryFileSchema, type RegistryStatus, RegistryStatusSchema, type RootCauseResult, RootCauseResultSchema, type RouteNode, RouteNodeSchema, type SearchMatch, SearchMatchSchema, type SearchResponse, SearchResponseSchema, type SerializedGraph, SerializedGraphSchema, type ServiceNode, ServiceNodeSchema, type SingleProjectResponse, SingleProjectResponseSchema, type SpanAttributes, SpanAttributesSchema, type StaleEvent, StaleEventSchema, type StaleEventsResponse, StaleEventsResponseSchema, type StructuralRule, StructuralRuleSchema, type TransitiveDependenciesResult, TransitiveDependenciesResultSchema, type TransitiveDependency, TransitiveDependencySchema, type VersionMismatchDivergence, VersionMismatchDivergenceSchema, type WebSocketChannelNode, WebSocketChannelNodeSchema, confidenceForExtracted, confidenceForObservedSignal, configId, databaseId, extractedEdgeId, extractedPrecisionFloor, fileId, frontierId, graphqlOperationId, grpcMethodId, inferredEdgeId, infraId, localDatabaseId, observedEdgeId, parseConfigId, parseDatabaseId, parseEdgeId, parseFileId, parseFrontierId, parseGraphqlOperationId, parseGrpcMethodId, parseInfraId, parseRouteId, parseServiceId, parseWebsocketChannelId, passesExtractedFloor, routeId, serviceId, websocketChannelId };
12921
+ export { type ApplicablePoliciesResponse, ApplicablePoliciesResponseSchema, type ApplicablePolicy, ApplicablePolicySchema, type BlastRadiusAffectedNode, BlastRadiusAffectedNodeSchema, type BlastRadiusResult, BlastRadiusResultSchema, type BlastRadiusRule, BlastRadiusRuleSchema, type CheckPoliciesScope, CheckPoliciesScopeSchema, type CompatRuleRef, CompatRuleRefSchema, type CompatViolationDivergence, CompatViolationDivergenceSchema, type CompatibilityRule, CompatibilityRuleSchema, type CompatibilityVerdict, CompatibilityVerdictSchema, type CompatibleDriver, CompatibleDriverSchema, type ConfigNode, ConfigNodeSchema, type ConnectorPollState, ConnectorPollStateSchema, type ConnectorPollState as ConnectorState, ConnectorPollStateSchema as ConnectorStateSchema, type ConnectorStatus, type ConnectorStatusEntry, ConnectorStatusEntrySchema, ConnectorStatusSchema, type ConnectorStatusEntry as ConnectorSummary, ConnectorStatusEntrySchema as ConnectorSummarySchema, type ConnectorsStatusResponse as ConnectorsResponse, ConnectorsStatusResponseSchema as ConnectorsResponseSchema, type ConnectorsStatusResponse, ConnectorsStatusResponseSchema, DEFAULT_EXTRACTED_PRECISION_FLOOR, type DaemonHealthResponse, DaemonHealthResponseSchema, type DatabaseNode, DatabaseNodeSchema, type DiscoveredVia, DiscoveredViaSchema, type Divergence, type DivergenceResult, DivergenceResultSchema, DivergenceSchema, type DivergenceType, DivergenceTypeSchema, EMPTY_REGISTRY, EXTRACTED_CONFIDENCE, type EdgeEvidence, EdgeEvidenceSchema, type EdgeSignal, EdgeSignalSchema, EdgeType, EdgeTypeSchema, type EdgeTypeValue, type ErrorEvent, ErrorEventSchema, type ExtractedConfidenceKind, type ExtractionCoverage, ExtractionCoverageSchema, type FileNode, FileNodeSchema, type FrontierNode, FrontierNodeSchema, type GraphDiffResult, GraphDiffResultSchema, type GraphEdge, GraphEdgeSchema, type GraphEdgesResponse, GraphEdgesResponseSchema, type GraphNode, type GraphNodeResponse, GraphNodeResponseSchema, GraphNodeSchema, type GraphQLOperationNode, GraphQLOperationNodeSchema, type GrpcMethodNode, GrpcMethodNodeSchema, type HealthResponse, HealthResponseSchema, type HostMismatchDivergence, HostMismatchDivergenceSchema, type HypotheticalAction, HypotheticalActionSchema, type IncidentsResponse, IncidentsResponseSchema, type InfraNode, InfraNodeSchema, type LogEntry, LogEntrySchema, type LogSource, LogSourceSchema, type LogsResponse, LogsResponseSchema, type MCPToolName, MCP_TOOL_NAMES, type MissingExtractedDivergence, MissingExtractedDivergenceSchema, type MissingObservedDivergence, MissingObservedDivergenceSchema, NodeType, NodeTypeSchema, type NodeTypeValue, type ObservedDependenciesResult, ObservedDependenciesResultSchema, type OwnershipRule, OwnershipRuleSchema, PROV_RANK, type PoliciesCheckBody, PoliciesCheckBodySchema, type PoliciesViolationsResponse, PoliciesViolationsResponseSchema, type Policy, type PolicyAction, PolicyActionSchema, type PolicyFile, PolicyFileSchema, type PolicyRule, PolicyRuleSchema, PolicySchema, type PolicySeverity, PolicySeveritySchema, type PolicyViolation, PolicyViolationSchema, type ProjectListEntry, ProjectListEntrySchema, type ProjectServedBy, ProjectServedBySchema, Provenance, type ProvenanceRule, ProvenanceRuleSchema, ProvenanceSchema, type ProvenanceValue, type RegistryEntry, RegistryEntrySchema, type RegistryFile, RegistryFileSchema, type RegistryStatus, RegistryStatusSchema, type RootCauseResult, RootCauseResultSchema, type RouteNode, RouteNodeSchema, type SearchMatch, SearchMatchSchema, type SearchResponse, SearchResponseSchema, type SerializedGraph, SerializedGraphSchema, type ServiceNode, ServiceNodeSchema, type SingleProjectResponse, SingleProjectResponseSchema, type SpanAttributes, SpanAttributesSchema, type StaleEvent, StaleEventSchema, type StaleEventsResponse, StaleEventsResponseSchema, type StructuralRule, StructuralRuleSchema, type SymbolKind, SymbolKindSchema, type SymbolNode, SymbolNodeSchema, type SymbolSpan, SymbolSpanSchema, type TransitiveDependenciesResult, TransitiveDependenciesResultSchema, type TransitiveDependency, TransitiveDependencySchema, type VersionMismatchDivergence, VersionMismatchDivergenceSchema, type WebSocketChannelNode, WebSocketChannelNodeSchema, confidenceForExtracted, confidenceForObservedSignal, configId, databaseId, extractedEdgeId, extractedPrecisionFloor, fileId, frontierId, graphqlOperationId, grpcMethodId, inferredEdgeId, infraId, localDatabaseId, observedEdgeId, parseConfigId, parseDatabaseId, parseEdgeId, parseFileId, parseFrontierId, parseGraphqlOperationId, parseGrpcMethodId, parseInfraId, parseRouteId, parseServiceId, parseSymbolId, parseWebsocketChannelId, passesExtractedFloor, routeId, serviceId, symbolId, websocketChannelId };