@neat.is/types 0.4.6 → 0.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -15,6 +15,7 @@ declare const EdgeType: {
15
15
  readonly PUBLISHES_TO: "PUBLISHES_TO";
16
16
  readonly CONSUMES_FROM: "CONSUMES_FROM";
17
17
  readonly RUNS_ON: "RUNS_ON";
18
+ readonly CONTAINS: "CONTAINS";
18
19
  };
19
20
  type EdgeTypeValue = (typeof EdgeType)[keyof typeof EdgeType];
20
21
  declare const NodeType: {
@@ -23,10 +24,11 @@ declare const NodeType: {
23
24
  readonly ConfigNode: "ConfigNode";
24
25
  readonly InfraNode: "InfraNode";
25
26
  readonly FrontierNode: "FrontierNode";
27
+ readonly FileNode: "FileNode";
26
28
  };
27
29
  type NodeTypeValue = (typeof NodeType)[keyof typeof NodeType];
28
30
 
29
- declare const NodeTypeSchema: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
31
+ declare const NodeTypeSchema: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
30
32
 
31
33
  declare const CompatibleDriverSchema: z.ZodObject<{
32
34
  name: z.ZodString;
@@ -355,6 +357,29 @@ declare const FrontierNodeSchema: z.ZodObject<{
355
357
  lastObserved?: string | undefined;
356
358
  }>;
357
359
  type FrontierNode = z.infer<typeof FrontierNodeSchema>;
360
+ declare const FileNodeSchema: z.ZodObject<{
361
+ id: z.ZodString;
362
+ type: z.ZodLiteral<"FileNode">;
363
+ service: z.ZodString;
364
+ path: z.ZodString;
365
+ language: z.ZodOptional<z.ZodString>;
366
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
367
+ }, "strip", z.ZodTypeAny, {
368
+ path: string;
369
+ type: "FileNode";
370
+ id: string;
371
+ service: string;
372
+ language?: string | undefined;
373
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
374
+ }, {
375
+ path: string;
376
+ type: "FileNode";
377
+ id: string;
378
+ service: string;
379
+ language?: string | undefined;
380
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
381
+ }>;
382
+ type FileNode = z.infer<typeof FileNodeSchema>;
358
383
  declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
359
384
  id: z.ZodString;
360
385
  type: z.ZodLiteral<"ServiceNode">;
@@ -659,11 +684,32 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
659
684
  host: string;
660
685
  firstObserved?: string | undefined;
661
686
  lastObserved?: string | undefined;
687
+ }>, z.ZodObject<{
688
+ id: z.ZodString;
689
+ type: z.ZodLiteral<"FileNode">;
690
+ service: z.ZodString;
691
+ path: z.ZodString;
692
+ language: z.ZodOptional<z.ZodString>;
693
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
694
+ }, "strip", z.ZodTypeAny, {
695
+ path: string;
696
+ type: "FileNode";
697
+ id: string;
698
+ service: string;
699
+ language?: string | undefined;
700
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
701
+ }, {
702
+ path: string;
703
+ type: "FileNode";
704
+ id: string;
705
+ service: string;
706
+ language?: string | undefined;
707
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
662
708
  }>]>;
663
709
  type GraphNode = z.infer<typeof GraphNodeSchema>;
664
710
 
665
711
  declare const ProvenanceSchema: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
