@neat.is/types 0.4.11 → 0.4.13

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
@@ -16,6 +16,7 @@ declare const EdgeType: {
16
16
  readonly CONSUMES_FROM: "CONSUMES_FROM";
17
17
  readonly RUNS_ON: "RUNS_ON";
18
18
  readonly CONTAINS: "CONTAINS";
19
+ readonly IMPORTS: "IMPORTS";
19
20
  };
20
21
  type EdgeTypeValue = (typeof EdgeType)[keyof typeof EdgeType];
21
22
  declare const NodeType: {
@@ -715,7 +716,7 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
715
716
  type GraphNode = z.infer<typeof GraphNodeSchema>;
716
717
 
717
718
  declare const ProvenanceSchema: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
718
- declare const EdgeTypeSchema: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
719
+ declare const EdgeTypeSchema: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
719
720
  declare const EdgeEvidenceSchema: z.ZodObject<{
720
721
  file: z.ZodString;
721
722
  line: z.ZodOptional<z.ZodNumber>;
@@ -748,7 +749,7 @@ declare const GraphEdgeSchema: z.ZodObject<{
748
749
  id: z.ZodString;
749
750
  source: z.ZodString;
750
751
  target: z.ZodString;
751
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
752
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
752
753
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
753
754
  confidence: z.ZodOptional<z.ZodNumber>;
754
755
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -780,7 +781,7 @@ declare const GraphEdgeSchema: z.ZodObject<{
780
781
  lastObservedAgeMs?: number | undefined;
781
782
  }>>;
782
783
  }, "strip", z.ZodTypeAny, {
783
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
784
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
784
785
  id: string;
785
786
  source: string;
786
787
  target: string;
@@ -799,7 +800,7 @@ declare const GraphEdgeSchema: z.ZodObject<{
799
800
  lastObservedAgeMs?: number | undefined;
800
801
  } | undefined;
801
802
  }, {
802
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
803
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
803
804
  id: string;
804
805
  source: string;
805
806
  target: string;
@@ -980,16 +981,16 @@ type BlastRadiusResult = z.infer<typeof BlastRadiusResultSchema>;
980
981
  declare const TransitiveDependencySchema: z.ZodObject<{
981
982
  nodeId: z.ZodString;
982
983
  distance: z.ZodNumber;
983
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
984
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
984
985
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
985
986
  }, "strip", z.ZodTypeAny, {
986
987
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
987
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
988
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
988
989
  nodeId: string;
989
990
  distance: number;
990
991
  }, {
991
992
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
992
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
993
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
993
994
  nodeId: string;
994
995
  distance: number;
995
996
  }>;
@@ -1000,16 +1001,16 @@ declare const TransitiveDependenciesResultSchema: z.ZodObject<{
1000
1001
  dependencies: z.ZodArray<z.ZodObject<{
1001
1002
  nodeId: z.ZodString;
1002
1003
  distance: z.ZodNumber;
1003
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1004
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1004
1005
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1005
1006
  }, "strip", z.ZodTypeAny, {
1006
1007
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1007
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1008
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1008
1009
  nodeId: string;
1009
1010
  distance: number;
1010
1011
  }, {
1011
1012
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1012
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1013
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1013
1014
  nodeId: string;
1014
1015
  distance: number;
1015
1016
  }>, "many">;
@@ -1017,7 +1018,7 @@ declare const TransitiveDependenciesResultSchema: z.ZodObject<{
1017
1018
  }, "strip", z.ZodTypeAny, {
1018
1019
  dependencies: {
1019
1020
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1020
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1021
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1021
1022
  nodeId: string;
1022
1023
  distance: number;
1023
1024
  }[];
@@ -1027,7 +1028,7 @@ declare const TransitiveDependenciesResultSchema: z.ZodObject<{
1027
1028
  }, {
1028
1029
  dependencies: {
1029
1030
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1030
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1031
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1031
1032
  nodeId: string;
1032
1033
  distance: number;
1033
1034
  }[];
@@ -1076,16 +1077,16 @@ type PolicyAction = z.infer<typeof PolicyActionSchema>;
1076
1077
  declare const StructuralRuleSchema: z.ZodObject<{
1077
1078
  type: z.ZodLiteral<"structural">;
1078
1079
  fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1079
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1080
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1080
1081
  toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1081
1082
  }, "strip", z.ZodTypeAny, {
1082
1083
  type: "structural";
1083
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1084
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1084
1085
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1085
1086
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1086
1087
  }, {
1087
1088
  type: "structural";
1088
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1089
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1089
1090
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1090
1091
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1091
1092
  }>;
@@ -1103,17 +1104,17 @@ declare const CompatibilityRuleSchema: z.ZodObject<{
1103
1104
  type CompatibilityRule = z.infer<typeof CompatibilityRuleSchema>;
1104
1105
  declare const ProvenanceRuleSchema: z.ZodObject<{
1105
1106
  type: z.ZodLiteral<"provenance">;
1106
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1107
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1107
1108
  targetNodeId: z.ZodOptional<z.ZodString>;
1108
1109
  required: z.ZodUnion<[z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">]>;
1109
1110
  }, "strip", z.ZodTypeAny, {
1110
1111
  type: "provenance";
1111
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1112
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1112
1113
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1113
1114
  targetNodeId?: string | undefined;
1114
1115
  }, {
1115
1116
  type: "provenance";
1116
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1117
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1117
1118
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1118
1119
  targetNodeId?: string | undefined;
1119
1120
  }>;
@@ -1152,16 +1153,16 @@ type BlastRadiusRule = z.infer<typeof BlastRadiusRuleSchema>;
1152
1153
  declare const PolicyRuleSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1153
1154
  type: z.ZodLiteral<"structural">;
1154
1155
  fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1155
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1156
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1156
1157
  toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1157
1158
  }, "strip", z.ZodTypeAny, {
1158
1159
  type: "structural";
1159
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1160
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1160
1161
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1161
1162
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1162
1163
  }, {
1163
1164
  type: "structural";
1164
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1165
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1165
1166
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1166
1167
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1167
1168
  }>, z.ZodObject<{
@@ -1175,17 +1176,17 @@ declare const PolicyRuleSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1175
1176
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1176
1177
  }>, z.ZodObject<{
1177
1178
  type: z.ZodLiteral<"provenance">;
1178
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1179
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1179
1180
  targetNodeId: z.ZodOptional<z.ZodString>;
1180
1181
  required: z.ZodUnion<[z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">]>;
1181
1182
  }, "strip", z.ZodTypeAny, {
1182
1183
  type: "provenance";
1183
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1184
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1184
1185
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1185
1186
  targetNodeId?: string | undefined;
1186
1187
  }, {
1187
1188
  type: "provenance";
1188
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1189
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1189
1190
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1190
1191
  targetNodeId?: string | undefined;
1191
1192
  }>, z.ZodObject<{
@@ -1226,16 +1227,16 @@ declare const PolicySchema: z.ZodObject<{
1226
1227
  rule: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1227
1228
  type: z.ZodLiteral<"structural">;
1228
1229
  fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1229
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1230
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1230
1231
  toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1231
1232
  }, "strip", z.ZodTypeAny, {
1232
1233
  type: "structural";
1233
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1234
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1234
1235
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1235
1236
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1236
1237
  }, {
1237
1238
  type: "structural";
1238
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1239
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1239
1240
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1240
1241
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1241
1242
  }>, z.ZodObject<{
@@ -1249,17 +1250,17 @@ declare const PolicySchema: z.ZodObject<{
1249
1250
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1250
1251
  }>, z.ZodObject<{
1251
1252
  type: z.ZodLiteral<"provenance">;
1252
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1253
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1253
1254
  targetNodeId: z.ZodOptional<z.ZodString>;
1254
1255
  required: z.ZodUnion<[z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">]>;
1255
1256
  }, "strip", z.ZodTypeAny, {
1256
1257
  type: "provenance";
1257
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1258
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1258
1259
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1259
1260
  targetNodeId?: string | undefined;
1260
1261
  }, {
1261
1262
  type: "provenance";
1262
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1263
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1263
1264
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1264
1265
  targetNodeId?: string | undefined;
1265
1266
  }>, z.ZodObject<{
@@ -1296,7 +1297,7 @@ declare const PolicySchema: z.ZodObject<{
1296
1297
  severity: "info" | "warning" | "error" | "critical";
1297
1298
  rule: {
1298
1299
  type: "structural";
1299
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1300
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1300
1301
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1301
1302
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1302
1303
  } | {
@@ -1304,7 +1305,7 @@ declare const PolicySchema: z.ZodObject<{
1304
1305
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1305
1306
  } | {
1306
1307
  type: "provenance";
1307
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1308
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1308
1309
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1309
1310
  targetNodeId?: string | undefined;
1310
1311
  } | {
@@ -1325,7 +1326,7 @@ declare const PolicySchema: z.ZodObject<{
1325
1326
  severity: "info" | "warning" | "error" | "critical";
1326
1327
  rule: {
1327
1328
  type: "structural";
1328
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1329
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1329
1330
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1330
1331
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1331
1332
  } | {
@@ -1333,7 +1334,7 @@ declare const PolicySchema: z.ZodObject<{
1333
1334
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1334
1335
  } | {
1335
1336
  type: "provenance";
1336
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1337
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1337
1338
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1338
1339
  targetNodeId?: string | undefined;
1339
1340
  } | {
@@ -1361,16 +1362,16 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1361
1362
  rule: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1362
1363
  type: z.ZodLiteral<"structural">;
1363
1364
  fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1364
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1365
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1365
1366
  toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1366
1367
  }, "strip", z.ZodTypeAny, {
1367
1368
  type: "structural";
1368
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1369
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1369
1370
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1370
1371
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1371
1372
  }, {
1372
1373
  type: "structural";
1373
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1374
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1374
1375
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1375
1376
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1376
1377
  }>, z.ZodObject<{
@@ -1384,17 +1385,17 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1384
1385
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1385
1386
  }>, z.ZodObject<{
1386
1387
  type: z.ZodLiteral<"provenance">;
1387
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1388
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1388
1389
  targetNodeId: z.ZodOptional<z.ZodString>;
1389
1390
  required: z.ZodUnion<[z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">]>;
1390
1391
  }, "strip", z.ZodTypeAny, {
1391
1392
  type: "provenance";
1392
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1393
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1393
1394
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1394
1395
  targetNodeId?: string | undefined;
1395
1396
  }, {
1396
1397
  type: "provenance";
1397
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1398
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1398
1399
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1399
1400
  targetNodeId?: string | undefined;
1400
1401
  }>, z.ZodObject<{
@@ -1431,7 +1432,7 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1431
1432
  severity: "info" | "warning" | "error" | "critical";
1432
1433
  rule: {
1433
1434
  type: "structural";
1434
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1435
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1435
1436
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1436
1437
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1437
1438
  } | {
@@ -1439,7 +1440,7 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1439
1440
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1440
1441
  } | {
1441
1442
  type: "provenance";
1442
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1443
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1443
1444
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1444
1445
  targetNodeId?: string | undefined;
1445
1446
  } | {
@@ -1460,7 +1461,7 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1460
1461
  severity: "info" | "warning" | "error" | "critical";
1461
1462
  rule: {
1462
1463
  type: "structural";
1463
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1464
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1464
1465
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1465
1466
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1466
1467
  } | {
@@ -1468,7 +1469,7 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1468
1469
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1469
1470
  } | {
1470
1471
  type: "provenance";
1471
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1472
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1472
1473
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1473
1474
  targetNodeId?: string | undefined;
1474
1475
  } | {
@@ -1492,7 +1493,7 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1492
1493
  severity: "info" | "warning" | "error" | "critical";
1493
1494
  rule: {
1494
1495
  type: "structural";
1495
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1496
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1496
1497
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1497
1498
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1498
1499
  } | {
@@ -1500,7 +1501,7 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1500
1501
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1501
1502
  } | {
1502
1503
  type: "provenance";
1503
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1504
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1504
1505
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1505
1506
  targetNodeId?: string | undefined;
1506
1507
  } | {
@@ -1524,7 +1525,7 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1524
1525
  severity: "info" | "warning" | "error" | "critical";
1525
1526
  rule: {
1526
1527
  type: "structural";
1527
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1528
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1528
1529
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1529
1530
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1530
1531
  } | {
@@ -1532,7 +1533,7 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1532
1533
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1533
1534
  } | {
1534
1535
  type: "provenance";
1535
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1536
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1536
1537
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1537
1538
  targetNodeId?: string | undefined;
1538
1539
  } | {
@@ -1556,7 +1557,7 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1556
1557
  severity: "info" | "warning" | "error" | "critical";
1557
1558
  rule: {
1558
1559
  type: "structural";
1559
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1560
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1560
1561
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1561
1562
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1562
1563
  } | {
@@ -1564,7 +1565,7 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1564
1565
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1565
1566
  } | {
1566
1567
  type: "provenance";
1567
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1568
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1568
1569
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1569
1570
  targetNodeId?: string | undefined;
1570
1571
  } | {
@@ -1588,7 +1589,7 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1588
1589
  severity: "info" | "warning" | "error" | "critical";
1589
1590
  rule: {
1590
1591
  type: "structural";
1591
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1592
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1592
1593
  fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1593
1594
  toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1594
1595
  } | {
@@ -1596,7 +1597,7 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1596
1597
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1597
1598
  } | {
1598
1599
  type: "provenance";
1599
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1600
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1600
1601
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1601
1602
  targetNodeId?: string | undefined;
1602
1603
  } | {
@@ -1627,20 +1628,20 @@ declare const HypotheticalActionSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
1627
1628
  kind: z.ZodLiteral<"add-edge">;
1628
1629
  source: z.ZodString;
1629
1630
  target: z.ZodString;
1630
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1631
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1631
1632
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1632
1633
  }, "strip", z.ZodTypeAny, {
1633
1634
  kind: "add-edge";
1634
1635
  source: string;
1635
1636
  target: string;
1636
1637
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1637
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1638
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1638
1639
  }, {
1639
1640
  kind: "add-edge";
1640
1641
  source: string;
1641
1642
  target: string;
1642
1643
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1643
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1644
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1644
1645
  }>]>;
1645
1646
  type HypotheticalAction = z.infer<typeof HypotheticalActionSchema>;
1646
1647
  declare const PoliciesCheckBodySchema: z.ZodObject<{
@@ -1657,20 +1658,20 @@ declare const PoliciesCheckBodySchema: z.ZodObject<{
1657
1658
  kind: z.ZodLiteral<"add-edge">;
1658
1659
  source: z.ZodString;
1659
1660
  target: z.ZodString;
1660
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1661
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1661
1662
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1662
1663
  }, "strip", z.ZodTypeAny, {
1663
1664
  kind: "add-edge";
1664
1665
  source: string;
1665
1666
  target: string;
1666
1667
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1667
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1668
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1668
1669
  }, {
1669
1670
  kind: "add-edge";
1670
1671
  source: string;
1671
1672
  target: string;
1672
1673
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1673
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1674
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1674
1675
  }>]>>;
1675
1676
  }, "strip", z.ZodTypeAny, {
1676
1677
  hypotheticalAction?: {
@@ -1681,7 +1682,7 @@ declare const PoliciesCheckBodySchema: z.ZodObject<{
1681
1682
  source: string;
1682
1683
  target: string;
1683
1684
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1684
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1685
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1685
1686
  } | undefined;
1686
1687
  }, {
1687
1688
  hypotheticalAction?: {
@@ -1692,7 +1693,7 @@ declare const PoliciesCheckBodySchema: z.ZodObject<{
1692
1693
  source: string;
1693
1694
  target: string;
1694
1695
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1695
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1696
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1696
1697
  } | undefined;
1697
1698
  }>;
1698
1699
  type PoliciesCheckBody = z.infer<typeof PoliciesCheckBodySchema>;
@@ -1839,12 +1840,12 @@ type RegistryFile = z.infer<typeof RegistryFileSchema>;
1839
1840
  declare const EMPTY_REGISTRY: RegistryFile;
1840
1841
 
1841
1842
  declare const MissingObservedDivergenceSchema: z.ZodObject<{
1842
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1843
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1843
1844
  extracted: z.ZodObject<{
1844
1845
  id: z.ZodString;
1845
1846
  source: z.ZodString;
1846
1847
  target: z.ZodString;
1847
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1848
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1848
1849
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1849
1850
  confidence: z.ZodOptional<z.ZodNumber>;
1850
1851
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -1876,7 +1877,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
1876
1877
  lastObservedAgeMs?: number | undefined;
1877
1878
  }>>;
1878
1879
  }, "strip", z.ZodTypeAny, {
1879
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1880
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1880
1881
  id: string;
1881
1882
  source: string;
1882
1883
  target: string;
@@ -1895,7 +1896,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
1895
1896
  lastObservedAgeMs?: number | undefined;
1896
1897
  } | undefined;
1897
1898
  }, {
1898
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1899
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1899
1900
  id: string;
1900
1901
  source: string;
1901
1902
  target: string;
@@ -1926,9 +1927,9 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
1926
1927
  source: string;
1927
1928
  target: string;
1928
1929
  confidence: number;
1929
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1930
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1930
1931
  extracted: {
1931
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1932
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1932
1933
  id: string;
1933
1934
  source: string;
1934
1935
  target: string;
@@ -1954,9 +1955,9 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
1954
1955
  source: string;
1955
1956
  target: string;
1956
1957
  confidence: number;
1957
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1958
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1958
1959
  extracted: {
1959
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1960
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1960
1961
  id: string;
1961
1962
  source: string;
1962
1963
  target: string;
@@ -1979,12 +1980,12 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
1979
1980
  }>;
1980
1981
  type MissingObservedDivergence = z.infer<typeof MissingObservedDivergenceSchema>;
1981
1982
  declare const MissingExtractedDivergenceSchema: z.ZodObject<{
1982
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1983
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1983
1984
  observed: z.ZodObject<{
1984
1985
  id: z.ZodString;
1985
1986
  source: z.ZodString;
1986
1987
  target: z.ZodString;
1987
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1988
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1988
1989
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1989
1990
  confidence: z.ZodOptional<z.ZodNumber>;
1990
1991
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2016,7 +2017,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2016
2017
  lastObservedAgeMs?: number | undefined;
2017
2018
  }>>;
2018
2019
  }, "strip", z.ZodTypeAny, {
2019
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2020
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2020
2021
  id: string;
2021
2022
  source: string;
2022
2023
  target: string;
@@ -2035,7 +2036,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2035
2036
  lastObservedAgeMs?: number | undefined;
2036
2037
  } | undefined;
2037
2038
  }, {
2038
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2039
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2039
2040
  id: string;
2040
2041
  source: string;
2041
2042
  target: string;
@@ -2066,10 +2067,10 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2066
2067
  source: string;
2067
2068
  target: string;
2068
2069
  confidence: number;
2069
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2070
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2070
2071
  recommendation: string;
2071
2072
  observed: {
2072
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2073
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2073
2074
  id: string;
2074
2075
  source: string;
2075
2076
  target: string;
@@ -2094,10 +2095,10 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2094
2095
  source: string;
2095
2096
  target: string;
2096
2097
  confidence: number;
2097
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2098
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2098
2099
  recommendation: string;
2099
2100
  observed: {
2100
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2101
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2101
2102
  id: string;
2102
2103
  source: string;
2103
2104
  target: string;
@@ -2225,7 +2226,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2225
2226
  id: z.ZodString;
2226
2227
  source: z.ZodString;
2227
2228
  target: z.ZodString;
2228
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2229
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2229
2230
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2230
2231
  confidence: z.ZodOptional<z.ZodNumber>;
2231
2232
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2257,7 +2258,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2257
2258
  lastObservedAgeMs?: number | undefined;
2258
2259
  }>>;
2259
2260
  }, "strip", z.ZodTypeAny, {
2260
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2261
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2261
2262
  id: string;
2262
2263
  source: string;
2263
2264
  target: string;
@@ -2276,7 +2277,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2276
2277
  lastObservedAgeMs?: number | undefined;
2277
2278
  } | undefined;
2278
2279
  }, {
2279
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2280
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2280
2281
  id: string;
2281
2282
  source: string;
2282
2283
  target: string;
@@ -2316,7 +2317,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2316
2317
  };
2317
2318
  recommendation: string;
2318
2319
  observed: {
2319
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2320
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2320
2321
  id: string;
2321
2322
  source: string;
2322
2323
  target: string;
@@ -2350,7 +2351,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2350
2351
  };
2351
2352
  recommendation: string;
2352
2353
  observed: {
2353
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2354
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2354
2355
  id: string;
2355
2356
  source: string;
2356
2357
  target: string;
@@ -2372,12 +2373,12 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2372
2373
  }>;
2373
2374
  type CompatViolationDivergence = z.infer<typeof CompatViolationDivergenceSchema>;
2374
2375
  declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2375
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2376
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2376
2377
  extracted: z.ZodObject<{
2377
2378
  id: z.ZodString;
2378
2379
  source: z.ZodString;
2379
2380
  target: z.ZodString;
2380
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2381
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2381
2382
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2382
2383
  confidence: z.ZodOptional<z.ZodNumber>;
2383
2384
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2409,7 +2410,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2409
2410
  lastObservedAgeMs?: number | undefined;
2410
2411
  }>>;
2411
2412
  }, "strip", z.ZodTypeAny, {
2412
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2413
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2413
2414
  id: string;
2414
2415
  source: string;
2415
2416
  target: string;
@@ -2428,7 +2429,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2428
2429
  lastObservedAgeMs?: number | undefined;
2429
2430
  } | undefined;
2430
2431
  }, {
2431
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2432
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2432
2433
  id: string;
2433
2434
  source: string;
2434
2435
  target: string;
@@ -2459,9 +2460,9 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2459
2460
  source: string;
2460
2461
  target: string;
2461
2462
  confidence: number;
2462
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2463
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2463
2464
  extracted: {
2464
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2465
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2465
2466
  id: string;
2466
2467
  source: string;
2467
2468
  target: string;
@@ -2487,9 +2488,9 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2487
2488
  source: string;
2488
2489
  target: string;
2489
2490
  confidence: number;
2490
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2491
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2491
2492
  extracted: {
2492
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2493
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2493
2494
  id: string;
2494
2495
  source: string;
2495
2496
  target: string;
@@ -2510,12 +2511,12 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2510
2511
  };
2511
2512
  recommendation: string;
2512
2513
  }>, z.ZodObject<{
2513
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2514
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2514
2515
  observed: z.ZodObject<{
2515
2516
  id: z.ZodString;
2516
2517
  source: z.ZodString;
2517
2518
  target: z.ZodString;
2518
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2519
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2519
2520
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2520
2521
  confidence: z.ZodOptional<z.ZodNumber>;
2521
2522
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2547,7 +2548,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2547
2548
  lastObservedAgeMs?: number | undefined;
2548
2549
  }>>;
2549
2550
  }, "strip", z.ZodTypeAny, {
2550
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2551
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2551
2552
  id: string;
2552
2553
  source: string;
2553
2554
  target: string;
@@ -2566,7 +2567,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2566
2567
  lastObservedAgeMs?: number | undefined;
2567
2568
  } | undefined;
2568
2569
  }, {
2569
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2570
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2570
2571
  id: string;
2571
2572
  source: string;
2572
2573
  target: string;
@@ -2597,10 +2598,10 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2597
2598
  source: string;
2598
2599
  target: string;
2599
2600
  confidence: number;
2600
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2601
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2601
2602
  recommendation: string;
2602
2603
  observed: {
2603
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2604
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2604
2605
  id: string;
2605
2606
  source: string;
2606
2607
  target: string;
@@ -2625,10 +2626,10 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2625
2626
  source: string;
2626
2627
  target: string;
2627
2628
  confidence: number;
2628
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2629
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2629
2630
  recommendation: string;
2630
2631
  observed: {
2631
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2632
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2632
2633
  id: string;
2633
2634
  source: string;
2634
2635
  target: string;
@@ -2728,7 +2729,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2728
2729
  id: z.ZodString;
2729
2730
  source: z.ZodString;
2730
2731
  target: z.ZodString;
2731
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2732
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2732
2733
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2733
2734
  confidence: z.ZodOptional<z.ZodNumber>;
2734
2735
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2760,7 +2761,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2760
2761
  lastObservedAgeMs?: number | undefined;
2761
2762
  }>>;
2762
2763
  }, "strip", z.ZodTypeAny, {
2763
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2764
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2764
2765
  id: string;
2765
2766
  source: string;
2766
2767
  target: string;
@@ -2779,7 +2780,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2779
2780
  lastObservedAgeMs?: number | undefined;
2780
2781
  } | undefined;
2781
2782
  }, {
2782
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2783
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2783
2784
  id: string;
2784
2785
  source: string;
2785
2786
  target: string;
@@ -2819,7 +2820,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2819
2820
  };
2820
2821
  recommendation: string;
2821
2822
  observed: {
2822
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2823
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2823
2824
  id: string;
2824
2825
  source: string;
2825
2826
  target: string;
@@ -2853,7 +2854,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2853
2854
  };
2854
2855
  recommendation: string;
2855
2856
  observed: {
2856
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2857
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2857
2858
  id: string;
2858
2859
  source: string;
2859
2860
  target: string;
@@ -2876,12 +2877,12 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2876
2877
  type Divergence = z.infer<typeof DivergenceSchema>;
2877
2878
  declare const DivergenceResultSchema: z.ZodObject<{
2878
2879
  divergences: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2879
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2880
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2880
2881
  extracted: z.ZodObject<{
2881
2882
  id: z.ZodString;
2882
2883
  source: z.ZodString;
2883
2884
  target: z.ZodString;
2884
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2885
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
2885
2886
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2886
2887
  confidence: z.ZodOptional<z.ZodNumber>;
2887
2888
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2913,7 +2914,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
2913
2914
  lastObservedAgeMs?: number | undefined;
2914
2915
  }>>;
2915
2916
  }, "strip", z.ZodTypeAny, {
2916
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2917
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2917
2918
  id: string;
2918
2919
  source: string;
2919
2920
  target: string;
@@ -2932,7 +2933,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
2932
2933
  lastObservedAgeMs?: number | undefined;
2933
2934
  } | undefined;
2934
2935
  }, {
2935
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2936
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2936
2937
  id: string;
2937
2938
  source: string;
2938
2939
  target: string;
@@ -2963,9 +2964,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
2963
2964
  source: string;
2964
2965
  target: string;
2965
2966
  confidence: number;
2966
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2967
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2967
2968
  extracted: {
2968
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2969
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2969
2970
  id: string;
2970
2971
  source: string;
2971
2972
  target: string;
@@ -2991,9 +2992,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
2991
2992
  source: string;
2992
2993
  target: string;
2993
2994
  confidence: number;
2994
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2995
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2995
2996
  extracted: {
2996
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2997
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
2997
2998
  id: string;
2998
2999
  source: string;
2999
3000
  target: string;
@@ -3014,12 +3015,12 @@ declare const DivergenceResultSchema: z.ZodObject<{
3014
3015
  };
3015
3016
  recommendation: string;
3016
3017
  }>, z.ZodObject<{
3017
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
3018
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
3018
3019
  observed: z.ZodObject<{
3019
3020
  id: z.ZodString;
3020
3021
  source: z.ZodString;
3021
3022
  target: z.ZodString;
3022
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
3023
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
3023
3024
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
3024
3025
  confidence: z.ZodOptional<z.ZodNumber>;
3025
3026
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -3051,7 +3052,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3051
3052
  lastObservedAgeMs?: number | undefined;
3052
3053
  }>>;
3053
3054
  }, "strip", z.ZodTypeAny, {
3054
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3055
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3055
3056
  id: string;
3056
3057
  source: string;
3057
3058
  target: string;
@@ -3070,7 +3071,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3070
3071
  lastObservedAgeMs?: number | undefined;
3071
3072
  } | undefined;
3072
3073
  }, {
3073
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3074
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3074
3075
  id: string;
3075
3076
  source: string;
3076
3077
  target: string;
@@ -3101,10 +3102,10 @@ declare const DivergenceResultSchema: z.ZodObject<{
3101
3102
  source: string;
3102
3103
  target: string;
3103
3104
  confidence: number;
3104
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3105
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3105
3106
  recommendation: string;
3106
3107
  observed: {
3107
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3108
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3108
3109
  id: string;
3109
3110
  source: string;
3110
3111
  target: string;
@@ -3129,10 +3130,10 @@ declare const DivergenceResultSchema: z.ZodObject<{
3129
3130
  source: string;
3130
3131
  target: string;
3131
3132
  confidence: number;
3132
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3133
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3133
3134
  recommendation: string;
3134
3135
  observed: {
3135
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3136
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3136
3137
  id: string;
3137
3138
  source: string;
3138
3139
  target: string;
@@ -3232,7 +3233,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3232
3233
  id: z.ZodString;
3233
3234
  source: z.ZodString;
3234
3235
  target: z.ZodString;
3235
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
3236
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
3236
3237
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
3237
3238
  confidence: z.ZodOptional<z.ZodNumber>;
3238
3239
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -3264,7 +3265,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3264
3265
  lastObservedAgeMs?: number | undefined;
3265
3266
  }>>;
3266
3267
  }, "strip", z.ZodTypeAny, {
3267
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3268
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3268
3269
  id: string;
3269
3270
  source: string;
3270
3271
  target: string;
@@ -3283,7 +3284,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3283
3284
  lastObservedAgeMs?: number | undefined;
3284
3285
  } | undefined;
3285
3286
  }, {
3286
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3287
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3287
3288
  id: string;
3288
3289
  source: string;
3289
3290
  target: string;
@@ -3323,7 +3324,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3323
3324
  };
3324
3325
  recommendation: string;
3325
3326
  observed: {
3326
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3327
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3327
3328
  id: string;
3328
3329
  source: string;
3329
3330
  target: string;
@@ -3357,7 +3358,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3357
3358
  };
3358
3359
  recommendation: string;
3359
3360
  observed: {
3360
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3361
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3361
3362
  id: string;
3362
3363
  source: string;
3363
3364
  target: string;
@@ -3387,9 +3388,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
3387
3388
  source: string;
3388
3389
  target: string;
3389
3390
  confidence: number;
3390
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3391
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3391
3392
  extracted: {
3392
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3393
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3393
3394
  id: string;
3394
3395
  source: string;
3395
3396
  target: string;
@@ -3415,10 +3416,10 @@ declare const DivergenceResultSchema: z.ZodObject<{
3415
3416
  source: string;
3416
3417
  target: string;
3417
3418
  confidence: number;
3418
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3419
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3419
3420
  recommendation: string;
3420
3421
  observed: {
3421
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3422
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3422
3423
  id: string;
3423
3424
  source: string;
3424
3425
  target: string;
@@ -3471,7 +3472,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3471
3472
  };
3472
3473
  recommendation: string;
3473
3474
  observed: {
3474
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3475
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3475
3476
  id: string;
3476
3477
  source: string;
3477
3478
  target: string;
@@ -3500,9 +3501,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
3500
3501
  source: string;
3501
3502
  target: string;
3502
3503
  confidence: number;
3503
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3504
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3504
3505
  extracted: {
3505
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3506
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3506
3507
  id: string;
3507
3508
  source: string;
3508
3509
  target: string;
@@ -3528,10 +3529,10 @@ declare const DivergenceResultSchema: z.ZodObject<{
3528
3529
  source: string;
3529
3530
  target: string;
3530
3531
  confidence: number;
3531
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3532
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3532
3533
  recommendation: string;
3533
3534
  observed: {
3534
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3535
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3535
3536
  id: string;
3536
3537
  source: string;
3537
3538
  target: string;
@@ -3584,7 +3585,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3584
3585
  };
3585
3586
  recommendation: string;
3586
3587
  observed: {
3587
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3588
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
3588
3589
  id: string;
3589
3590
  source: string;
3590
3591
  target: string;
@@ -3610,6 +3611,9 @@ type DivergenceResult = z.infer<typeof DivergenceResultSchema>;
3610
3611
  declare const DivergenceTypeSchema: z.ZodEnum<["missing-observed", "missing-extracted", "version-mismatch", "host-mismatch", "compat-violation"]>;
3611
3612
  type DivergenceType = z.infer<typeof DivergenceTypeSchema>;
3612
3613
 
3614
+ declare const MCP_TOOL_NAMES: readonly ["get_root_cause", "get_blast_radius", "get_dependencies", "get_observed_dependencies", "get_incident_history", "semantic_search", "get_graph_diff", "get_recent_stale_edges", "check_policies", "get_divergences", "neat_list_uninstrumented", "neat_lookup_instrumentation", "neat_describe_project_instrumentation", "neat_apply_extension", "neat_dry_run_extension", "neat_rollback_extension"];
3615
+ type MCPToolName = (typeof MCP_TOOL_NAMES)[number];
3616
+
3613
3617
  declare const IncidentsResponseSchema: z.ZodObject<{
3614
3618
  count: z.ZodNumber;
3615
3619
  total: z.ZodNumber;
@@ -4350,7 +4354,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4350
4354
  id: z.ZodString;
4351
4355
  source: z.ZodString;
4352
4356
  target: z.ZodString;
4353
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
4357
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
4354
4358
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
4355
4359
  confidence: z.ZodOptional<z.ZodNumber>;
4356
4360
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -4382,7 +4386,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4382
4386
  lastObservedAgeMs?: number | undefined;
4383
4387
  }>>;
4384
4388
  }, "strip", z.ZodTypeAny, {
4385
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4389
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4386
4390
  id: string;
4387
4391
  source: string;
4388
4392
  target: string;
@@ -4401,7 +4405,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4401
4405
  lastObservedAgeMs?: number | undefined;
4402
4406
  } | undefined;
4403
4407
  }, {
4404
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4408
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4405
4409
  id: string;
4406
4410
  source: string;
4407
4411
  target: string;
@@ -4424,7 +4428,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4424
4428
  id: z.ZodString;
4425
4429
  source: z.ZodString;
4426
4430
  target: z.ZodString;
4427
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
4431
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
4428
4432
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
4429
4433
  confidence: z.ZodOptional<z.ZodNumber>;
4430
4434
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -4456,7 +4460,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4456
4460
  lastObservedAgeMs?: number | undefined;
4457
4461
  }>>;
4458
4462
  }, "strip", z.ZodTypeAny, {
4459
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4463
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4460
4464
  id: string;
4461
4465
  source: string;
4462
4466
  target: string;
@@ -4475,7 +4479,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4475
4479
  lastObservedAgeMs?: number | undefined;
4476
4480
  } | undefined;
4477
4481
  }, {
4478
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4482
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4479
4483
  id: string;
4480
4484
  source: string;
4481
4485
  target: string;
@@ -4496,7 +4500,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4496
4500
  }>, "many">;
4497
4501
  }, "strip", z.ZodTypeAny, {
4498
4502
  inbound: {
4499
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4503
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4500
4504
  id: string;
4501
4505
  source: string;
4502
4506
  target: string;
@@ -4516,7 +4520,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4516
4520
  } | undefined;
4517
4521
  }[];
4518
4522
  outbound: {
4519
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4523
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4520
4524
  id: string;
4521
4525
  source: string;
4522
4526
  target: string;
@@ -4537,7 +4541,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4537
4541
  }[];
4538
4542
  }, {
4539
4543
  inbound: {
4540
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4544
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4541
4545
  id: string;
4542
4546
  source: string;
4543
4547
  target: string;
@@ -4557,7 +4561,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4557
4561
  } | undefined;
4558
4562
  }[];
4559
4563
  outbound: {
4560
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4564
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
4561
4565
  id: string;
4562
4566
  source: string;
4563
4567
  target: string;
@@ -5051,7 +5055,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
5051
5055
  id: z.ZodString;
5052
5056
  source: z.ZodString;
5053
5057
  target: z.ZodString;
5054
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
5058
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
5055
5059
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
5056
5060
  confidence: z.ZodOptional<z.ZodNumber>;
5057
5061
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -5083,7 +5087,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
5083
5087
  lastObservedAgeMs?: number | undefined;
5084
5088
  }>>;
5085
5089
  }, "strip", z.ZodTypeAny, {
5086
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5090
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5087
5091
  id: string;
5088
5092
  source: string;
5089
5093
  target: string;
@@ -5102,7 +5106,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
5102
5106
  lastObservedAgeMs?: number | undefined;
5103
5107
  } | undefined;
5104
5108
  }, {
5105
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5109
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5106
5110
  id: string;
5107
5111
  source: string;
5108
5112
  target: string;
@@ -5210,7 +5214,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
5210
5214
  originalPath?: string | undefined;
5211
5215
  })[];
5212
5216
  edges: {
5213
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5217
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5214
5218
  id: string;
5215
5219
  source: string;
5216
5220
  target: string;
@@ -5318,7 +5322,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
5318
5322
  originalPath?: string | undefined;
5319
5323
  })[];
5320
5324
  edges: {
5321
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5325
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5322
5326
  id: string;
5323
5327
  source: string;
5324
5328
  target: string;
@@ -5688,7 +5692,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5688
5692
  id: z.ZodString;
5689
5693
  source: z.ZodString;
5690
5694
  target: z.ZodString;
5691
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
5695
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
5692
5696
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
5693
5697
  confidence: z.ZodOptional<z.ZodNumber>;
5694
5698
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -5720,7 +5724,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5720
5724
  lastObservedAgeMs?: number | undefined;
5721
5725
  }>>;
5722
5726
  }, "strip", z.ZodTypeAny, {
5723
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5727
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5724
5728
  id: string;
5725
5729
  source: string;
5726
5730
  target: string;
@@ -5739,7 +5743,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5739
5743
  lastObservedAgeMs?: number | undefined;
5740
5744
  } | undefined;
5741
5745
  }, {
5742
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5746
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5743
5747
  id: string;
5744
5748
  source: string;
5745
5749
  target: string;
@@ -5847,7 +5851,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5847
5851
  originalPath?: string | undefined;
5848
5852
  })[];
5849
5853
  edges: {
5850
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5854
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5851
5855
  id: string;
5852
5856
  source: string;
5853
5857
  target: string;
@@ -5955,7 +5959,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5955
5959
  originalPath?: string | undefined;
5956
5960
  })[];
5957
5961
  edges: {
5958
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5962
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5959
5963
  id: string;
5960
5964
  source: string;
5961
5965
  target: string;
@@ -6309,7 +6313,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6309
6313
  id: z.ZodString;
6310
6314
  source: z.ZodString;
6311
6315
  target: z.ZodString;
6312
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
6316
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
6313
6317
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
6314
6318
  confidence: z.ZodOptional<z.ZodNumber>;
6315
6319
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -6341,7 +6345,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6341
6345
  lastObservedAgeMs?: number | undefined;
6342
6346
  }>>;
6343
6347
  }, "strip", z.ZodTypeAny, {
6344
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
6348
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
6345
6349
  id: string;
6346
6350
  source: string;
6347
6351
  target: string;
@@ -6360,7 +6364,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6360
6364
  lastObservedAgeMs?: number | undefined;
6361
6365
  } | undefined;
6362
6366
  }, {
6363
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
6367
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
6364
6368
  id: string;
6365
6369
  source: string;
6366
6370
  target: string;
@@ -6468,7 +6472,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6468
6472
  originalPath?: string | undefined;
6469
6473
  })[];
6470
6474
  edges: {
6471
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
6475
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
6472
6476
  id: string;
6473
6477
  source: string;
6474
6478
  target: string;
@@ -6576,7 +6580,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6576
6580
  originalPath?: string | undefined;
6577
6581
  })[];
6578
6582
  edges: {
6579
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
6583
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
6580
6584
  id: string;
6581
6585
  source: string;
6582
6586
  target: string;
@@ -7616,7 +7620,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7616
7620
  id: z.ZodString;
7617
7621
  source: z.ZodString;
7618
7622
  target: z.ZodString;
7619
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
7623
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
7620
7624
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
7621
7625
  confidence: z.ZodOptional<z.ZodNumber>;
7622
7626
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -7648,7 +7652,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7648
7652
  lastObservedAgeMs?: number | undefined;
7649
7653
  }>>;
7650
7654
  }, "strip", z.ZodTypeAny, {
7651
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7655
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7652
7656
  id: string;
7653
7657
  source: string;
7654
7658
  target: string;
@@ -7667,7 +7671,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7667
7671
  lastObservedAgeMs?: number | undefined;
7668
7672
  } | undefined;
7669
7673
  }, {
7670
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7674
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7671
7675
  id: string;
7672
7676
  source: string;
7673
7677
  target: string;
@@ -7690,7 +7694,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7690
7694
  id: z.ZodString;
7691
7695
  source: z.ZodString;
7692
7696
  target: z.ZodString;
7693
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
7697
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
7694
7698
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
7695
7699
  confidence: z.ZodOptional<z.ZodNumber>;
7696
7700
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -7722,7 +7726,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7722
7726
  lastObservedAgeMs?: number | undefined;
7723
7727
  }>>;
7724
7728
  }, "strip", z.ZodTypeAny, {
7725
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7729
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7726
7730
  id: string;
7727
7731
  source: string;
7728
7732
  target: string;
@@ -7741,7 +7745,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7741
7745
  lastObservedAgeMs?: number | undefined;
7742
7746
  } | undefined;
7743
7747
  }, {
7744
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7748
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7745
7749
  id: string;
7746
7750
  source: string;
7747
7751
  target: string;
@@ -7763,7 +7767,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7763
7767
  }, "strip", z.ZodTypeAny, {
7764
7768
  id: string;
7765
7769
  before: {
7766
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7770
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7767
7771
  id: string;
7768
7772
  source: string;
7769
7773
  target: string;
@@ -7783,7 +7787,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7783
7787
  } | undefined;
7784
7788
  };
7785
7789
  after: {
7786
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7790
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7787
7791
  id: string;
7788
7792
  source: string;
7789
7793
  target: string;
@@ -7805,7 +7809,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7805
7809
  }, {
7806
7810
  id: string;
7807
7811
  before: {
7808
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7812
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7809
7813
  id: string;
7810
7814
  source: string;
7811
7815
  target: string;
@@ -7825,7 +7829,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7825
7829
  } | undefined;
7826
7830
  };
7827
7831
  after: {
7828
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7832
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
7829
7833
  id: string;
7830
7834
  source: string;
7831
7835
  target: string;
@@ -8026,7 +8030,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8026
8030
  edges: {
8027
8031
  id: string;
8028
8032
  before: {
8029
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8033
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8030
8034
  id: string;
8031
8035
  source: string;
8032
8036
  target: string;
@@ -8046,7 +8050,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8046
8050
  } | undefined;
8047
8051
  };
8048
8052
  after: {
8049
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8053
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8050
8054
  id: string;
8051
8055
  source: string;
8052
8056
  target: string;
@@ -8247,7 +8251,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8247
8251
  edges: {
8248
8252
  id: string;
8249
8253
  before: {
8250
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8254
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8251
8255
  id: string;
8252
8256
  source: string;
8253
8257
  target: string;
@@ -8267,7 +8271,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8267
8271
  } | undefined;
8268
8272
  };
8269
8273
  after: {
8270
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8274
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8271
8275
  id: string;
8272
8276
  source: string;
8273
8277
  target: string;
@@ -8384,7 +8388,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8384
8388
  originalPath?: string | undefined;
8385
8389
  })[];
8386
8390
  edges: {
8387
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8391
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8388
8392
  id: string;
8389
8393
  source: string;
8390
8394
  target: string;
@@ -8493,7 +8497,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8493
8497
  originalPath?: string | undefined;
8494
8498
  })[];
8495
8499
  edges: {
8496
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8500
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8497
8501
  id: string;
8498
8502
  source: string;
8499
8503
  target: string;
@@ -8694,7 +8698,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8694
8698
  edges: {
8695
8699
  id: string;
8696
8700
  before: {
8697
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8701
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8698
8702
  id: string;
8699
8703
  source: string;
8700
8704
  target: string;
@@ -8714,7 +8718,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8714
8718
  } | undefined;
8715
8719
  };
8716
8720
  after: {
8717
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8721
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8718
8722
  id: string;
8719
8723
  source: string;
8720
8724
  target: string;
@@ -8831,7 +8835,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8831
8835
  originalPath?: string | undefined;
8832
8836
  })[];
8833
8837
  edges: {
8834
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8838
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8835
8839
  id: string;
8836
8840
  source: string;
8837
8841
  target: string;
@@ -8940,7 +8944,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8940
8944
  originalPath?: string | undefined;
8941
8945
  })[];
8942
8946
  edges: {
8943
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8947
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
8944
8948
  id: string;
8945
8949
  source: string;
8946
8950
  target: string;
@@ -9141,7 +9145,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9141
9145
  edges: {
9142
9146
  id: string;
9143
9147
  before: {
9144
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
9148
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
9145
9149
  id: string;
9146
9150
  source: string;
9147
9151
  target: string;
@@ -9161,7 +9165,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9161
9165
  } | undefined;
9162
9166
  };
9163
9167
  after: {
9164
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
9168
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
9165
9169
  id: string;
9166
9170
  source: string;
9167
9171
  target: string;
@@ -9193,4 +9197,4 @@ declare const DEFAULT_EXTRACTED_PRECISION_FLOOR = 0.7;
9193
9197
  declare function extractedPrecisionFloor(): number;
9194
9198
  declare function passesExtractedFloor(confidence: number): boolean;
9195
9199
 
9196
- export { 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, 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 HealthResponse, HealthResponseSchema, type HostMismatchDivergence, HostMismatchDivergenceSchema, type HypotheticalAction, HypotheticalActionSchema, type IncidentsResponse, IncidentsResponseSchema, type InfraNode, InfraNodeSchema, type MissingExtractedDivergence, MissingExtractedDivergenceSchema, type MissingObservedDivergence, MissingObservedDivergenceSchema, NodeType, NodeTypeSchema, type NodeTypeValue, 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 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, confidenceForExtracted, confidenceForObservedSignal, configId, databaseId, extractedEdgeId, extractedPrecisionFloor, fileId, frontierId, inferredEdgeId, infraId, observedEdgeId, parseConfigId, parseDatabaseId, parseEdgeId, parseFileId, parseFrontierId, parseInfraId, parseServiceId, passesExtractedFloor, serviceId };
9200
+ export { 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, 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 HealthResponse, HealthResponseSchema, type HostMismatchDivergence, HostMismatchDivergenceSchema, type HypotheticalAction, HypotheticalActionSchema, type IncidentsResponse, IncidentsResponseSchema, type InfraNode, InfraNodeSchema, type MCPToolName, MCP_TOOL_NAMES, type MissingExtractedDivergence, MissingExtractedDivergenceSchema, type MissingObservedDivergence, MissingObservedDivergenceSchema, NodeType, NodeTypeSchema, type NodeTypeValue, 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 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, confidenceForExtracted, confidenceForObservedSignal, configId, databaseId, extractedEdgeId, extractedPrecisionFloor, fileId, frontierId, inferredEdgeId, infraId, observedEdgeId, parseConfigId, parseDatabaseId, parseEdgeId, parseFileId, parseFrontierId, parseInfraId, parseServiceId, passesExtractedFloor, serviceId };