666
- declare const EdgeTypeSchema: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
712
+ declare const EdgeTypeSchema: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
667
713
  declare const EdgeEvidenceSchema: z.ZodObject<{
668
714
  file: z.ZodString;
669
715
  line: z.ZodOptional<z.ZodNumber>;
@@ -696,7 +742,7 @@ declare const GraphEdgeSchema: z.ZodObject<{
696
742
  id: z.ZodString;
697
743
  source: z.ZodString;
698
744
  target: z.ZodString;
699
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
745
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
700
746
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
701
747
  confidence: z.ZodOptional<z.ZodNumber>;
702
748
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -728,7 +774,7 @@ declare const GraphEdgeSchema: z.ZodObject<{
728
774
  lastObservedAgeMs?: number | undefined;
729
775
  }>>;
730
776
  }, "strip", z.ZodTypeAny, {
731
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
777
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
732
778
  id: string;
733
779
  source: string;
734
780
  target: string;
@@ -747,7 +793,7 @@ declare const GraphEdgeSchema: z.ZodObject<{
747
793
  lastObservedAgeMs?: number | undefined;
748
794
  } | undefined;
749
795
  }, {
750
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
796
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
751
797
  id: string;
752
798
  source: string;
753
799
  target: string;
@@ -784,8 +830,8 @@ declare const ErrorEventSchema: z.ZodObject<{
784
830
  affectedNode: z.ZodString;
785
831
  }, "strip", z.ZodTypeAny, {
786
832
  id: string;
787
- timestamp: string;
788
833
  service: string;
834
+ timestamp: string;
789
835
  traceId: string;
790
836
  spanId: string;
791
837
  errorMessage: string;
@@ -796,8 +842,8 @@ declare const ErrorEventSchema: z.ZodObject<{
796
842
  attributes?: Record<string, string | number | boolean | string[] | number[] | boolean[] | null> | undefined;
797
843
  }, {
798
844
  id: string;
799
- timestamp: string;
800
845
  service: string;
846
+ timestamp: string;
801
847
  traceId: string;
802
848
  spanId: string;
803
849
  errorMessage: string;
@@ -928,16 +974,16 @@ type BlastRadiusResult = z.infer<typeof BlastRadiusResultSchema>;
928
974
  declare const TransitiveDependencySchema: z.ZodObject<{
929
975
  nodeId: z.ZodString;
930
976
  distance: z.ZodNumber;
931
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
977
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
932
978
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
933
979
  }, "strip", z.ZodTypeAny, {
934
980
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
935
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
981
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
936
982
  nodeId: string;
937
983
  distance: number;
938
984
  }, {
939
985
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
940
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
986
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
941
987
  nodeId: string;
942
988
  distance: number;
943
989
  }>;
@@ -948,16 +994,16 @@ declare const TransitiveDependenciesResultSchema: z.ZodObject<{
948
994
  dependencies: z.ZodArray<z.ZodObject<{
949
995
  nodeId: z.ZodString;
950
996
  distance: z.ZodNumber;
951
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
997
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
952
998
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
953
999
  }, "strip", z.ZodTypeAny, {
954
1000
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
955
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1001
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
956
1002
  nodeId: string;
957
1003
  distance: number;
958
1004
  }, {
959
1005
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
960
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1006
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
961
1007
  nodeId: string;
962
1008
  distance: number;
963
1009
  }>, "many">;
@@ -965,7 +1011,7 @@ declare const TransitiveDependenciesResultSchema: z.ZodObject<{
965
1011
  }, "strip", z.ZodTypeAny, {
966
1012
  dependencies: {
967
1013
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
968
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1014
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
969
1015
  nodeId: string;
970
1016
  distance: number;
971
1017
  }[];
@@ -975,7 +1021,7 @@ declare const TransitiveDependenciesResultSchema: z.ZodObject<{
975
1021
  }, {
976
1022
  dependencies: {
977
1023
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
978
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1024
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
979
1025
  nodeId: string;
980
1026
  distance: number;
981
1027
  }[];
@@ -1001,6 +1047,11 @@ declare function parseInfraId(id: string): {
1001
1047
  } | null;
1002
1048
  declare function frontierId(host: string): string;
1003
1049
  declare function parseFrontierId(id: string): string | null;
1050
+ declare function fileId(service: string, relPath: string): string;
1051
+ declare function parseFileId(id: string): {
1052
+ service: string;
1053
+ relPath: string;
1054
+ } | null;
1004
1055
  declare function extractedEdgeId(source: string, target: string, type: string): string;
1005
1056
  declare function observedEdgeId(source: string, target: string, type: string): string;
1006
1057
  declare function inferredEdgeId(source: string, target: string, type: string): string;
@@ -1018,19 +1069,19 @@ declare const PolicyActionSchema: z.ZodEnum<["log", "alert", "block"]>;
1018
1069
  type PolicyAction = z.infer<typeof PolicyActionSchema>;
1019
1070
  declare const StructuralRuleSchema: z.ZodObject<{
1020
1071
  type: z.ZodLiteral<"structural">;
1021
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1022
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1023
- toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1072
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1073
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1074
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1024
1075
  }, "strip", z.ZodTypeAny, {
1025
1076
  type: "structural";
1026
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1027
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1028
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1077
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1078
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1079
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1029
1080
  }, {
1030
1081
  type: "structural";
1031
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1032
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1033
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1082
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1083
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1084
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1034
1085
  }>;
1035
1086
  type StructuralRule = z.infer<typeof StructuralRuleSchema>;
1036
1087
  declare const CompatibilityRuleSchema: z.ZodObject<{
@@ -1046,67 +1097,67 @@ declare const CompatibilityRuleSchema: z.ZodObject<{
1046
1097
  type CompatibilityRule = z.infer<typeof CompatibilityRuleSchema>;
1047
1098
  declare const ProvenanceRuleSchema: z.ZodObject<{
1048
1099
  type: z.ZodLiteral<"provenance">;
1049
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1100
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1050
1101
  targetNodeId: z.ZodOptional<z.ZodString>;
1051
1102
  required: z.ZodUnion<[z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">]>;
1052
1103
  }, "strip", z.ZodTypeAny, {
1053
1104
  type: "provenance";
1054
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1105
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1055
1106
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1056
1107
  targetNodeId?: string | undefined;
1057
1108
  }, {
1058
1109
  type: "provenance";
1059
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1110
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1060
1111
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1061
1112
  targetNodeId?: string | undefined;
1062
1113
  }>;
1063
1114
  type ProvenanceRule = z.infer<typeof ProvenanceRuleSchema>;
1064
1115
  declare const OwnershipRuleSchema: z.ZodObject<{
1065
1116
  type: z.ZodLiteral<"ownership">;
1066
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1117
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1067
1118
  field: z.ZodDefault<z.ZodString>;
1068
1119
  }, "strip", z.ZodTypeAny, {
1069
1120
  type: "ownership";
1070
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1121
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1071
1122
  field: string;
1072
1123
  }, {
1073
1124
  type: "ownership";
1074
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1125
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1075
1126
  field?: string | undefined;
1076
1127
  }>;
1077
1128
  type OwnershipRule = z.infer<typeof OwnershipRuleSchema>;
1078
1129
  declare const BlastRadiusRuleSchema: z.ZodObject<{
1079
1130
  type: z.ZodLiteral<"blast-radius">;
1080
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1131
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1081
1132
  maxAffected: z.ZodNumber;
1082
1133
  depth: z.ZodOptional<z.ZodNumber>;
1083
1134
  }, "strip", z.ZodTypeAny, {
1084
1135
  type: "blast-radius";
1085
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1136
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1086
1137
  maxAffected: number;
1087
1138
  depth?: number | undefined;
1088
1139
  }, {
1089
1140
  type: "blast-radius";
1090
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1141
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1091
1142
  maxAffected: number;
1092
1143
  depth?: number | undefined;
1093
1144
  }>;
1094
1145
  type BlastRadiusRule = z.infer<typeof BlastRadiusRuleSchema>;
1095
1146
  declare const PolicyRuleSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1096
1147
  type: z.ZodLiteral<"structural">;
1097
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1098
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1099
- toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1148
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1149
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1150
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1100
1151
  }, "strip", z.ZodTypeAny, {
1101
1152
  type: "structural";
1102
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1103
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1104
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1153
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1154
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1155
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1105
1156
  }, {
1106
1157
  type: "structural";
1107
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1108
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1109
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1158
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1159
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1160
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1110
1161
  }>, z.ZodObject<{
1111
1162
  type: z.ZodLiteral<"compatibility">;
1112
1163
  kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
@@ -1118,44 +1169,44 @@ declare const PolicyRuleSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1118
1169
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1119
1170
  }>, z.ZodObject<{
1120
1171
  type: z.ZodLiteral<"provenance">;
1121
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1172
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1122
1173
  targetNodeId: z.ZodOptional<z.ZodString>;
1123
1174
  required: z.ZodUnion<[z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">]>;
1124
1175
  }, "strip", z.ZodTypeAny, {
1125
1176
  type: "provenance";
1126
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1177
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1127
1178
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1128
1179
  targetNodeId?: string | undefined;
1129
1180
  }, {
1130
1181
  type: "provenance";
1131
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1182
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1132
1183
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1133
1184
  targetNodeId?: string | undefined;
1134
1185
  }>, z.ZodObject<{
1135
1186
  type: z.ZodLiteral<"ownership">;
1136
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1187
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1137
1188
  field: z.ZodDefault<z.ZodString>;
1138
1189
  }, "strip", z.ZodTypeAny, {
1139
1190
  type: "ownership";
1140
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1191
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1141
1192
  field: string;
1142
1193
  }, {
1143
1194
  type: "ownership";
1144
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1195
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1145
1196
  field?: string | undefined;
1146
1197
  }>, z.ZodObject<{
1147
1198
  type: z.ZodLiteral<"blast-radius">;
1148
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1199
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1149
1200
  maxAffected: z.ZodNumber;
1150
1201
  depth: z.ZodOptional<z.ZodNumber>;
1151
1202
  }, "strip", z.ZodTypeAny, {
1152
1203
  type: "blast-radius";
1153
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1204
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1154
1205
  maxAffected: number;
1155
1206
  depth?: number | undefined;
1156
1207
  }, {
1157
1208
  type: "blast-radius";
1158
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1209
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1159
1210
  maxAffected: number;
1160
1211
  depth?: number | undefined;
1161
1212
  }>]>;
@@ -1168,19 +1219,19 @@ declare const PolicySchema: z.ZodObject<{
1168
1219
  onViolation: z.ZodOptional<z.ZodEnum<["log", "alert", "block"]>>;
1169
1220
  rule: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1170
1221
  type: z.ZodLiteral<"structural">;
1171
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1172
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1173
- toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1222
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1223
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1224
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1174
1225
  }, "strip", z.ZodTypeAny, {
1175
1226
  type: "structural";
1176
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1177
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1178
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1227
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1228
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1229
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1179
1230
  }, {
1180
1231
  type: "structural";
1181
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1182
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1183
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1232
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1233
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1234
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1184
1235
  }>, z.ZodObject<{
1185
1236
  type: z.ZodLiteral<"compatibility">;
1186
1237
  kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
@@ -1192,44 +1243,44 @@ declare const PolicySchema: z.ZodObject<{
1192
1243
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1193
1244
  }>, z.ZodObject<{
1194
1245
  type: z.ZodLiteral<"provenance">;
1195
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1246
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1196
1247
  targetNodeId: z.ZodOptional<z.ZodString>;
1197
1248
  required: z.ZodUnion<[z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">]>;
1198
1249
  }, "strip", z.ZodTypeAny, {
1199
1250
  type: "provenance";
1200
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1251
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1201
1252
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1202
1253
  targetNodeId?: string | undefined;
1203
1254
  }, {
1204
1255
  type: "provenance";
1205
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1256
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1206
1257
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1207
1258
  targetNodeId?: string | undefined;
1208
1259
  }>, z.ZodObject<{
1209
1260
  type: z.ZodLiteral<"ownership">;
1210
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1261
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1211
1262
  field: z.ZodDefault<z.ZodString>;
1212
1263
  }, "strip", z.ZodTypeAny, {
1213
1264
  type: "ownership";
1214
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1265
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1215
1266
  field: string;
1216
1267
  }, {
1217
1268
  type: "ownership";
1218
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1269
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1219
1270
  field?: string | undefined;
1220
1271
  }>, z.ZodObject<{
1221
1272
  type: z.ZodLiteral<"blast-radius">;
1222
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1273
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1223
1274
  maxAffected: z.ZodNumber;
1224
1275
  depth: z.ZodOptional<z.ZodNumber>;
1225
1276
  }, "strip", z.ZodTypeAny, {
1226
1277
  type: "blast-radius";
1227
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1278
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1228
1279
  maxAffected: number;
1229
1280
  depth?: number | undefined;
1230
1281
  }, {
1231
1282
  type: "blast-radius";
1232
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1283
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1233
1284
  maxAffected: number;
1234
1285
  depth?: number | undefined;
1235
1286
  }>]>;
@@ -1239,24 +1290,24 @@ declare const PolicySchema: z.ZodObject<{
1239
1290
  severity: "info" | "warning" | "error" | "critical";
1240
1291
  rule: {
1241
1292
  type: "structural";
1242
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1243
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1244
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1293
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1294
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1295
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1245
1296
  } | {
1246
1297
  type: "compatibility";
1247
1298
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1248
1299
  } | {
1249
1300
  type: "provenance";
1250
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1301
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1251
1302
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1252
1303
  targetNodeId?: string | undefined;
1253
1304
  } | {
1254
1305
  type: "ownership";
1255
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1306
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1256
1307
  field: string;
1257
1308
  } | {
1258
1309
  type: "blast-radius";
1259
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1310
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1260
1311
  maxAffected: number;
1261
1312
  depth?: number | undefined;
1262
1313
  };
@@ -1268,24 +1319,24 @@ declare const PolicySchema: z.ZodObject<{
1268
1319
  severity: "info" | "warning" | "error" | "critical";
1269
1320
  rule: {
1270
1321
  type: "structural";
1271
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1272
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1273
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1322
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1323
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1324
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1274
1325
  } | {
1275
1326
  type: "compatibility";
1276
1327
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1277
1328
  } | {
1278
1329
  type: "provenance";
1279
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1330
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1280
1331
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1281
1332
  targetNodeId?: string | undefined;
1282
1333
  } | {
1283
1334
  type: "ownership";
1284
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1335
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1285
1336
  field?: string | undefined;
1286
1337
  } | {
1287
1338
  type: "blast-radius";
1288
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1339
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1289
1340
  maxAffected: number;
1290
1341
  depth?: number | undefined;
1291
1342
  };
@@ -1303,19 +1354,19 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1303
1354
  onViolation: z.ZodOptional<z.ZodEnum<["log", "alert", "block"]>>;
1304
1355
  rule: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1305
1356
  type: z.ZodLiteral<"structural">;
1306
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1307
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1308
- toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1357
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1358
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1359
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1309
1360
  }, "strip", z.ZodTypeAny, {
1310
1361
  type: "structural";
1311
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1312
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1313
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1362
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1363
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1364
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1314
1365
  }, {
1315
1366
  type: "structural";
1316
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1317
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1318
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1367
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1368
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1369
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1319
1370
  }>, z.ZodObject<{
1320
1371
  type: z.ZodLiteral<"compatibility">;
1321
1372
  kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
@@ -1327,44 +1378,44 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1327
1378
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1328
1379
  }>, z.ZodObject<{
1329
1380
  type: z.ZodLiteral<"provenance">;
1330
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1381
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1331
1382
  targetNodeId: z.ZodOptional<z.ZodString>;
1332
1383
  required: z.ZodUnion<[z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">]>;
1333
1384
  }, "strip", z.ZodTypeAny, {
1334
1385
  type: "provenance";
1335
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1386
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1336
1387
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1337
1388
  targetNodeId?: string | undefined;
1338
1389
  }, {
1339
1390
  type: "provenance";
1340
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1391
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1341
1392
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1342
1393
  targetNodeId?: string | undefined;
1343
1394
  }>, z.ZodObject<{
1344
1395
  type: z.ZodLiteral<"ownership">;
1345
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1396
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1346
1397
  field: z.ZodDefault<z.ZodString>;
1347
1398
  }, "strip", z.ZodTypeAny, {
1348
1399
  type: "ownership";
1349
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1400
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1350
1401
  field: string;
1351
1402
  }, {
1352
1403
  type: "ownership";
1353
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1404
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1354
1405
  field?: string | undefined;
1355
1406
  }>, z.ZodObject<{
1356
1407
  type: z.ZodLiteral<"blast-radius">;
1357
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode"]>;
1408
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1358
1409
  maxAffected: z.ZodNumber;
1359
1410
  depth: z.ZodOptional<z.ZodNumber>;
1360
1411
  }, "strip", z.ZodTypeAny, {
1361
1412
  type: "blast-radius";
1362
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1413
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1363
1414
  maxAffected: number;
1364
1415
  depth?: number | undefined;
1365
1416
  }, {
1366
1417
  type: "blast-radius";
1367
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1418
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1368
1419
  maxAffected: number;
1369
1420
  depth?: number | undefined;
1370
1421
  }>]>;
@@ -1374,24 +1425,24 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1374
1425
  severity: "info" | "warning" | "error" | "critical";
1375
1426
  rule: {
1376
1427
  type: "structural";
1377
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1378
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1379
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1428
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1429
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1430
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1380
1431
  } | {
1381
1432
  type: "compatibility";
1382
1433
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1383
1434
  } | {
1384
1435
  type: "provenance";
1385
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1436
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1386
1437
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1387
1438
  targetNodeId?: string | undefined;
1388
1439
  } | {
1389
1440
  type: "ownership";
1390
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1441
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1391
1442
  field: string;
1392
1443
  } | {
1393
1444
  type: "blast-radius";
1394
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1445
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1395
1446
  maxAffected: number;
1396
1447
  depth?: number | undefined;
1397
1448
  };
@@ -1403,24 +1454,24 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1403
1454
  severity: "info" | "warning" | "error" | "critical";
1404
1455
  rule: {
1405
1456
  type: "structural";
1406
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1407
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1408
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1457
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1458
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1459
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1409
1460
  } | {
1410
1461
  type: "compatibility";
1411
1462
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1412
1463
  } | {
1413
1464
  type: "provenance";
1414
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1465
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1415
1466
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1416
1467
  targetNodeId?: string | undefined;
1417
1468
  } | {
1418
1469
  type: "ownership";
1419
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1470
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1420
1471
  field?: string | undefined;
1421
1472
  } | {
1422
1473
  type: "blast-radius";
1423
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1474
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1424
1475
  maxAffected: number;
1425
1476
  depth?: number | undefined;
1426
1477
  };
@@ -1435,24 +1486,24 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1435
1486
  severity: "info" | "warning" | "error" | "critical";
1436
1487
  rule: {
1437
1488
  type: "structural";
1438
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1439
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1440
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1489
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1490
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1491
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1441
1492
  } | {
1442
1493
  type: "compatibility";
1443
1494
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1444
1495
  } | {
1445
1496
  type: "provenance";
1446
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1497
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1447
1498
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1448
1499
  targetNodeId?: string | undefined;
1449
1500
  } | {
1450
1501
  type: "ownership";
1451
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1502
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1452
1503
  field: string;
1453
1504
  } | {
1454
1505
  type: "blast-radius";
1455
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1506
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1456
1507
  maxAffected: number;
1457
1508
  depth?: number | undefined;
1458
1509
  };
@@ -1467,24 +1518,24 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1467
1518
  severity: "info" | "warning" | "error" | "critical";
1468
1519
  rule: {
1469
1520
  type: "structural";
1470
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1471
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1472
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1521
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1522
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1523
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1473
1524
  } | {
1474
1525
  type: "compatibility";
1475
1526
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1476
1527
  } | {
1477
1528
  type: "provenance";
1478
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1529
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1479
1530
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1480
1531
  targetNodeId?: string | undefined;
1481
1532
  } | {
1482
1533
  type: "ownership";
1483
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1534
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1484
1535
  field?: string | undefined;
1485
1536
  } | {
1486
1537
  type: "blast-radius";
1487
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1538
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1488
1539
  maxAffected: number;
1489
1540
  depth?: number | undefined;
1490
1541
  };
@@ -1499,24 +1550,24 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1499
1550
  severity: "info" | "warning" | "error" | "critical";
1500
1551
  rule: {
1501
1552
  type: "structural";
1502
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1503
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1504
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1553
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1554
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1555
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1505
1556
  } | {
1506
1557
  type: "compatibility";
1507
1558
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1508
1559
  } | {
1509
1560
  type: "provenance";
1510
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1561
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1511
1562
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1512
1563
  targetNodeId?: string | undefined;
1513
1564
  } | {
1514
1565
  type: "ownership";
1515
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1566
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1516
1567
  field: string;
1517
1568
  } | {
1518
1569
  type: "blast-radius";
1519
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1570
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1520
1571
  maxAffected: number;
1521
1572
  depth?: number | undefined;
1522
1573
  };
@@ -1531,24 +1582,24 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1531
1582
  severity: "info" | "warning" | "error" | "critical";
1532
1583
  rule: {
1533
1584
  type: "structural";
1534
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1535
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1536
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1585
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1586
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1587
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1537
1588
  } | {
1538
1589
  type: "compatibility";
1539
1590
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
1540
1591
  } | {
1541
1592
  type: "provenance";
1542
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1593
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1543
1594
  required: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
1544
1595
  targetNodeId?: string | undefined;
1545
1596
  } | {
1546
1597
  type: "ownership";
1547
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1598
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1548
1599
  field?: string | undefined;
1549
1600
  } | {
1550
1601
  type: "blast-radius";
1551
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode";
1602
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1552
1603
  maxAffected: number;
1553
1604
  depth?: number | undefined;
1554
1605
  };
@@ -1570,20 +1621,20 @@ declare const HypotheticalActionSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
1570
1621
  kind: z.ZodLiteral<"add-edge">;
1571
1622
  source: z.ZodString;
1572
1623
  target: z.ZodString;
1573
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1624
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1574
1625
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1575
1626
  }, "strip", z.ZodTypeAny, {
1576
1627
  kind: "add-edge";
1577
1628
  source: string;
1578
1629
  target: string;
1579
1630
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1580
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1631
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1581
1632
  }, {
1582
1633
  kind: "add-edge";
1583
1634
  source: string;
1584
1635
  target: string;
1585
1636
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1586
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1637
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1587
1638
  }>]>;
1588
1639
  type HypotheticalAction = z.infer<typeof HypotheticalActionSchema>;
1589
1640
  declare const PoliciesCheckBodySchema: z.ZodObject<{
@@ -1600,20 +1651,20 @@ declare const PoliciesCheckBodySchema: z.ZodObject<{
1600
1651
  kind: z.ZodLiteral<"add-edge">;
1601
1652
  source: z.ZodString;
1602
1653
  target: z.ZodString;
1603
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1654
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1604
1655
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1605
1656
  }, "strip", z.ZodTypeAny, {
1606
1657
  kind: "add-edge";
1607
1658
  source: string;
1608
1659
  target: string;
1609
1660
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1610
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1661
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1611
1662
  }, {
1612
1663
  kind: "add-edge";
1613
1664
  source: string;
1614
1665
  target: string;
1615
1666
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1616
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1667
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1617
1668
  }>]>>;
1618
1669
  }, "strip", z.ZodTypeAny, {
1619
1670
  hypotheticalAction?: {
@@ -1624,7 +1675,7 @@ declare const PoliciesCheckBodySchema: z.ZodObject<{
1624
1675
  source: string;
1625
1676
  target: string;
1626
1677
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1627
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1678
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1628
1679
  } | undefined;
1629
1680
  }, {
1630
1681
  hypotheticalAction?: {
@@ -1635,7 +1686,7 @@ declare const PoliciesCheckBodySchema: z.ZodObject<{
1635
1686
  source: string;
1636
1687
  target: string;
1637
1688
  provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
1638
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1689
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1639
1690
  } | undefined;
1640
1691
  }>;
1641
1692
  type PoliciesCheckBody = z.infer<typeof PoliciesCheckBodySchema>;
@@ -1782,12 +1833,12 @@ type RegistryFile = z.infer<typeof RegistryFileSchema>;
1782
1833
  declare const EMPTY_REGISTRY: RegistryFile;
1783
1834
 
1784
1835
  declare const MissingObservedDivergenceSchema: z.ZodObject<{
1785
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1836
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1786
1837
  extracted: z.ZodObject<{
1787
1838
  id: z.ZodString;
1788
1839
  source: z.ZodString;
1789
1840
  target: z.ZodString;
1790
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1841
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1791
1842
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1792
1843
  confidence: z.ZodOptional<z.ZodNumber>;
1793
1844
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -1819,7 +1870,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
1819
1870
  lastObservedAgeMs?: number | undefined;
1820
1871
  }>>;
1821
1872
  }, "strip", z.ZodTypeAny, {
1822
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1873
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1823
1874
  id: string;
1824
1875
  source: string;
1825
1876
  target: string;
@@ -1838,7 +1889,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
1838
1889
  lastObservedAgeMs?: number | undefined;
1839
1890
  } | undefined;
1840
1891
  }, {
1841
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1892
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1842
1893
  id: string;
1843
1894
  source: string;
1844
1895
  target: string;
@@ -1869,9 +1920,9 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
1869
1920
  source: string;
1870
1921
  target: string;
1871
1922
  confidence: number;
1872
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1923
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1873
1924
  extracted: {
1874
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1925
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1875
1926
  id: string;
1876
1927
  source: string;
1877
1928
  target: string;
@@ -1897,9 +1948,9 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
1897
1948
  source: string;
1898
1949
  target: string;
1899
1950
  confidence: number;
1900
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1951
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1901
1952
  extracted: {
1902
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
1953
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1903
1954
  id: string;
1904
1955
  source: string;
1905
1956
  target: string;
@@ -1922,12 +1973,12 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
1922
1973
  }>;
1923
1974
  type MissingObservedDivergence = z.infer<typeof MissingObservedDivergenceSchema>;
1924
1975
  declare const MissingExtractedDivergenceSchema: z.ZodObject<{
1925
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1976
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1926
1977
  observed: z.ZodObject<{
1927
1978
  id: z.ZodString;
1928
1979
  source: z.ZodString;
1929
1980
  target: z.ZodString;
1930
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
1981
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
1931
1982
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
1932
1983
  confidence: z.ZodOptional<z.ZodNumber>;
1933
1984
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -1959,7 +2010,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
1959
2010
  lastObservedAgeMs?: number | undefined;
1960
2011
  }>>;
1961
2012
  }, "strip", z.ZodTypeAny, {
1962
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2013
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1963
2014
  id: string;
1964
2015
  source: string;
1965
2016
  target: string;
@@ -1978,7 +2029,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
1978
2029
  lastObservedAgeMs?: number | undefined;
1979
2030
  } | undefined;
1980
2031
  }, {
1981
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2032
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
1982
2033
  id: string;
1983
2034
  source: string;
1984
2035
  target: string;
@@ -2009,10 +2060,10 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2009
2060
  source: string;
2010
2061
  target: string;
2011
2062
  confidence: number;
2012
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2063
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2013
2064
  recommendation: string;
2014
2065
  observed: {
2015
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2066
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2016
2067
  id: string;
2017
2068
  source: string;
2018
2069
  target: string;
@@ -2037,10 +2088,10 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2037
2088
  source: string;
2038
2089
  target: string;
2039
2090
  confidence: number;
2040
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2091
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2041
2092
  recommendation: string;
2042
2093
  observed: {
2043
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2094
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2044
2095
  id: string;
2045
2096
  source: string;
2046
2097
  target: string;
@@ -2168,7 +2219,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2168
2219
  id: z.ZodString;
2169
2220
  source: z.ZodString;
2170
2221
  target: z.ZodString;
2171
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
2222
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2172
2223
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2173
2224
  confidence: z.ZodOptional<z.ZodNumber>;
2174
2225
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2200,7 +2251,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2200
2251
  lastObservedAgeMs?: number | undefined;
2201
2252
  }>>;
2202
2253
  }, "strip", z.ZodTypeAny, {
2203
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2254
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2204
2255
  id: string;
2205
2256
  source: string;
2206
2257
  target: string;
@@ -2219,7 +2270,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2219
2270
  lastObservedAgeMs?: number | undefined;
2220
2271
  } | undefined;
2221
2272
  }, {
2222
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2273
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2223
2274
  id: string;
2224
2275
  source: string;
2225
2276
  target: string;
@@ -2259,7 +2310,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2259
2310
  };
2260
2311
  recommendation: string;
2261
2312
  observed: {
2262
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2313
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2263
2314
  id: string;
2264
2315
  source: string;
2265
2316
  target: string;
@@ -2293,7 +2344,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2293
2344
  };
2294
2345
  recommendation: string;
2295
2346
  observed: {
2296
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2347
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2297
2348
  id: string;
2298
2349
  source: string;
2299
2350
  target: string;
@@ -2315,12 +2366,12 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2315
2366
  }>;
2316
2367
  type CompatViolationDivergence = z.infer<typeof CompatViolationDivergenceSchema>;
2317
2368
  declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2318
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
2369
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2319
2370
  extracted: z.ZodObject<{
2320
2371
  id: z.ZodString;
2321
2372
  source: z.ZodString;
2322
2373
  target: z.ZodString;
2323
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
2374
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2324
2375
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2325
2376
  confidence: z.ZodOptional<z.ZodNumber>;
2326
2377
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2352,7 +2403,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2352
2403
  lastObservedAgeMs?: number | undefined;
2353
2404
  }>>;
2354
2405
  }, "strip", z.ZodTypeAny, {
2355
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2406
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2356
2407
  id: string;
2357
2408
  source: string;
2358
2409
  target: string;
@@ -2371,7 +2422,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2371
2422
  lastObservedAgeMs?: number | undefined;
2372
2423
  } | undefined;
2373
2424
  }, {
2374
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2425
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2375
2426
  id: string;
2376
2427
  source: string;
2377
2428
  target: string;
@@ -2402,9 +2453,9 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2402
2453
  source: string;
2403
2454
  target: string;
2404
2455
  confidence: number;
2405
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2456
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2406
2457
  extracted: {
2407
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2458
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2408
2459
  id: string;
2409
2460
  source: string;
2410
2461
  target: string;
@@ -2430,9 +2481,9 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2430
2481
  source: string;
2431
2482
  target: string;
2432
2483
  confidence: number;
2433
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2484
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2434
2485
  extracted: {
2435
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2486
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2436
2487
  id: string;
2437
2488
  source: string;
2438
2489
  target: string;
@@ -2453,12 +2504,12 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2453
2504
  };
2454
2505
  recommendation: string;
2455
2506
  }>, z.ZodObject<{
2456
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
2507
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2457
2508
  observed: z.ZodObject<{
2458
2509
  id: z.ZodString;
2459
2510
  source: z.ZodString;
2460
2511
  target: z.ZodString;
2461
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
2512
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2462
2513
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2463
2514
  confidence: z.ZodOptional<z.ZodNumber>;
2464
2515
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2490,7 +2541,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2490
2541
  lastObservedAgeMs?: number | undefined;
2491
2542
  }>>;
2492
2543
  }, "strip", z.ZodTypeAny, {
2493
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2544
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2494
2545
  id: string;
2495
2546
  source: string;
2496
2547
  target: string;
@@ -2509,7 +2560,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2509
2560
  lastObservedAgeMs?: number | undefined;
2510
2561
  } | undefined;
2511
2562
  }, {
2512
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2563
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2513
2564
  id: string;
2514
2565
  source: string;
2515
2566
  target: string;
@@ -2540,10 +2591,10 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2540
2591
  source: string;
2541
2592
  target: string;
2542
2593
  confidence: number;
2543
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2594
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2544
2595
  recommendation: string;
2545
2596
  observed: {
2546
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2597
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2547
2598
  id: string;
2548
2599
  source: string;
2549
2600
  target: string;
@@ -2568,10 +2619,10 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2568
2619
  source: string;
2569
2620
  target: string;
2570
2621
  confidence: number;
2571
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2622
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2572
2623
  recommendation: string;
2573
2624
  observed: {
2574
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2625
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2575
2626
  id: string;
2576
2627
  source: string;
2577
2628
  target: string;
@@ -2671,7 +2722,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2671
2722
  id: z.ZodString;
2672
2723
  source: z.ZodString;
2673
2724
  target: z.ZodString;
2674
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
2725
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2675
2726
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2676
2727
  confidence: z.ZodOptional<z.ZodNumber>;
2677
2728
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2703,7 +2754,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2703
2754
  lastObservedAgeMs?: number | undefined;
2704
2755
  }>>;
2705
2756
  }, "strip", z.ZodTypeAny, {
2706
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2757
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2707
2758
  id: string;
2708
2759
  source: string;
2709
2760
  target: string;
@@ -2722,7 +2773,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2722
2773
  lastObservedAgeMs?: number | undefined;
2723
2774
  } | undefined;
2724
2775
  }, {
2725
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2776
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2726
2777
  id: string;
2727
2778
  source: string;
2728
2779
  target: string;
@@ -2762,7 +2813,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2762
2813
  };
2763
2814
  recommendation: string;
2764
2815
  observed: {
2765
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2816
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2766
2817
  id: string;
2767
2818
  source: string;
2768
2819
  target: string;
@@ -2796,7 +2847,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2796
2847
  };
2797
2848
  recommendation: string;
2798
2849
  observed: {
2799
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2850
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2800
2851
  id: string;
2801
2852
  source: string;
2802
2853
  target: string;
@@ -2819,12 +2870,12 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2819
2870
  type Divergence = z.infer<typeof DivergenceSchema>;
2820
2871
  declare const DivergenceResultSchema: z.ZodObject<{
2821
2872
  divergences: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2822
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
2873
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2823
2874
  extracted: z.ZodObject<{
2824
2875
  id: z.ZodString;
2825
2876
  source: z.ZodString;
2826
2877
  target: z.ZodString;
2827
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
2878
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2828
2879
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2829
2880
  confidence: z.ZodOptional<z.ZodNumber>;
2830
2881
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2856,7 +2907,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
2856
2907
  lastObservedAgeMs?: number | undefined;
2857
2908
  }>>;
2858
2909
  }, "strip", z.ZodTypeAny, {
2859
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2910
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2860
2911
  id: string;
2861
2912
  source: string;
2862
2913
  target: string;
@@ -2875,7 +2926,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
2875
2926
  lastObservedAgeMs?: number | undefined;
2876
2927
  } | undefined;
2877
2928
  }, {
2878
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2929
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2879
2930
  id: string;
2880
2931
  source: string;
2881
2932
  target: string;
@@ -2906,9 +2957,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
2906
2957
  source: string;
2907
2958
  target: string;
2908
2959
  confidence: number;
2909
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2960
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2910
2961
  extracted: {
2911
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2962
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2912
2963
  id: string;
2913
2964
  source: string;
2914
2965
  target: string;
@@ -2934,9 +2985,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
2934
2985
  source: string;
2935
2986
  target: string;
2936
2987
  confidence: number;
2937
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2988
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2938
2989
  extracted: {
2939
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
2990
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2940
2991
  id: string;
2941
2992
  source: string;
2942
2993
  target: string;
@@ -2957,12 +3008,12 @@ declare const DivergenceResultSchema: z.ZodObject<{
2957
3008
  };
2958
3009
  recommendation: string;
2959
3010
  }>, z.ZodObject<{
2960
- edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
3011
+ edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2961
3012
  observed: z.ZodObject<{
2962
3013
  id: z.ZodString;
2963
3014
  source: z.ZodString;
2964
3015
  target: z.ZodString;
2965
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
3016
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
2966
3017
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2967
3018
  confidence: z.ZodOptional<z.ZodNumber>;
2968
3019
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -2994,7 +3045,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
2994
3045
  lastObservedAgeMs?: number | undefined;
2995
3046
  }>>;
2996
3047
  }, "strip", z.ZodTypeAny, {
2997
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3048
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
2998
3049
  id: string;
2999
3050
  source: string;
3000
3051
  target: string;
@@ -3013,7 +3064,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3013
3064
  lastObservedAgeMs?: number | undefined;
3014
3065
  } | undefined;
3015
3066
  }, {
3016
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3067
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3017
3068
  id: string;
3018
3069
  source: string;
3019
3070
  target: string;
@@ -3044,10 +3095,10 @@ declare const DivergenceResultSchema: z.ZodObject<{
3044
3095
  source: string;
3045
3096
  target: string;
3046
3097
  confidence: number;
3047
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3098
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3048
3099
  recommendation: string;
3049
3100
  observed: {
3050
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3101
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3051
3102
  id: string;
3052
3103
  source: string;
3053
3104
  target: string;
@@ -3072,10 +3123,10 @@ declare const DivergenceResultSchema: z.ZodObject<{
3072
3123
  source: string;
3073
3124
  target: string;
3074
3125
  confidence: number;
3075
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3126
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3076
3127
  recommendation: string;
3077
3128
  observed: {
3078
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3129
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3079
3130
  id: string;
3080
3131
  source: string;
3081
3132
  target: string;
@@ -3175,7 +3226,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3175
3226
  id: z.ZodString;
3176
3227
  source: z.ZodString;
3177
3228
  target: z.ZodString;
3178
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
3229
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
3179
3230
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
3180
3231
  confidence: z.ZodOptional<z.ZodNumber>;
3181
3232
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -3207,7 +3258,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3207
3258
  lastObservedAgeMs?: number | undefined;
3208
3259
  }>>;
3209
3260
  }, "strip", z.ZodTypeAny, {
3210
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3261
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3211
3262
  id: string;
3212
3263
  source: string;
3213
3264
  target: string;
@@ -3226,7 +3277,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3226
3277
  lastObservedAgeMs?: number | undefined;
3227
3278
  } | undefined;
3228
3279
  }, {
3229
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3280
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3230
3281
  id: string;
3231
3282
  source: string;
3232
3283
  target: string;
@@ -3266,7 +3317,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3266
3317
  };
3267
3318
  recommendation: string;
3268
3319
  observed: {
3269
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3320
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3270
3321
  id: string;
3271
3322
  source: string;
3272
3323
  target: string;
@@ -3300,7 +3351,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3300
3351
  };
3301
3352
  recommendation: string;
3302
3353
  observed: {
3303
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3354
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3304
3355
  id: string;
3305
3356
  source: string;
3306
3357
  target: string;
@@ -3330,9 +3381,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
3330
3381
  source: string;
3331
3382
  target: string;
3332
3383
  confidence: number;
3333
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3384
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3334
3385
  extracted: {
3335
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3386
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3336
3387
  id: string;
3337
3388
  source: string;
3338
3389
  target: string;
@@ -3358,10 +3409,10 @@ declare const DivergenceResultSchema: z.ZodObject<{
3358
3409
  source: string;
3359
3410
  target: string;
3360
3411
  confidence: number;
3361
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3412
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3362
3413
  recommendation: string;
3363
3414
  observed: {
3364
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3415
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3365
3416
  id: string;
3366
3417
  source: string;
3367
3418
  target: string;
@@ -3414,7 +3465,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3414
3465
  };
3415
3466
  recommendation: string;
3416
3467
  observed: {
3417
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3468
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3418
3469
  id: string;
3419
3470
  source: string;
3420
3471
  target: string;
@@ -3443,9 +3494,9 @@ declare const DivergenceResultSchema: z.ZodObject<{
3443
3494
  source: string;
3444
3495
  target: string;
3445
3496
  confidence: number;
3446
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3497
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3447
3498
  extracted: {
3448
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3499
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3449
3500
  id: string;
3450
3501
  source: string;
3451
3502
  target: string;
@@ -3471,10 +3522,10 @@ declare const DivergenceResultSchema: z.ZodObject<{
3471
3522
  source: string;
3472
3523
  target: string;
3473
3524
  confidence: number;
3474
- edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3525
+ edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3475
3526
  recommendation: string;
3476
3527
  observed: {
3477
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3528
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3478
3529
  id: string;
3479
3530
  source: string;
3480
3531
  target: string;
@@ -3527,7 +3578,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
3527
3578
  };
3528
3579
  recommendation: string;
3529
3580
  observed: {
3530
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
3581
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
3531
3582
  id: string;
3532
3583
  source: string;
3533
3584
  target: string;
@@ -3570,8 +3621,8 @@ declare const IncidentsResponseSchema: z.ZodObject<{
3570
3621
  affectedNode: z.ZodString;
3571
3622
  }, "strip", z.ZodTypeAny, {
3572
3623
  id: string;
3573
- timestamp: string;
3574
3624
  service: string;
3625
+ timestamp: string;
3575
3626
  traceId: string;
3576
3627
  spanId: string;
3577
3628
  errorMessage: string;
@@ -3582,8 +3633,8 @@ declare const IncidentsResponseSchema: z.ZodObject<{
3582
3633
  attributes?: Record<string, string | number | boolean | string[] | number[] | boolean[] | null> | undefined;
3583
3634
  }, {
3584
3635
  id: string;
3585
- timestamp: string;
3586
3636
  service: string;
3637
+ timestamp: string;
3587
3638
  traceId: string;
3588
3639
  spanId: string;
3589
3640
  errorMessage: string;
@@ -3598,8 +3649,8 @@ declare const IncidentsResponseSchema: z.ZodObject<{
3598
3649
  count: number;
3599
3650
  events: {
3600
3651
  id: string;
3601
- timestamp: string;
3602
3652
  service: string;
3653
+ timestamp: string;
3603
3654
  traceId: string;
3604
3655
  spanId: string;
3605
3656
  errorMessage: string;
@@ -3614,8 +3665,8 @@ declare const IncidentsResponseSchema: z.ZodObject<{
3614
3665
  count: number;
3615
3666
  events: {
3616
3667
  id: string;
3617
- timestamp: string;
3618
3668
  service: string;
3669
+ timestamp: string;
3619
3670
  traceId: string;
3620
3671
  spanId: string;
3621
3672
  errorMessage: string;
@@ -4085,6 +4136,27 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
4085
4136
  host: string;
4086
4137
  firstObserved?: string | undefined;
4087
4138
  lastObserved?: string | undefined;
4139
+ }>, z.ZodObject<{
4140
+ id: z.ZodString;
4141
+ type: z.ZodLiteral<"FileNode">;
4142
+ service: z.ZodString;
4143
+ path: z.ZodString;
4144
+ language: z.ZodOptional<z.ZodString>;
4145
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
4146
+ }, "strip", z.ZodTypeAny, {
4147
+ path: string;
4148
+ type: "FileNode";
4149
+ id: string;
4150
+ service: string;
4151
+ language?: string | undefined;
4152
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4153
+ }, {
4154
+ path: string;
4155
+ type: "FileNode";
4156
+ id: string;
4157
+ service: string;
4158
+ language?: string | undefined;
4159
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4088
4160
  }>]>;
4089
4161
  }, "strip", z.ZodTypeAny, {
4090
4162
  node: {
@@ -4165,6 +4237,13 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
4165
4237
  host: string;
4166
4238
  firstObserved?: string | undefined;
4167
4239
  lastObserved?: string | undefined;
4240
+ } | {
4241
+ path: string;
4242
+ type: "FileNode";
4243
+ id: string;
4244
+ service: string;
4245
+ language?: string | undefined;
4246
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4168
4247
  };
4169
4248
  }, {
4170
4249
  node: {
@@ -4245,6 +4324,13 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
4245
4324
  host: string;
4246
4325
  firstObserved?: string | undefined;
4247
4326
  lastObserved?: string | undefined;
4327
+ } | {
4328
+ path: string;
4329
+ type: "FileNode";
4330
+ id: string;
4331
+ service: string;
4332
+ language?: string | undefined;
4333
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4248
4334
  };
4249
4335
  }>;
4250
4336
  type GraphNodeResponse = z.infer<typeof GraphNodeResponseSchema>;
@@ -4253,7 +4339,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4253
4339
  id: z.ZodString;
4254
4340
  source: z.ZodString;
4255
4341
  target: z.ZodString;
4256
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
4342
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
4257
4343
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
4258
4344
  confidence: z.ZodOptional<z.ZodNumber>;
4259
4345
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -4285,7 +4371,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4285
4371
  lastObservedAgeMs?: number | undefined;
4286
4372
  }>>;
4287
4373
  }, "strip", z.ZodTypeAny, {
4288
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
4374
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4289
4375
  id: string;
4290
4376
  source: string;
4291
4377
  target: string;
@@ -4304,7 +4390,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4304
4390
  lastObservedAgeMs?: number | undefined;
4305
4391
  } | undefined;
4306
4392
  }, {
4307
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
4393
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4308
4394
  id: string;
4309
4395
  source: string;
4310
4396
  target: string;
@@ -4327,7 +4413,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4327
4413
  id: z.ZodString;
4328
4414
  source: z.ZodString;
4329
4415
  target: z.ZodString;
4330
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
4416
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
4331
4417
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
4332
4418
  confidence: z.ZodOptional<z.ZodNumber>;
4333
4419
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -4359,7 +4445,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4359
4445
  lastObservedAgeMs?: number | undefined;
4360
4446
  }>>;
4361
4447
  }, "strip", z.ZodTypeAny, {
4362
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
4448
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4363
4449
  id: string;
4364
4450
  source: string;
4365
4451
  target: string;
@@ -4378,7 +4464,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4378
4464
  lastObservedAgeMs?: number | undefined;
4379
4465
  } | undefined;
4380
4466
  }, {
4381
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
4467
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4382
4468
  id: string;
4383
4469
  source: string;
4384
4470
  target: string;
@@ -4399,7 +4485,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4399
4485
  }>, "many">;
4400
4486
  }, "strip", z.ZodTypeAny, {
4401
4487
  inbound: {
4402
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
4488
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4403
4489
  id: string;
4404
4490
  source: string;
4405
4491
  target: string;
@@ -4419,7 +4505,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4419
4505
  } | undefined;
4420
4506
  }[];
4421
4507
  outbound: {
4422
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
4508
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4423
4509
  id: string;
4424
4510
  source: string;
4425
4511
  target: string;
@@ -4440,7 +4526,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4440
4526
  }[];
4441
4527
  }, {
4442
4528
  inbound: {
4443
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
4529
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4444
4530
  id: string;
4445
4531
  source: string;
4446
4532
  target: string;
@@ -4460,7 +4546,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4460
4546
  } | undefined;
4461
4547
  }[];
4462
4548
  outbound: {
4463
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
4549
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4464
4550
  id: string;
4465
4551
  source: string;
4466
4552
  target: string;
@@ -4925,12 +5011,33 @@ declare const SerializedGraphSchema: z.ZodObject<{
4925
5011
  host: string;
4926
5012
  firstObserved?: string | undefined;
4927
5013
  lastObserved?: string | undefined;
5014
+ }>, z.ZodObject<{
5015
+ id: z.ZodString;
5016
+ type: z.ZodLiteral<"FileNode">;
5017
+ service: z.ZodString;
5018
+ path: z.ZodString;
5019
+ language: z.ZodOptional<z.ZodString>;
5020
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
5021
+ }, "strip", z.ZodTypeAny, {
5022
+ path: string;
5023
+ type: "FileNode";
5024
+ id: string;
5025
+ service: string;
5026
+ language?: string | undefined;
5027
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5028
+ }, {
5029
+ path: string;
5030
+ type: "FileNode";
5031
+ id: string;
5032
+ service: string;
5033
+ language?: string | undefined;
5034
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4928
5035
  }>]>, "many">;
4929
5036
  edges: z.ZodArray<z.ZodObject<{
4930
5037
  id: z.ZodString;
4931
5038
  source: z.ZodString;
4932
5039
  target: z.ZodString;
4933
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
5040
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
4934
5041
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
4935
5042
  confidence: z.ZodOptional<z.ZodNumber>;
4936
5043
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -4962,7 +5069,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
4962
5069
  lastObservedAgeMs?: number | undefined;
4963
5070
  }>>;
4964
5071
  }, "strip", z.ZodTypeAny, {
4965
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
5072
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4966
5073
  id: string;
4967
5074
  source: string;
4968
5075
  target: string;
@@ -4981,7 +5088,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
4981
5088
  lastObservedAgeMs?: number | undefined;
4982
5089
  } | undefined;
4983
5090
  }, {
4984
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
5091
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
4985
5092
  id: string;
4986
5093
  source: string;
4987
5094
  target: string;
@@ -5079,9 +5186,16 @@ declare const SerializedGraphSchema: z.ZodObject<{
5079
5186
  host: string;
5080
5187
  firstObserved?: string | undefined;
5081
5188
  lastObserved?: string | undefined;
5189
+ } | {
5190
+ path: string;
5191
+ type: "FileNode";
5192
+ id: string;
5193
+ service: string;
5194
+ language?: string | undefined;
5195
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5082
5196
  })[];
5083
5197
  edges: {
5084
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
5198
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5085
5199
  id: string;
5086
5200
  source: string;
5087
5201
  target: string;
@@ -5179,9 +5293,16 @@ declare const SerializedGraphSchema: z.ZodObject<{
5179
5293
  host: string;
5180
5294
  firstObserved?: string | undefined;
5181
5295
  lastObserved?: string | undefined;
5296
+ } | {
5297
+ path: string;
5298
+ type: "FileNode";
5299
+ id: string;
5300
+ service: string;
5301
+ language?: string | undefined;
5302
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5182
5303
  })[];
5183
5304
  edges: {
5184
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
5305
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5185
5306
  id: string;
5186
5307
  source: string;
5187
5308
  target: string;
@@ -5522,12 +5643,33 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5522
5643
  host: string;
5523
5644
  firstObserved?: string | undefined;
5524
5645
  lastObserved?: string | undefined;
5646
+ }>, z.ZodObject<{
5647
+ id: z.ZodString;
5648
+ type: z.ZodLiteral<"FileNode">;
5649
+ service: z.ZodString;
5650
+ path: z.ZodString;
5651
+ language: z.ZodOptional<z.ZodString>;
5652
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
5653
+ }, "strip", z.ZodTypeAny, {
5654
+ path: string;
5655
+ type: "FileNode";
5656
+ id: string;
5657
+ service: string;
5658
+ language?: string | undefined;
5659
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5660
+ }, {
5661
+ path: string;
5662
+ type: "FileNode";
5663
+ id: string;
5664
+ service: string;
5665
+ language?: string | undefined;
5666
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5525
5667
  }>]>, "many">;
5526
5668
  edges: z.ZodArray<z.ZodObject<{
5527
5669
  id: z.ZodString;
5528
5670
  source: z.ZodString;
5529
5671
  target: z.ZodString;
5530
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
5672
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
5531
5673
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
5532
5674
  confidence: z.ZodOptional<z.ZodNumber>;
5533
5675
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -5559,7 +5701,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5559
5701
  lastObservedAgeMs?: number | undefined;
5560
5702
  }>>;
5561
5703
  }, "strip", z.ZodTypeAny, {
5562
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
5704
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5563
5705
  id: string;
5564
5706
  source: string;
5565
5707
  target: string;
@@ -5578,7 +5720,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5578
5720
  lastObservedAgeMs?: number | undefined;
5579
5721
  } | undefined;
5580
5722
  }, {
5581
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
5723
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5582
5724
  id: string;
5583
5725
  source: string;
5584
5726
  target: string;
@@ -5676,9 +5818,16 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5676
5818
  host: string;
5677
5819
  firstObserved?: string | undefined;
5678
5820
  lastObserved?: string | undefined;
5821
+ } | {
5822
+ path: string;
5823
+ type: "FileNode";
5824
+ id: string;
5825
+ service: string;
5826
+ language?: string | undefined;
5827
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5679
5828
  })[];
5680
5829
  edges: {
5681
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
5830
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5682
5831
  id: string;
5683
5832
  source: string;
5684
5833
  target: string;
@@ -5776,9 +5925,16 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5776
5925
  host: string;
5777
5926
  firstObserved?: string | undefined;
5778
5927
  lastObserved?: string | undefined;
5928
+ } | {
5929
+ path: string;
5930
+ type: "FileNode";
5931
+ id: string;
5932
+ service: string;
5933
+ language?: string | undefined;
5934
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5779
5935
  })[];
5780
5936
  edges: {
5781
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
5937
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
5782
5938
  id: string;
5783
5939
  source: string;
5784
5940
  target: string;
@@ -6103,12 +6259,33 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6103
6259
  host: string;
6104
6260
  firstObserved?: string | undefined;
6105
6261
  lastObserved?: string | undefined;
6262
+ }>, z.ZodObject<{
6263
+ id: z.ZodString;
6264
+ type: z.ZodLiteral<"FileNode">;
6265
+ service: z.ZodString;
6266
+ path: z.ZodString;
6267
+ language: z.ZodOptional<z.ZodString>;
6268
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
6269
+ }, "strip", z.ZodTypeAny, {
6270
+ path: string;
6271
+ type: "FileNode";
6272
+ id: string;
6273
+ service: string;
6274
+ language?: string | undefined;
6275
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6276
+ }, {
6277
+ path: string;
6278
+ type: "FileNode";
6279
+ id: string;
6280
+ service: string;
6281
+ language?: string | undefined;
6282
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6106
6283
  }>]>, "many">;
6107
6284
  edges: z.ZodArray<z.ZodObject<{
6108
6285
  id: z.ZodString;
6109
6286
  source: z.ZodString;
6110
6287
  target: z.ZodString;
6111
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
6288
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
6112
6289
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
6113
6290
  confidence: z.ZodOptional<z.ZodNumber>;
6114
6291
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -6140,7 +6317,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6140
6317
  lastObservedAgeMs?: number | undefined;
6141
6318
  }>>;
6142
6319
  }, "strip", z.ZodTypeAny, {
6143
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
6320
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
6144
6321
  id: string;
6145
6322
  source: string;
6146
6323
  target: string;
@@ -6159,7 +6336,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6159
6336
  lastObservedAgeMs?: number | undefined;
6160
6337
  } | undefined;
6161
6338
  }, {
6162
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
6339
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
6163
6340
  id: string;
6164
6341
  source: string;
6165
6342
  target: string;
@@ -6257,9 +6434,16 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6257
6434
  host: string;
6258
6435
  firstObserved?: string | undefined;
6259
6436
  lastObserved?: string | undefined;
6437
+ } | {
6438
+ path: string;
6439
+ type: "FileNode";
6440
+ id: string;
6441
+ service: string;
6442
+ language?: string | undefined;
6443
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6260
6444
  })[];
6261
6445
  edges: {
6262
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
6446
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
6263
6447
  id: string;
6264
6448
  source: string;
6265
6449
  target: string;
@@ -6357,9 +6541,16 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6357
6541
  host: string;
6358
6542
  firstObserved?: string | undefined;
6359
6543
  lastObserved?: string | undefined;
6544
+ } | {
6545
+ path: string;
6546
+ type: "FileNode";
6547
+ id: string;
6548
+ service: string;
6549
+ language?: string | undefined;
6550
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6360
6551
  })[];
6361
6552
  edges: {
6362
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
6553
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
6363
6554
  id: string;
6364
6555
  source: string;
6365
6556
  target: string;
@@ -6686,6 +6877,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6686
6877
  host: string;
6687
6878
  firstObserved?: string | undefined;
6688
6879
  lastObserved?: string | undefined;
6880
+ }>, z.ZodObject<{
6881
+ id: z.ZodString;
6882
+ type: z.ZodLiteral<"FileNode">;
6883
+ service: z.ZodString;
6884
+ path: z.ZodString;
6885
+ language: z.ZodOptional<z.ZodString>;
6886
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
6887
+ }, "strip", z.ZodTypeAny, {
6888
+ path: string;
6889
+ type: "FileNode";
6890
+ id: string;
6891
+ service: string;
6892
+ language?: string | undefined;
6893
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6894
+ }, {
6895
+ path: string;
6896
+ type: "FileNode";
6897
+ id: string;
6898
+ service: string;
6899
+ language?: string | undefined;
6900
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6689
6901
  }>]>;
6690
6902
  after: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
6691
6903
  id: z.ZodString;
@@ -6991,6 +7203,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6991
7203
  host: string;
6992
7204
  firstObserved?: string | undefined;
6993
7205
  lastObserved?: string | undefined;
7206
+ }>, z.ZodObject<{
7207
+ id: z.ZodString;
7208
+ type: z.ZodLiteral<"FileNode">;
7209
+ service: z.ZodString;
7210
+ path: z.ZodString;
7211
+ language: z.ZodOptional<z.ZodString>;
7212
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
7213
+ }, "strip", z.ZodTypeAny, {
7214
+ path: string;
7215
+ type: "FileNode";
7216
+ id: string;
7217
+ service: string;
7218
+ language?: string | undefined;
7219
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7220
+ }, {
7221
+ path: string;
7222
+ type: "FileNode";
7223
+ id: string;
7224
+ service: string;
7225
+ language?: string | undefined;
7226
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6994
7227
  }>]>;
6995
7228
  }, "strip", z.ZodTypeAny, {
6996
7229
  id: string;
@@ -7072,6 +7305,13 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7072
7305
  host: string;
7073
7306
  firstObserved?: string | undefined;
7074
7307
  lastObserved?: string | undefined;
7308
+ } | {
7309
+ path: string;
7310
+ type: "FileNode";
7311
+ id: string;
7312
+ service: string;
7313
+ language?: string | undefined;
7314
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7075
7315
  };
7076
7316
  after: {
7077
7317
  name: string;
@@ -7151,6 +7391,13 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7151
7391
  host: string;
7152
7392
  firstObserved?: string | undefined;
7153
7393
  lastObserved?: string | undefined;
7394
+ } | {
7395
+ path: string;
7396
+ type: "FileNode";
7397
+ id: string;
7398
+ service: string;
7399
+ language?: string | undefined;
7400
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7154
7401
  };
7155
7402
  }, {
7156
7403
  id: string;
@@ -7232,6 +7479,13 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7232
7479
  host: string;
7233
7480
  firstObserved?: string | undefined;
7234
7481
  lastObserved?: string | undefined;
7482
+ } | {
7483
+ path: string;
7484
+ type: "FileNode";
7485
+ id: string;
7486
+ service: string;
7487
+ language?: string | undefined;
7488
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7235
7489
  };
7236
7490
  after: {
7237
7491
  name: string;
@@ -7311,6 +7565,13 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7311
7565
  host: string;
7312
7566
  firstObserved?: string | undefined;
7313
7567
  lastObserved?: string | undefined;
7568
+ } | {
7569
+ path: string;
7570
+ type: "FileNode";
7571
+ id: string;
7572
+ service: string;
7573
+ language?: string | undefined;
7574
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7314
7575
  };
7315
7576
  }>, "many">;
7316
7577
  edges: z.ZodArray<z.ZodObject<{
@@ -7319,7 +7580,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7319
7580
  id: z.ZodString;
7320
7581
  source: z.ZodString;
7321
7582
  target: z.ZodString;
7322
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
7583
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
7323
7584
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
7324
7585
  confidence: z.ZodOptional<z.ZodNumber>;
7325
7586
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -7351,7 +7612,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7351
7612
  lastObservedAgeMs?: number | undefined;
7352
7613
  }>>;
7353
7614
  }, "strip", z.ZodTypeAny, {
7354
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
7615
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7355
7616
  id: string;
7356
7617
  source: string;
7357
7618
  target: string;
@@ -7370,7 +7631,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7370
7631
  lastObservedAgeMs?: number | undefined;
7371
7632
  } | undefined;
7372
7633
  }, {
7373
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
7634
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7374
7635
  id: string;
7375
7636
  source: string;
7376
7637
  target: string;
@@ -7393,7 +7654,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7393
7654
  id: z.ZodString;
7394
7655
  source: z.ZodString;
7395
7656
  target: z.ZodString;
7396
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON"]>;
7657
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS"]>;
7397
7658
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
7398
7659
  confidence: z.ZodOptional<z.ZodNumber>;
7399
7660
  lastObserved: z.ZodOptional<z.ZodString>;
@@ -7425,7 +7686,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7425
7686
  lastObservedAgeMs?: number | undefined;
7426
7687
  }>>;
7427
7688
  }, "strip", z.ZodTypeAny, {
7428
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
7689
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7429
7690
  id: string;
7430
7691
  source: string;
7431
7692
  target: string;
@@ -7444,7 +7705,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7444
7705
  lastObservedAgeMs?: number | undefined;
7445
7706
  } | undefined;
7446
7707
  }, {
7447
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
7708
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7448
7709
  id: string;
7449
7710
  source: string;
7450
7711
  target: string;
@@ -7466,7 +7727,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7466
7727
  }, "strip", z.ZodTypeAny, {
7467
7728
  id: string;
7468
7729
  before: {
7469
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
7730
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7470
7731
  id: string;
7471
7732
  source: string;
7472
7733
  target: string;
@@ -7486,7 +7747,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7486
7747
  } | undefined;
7487
7748
  };
7488
7749
  after: {
7489
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
7750
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7490
7751
  id: string;
7491
7752
  source: string;
7492
7753
  target: string;
@@ -7508,7 +7769,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7508
7769
  }, {
7509
7770
  id: string;
7510
7771
  before: {
7511
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
7772
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7512
7773
  id: string;
7513
7774
  source: string;
7514
7775
  target: string;
@@ -7528,7 +7789,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7528
7789
  } | undefined;
7529
7790
  };
7530
7791
  after: {
7531
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
7792
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7532
7793
  id: string;
7533
7794
  source: string;
7534
7795
  target: string;
@@ -7629,6 +7890,13 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7629
7890
  host: string;
7630
7891
  firstObserved?: string | undefined;
7631
7892
  lastObserved?: string | undefined;
7893
+ } | {
7894
+ path: string;
7895
+ type: "FileNode";
7896
+ id: string;
7897
+ service: string;
7898
+ language?: string | undefined;
7899
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7632
7900
  };
7633
7901
  after: {
7634
7902
  name: string;
@@ -7708,12 +7976,19 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7708
7976
  host: string;
7709
7977
  firstObserved?: string | undefined;
7710
7978
  lastObserved?: string | undefined;
7979
+ } | {
7980
+ path: string;
7981
+ type: "FileNode";
7982
+ id: string;
7983
+ service: string;
7984
+ language?: string | undefined;
7985
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7711
7986
  };
7712
7987
  }[];
7713
7988
  edges: {
7714
7989
  id: string;
7715
7990
  before: {
7716
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
7991
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7717
7992
  id: string;
7718
7993
  source: string;
7719
7994
  target: string;
@@ -7733,7 +8008,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7733
8008
  } | undefined;
7734
8009
  };
7735
8010
  after: {
7736
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
8011
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7737
8012
  id: string;
7738
8013
  source: string;
7739
8014
  target: string;
@@ -7834,6 +8109,13 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7834
8109
  host: string;
7835
8110
  firstObserved?: string | undefined;
7836
8111
  lastObserved?: string | undefined;
8112
+ } | {
8113
+ path: string;
8114
+ type: "FileNode";
8115
+ id: string;
8116
+ service: string;
8117
+ language?: string | undefined;
8118
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7837
8119
  };
7838
8120
  after: {
7839
8121
  name: string;
@@ -7913,12 +8195,19 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7913
8195
  host: string;
7914
8196
  firstObserved?: string | undefined;
7915
8197
  lastObserved?: string | undefined;
8198
+ } | {
8199
+ path: string;
8200
+ type: "FileNode";
8201
+ id: string;
8202
+ service: string;
8203
+ language?: string | undefined;
8204
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7916
8205
  };
7917
8206
  }[];
7918
8207
  edges: {
7919
8208
  id: string;
7920
8209
  before: {
7921
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
8210
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7922
8211
  id: string;
7923
8212
  source: string;
7924
8213
  target: string;
@@ -7938,7 +8227,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7938
8227
  } | undefined;
7939
8228
  };
7940
8229
  after: {
7941
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
8230
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
7942
8231
  id: string;
7943
8232
  source: string;
7944
8233
  target: string;
@@ -8045,9 +8334,16 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8045
8334
  host: string;
8046
8335
  firstObserved?: string | undefined;
8047
8336
  lastObserved?: string | undefined;
8337
+ } | {
8338
+ path: string;
8339
+ type: "FileNode";
8340
+ id: string;
8341
+ service: string;
8342
+ language?: string | undefined;
8343
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8048
8344
  })[];
8049
8345
  edges: {
8050
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
8346
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8051
8347
  id: string;
8052
8348
  source: string;
8053
8349
  target: string;
@@ -8146,9 +8442,16 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8146
8442
  host: string;
8147
8443
  firstObserved?: string | undefined;
8148
8444
  lastObserved?: string | undefined;
8445
+ } | {
8446
+ path: string;
8447
+ type: "FileNode";
8448
+ id: string;
8449
+ service: string;
8450
+ language?: string | undefined;
8451
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8149
8452
  })[];
8150
8453
  edges: {
8151
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
8454
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8152
8455
  id: string;
8153
8456
  source: string;
8154
8457
  target: string;
@@ -8249,6 +8552,13 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8249
8552
  host: string;
8250
8553
  firstObserved?: string | undefined;
8251
8554
  lastObserved?: string | undefined;
8555
+ } | {
8556
+ path: string;
8557
+ type: "FileNode";
8558
+ id: string;
8559
+ service: string;
8560
+ language?: string | undefined;
8561
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8252
8562
  };
8253
8563
  after: {
8254
8564
  name: string;
@@ -8328,12 +8638,19 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8328
8638
  host: string;
8329
8639
  firstObserved?: string | undefined;
8330
8640
  lastObserved?: string | undefined;
8641
+ } | {
8642
+ path: string;
8643
+ type: "FileNode";
8644
+ id: string;
8645
+ service: string;
8646
+ language?: string | undefined;
8647
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8331
8648
  };
8332
8649
  }[];
8333
8650
  edges: {
8334
8651
  id: string;
8335
8652
  before: {
8336
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
8653
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8337
8654
  id: string;
8338
8655
  source: string;
8339
8656
  target: string;
@@ -8353,7 +8670,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8353
8670
  } | undefined;
8354
8671
  };
8355
8672
  after: {
8356
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
8673
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8357
8674
  id: string;
8358
8675
  source: string;
8359
8676
  target: string;
@@ -8460,9 +8777,16 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8460
8777
  host: string;
8461
8778
  firstObserved?: string | undefined;
8462
8779
  lastObserved?: string | undefined;
8780
+ } | {
8781
+ path: string;
8782
+ type: "FileNode";
8783
+ id: string;
8784
+ service: string;
8785
+ language?: string | undefined;
8786
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8463
8787
  })[];
8464
8788
  edges: {
8465
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
8789
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8466
8790
  id: string;
8467
8791
  source: string;
8468
8792
  target: string;
@@ -8561,9 +8885,16 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8561
8885
  host: string;
8562
8886
  firstObserved?: string | undefined;
8563
8887
  lastObserved?: string | undefined;
8888
+ } | {
8889
+ path: string;
8890
+ type: "FileNode";
8891
+ id: string;
8892
+ service: string;
8893
+ language?: string | undefined;
8894
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8564
8895
  })[];
8565
8896
  edges: {
8566
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
8897
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8567
8898
  id: string;
8568
8899
  source: string;
8569
8900
  target: string;
@@ -8664,6 +8995,13 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8664
8995
  host: string;
8665
8996
  firstObserved?: string | undefined;
8666
8997
  lastObserved?: string | undefined;
8998
+ } | {
8999
+ path: string;
9000
+ type: "FileNode";
9001
+ id: string;
9002
+ service: string;
9003
+ language?: string | undefined;
9004
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8667
9005
  };
8668
9006
  after: {
8669
9007
  name: string;
@@ -8743,12 +9081,19 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8743
9081
  host: string;
8744
9082
  firstObserved?: string | undefined;
8745
9083
  lastObserved?: string | undefined;
9084
+ } | {
9085
+ path: string;
9086
+ type: "FileNode";
9087
+ id: string;
9088
+ service: string;
9089
+ language?: string | undefined;
9090
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8746
9091
  };
8747
9092
  }[];
8748
9093
  edges: {
8749
9094
  id: string;
8750
9095
  before: {
8751
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
9096
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8752
9097
  id: string;
8753
9098
  source: string;
8754
9099
  target: string;
@@ -8768,7 +9113,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8768
9113
  } | undefined;
8769
9114
  };
8770
9115
  after: {
8771
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON";
9116
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS";
8772
9117
  id: string;
8773
9118
  source: string;
8774
9119
  target: string;
@@ -8800,4 +9145,4 @@ declare const DEFAULT_EXTRACTED_PRECISION_FLOOR = 0.7;
8800
9145
  declare function extractedPrecisionFloor(): number;
8801
9146
  declare function passesExtractedFloor(confidence: number): boolean;
8802
9147
 
8803
- 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 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, frontierId, inferredEdgeId, infraId, observedEdgeId, parseConfigId, parseDatabaseId, parseEdgeId, parseFrontierId, parseInfraId, parseServiceId, passesExtractedFloor, serviceId };
9148
+ 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 };