@neat.is/types 0.4.25 → 0.4.26-dev.20260703

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.ts CHANGED
@@ -26,10 +26,12 @@ declare const NodeType: {
26
26
  readonly InfraNode: "InfraNode";
27
27
  readonly FrontierNode: "FrontierNode";
28
28
  readonly FileNode: "FileNode";
29
+ readonly RouteNode: "RouteNode";
30
+ readonly GraphQLOperationNode: "GraphQLOperationNode";
29
31
  };
30
32
  type NodeTypeValue = (typeof NodeType)[keyof typeof NodeType];
31
33
 
32
- declare const NodeTypeSchema: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
34
+ declare const NodeTypeSchema: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
33
35
 
34
36
  declare const CompatibleDriverSchema: z.ZodObject<{
35
37
  name: z.ZodString;
@@ -384,6 +386,73 @@ declare const FileNodeSchema: z.ZodObject<{
384
386
  originalPath?: string | undefined;
385
387
  }>;
386
388
  type FileNode = z.infer<typeof FileNodeSchema>;
389
+ declare const RouteNodeSchema: z.ZodObject<{
390
+ id: z.ZodString;
391
+ type: z.ZodLiteral<"RouteNode">;
392
+ name: z.ZodString;
393
+ service: z.ZodString;
394
+ method: z.ZodString;
395
+ pathTemplate: z.ZodString;
396
+ path: z.ZodString;
397
+ line: z.ZodOptional<z.ZodNumber>;
398
+ framework: z.ZodOptional<z.ZodString>;
399
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
400
+ }, "strip", z.ZodTypeAny, {
401
+ name: string;
402
+ path: string;
403
+ type: "RouteNode";
404
+ id: string;
405
+ service: string;
406
+ method: string;
407
+ pathTemplate: string;
408
+ framework?: string | undefined;
409
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
410
+ line?: number | undefined;
411
+ }, {
412
+ name: string;
413
+ path: string;
414
+ type: "RouteNode";
415
+ id: string;
416
+ service: string;
417
+ method: string;
418
+ pathTemplate: string;
419
+ framework?: string | undefined;
420
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
421
+ line?: number | undefined;
422
+ }>;
423
+ type RouteNode = z.infer<typeof RouteNodeSchema>;
424
+ declare const GraphQLOperationNodeSchema: z.ZodObject<{
425
+ id: z.ZodString;
426
+ type: z.ZodLiteral<"GraphQLOperationNode">;
427
+ name: z.ZodString;
428
+ service: z.ZodString;
429
+ operationType: z.ZodString;
430
+ operationName: z.ZodString;
431
+ path: z.ZodOptional<z.ZodString>;
432
+ line: z.ZodOptional<z.ZodNumber>;
433
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
434
+ }, "strip", z.ZodTypeAny, {
435
+ name: string;
436
+ type: "GraphQLOperationNode";
437
+ id: string;
438
+ service: string;
439
+ operationType: string;
440
+ operationName: string;
441
+ path?: string | undefined;
442
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
443
+ line?: number | undefined;
444
+ }, {
445
+ name: string;
446
+ type: "GraphQLOperationNode";
447
+ id: string;
448
+ service: string;
449
+ operationType: string;
450
+ operationName: string;
451
+ path?: string | undefined;
452
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
453
+ line?: number | undefined;
454
+ }>;
455
+ type GraphQLOperationNode = z.infer<typeof GraphQLOperationNodeSchema>;
387
456
  declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
388
457
  id: z.ZodString;
389
458
  type: z.ZodLiteral<"ServiceNode">;
@@ -712,6 +781,69 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
712
781
  language?: string | undefined;
713
782
  discoveredVia?: "static" | "otel" | "merged" | undefined;
714
783
  originalPath?: string | undefined;
784
+ }>, z.ZodObject<{
785
+ id: z.ZodString;
786
+ type: z.ZodLiteral<"RouteNode">;
787
+ name: z.ZodString;
788
+ service: z.ZodString;
789
+ method: z.ZodString;
790
+ pathTemplate: z.ZodString;
791
+ path: z.ZodString;
792
+ line: z.ZodOptional<z.ZodNumber>;
793
+ framework: z.ZodOptional<z.ZodString>;
794
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
795
+ }, "strip", z.ZodTypeAny, {
796
+ name: string;
797
+ path: string;
798
+ type: "RouteNode";
799
+ id: string;
800
+ service: string;
801
+ method: string;
802
+ pathTemplate: string;
803
+ framework?: string | undefined;
804
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
805
+ line?: number | undefined;
806
+ }, {
807
+ name: string;
808
+ path: string;
809
+ type: "RouteNode";
810
+ id: string;
811
+ service: string;
812
+ method: string;
813
+ pathTemplate: string;
814
+ framework?: string | undefined;
815
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
816
+ line?: number | undefined;
817
+ }>, z.ZodObject<{
818
+ id: z.ZodString;
819
+ type: z.ZodLiteral<"GraphQLOperationNode">;
820
+ name: z.ZodString;
821
+ service: z.ZodString;
822
+ operationType: z.ZodString;
823
+ operationName: z.ZodString;
824
+ path: z.ZodOptional<z.ZodString>;
825
+ line: z.ZodOptional<z.ZodNumber>;
826
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
827
+ }, "strip", z.ZodTypeAny, {
828
+ name: string;
829
+ type: "GraphQLOperationNode";
830
+ id: string;
831
+ service: string;
832
+ operationType: string;
833
+ operationName: string;
834
+ path?: string | undefined;
835
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
836
+ line?: number | undefined;
837
+ }, {
838
+ name: string;
839
+ type: "GraphQLOperationNode";
840
+ id: string;
841
+ service: string;
842
+ operationType: string;
843
+ operationName: string;
844
+ path?: string | undefined;
845
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
846
+ line?: number | undefined;
715
847
  }>]>;
716
848
  type GraphNode = z.infer<typeof GraphNodeSchema>;
717
849
 
@@ -721,12 +853,18 @@ declare const EdgeEvidenceSchema: z.ZodObject<{
721
853
  file: z.ZodString;
722
854
  line: z.ZodOptional<z.ZodNumber>;
723
855
  snippet: z.ZodOptional<z.ZodString>;
856
+ method: z.ZodOptional<z.ZodString>;
857
+ pathTemplate: z.ZodOptional<z.ZodString>;
724
858
  }, "strip", z.ZodTypeAny, {
725
859
  file: string;
860
+ method?: string | undefined;
861
+ pathTemplate?: string | undefined;
726
862
  line?: number | undefined;
727
863
  snippet?: string | undefined;
728
864
  }, {
729
865
  file: string;
866
+ method?: string | undefined;
867
+ pathTemplate?: string | undefined;
730
868
  line?: number | undefined;
731
869
  snippet?: string | undefined;
732
870
  }>;
@@ -758,12 +896,18 @@ declare const GraphEdgeSchema: z.ZodObject<{
758
896
  file: z.ZodString;
759
897
  line: z.ZodOptional<z.ZodNumber>;
760
898
  snippet: z.ZodOptional<z.ZodString>;
899
+ method: z.ZodOptional<z.ZodString>;
900
+ pathTemplate: z.ZodOptional<z.ZodString>;
761
901
  }, "strip", z.ZodTypeAny, {
762
902
  file: string;
903
+ method?: string | undefined;
904
+ pathTemplate?: string | undefined;
763
905
  line?: number | undefined;
764
906
  snippet?: string | undefined;
765
907
  }, {
766
908
  file: string;
909
+ method?: string | undefined;
910
+ pathTemplate?: string | undefined;
767
911
  line?: number | undefined;
768
912
  snippet?: string | undefined;
769
913
  }>>;
@@ -791,6 +935,8 @@ declare const GraphEdgeSchema: z.ZodObject<{
791
935
  callCount?: number | undefined;
792
936
  evidence?: {
793
937
  file: string;
938
+ method?: string | undefined;
939
+ pathTemplate?: string | undefined;
794
940
  line?: number | undefined;
795
941
  snippet?: string | undefined;
796
942
  } | undefined;
@@ -810,6 +956,8 @@ declare const GraphEdgeSchema: z.ZodObject<{
810
956
  callCount?: number | undefined;
811
957
  evidence?: {
812
958
  file: string;
959
+ method?: string | undefined;
960
+ pathTemplate?: string | undefined;
813
961
  line?: number | undefined;
814
962
  snippet?: string | undefined;
815
963
  } | undefined;
@@ -1064,12 +1212,18 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1064
1212
  file: z.ZodString;
1065
1213
  line: z.ZodOptional<z.ZodNumber>;
1066
1214
  snippet: z.ZodOptional<z.ZodString>;
1215
+ method: z.ZodOptional<z.ZodString>;
1216
+ pathTemplate: z.ZodOptional<z.ZodString>;
1067
1217
  }, "strip", z.ZodTypeAny, {
1068
1218
  file: string;
1219
+ method?: string | undefined;
1220
+ pathTemplate?: string | undefined;
1069
1221
  line?: number | undefined;
1070
1222
  snippet?: string | undefined;
1071
1223
  }, {
1072
1224
  file: string;
1225
+ method?: string | undefined;
1226
+ pathTemplate?: string | undefined;
1073
1227
  line?: number | undefined;
1074
1228
  snippet?: string | undefined;
1075
1229
  }>>;
@@ -1097,6 +1251,8 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1097
1251
  callCount?: number | undefined;
1098
1252
  evidence?: {
1099
1253
  file: string;
1254
+ method?: string | undefined;
1255
+ pathTemplate?: string | undefined;
1100
1256
  line?: number | undefined;
1101
1257
  snippet?: string | undefined;
1102
1258
  } | undefined;
@@ -1116,6 +1272,8 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1116
1272
  callCount?: number | undefined;
1117
1273
  evidence?: {
1118
1274
  file: string;
1275
+ method?: string | undefined;
1276
+ pathTemplate?: string | undefined;
1119
1277
  line?: number | undefined;
1120
1278
  snippet?: string | undefined;
1121
1279
  } | undefined;
@@ -1140,6 +1298,8 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1140
1298
  callCount?: number | undefined;
1141
1299
  evidence?: {
1142
1300
  file: string;
1301
+ method?: string | undefined;
1302
+ pathTemplate?: string | undefined;
1143
1303
  line?: number | undefined;
1144
1304
  snippet?: string | undefined;
1145
1305
  } | undefined;
@@ -1165,6 +1325,8 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1165
1325
  callCount?: number | undefined;
1166
1326
  evidence?: {
1167
1327
  file: string;
1328
+ method?: string | undefined;
1329
+ pathTemplate?: string | undefined;
1168
1330
  line?: number | undefined;
1169
1331
  snippet?: string | undefined;
1170
1332
  } | undefined;
@@ -1188,6 +1350,7 @@ declare function parseServiceId(id: string): {
1188
1350
  } | null;
1189
1351
  declare function databaseId(host: string): string;
1190
1352
  declare function parseDatabaseId(id: string): string | null;
1353
+ declare function localDatabaseId(service: string, name: string): string;
1191
1354
  declare function configId(relPath: string): string;
1192
1355
  declare function parseConfigId(id: string): string | null;
1193
1356
  declare function infraId(kind: string, name: string): string;
@@ -1202,6 +1365,18 @@ declare function parseFileId(id: string): {
1202
1365
  service: string;
1203
1366
  relPath: string;
1204
1367
  } | null;
1368
+ declare function routeId(service: string, method: string, pathTemplate: string): string;
1369
+ declare function parseRouteId(id: string): {
1370
+ service: string;
1371
+ method: string;
1372
+ pathTemplate: string;
1373
+ } | null;
1374
+ declare function graphqlOperationId(service: string, operationType: string, operationName: string): string;
1375
+ declare function parseGraphqlOperationId(id: string): {
1376
+ service: string;
1377
+ operationType: string;
1378
+ operationName: string;
1379
+ } | null;
1205
1380
  declare function extractedEdgeId(source: string, target: string, type: string): string;
1206
1381
  declare function observedEdgeId(source: string, target: string, type: string): string;
1207
1382
  declare function inferredEdgeId(source: string, target: string, type: string): string;
@@ -1219,19 +1394,19 @@ declare const PolicyActionSchema: z.ZodEnum<["log", "alert", "block"]>;
1219
1394
  type PolicyAction = z.infer<typeof PolicyActionSchema>;
1220
1395
  declare const StructuralRuleSchema: z.ZodObject<{
1221
1396
  type: z.ZodLiteral<"structural">;
1222
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1397
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1223
1398
  edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1224
- toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1399
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1225
1400
  }, "strip", z.ZodTypeAny, {
1226
1401
  type: "structural";
1227
1402
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1228
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1229
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1403
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1404
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1230
1405
  }, {
1231
1406
  type: "structural";
1232
1407
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1233
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1234
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1408
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1409
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1235
1410
  }>;
1236
1411
  type StructuralRule = z.infer<typeof StructuralRuleSchema>;
1237
1412
  declare const CompatibilityRuleSchema: z.ZodObject<{
@@ -1264,50 +1439,50 @@ declare const ProvenanceRuleSchema: z.ZodObject<{
1264
1439
  type ProvenanceRule = z.infer<typeof ProvenanceRuleSchema>;
1265
1440
  declare const OwnershipRuleSchema: z.ZodObject<{
1266
1441
  type: z.ZodLiteral<"ownership">;
1267
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1442
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1268
1443
  field: z.ZodDefault<z.ZodString>;
1269
1444
  }, "strip", z.ZodTypeAny, {
1270
1445
  type: "ownership";
1271
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1446
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1272
1447
  field: string;
1273
1448
  }, {
1274
1449
  type: "ownership";
1275
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1450
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1276
1451
  field?: string | undefined;
1277
1452
  }>;
1278
1453
  type OwnershipRule = z.infer<typeof OwnershipRuleSchema>;
1279
1454
  declare const BlastRadiusRuleSchema: z.ZodObject<{
1280
1455
  type: z.ZodLiteral<"blast-radius">;
1281
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1456
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1282
1457
  maxAffected: z.ZodNumber;
1283
1458
  depth: z.ZodOptional<z.ZodNumber>;
1284
1459
  }, "strip", z.ZodTypeAny, {
1285
1460
  type: "blast-radius";
1286
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1461
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1287
1462
  maxAffected: number;
1288
1463
  depth?: number | undefined;
1289
1464
  }, {
1290
1465
  type: "blast-radius";
1291
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1466
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1292
1467
  maxAffected: number;
1293
1468
  depth?: number | undefined;
1294
1469
  }>;
1295
1470
  type BlastRadiusRule = z.infer<typeof BlastRadiusRuleSchema>;
1296
1471
  declare const PolicyRuleSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1297
1472
  type: z.ZodLiteral<"structural">;
1298
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1473
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1299
1474
  edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1300
- toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1475
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1301
1476
  }, "strip", z.ZodTypeAny, {
1302
1477
  type: "structural";
1303
1478
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1304
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1305
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1479
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1480
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1306
1481
  }, {
1307
1482
  type: "structural";
1308
1483
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1309
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1310
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1484
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1485
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1311
1486
  }>, z.ZodObject<{
1312
1487
  type: z.ZodLiteral<"compatibility">;
1313
1488
  kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
@@ -1334,29 +1509,29 @@ declare const PolicyRuleSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1334
1509
  targetNodeId?: string | undefined;
1335
1510
  }>, z.ZodObject<{
1336
1511
  type: z.ZodLiteral<"ownership">;
1337
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1512
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1338
1513
  field: z.ZodDefault<z.ZodString>;
1339
1514
  }, "strip", z.ZodTypeAny, {
1340
1515
  type: "ownership";
1341
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1516
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1342
1517
  field: string;
1343
1518
  }, {
1344
1519
  type: "ownership";
1345
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1520
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1346
1521
  field?: string | undefined;
1347
1522
  }>, z.ZodObject<{
1348
1523
  type: z.ZodLiteral<"blast-radius">;
1349
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1524
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1350
1525
  maxAffected: z.ZodNumber;
1351
1526
  depth: z.ZodOptional<z.ZodNumber>;
1352
1527
  }, "strip", z.ZodTypeAny, {
1353
1528
  type: "blast-radius";
1354
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1529
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1355
1530
  maxAffected: number;
1356
1531
  depth?: number | undefined;
1357
1532
  }, {
1358
1533
  type: "blast-radius";
1359
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1534
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1360
1535
  maxAffected: number;
1361
1536
  depth?: number | undefined;
1362
1537
  }>]>;
@@ -1369,19 +1544,19 @@ declare const PolicySchema: z.ZodObject<{
1369
1544
  onViolation: z.ZodOptional<z.ZodEnum<["log", "alert", "block"]>>;
1370
1545
  rule: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1371
1546
  type: z.ZodLiteral<"structural">;
1372
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1547
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1373
1548
  edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1374
- toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1549
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1375
1550
  }, "strip", z.ZodTypeAny, {
1376
1551
  type: "structural";
1377
1552
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1378
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1379
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1553
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1554
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1380
1555
  }, {
1381
1556
  type: "structural";
1382
1557
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1383
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1384
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1558
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1559
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1385
1560
  }>, z.ZodObject<{
1386
1561
  type: z.ZodLiteral<"compatibility">;
1387
1562
  kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
@@ -1408,29 +1583,29 @@ declare const PolicySchema: z.ZodObject<{
1408
1583
  targetNodeId?: string | undefined;
1409
1584
  }>, z.ZodObject<{
1410
1585
  type: z.ZodLiteral<"ownership">;
1411
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1586
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1412
1587
  field: z.ZodDefault<z.ZodString>;
1413
1588
  }, "strip", z.ZodTypeAny, {
1414
1589
  type: "ownership";
1415
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1590
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1416
1591
  field: string;
1417
1592
  }, {
1418
1593
  type: "ownership";
1419
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1594
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1420
1595
  field?: string | undefined;
1421
1596
  }>, z.ZodObject<{
1422
1597
  type: z.ZodLiteral<"blast-radius">;
1423
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1598
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1424
1599
  maxAffected: z.ZodNumber;
1425
1600
  depth: z.ZodOptional<z.ZodNumber>;
1426
1601
  }, "strip", z.ZodTypeAny, {
1427
1602
  type: "blast-radius";
1428
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1603
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1429
1604
  maxAffected: number;
1430
1605
  depth?: number | undefined;
1431
1606
  }, {
1432
1607
  type: "blast-radius";
1433
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1608
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1434
1609
  maxAffected: number;
1435
1610
  depth?: number | undefined;
1436
1611
  }>]>;
@@ -1441,8 +1616,8 @@ declare const PolicySchema: z.ZodObject<{
1441
1616
  rule: {
1442
1617
  type: "structural";
1443
1618
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1444
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1445
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1619
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1620
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1446
1621
  } | {
1447
1622
  type: "compatibility";
1448
1623
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1453,11 +1628,11 @@ declare const PolicySchema: z.ZodObject<{
1453
1628
  targetNodeId?: string | undefined;
1454
1629
  } | {
1455
1630
  type: "ownership";
1456
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1631
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1457
1632
  field: string;
1458
1633
  } | {
1459
1634
  type: "blast-radius";
1460
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1635
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1461
1636
  maxAffected: number;
1462
1637
  depth?: number | undefined;
1463
1638
  };
@@ -1470,8 +1645,8 @@ declare const PolicySchema: z.ZodObject<{
1470
1645
  rule: {
1471
1646
  type: "structural";
1472
1647
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1473
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1474
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1648
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1649
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1475
1650
  } | {
1476
1651
  type: "compatibility";
1477
1652
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1482,11 +1657,11 @@ declare const PolicySchema: z.ZodObject<{
1482
1657
  targetNodeId?: string | undefined;
1483
1658
  } | {
1484
1659
  type: "ownership";
1485
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1660
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1486
1661
  field?: string | undefined;
1487
1662
  } | {
1488
1663
  type: "blast-radius";
1489
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1664
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1490
1665
  maxAffected: number;
1491
1666
  depth?: number | undefined;
1492
1667
  };
@@ -1504,19 +1679,19 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1504
1679
  onViolation: z.ZodOptional<z.ZodEnum<["log", "alert", "block"]>>;
1505
1680
  rule: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1506
1681
  type: z.ZodLiteral<"structural">;
1507
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1682
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1508
1683
  edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
1509
- toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1684
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1510
1685
  }, "strip", z.ZodTypeAny, {
1511
1686
  type: "structural";
1512
1687
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1513
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1514
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1688
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1689
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1515
1690
  }, {
1516
1691
  type: "structural";
1517
1692
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1518
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1519
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1693
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1694
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1520
1695
  }>, z.ZodObject<{
1521
1696
  type: z.ZodLiteral<"compatibility">;
1522
1697
  kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
@@ -1543,29 +1718,29 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1543
1718
  targetNodeId?: string | undefined;
1544
1719
  }>, z.ZodObject<{
1545
1720
  type: z.ZodLiteral<"ownership">;
1546
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1721
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1547
1722
  field: z.ZodDefault<z.ZodString>;
1548
1723
  }, "strip", z.ZodTypeAny, {
1549
1724
  type: "ownership";
1550
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1725
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1551
1726
  field: string;
1552
1727
  }, {
1553
1728
  type: "ownership";
1554
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1729
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1555
1730
  field?: string | undefined;
1556
1731
  }>, z.ZodObject<{
1557
1732
  type: z.ZodLiteral<"blast-radius">;
1558
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1733
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
1559
1734
  maxAffected: z.ZodNumber;
1560
1735
  depth: z.ZodOptional<z.ZodNumber>;
1561
1736
  }, "strip", z.ZodTypeAny, {
1562
1737
  type: "blast-radius";
1563
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1738
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1564
1739
  maxAffected: number;
1565
1740
  depth?: number | undefined;
1566
1741
  }, {
1567
1742
  type: "blast-radius";
1568
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1743
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1569
1744
  maxAffected: number;
1570
1745
  depth?: number | undefined;
1571
1746
  }>]>;
@@ -1576,8 +1751,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1576
1751
  rule: {
1577
1752
  type: "structural";
1578
1753
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1579
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1580
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1754
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1755
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1581
1756
  } | {
1582
1757
  type: "compatibility";
1583
1758
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1588,11 +1763,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1588
1763
  targetNodeId?: string | undefined;
1589
1764
  } | {
1590
1765
  type: "ownership";
1591
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1766
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1592
1767
  field: string;
1593
1768
  } | {
1594
1769
  type: "blast-radius";
1595
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1770
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1596
1771
  maxAffected: number;
1597
1772
  depth?: number | undefined;
1598
1773
  };
@@ -1605,8 +1780,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1605
1780
  rule: {
1606
1781
  type: "structural";
1607
1782
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1608
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1609
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1783
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1784
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1610
1785
  } | {
1611
1786
  type: "compatibility";
1612
1787
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1617,11 +1792,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1617
1792
  targetNodeId?: string | undefined;
1618
1793
  } | {
1619
1794
  type: "ownership";
1620
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1795
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1621
1796
  field?: string | undefined;
1622
1797
  } | {
1623
1798
  type: "blast-radius";
1624
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1799
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1625
1800
  maxAffected: number;
1626
1801
  depth?: number | undefined;
1627
1802
  };
@@ -1637,8 +1812,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1637
1812
  rule: {
1638
1813
  type: "structural";
1639
1814
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1640
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1641
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1815
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1816
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1642
1817
  } | {
1643
1818
  type: "compatibility";
1644
1819
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1649,11 +1824,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1649
1824
  targetNodeId?: string | undefined;
1650
1825
  } | {
1651
1826
  type: "ownership";
1652
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1827
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1653
1828
  field: string;
1654
1829
  } | {
1655
1830
  type: "blast-radius";
1656
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1831
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1657
1832
  maxAffected: number;
1658
1833
  depth?: number | undefined;
1659
1834
  };
@@ -1669,8 +1844,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1669
1844
  rule: {
1670
1845
  type: "structural";
1671
1846
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1672
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1673
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1847
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1848
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1674
1849
  } | {
1675
1850
  type: "compatibility";
1676
1851
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1681,11 +1856,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1681
1856
  targetNodeId?: string | undefined;
1682
1857
  } | {
1683
1858
  type: "ownership";
1684
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1859
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1685
1860
  field?: string | undefined;
1686
1861
  } | {
1687
1862
  type: "blast-radius";
1688
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1863
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1689
1864
  maxAffected: number;
1690
1865
  depth?: number | undefined;
1691
1866
  };
@@ -1701,8 +1876,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1701
1876
  rule: {
1702
1877
  type: "structural";
1703
1878
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1704
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1705
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1879
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1880
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1706
1881
  } | {
1707
1882
  type: "compatibility";
1708
1883
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1713,11 +1888,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1713
1888
  targetNodeId?: string | undefined;
1714
1889
  } | {
1715
1890
  type: "ownership";
1716
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1891
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1717
1892
  field: string;
1718
1893
  } | {
1719
1894
  type: "blast-radius";
1720
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1895
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1721
1896
  maxAffected: number;
1722
1897
  depth?: number | undefined;
1723
1898
  };
@@ -1733,8 +1908,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1733
1908
  rule: {
1734
1909
  type: "structural";
1735
1910
  edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
1736
- fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1737
- toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1911
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1912
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1738
1913
  } | {
1739
1914
  type: "compatibility";
1740
1915
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1745,11 +1920,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1745
1920
  targetNodeId?: string | undefined;
1746
1921
  } | {
1747
1922
  type: "ownership";
1748
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1923
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1749
1924
  field?: string | undefined;
1750
1925
  } | {
1751
1926
  type: "blast-radius";
1752
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1927
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
1753
1928
  maxAffected: number;
1754
1929
  depth?: number | undefined;
1755
1930
  };
@@ -2082,12 +2257,18 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2082
2257
  file: z.ZodString;
2083
2258
  line: z.ZodOptional<z.ZodNumber>;
2084
2259
  snippet: z.ZodOptional<z.ZodString>;
2260
+ method: z.ZodOptional<z.ZodString>;
2261
+ pathTemplate: z.ZodOptional<z.ZodString>;
2085
2262
  }, "strip", z.ZodTypeAny, {
2086
2263
  file: string;
2264
+ method?: string | undefined;
2265
+ pathTemplate?: string | undefined;
2087
2266
  line?: number | undefined;
2088
2267
  snippet?: string | undefined;
2089
2268
  }, {
2090
2269
  file: string;
2270
+ method?: string | undefined;
2271
+ pathTemplate?: string | undefined;
2091
2272
  line?: number | undefined;
2092
2273
  snippet?: string | undefined;
2093
2274
  }>>;
@@ -2115,6 +2296,8 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2115
2296
  callCount?: number | undefined;
2116
2297
  evidence?: {
2117
2298
  file: string;
2299
+ method?: string | undefined;
2300
+ pathTemplate?: string | undefined;
2118
2301
  line?: number | undefined;
2119
2302
  snippet?: string | undefined;
2120
2303
  } | undefined;
@@ -2134,6 +2317,8 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2134
2317
  callCount?: number | undefined;
2135
2318
  evidence?: {
2136
2319
  file: string;
2320
+ method?: string | undefined;
2321
+ pathTemplate?: string | undefined;
2137
2322
  line?: number | undefined;
2138
2323
  snippet?: string | undefined;
2139
2324
  } | undefined;
@@ -2167,6 +2352,8 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2167
2352
  callCount?: number | undefined;
2168
2353
  evidence?: {
2169
2354
  file: string;
2355
+ method?: string | undefined;
2356
+ pathTemplate?: string | undefined;
2170
2357
  line?: number | undefined;
2171
2358
  snippet?: string | undefined;
2172
2359
  } | undefined;
@@ -2195,6 +2382,8 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2195
2382
  callCount?: number | undefined;
2196
2383
  evidence?: {
2197
2384
  file: string;
2385
+ method?: string | undefined;
2386
+ pathTemplate?: string | undefined;
2198
2387
  line?: number | undefined;
2199
2388
  snippet?: string | undefined;
2200
2389
  } | undefined;
@@ -2222,12 +2411,18 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2222
2411
  file: z.ZodString;
2223
2412
  line: z.ZodOptional<z.ZodNumber>;
2224
2413
  snippet: z.ZodOptional<z.ZodString>;
2414
+ method: z.ZodOptional<z.ZodString>;
2415
+ pathTemplate: z.ZodOptional<z.ZodString>;
2225
2416
  }, "strip", z.ZodTypeAny, {
2226
2417
  file: string;
2418
+ method?: string | undefined;
2419
+ pathTemplate?: string | undefined;
2227
2420
  line?: number | undefined;
2228
2421
  snippet?: string | undefined;
2229
2422
  }, {
2230
2423
  file: string;
2424
+ method?: string | undefined;
2425
+ pathTemplate?: string | undefined;
2231
2426
  line?: number | undefined;
2232
2427
  snippet?: string | undefined;
2233
2428
  }>>;
@@ -2255,6 +2450,8 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2255
2450
  callCount?: number | undefined;
2256
2451
  evidence?: {
2257
2452
  file: string;
2453
+ method?: string | undefined;
2454
+ pathTemplate?: string | undefined;
2258
2455
  line?: number | undefined;
2259
2456
  snippet?: string | undefined;
2260
2457
  } | undefined;
@@ -2274,6 +2471,8 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2274
2471
  callCount?: number | undefined;
2275
2472
  evidence?: {
2276
2473
  file: string;
2474
+ method?: string | undefined;
2475
+ pathTemplate?: string | undefined;
2277
2476
  line?: number | undefined;
2278
2477
  snippet?: string | undefined;
2279
2478
  } | undefined;
@@ -2307,6 +2506,8 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2307
2506
  callCount?: number | undefined;
2308
2507
  evidence?: {
2309
2508
  file: string;
2509
+ method?: string | undefined;
2510
+ pathTemplate?: string | undefined;
2310
2511
  line?: number | undefined;
2311
2512
  snippet?: string | undefined;
2312
2513
  } | undefined;
@@ -2335,6 +2536,8 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2335
2536
  callCount?: number | undefined;
2336
2537
  evidence?: {
2337
2538
  file: string;
2539
+ method?: string | undefined;
2540
+ pathTemplate?: string | undefined;
2338
2541
  line?: number | undefined;
2339
2542
  snippet?: string | undefined;
2340
2543
  } | undefined;
@@ -2463,12 +2666,18 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2463
2666
  file: z.ZodString;
2464
2667
  line: z.ZodOptional<z.ZodNumber>;
2465
2668
  snippet: z.ZodOptional<z.ZodString>;
2669
+ method: z.ZodOptional<z.ZodString>;
2670
+ pathTemplate: z.ZodOptional<z.ZodString>;
2466
2671
  }, "strip", z.ZodTypeAny, {
2467
2672
  file: string;
2673
+ method?: string | undefined;
2674
+ pathTemplate?: string | undefined;
2468
2675
  line?: number | undefined;
2469
2676
  snippet?: string | undefined;
2470
2677
  }, {
2471
2678
  file: string;
2679
+ method?: string | undefined;
2680
+ pathTemplate?: string | undefined;
2472
2681
  line?: number | undefined;
2473
2682
  snippet?: string | undefined;
2474
2683
  }>>;
@@ -2496,6 +2705,8 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2496
2705
  callCount?: number | undefined;
2497
2706
  evidence?: {
2498
2707
  file: string;
2708
+ method?: string | undefined;
2709
+ pathTemplate?: string | undefined;
2499
2710
  line?: number | undefined;
2500
2711
  snippet?: string | undefined;
2501
2712
  } | undefined;
@@ -2515,6 +2726,8 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2515
2726
  callCount?: number | undefined;
2516
2727
  evidence?: {
2517
2728
  file: string;
2729
+ method?: string | undefined;
2730
+ pathTemplate?: string | undefined;
2518
2731
  line?: number | undefined;
2519
2732
  snippet?: string | undefined;
2520
2733
  } | undefined;
@@ -2547,6 +2760,8 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2547
2760
  callCount?: number | undefined;
2548
2761
  evidence?: {
2549
2762
  file: string;
2763
+ method?: string | undefined;
2764
+ pathTemplate?: string | undefined;
2550
2765
  line?: number | undefined;
2551
2766
  snippet?: string | undefined;
2552
2767
  } | undefined;
@@ -2581,6 +2796,8 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2581
2796
  callCount?: number | undefined;
2582
2797
  evidence?: {
2583
2798
  file: string;
2799
+ method?: string | undefined;
2800
+ pathTemplate?: string | undefined;
2584
2801
  line?: number | undefined;
2585
2802
  snippet?: string | undefined;
2586
2803
  } | undefined;
@@ -2615,12 +2832,18 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2615
2832
  file: z.ZodString;
2616
2833
  line: z.ZodOptional<z.ZodNumber>;
2617
2834
  snippet: z.ZodOptional<z.ZodString>;
2835
+ method: z.ZodOptional<z.ZodString>;
2836
+ pathTemplate: z.ZodOptional<z.ZodString>;
2618
2837
  }, "strip", z.ZodTypeAny, {
2619
2838
  file: string;
2839
+ method?: string | undefined;
2840
+ pathTemplate?: string | undefined;
2620
2841
  line?: number | undefined;
2621
2842
  snippet?: string | undefined;
2622
2843
  }, {
2623
2844
  file: string;
2845
+ method?: string | undefined;
2846
+ pathTemplate?: string | undefined;
2624
2847
  line?: number | undefined;
2625
2848
  snippet?: string | undefined;
2626
2849
  }>>;
@@ -2648,6 +2871,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2648
2871
  callCount?: number | undefined;
2649
2872
  evidence?: {
2650
2873
  file: string;
2874
+ method?: string | undefined;
2875
+ pathTemplate?: string | undefined;
2651
2876
  line?: number | undefined;
2652
2877
  snippet?: string | undefined;
2653
2878
  } | undefined;
@@ -2667,6 +2892,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2667
2892
  callCount?: number | undefined;
2668
2893
  evidence?: {
2669
2894
  file: string;
2895
+ method?: string | undefined;
2896
+ pathTemplate?: string | undefined;
2670
2897
  line?: number | undefined;
2671
2898
  snippet?: string | undefined;
2672
2899
  } | undefined;
@@ -2700,6 +2927,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2700
2927
  callCount?: number | undefined;
2701
2928
  evidence?: {
2702
2929
  file: string;
2930
+ method?: string | undefined;
2931
+ pathTemplate?: string | undefined;
2703
2932
  line?: number | undefined;
2704
2933
  snippet?: string | undefined;
2705
2934
  } | undefined;
@@ -2728,6 +2957,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2728
2957
  callCount?: number | undefined;
2729
2958
  evidence?: {
2730
2959
  file: string;
2960
+ method?: string | undefined;
2961
+ pathTemplate?: string | undefined;
2731
2962
  line?: number | undefined;
2732
2963
  snippet?: string | undefined;
2733
2964
  } | undefined;
@@ -2753,12 +2984,18 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2753
2984
  file: z.ZodString;
2754
2985
  line: z.ZodOptional<z.ZodNumber>;
2755
2986
  snippet: z.ZodOptional<z.ZodString>;
2987
+ method: z.ZodOptional<z.ZodString>;
2988
+ pathTemplate: z.ZodOptional<z.ZodString>;
2756
2989
  }, "strip", z.ZodTypeAny, {
2757
2990
  file: string;
2991
+ method?: string | undefined;
2992
+ pathTemplate?: string | undefined;
2758
2993
  line?: number | undefined;
2759
2994
  snippet?: string | undefined;
2760
2995
  }, {
2761
2996
  file: string;
2997
+ method?: string | undefined;
2998
+ pathTemplate?: string | undefined;
2762
2999
  line?: number | undefined;
2763
3000
  snippet?: string | undefined;
2764
3001
  }>>;
@@ -2786,6 +3023,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2786
3023
  callCount?: number | undefined;
2787
3024
  evidence?: {
2788
3025
  file: string;
3026
+ method?: string | undefined;
3027
+ pathTemplate?: string | undefined;
2789
3028
  line?: number | undefined;
2790
3029
  snippet?: string | undefined;
2791
3030
  } | undefined;
@@ -2805,6 +3044,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2805
3044
  callCount?: number | undefined;
2806
3045
  evidence?: {
2807
3046
  file: string;
3047
+ method?: string | undefined;
3048
+ pathTemplate?: string | undefined;
2808
3049
  line?: number | undefined;
2809
3050
  snippet?: string | undefined;
2810
3051
  } | undefined;
@@ -2838,6 +3079,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2838
3079
  callCount?: number | undefined;
2839
3080
  evidence?: {
2840
3081
  file: string;
3082
+ method?: string | undefined;
3083
+ pathTemplate?: string | undefined;
2841
3084
  line?: number | undefined;
2842
3085
  snippet?: string | undefined;
2843
3086
  } | undefined;
@@ -2866,6 +3109,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2866
3109
  callCount?: number | undefined;
2867
3110
  evidence?: {
2868
3111
  file: string;
3112
+ method?: string | undefined;
3113
+ pathTemplate?: string | undefined;
2869
3114
  line?: number | undefined;
2870
3115
  snippet?: string | undefined;
2871
3116
  } | undefined;
@@ -2966,12 +3211,18 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2966
3211
  file: z.ZodString;
2967
3212
  line: z.ZodOptional<z.ZodNumber>;
2968
3213
  snippet: z.ZodOptional<z.ZodString>;
3214
+ method: z.ZodOptional<z.ZodString>;
3215
+ pathTemplate: z.ZodOptional<z.ZodString>;
2969
3216
  }, "strip", z.ZodTypeAny, {
2970
3217
  file: string;
3218
+ method?: string | undefined;
3219
+ pathTemplate?: string | undefined;
2971
3220
  line?: number | undefined;
2972
3221
  snippet?: string | undefined;
2973
3222
  }, {
2974
3223
  file: string;
3224
+ method?: string | undefined;
3225
+ pathTemplate?: string | undefined;
2975
3226
  line?: number | undefined;
2976
3227
  snippet?: string | undefined;
2977
3228
  }>>;
@@ -2999,6 +3250,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2999
3250
  callCount?: number | undefined;
3000
3251
  evidence?: {
3001
3252
  file: string;
3253
+ method?: string | undefined;
3254
+ pathTemplate?: string | undefined;
3002
3255
  line?: number | undefined;
3003
3256
  snippet?: string | undefined;
3004
3257
  } | undefined;
@@ -3018,6 +3271,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3018
3271
  callCount?: number | undefined;
3019
3272
  evidence?: {
3020
3273
  file: string;
3274
+ method?: string | undefined;
3275
+ pathTemplate?: string | undefined;
3021
3276
  line?: number | undefined;
3022
3277
  snippet?: string | undefined;
3023
3278
  } | undefined;
@@ -3050,6 +3305,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3050
3305
  callCount?: number | undefined;
3051
3306
  evidence?: {
3052
3307
  file: string;
3308
+ method?: string | undefined;
3309
+ pathTemplate?: string | undefined;
3053
3310
  line?: number | undefined;
3054
3311
  snippet?: string | undefined;
3055
3312
  } | undefined;
@@ -3084,6 +3341,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3084
3341
  callCount?: number | undefined;
3085
3342
  evidence?: {
3086
3343
  file: string;
3344
+ method?: string | undefined;
3345
+ pathTemplate?: string | undefined;
3087
3346
  line?: number | undefined;
3088
3347
  snippet?: string | undefined;
3089
3348
  } | undefined;
@@ -3119,12 +3378,18 @@ declare const DivergenceResultSchema: z.ZodObject<{
3119
3378
  file: z.ZodString;
3120
3379
  line: z.ZodOptional<z.ZodNumber>;
3121
3380
  snippet: z.ZodOptional<z.ZodString>;
3381
+ method: z.ZodOptional<z.ZodString>;
3382
+ pathTemplate: z.ZodOptional<z.ZodString>;
3122
3383
  }, "strip", z.ZodTypeAny, {
3123
3384
  file: string;
3385
+ method?: string | undefined;
3386
+ pathTemplate?: string | undefined;
3124
3387
  line?: number | undefined;
3125
3388
  snippet?: string | undefined;
3126
3389
  }, {
3127
3390
  file: string;
3391
+ method?: string | undefined;
3392
+ pathTemplate?: string | undefined;
3128
3393
  line?: number | undefined;
3129
3394
  snippet?: string | undefined;
3130
3395
  }>>;
@@ -3152,6 +3417,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3152
3417
  callCount?: number | undefined;
3153
3418
  evidence?: {
3154
3419
  file: string;
3420
+ method?: string | undefined;
3421
+ pathTemplate?: string | undefined;
3155
3422
  line?: number | undefined;
3156
3423
  snippet?: string | undefined;
3157
3424
  } | undefined;
@@ -3171,6 +3438,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3171
3438
  callCount?: number | undefined;
3172
3439
  evidence?: {
3173
3440
  file: string;
3441
+ method?: string | undefined;
3442
+ pathTemplate?: string | undefined;
3174
3443
  line?: number | undefined;
3175
3444
  snippet?: string | undefined;
3176
3445
  } | undefined;
@@ -3204,6 +3473,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3204
3473
  callCount?: number | undefined;
3205
3474
  evidence?: {
3206
3475
  file: string;
3476
+ method?: string | undefined;
3477
+ pathTemplate?: string | undefined;
3207
3478
  line?: number | undefined;
3208
3479
  snippet?: string | undefined;
3209
3480
  } | undefined;
@@ -3232,6 +3503,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3232
3503
  callCount?: number | undefined;
3233
3504
  evidence?: {
3234
3505
  file: string;
3506
+ method?: string | undefined;
3507
+ pathTemplate?: string | undefined;
3235
3508
  line?: number | undefined;
3236
3509
  snippet?: string | undefined;
3237
3510
  } | undefined;
@@ -3257,12 +3530,18 @@ declare const DivergenceResultSchema: z.ZodObject<{
3257
3530
  file: z.ZodString;
3258
3531
  line: z.ZodOptional<z.ZodNumber>;
3259
3532
  snippet: z.ZodOptional<z.ZodString>;
3533
+ method: z.ZodOptional<z.ZodString>;
3534
+ pathTemplate: z.ZodOptional<z.ZodString>;
3260
3535
  }, "strip", z.ZodTypeAny, {
3261
3536
  file: string;
3537
+ method?: string | undefined;
3538
+ pathTemplate?: string | undefined;
3262
3539
  line?: number | undefined;
3263
3540
  snippet?: string | undefined;
3264
3541
  }, {
3265
3542
  file: string;
3543
+ method?: string | undefined;
3544
+ pathTemplate?: string | undefined;
3266
3545
  line?: number | undefined;
3267
3546
  snippet?: string | undefined;
3268
3547
  }>>;
@@ -3290,6 +3569,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3290
3569
  callCount?: number | undefined;
3291
3570
  evidence?: {
3292
3571
  file: string;
3572
+ method?: string | undefined;
3573
+ pathTemplate?: string | undefined;
3293
3574
  line?: number | undefined;
3294
3575
  snippet?: string | undefined;
3295
3576
  } | undefined;
@@ -3309,6 +3590,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3309
3590
  callCount?: number | undefined;
3310
3591
  evidence?: {
3311
3592
  file: string;
3593
+ method?: string | undefined;
3594
+ pathTemplate?: string | undefined;
3312
3595
  line?: number | undefined;
3313
3596
  snippet?: string | undefined;
3314
3597
  } | undefined;
@@ -3342,6 +3625,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3342
3625
  callCount?: number | undefined;
3343
3626
  evidence?: {
3344
3627
  file: string;
3628
+ method?: string | undefined;
3629
+ pathTemplate?: string | undefined;
3345
3630
  line?: number | undefined;
3346
3631
  snippet?: string | undefined;
3347
3632
  } | undefined;
@@ -3370,6 +3655,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3370
3655
  callCount?: number | undefined;
3371
3656
  evidence?: {
3372
3657
  file: string;
3658
+ method?: string | undefined;
3659
+ pathTemplate?: string | undefined;
3373
3660
  line?: number | undefined;
3374
3661
  snippet?: string | undefined;
3375
3662
  } | undefined;
@@ -3470,12 +3757,18 @@ declare const DivergenceResultSchema: z.ZodObject<{
3470
3757
  file: z.ZodString;
3471
3758
  line: z.ZodOptional<z.ZodNumber>;
3472
3759
  snippet: z.ZodOptional<z.ZodString>;
3760
+ method: z.ZodOptional<z.ZodString>;
3761
+ pathTemplate: z.ZodOptional<z.ZodString>;
3473
3762
  }, "strip", z.ZodTypeAny, {
3474
3763
  file: string;
3764
+ method?: string | undefined;
3765
+ pathTemplate?: string | undefined;
3475
3766
  line?: number | undefined;
3476
3767
  snippet?: string | undefined;
3477
3768
  }, {
3478
3769
  file: string;
3770
+ method?: string | undefined;
3771
+ pathTemplate?: string | undefined;
3479
3772
  line?: number | undefined;
3480
3773
  snippet?: string | undefined;
3481
3774
  }>>;
@@ -3503,6 +3796,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3503
3796
  callCount?: number | undefined;
3504
3797
  evidence?: {
3505
3798
  file: string;
3799
+ method?: string | undefined;
3800
+ pathTemplate?: string | undefined;
3506
3801
  line?: number | undefined;
3507
3802
  snippet?: string | undefined;
3508
3803
  } | undefined;
@@ -3522,6 +3817,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3522
3817
  callCount?: number | undefined;
3523
3818
  evidence?: {
3524
3819
  file: string;
3820
+ method?: string | undefined;
3821
+ pathTemplate?: string | undefined;
3525
3822
  line?: number | undefined;
3526
3823
  snippet?: string | undefined;
3527
3824
  } | undefined;
@@ -3554,6 +3851,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3554
3851
  callCount?: number | undefined;
3555
3852
  evidence?: {
3556
3853
  file: string;
3854
+ method?: string | undefined;
3855
+ pathTemplate?: string | undefined;
3557
3856
  line?: number | undefined;
3558
3857
  snippet?: string | undefined;
3559
3858
  } | undefined;
@@ -3588,6 +3887,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3588
3887
  callCount?: number | undefined;
3589
3888
  evidence?: {
3590
3889
  file: string;
3890
+ method?: string | undefined;
3891
+ pathTemplate?: string | undefined;
3591
3892
  line?: number | undefined;
3592
3893
  snippet?: string | undefined;
3593
3894
  } | undefined;
@@ -3628,6 +3929,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3628
3929
  callCount?: number | undefined;
3629
3930
  evidence?: {
3630
3931
  file: string;
3932
+ method?: string | undefined;
3933
+ pathTemplate?: string | undefined;
3631
3934
  line?: number | undefined;
3632
3935
  snippet?: string | undefined;
3633
3936
  } | undefined;
@@ -3656,6 +3959,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3656
3959
  callCount?: number | undefined;
3657
3960
  evidence?: {
3658
3961
  file: string;
3962
+ method?: string | undefined;
3963
+ pathTemplate?: string | undefined;
3659
3964
  line?: number | undefined;
3660
3965
  snippet?: string | undefined;
3661
3966
  } | undefined;
@@ -3702,6 +4007,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3702
4007
  callCount?: number | undefined;
3703
4008
  evidence?: {
3704
4009
  file: string;
4010
+ method?: string | undefined;
4011
+ pathTemplate?: string | undefined;
3705
4012
  line?: number | undefined;
3706
4013
  snippet?: string | undefined;
3707
4014
  } | undefined;
@@ -3741,6 +4048,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3741
4048
  callCount?: number | undefined;
3742
4049
  evidence?: {
3743
4050
  file: string;
4051
+ method?: string | undefined;
4052
+ pathTemplate?: string | undefined;
3744
4053
  line?: number | undefined;
3745
4054
  snippet?: string | undefined;
3746
4055
  } | undefined;
@@ -3769,6 +4078,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3769
4078
  callCount?: number | undefined;
3770
4079
  evidence?: {
3771
4080
  file: string;
4081
+ method?: string | undefined;
4082
+ pathTemplate?: string | undefined;
3772
4083
  line?: number | undefined;
3773
4084
  snippet?: string | undefined;
3774
4085
  } | undefined;
@@ -3815,6 +4126,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3815
4126
  callCount?: number | undefined;
3816
4127
  evidence?: {
3817
4128
  file: string;
4129
+ method?: string | undefined;
4130
+ pathTemplate?: string | undefined;
3818
4131
  line?: number | undefined;
3819
4132
  snippet?: string | undefined;
3820
4133
  } | undefined;
@@ -4418,6 +4731,69 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
4418
4731
  language?: string | undefined;
4419
4732
  discoveredVia?: "static" | "otel" | "merged" | undefined;
4420
4733
  originalPath?: string | undefined;
4734
+ }>, z.ZodObject<{
4735
+ id: z.ZodString;
4736
+ type: z.ZodLiteral<"RouteNode">;
4737
+ name: z.ZodString;
4738
+ service: z.ZodString;
4739
+ method: z.ZodString;
4740
+ pathTemplate: z.ZodString;
4741
+ path: z.ZodString;
4742
+ line: z.ZodOptional<z.ZodNumber>;
4743
+ framework: z.ZodOptional<z.ZodString>;
4744
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
4745
+ }, "strip", z.ZodTypeAny, {
4746
+ name: string;
4747
+ path: string;
4748
+ type: "RouteNode";
4749
+ id: string;
4750
+ service: string;
4751
+ method: string;
4752
+ pathTemplate: string;
4753
+ framework?: string | undefined;
4754
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4755
+ line?: number | undefined;
4756
+ }, {
4757
+ name: string;
4758
+ path: string;
4759
+ type: "RouteNode";
4760
+ id: string;
4761
+ service: string;
4762
+ method: string;
4763
+ pathTemplate: string;
4764
+ framework?: string | undefined;
4765
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4766
+ line?: number | undefined;
4767
+ }>, z.ZodObject<{
4768
+ id: z.ZodString;
4769
+ type: z.ZodLiteral<"GraphQLOperationNode">;
4770
+ name: z.ZodString;
4771
+ service: z.ZodString;
4772
+ operationType: z.ZodString;
4773
+ operationName: z.ZodString;
4774
+ path: z.ZodOptional<z.ZodString>;
4775
+ line: z.ZodOptional<z.ZodNumber>;
4776
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
4777
+ }, "strip", z.ZodTypeAny, {
4778
+ name: string;
4779
+ type: "GraphQLOperationNode";
4780
+ id: string;
4781
+ service: string;
4782
+ operationType: string;
4783
+ operationName: string;
4784
+ path?: string | undefined;
4785
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4786
+ line?: number | undefined;
4787
+ }, {
4788
+ name: string;
4789
+ type: "GraphQLOperationNode";
4790
+ id: string;
4791
+ service: string;
4792
+ operationType: string;
4793
+ operationName: string;
4794
+ path?: string | undefined;
4795
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4796
+ line?: number | undefined;
4421
4797
  }>]>;
4422
4798
  }, "strip", z.ZodTypeAny, {
4423
4799
  node: {
@@ -4506,6 +4882,27 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
4506
4882
  language?: string | undefined;
4507
4883
  discoveredVia?: "static" | "otel" | "merged" | undefined;
4508
4884
  originalPath?: string | undefined;
4885
+ } | {
4886
+ name: string;
4887
+ path: string;
4888
+ type: "RouteNode";
4889
+ id: string;
4890
+ service: string;
4891
+ method: string;
4892
+ pathTemplate: string;
4893
+ framework?: string | undefined;
4894
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4895
+ line?: number | undefined;
4896
+ } | {
4897
+ name: string;
4898
+ type: "GraphQLOperationNode";
4899
+ id: string;
4900
+ service: string;
4901
+ operationType: string;
4902
+ operationName: string;
4903
+ path?: string | undefined;
4904
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4905
+ line?: number | undefined;
4509
4906
  };
4510
4907
  }, {
4511
4908
  node: {
@@ -4594,6 +4991,27 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
4594
4991
  language?: string | undefined;
4595
4992
  discoveredVia?: "static" | "otel" | "merged" | undefined;
4596
4993
  originalPath?: string | undefined;
4994
+ } | {
4995
+ name: string;
4996
+ path: string;
4997
+ type: "RouteNode";
4998
+ id: string;
4999
+ service: string;
5000
+ method: string;
5001
+ pathTemplate: string;
5002
+ framework?: string | undefined;
5003
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5004
+ line?: number | undefined;
5005
+ } | {
5006
+ name: string;
5007
+ type: "GraphQLOperationNode";
5008
+ id: string;
5009
+ service: string;
5010
+ operationType: string;
5011
+ operationName: string;
5012
+ path?: string | undefined;
5013
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5014
+ line?: number | undefined;
4597
5015
  };
4598
5016
  }>;
4599
5017
  type GraphNodeResponse = z.infer<typeof GraphNodeResponseSchema>;
@@ -4611,12 +5029,18 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4611
5029
  file: z.ZodString;
4612
5030
  line: z.ZodOptional<z.ZodNumber>;
4613
5031
  snippet: z.ZodOptional<z.ZodString>;
5032
+ method: z.ZodOptional<z.ZodString>;
5033
+ pathTemplate: z.ZodOptional<z.ZodString>;
4614
5034
  }, "strip", z.ZodTypeAny, {
4615
5035
  file: string;
5036
+ method?: string | undefined;
5037
+ pathTemplate?: string | undefined;
4616
5038
  line?: number | undefined;
4617
5039
  snippet?: string | undefined;
4618
5040
  }, {
4619
5041
  file: string;
5042
+ method?: string | undefined;
5043
+ pathTemplate?: string | undefined;
4620
5044
  line?: number | undefined;
4621
5045
  snippet?: string | undefined;
4622
5046
  }>>;
@@ -4644,6 +5068,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4644
5068
  callCount?: number | undefined;
4645
5069
  evidence?: {
4646
5070
  file: string;
5071
+ method?: string | undefined;
5072
+ pathTemplate?: string | undefined;
4647
5073
  line?: number | undefined;
4648
5074
  snippet?: string | undefined;
4649
5075
  } | undefined;
@@ -4663,6 +5089,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4663
5089
  callCount?: number | undefined;
4664
5090
  evidence?: {
4665
5091
  file: string;
5092
+ method?: string | undefined;
5093
+ pathTemplate?: string | undefined;
4666
5094
  line?: number | undefined;
4667
5095
  snippet?: string | undefined;
4668
5096
  } | undefined;
@@ -4685,12 +5113,18 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4685
5113
  file: z.ZodString;
4686
5114
  line: z.ZodOptional<z.ZodNumber>;
4687
5115
  snippet: z.ZodOptional<z.ZodString>;
5116
+ method: z.ZodOptional<z.ZodString>;
5117
+ pathTemplate: z.ZodOptional<z.ZodString>;
4688
5118
  }, "strip", z.ZodTypeAny, {
4689
5119
  file: string;
5120
+ method?: string | undefined;
5121
+ pathTemplate?: string | undefined;
4690
5122
  line?: number | undefined;
4691
5123
  snippet?: string | undefined;
4692
5124
  }, {
4693
5125
  file: string;
5126
+ method?: string | undefined;
5127
+ pathTemplate?: string | undefined;
4694
5128
  line?: number | undefined;
4695
5129
  snippet?: string | undefined;
4696
5130
  }>>;
@@ -4718,6 +5152,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4718
5152
  callCount?: number | undefined;
4719
5153
  evidence?: {
4720
5154
  file: string;
5155
+ method?: string | undefined;
5156
+ pathTemplate?: string | undefined;
4721
5157
  line?: number | undefined;
4722
5158
  snippet?: string | undefined;
4723
5159
  } | undefined;
@@ -4737,6 +5173,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4737
5173
  callCount?: number | undefined;
4738
5174
  evidence?: {
4739
5175
  file: string;
5176
+ method?: string | undefined;
5177
+ pathTemplate?: string | undefined;
4740
5178
  line?: number | undefined;
4741
5179
  snippet?: string | undefined;
4742
5180
  } | undefined;
@@ -4758,6 +5196,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4758
5196
  callCount?: number | undefined;
4759
5197
  evidence?: {
4760
5198
  file: string;
5199
+ method?: string | undefined;
5200
+ pathTemplate?: string | undefined;
4761
5201
  line?: number | undefined;
4762
5202
  snippet?: string | undefined;
4763
5203
  } | undefined;
@@ -4778,6 +5218,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4778
5218
  callCount?: number | undefined;
4779
5219
  evidence?: {
4780
5220
  file: string;
5221
+ method?: string | undefined;
5222
+ pathTemplate?: string | undefined;
4781
5223
  line?: number | undefined;
4782
5224
  snippet?: string | undefined;
4783
5225
  } | undefined;
@@ -4799,6 +5241,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4799
5241
  callCount?: number | undefined;
4800
5242
  evidence?: {
4801
5243
  file: string;
5244
+ method?: string | undefined;
5245
+ pathTemplate?: string | undefined;
4802
5246
  line?: number | undefined;
4803
5247
  snippet?: string | undefined;
4804
5248
  } | undefined;
@@ -4819,6 +5263,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4819
5263
  callCount?: number | undefined;
4820
5264
  evidence?: {
4821
5265
  file: string;
5266
+ method?: string | undefined;
5267
+ pathTemplate?: string | undefined;
4822
5268
  line?: number | undefined;
4823
5269
  snippet?: string | undefined;
4824
5270
  } | undefined;
@@ -5298,6 +5744,69 @@ declare const SerializedGraphSchema: z.ZodObject<{
5298
5744
  language?: string | undefined;
5299
5745
  discoveredVia?: "static" | "otel" | "merged" | undefined;
5300
5746
  originalPath?: string | undefined;
5747
+ }>, z.ZodObject<{
5748
+ id: z.ZodString;
5749
+ type: z.ZodLiteral<"RouteNode">;
5750
+ name: z.ZodString;
5751
+ service: z.ZodString;
5752
+ method: z.ZodString;
5753
+ pathTemplate: z.ZodString;
5754
+ path: z.ZodString;
5755
+ line: z.ZodOptional<z.ZodNumber>;
5756
+ framework: z.ZodOptional<z.ZodString>;
5757
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
5758
+ }, "strip", z.ZodTypeAny, {
5759
+ name: string;
5760
+ path: string;
5761
+ type: "RouteNode";
5762
+ id: string;
5763
+ service: string;
5764
+ method: string;
5765
+ pathTemplate: string;
5766
+ framework?: string | undefined;
5767
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5768
+ line?: number | undefined;
5769
+ }, {
5770
+ name: string;
5771
+ path: string;
5772
+ type: "RouteNode";
5773
+ id: string;
5774
+ service: string;
5775
+ method: string;
5776
+ pathTemplate: string;
5777
+ framework?: string | undefined;
5778
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5779
+ line?: number | undefined;
5780
+ }>, z.ZodObject<{
5781
+ id: z.ZodString;
5782
+ type: z.ZodLiteral<"GraphQLOperationNode">;
5783
+ name: z.ZodString;
5784
+ service: z.ZodString;
5785
+ operationType: z.ZodString;
5786
+ operationName: z.ZodString;
5787
+ path: z.ZodOptional<z.ZodString>;
5788
+ line: z.ZodOptional<z.ZodNumber>;
5789
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
5790
+ }, "strip", z.ZodTypeAny, {
5791
+ name: string;
5792
+ type: "GraphQLOperationNode";
5793
+ id: string;
5794
+ service: string;
5795
+ operationType: string;
5796
+ operationName: string;
5797
+ path?: string | undefined;
5798
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5799
+ line?: number | undefined;
5800
+ }, {
5801
+ name: string;
5802
+ type: "GraphQLOperationNode";
5803
+ id: string;
5804
+ service: string;
5805
+ operationType: string;
5806
+ operationName: string;
5807
+ path?: string | undefined;
5808
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5809
+ line?: number | undefined;
5301
5810
  }>]>, "many">;
5302
5811
  edges: z.ZodArray<z.ZodObject<{
5303
5812
  id: z.ZodString;
@@ -5312,12 +5821,18 @@ declare const SerializedGraphSchema: z.ZodObject<{
5312
5821
  file: z.ZodString;
5313
5822
  line: z.ZodOptional<z.ZodNumber>;
5314
5823
  snippet: z.ZodOptional<z.ZodString>;
5824
+ method: z.ZodOptional<z.ZodString>;
5825
+ pathTemplate: z.ZodOptional<z.ZodString>;
5315
5826
  }, "strip", z.ZodTypeAny, {
5316
5827
  file: string;
5828
+ method?: string | undefined;
5829
+ pathTemplate?: string | undefined;
5317
5830
  line?: number | undefined;
5318
5831
  snippet?: string | undefined;
5319
5832
  }, {
5320
5833
  file: string;
5834
+ method?: string | undefined;
5835
+ pathTemplate?: string | undefined;
5321
5836
  line?: number | undefined;
5322
5837
  snippet?: string | undefined;
5323
5838
  }>>;
@@ -5345,6 +5860,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
5345
5860
  callCount?: number | undefined;
5346
5861
  evidence?: {
5347
5862
  file: string;
5863
+ method?: string | undefined;
5864
+ pathTemplate?: string | undefined;
5348
5865
  line?: number | undefined;
5349
5866
  snippet?: string | undefined;
5350
5867
  } | undefined;
@@ -5364,6 +5881,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
5364
5881
  callCount?: number | undefined;
5365
5882
  evidence?: {
5366
5883
  file: string;
5884
+ method?: string | undefined;
5885
+ pathTemplate?: string | undefined;
5367
5886
  line?: number | undefined;
5368
5887
  snippet?: string | undefined;
5369
5888
  } | undefined;
@@ -5460,6 +5979,27 @@ declare const SerializedGraphSchema: z.ZodObject<{
5460
5979
  language?: string | undefined;
5461
5980
  discoveredVia?: "static" | "otel" | "merged" | undefined;
5462
5981
  originalPath?: string | undefined;
5982
+ } | {
5983
+ name: string;
5984
+ path: string;
5985
+ type: "RouteNode";
5986
+ id: string;
5987
+ service: string;
5988
+ method: string;
5989
+ pathTemplate: string;
5990
+ framework?: string | undefined;
5991
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5992
+ line?: number | undefined;
5993
+ } | {
5994
+ name: string;
5995
+ type: "GraphQLOperationNode";
5996
+ id: string;
5997
+ service: string;
5998
+ operationType: string;
5999
+ operationName: string;
6000
+ path?: string | undefined;
6001
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6002
+ line?: number | undefined;
5463
6003
  })[];
5464
6004
  edges: {
5465
6005
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -5472,6 +6012,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
5472
6012
  callCount?: number | undefined;
5473
6013
  evidence?: {
5474
6014
  file: string;
6015
+ method?: string | undefined;
6016
+ pathTemplate?: string | undefined;
5475
6017
  line?: number | undefined;
5476
6018
  snippet?: string | undefined;
5477
6019
  } | undefined;
@@ -5568,6 +6110,27 @@ declare const SerializedGraphSchema: z.ZodObject<{
5568
6110
  language?: string | undefined;
5569
6111
  discoveredVia?: "static" | "otel" | "merged" | undefined;
5570
6112
  originalPath?: string | undefined;
6113
+ } | {
6114
+ name: string;
6115
+ path: string;
6116
+ type: "RouteNode";
6117
+ id: string;
6118
+ service: string;
6119
+ method: string;
6120
+ pathTemplate: string;
6121
+ framework?: string | undefined;
6122
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6123
+ line?: number | undefined;
6124
+ } | {
6125
+ name: string;
6126
+ type: "GraphQLOperationNode";
6127
+ id: string;
6128
+ service: string;
6129
+ operationType: string;
6130
+ operationName: string;
6131
+ path?: string | undefined;
6132
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6133
+ line?: number | undefined;
5571
6134
  })[];
5572
6135
  edges: {
5573
6136
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -5580,6 +6143,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
5580
6143
  callCount?: number | undefined;
5581
6144
  evidence?: {
5582
6145
  file: string;
6146
+ method?: string | undefined;
6147
+ pathTemplate?: string | undefined;
5583
6148
  line?: number | undefined;
5584
6149
  snippet?: string | undefined;
5585
6150
  } | undefined;
@@ -5935,34 +6500,103 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5935
6500
  language?: string | undefined;
5936
6501
  discoveredVia?: "static" | "otel" | "merged" | undefined;
5937
6502
  originalPath?: string | undefined;
5938
- }>]>, "many">;
5939
- edges: z.ZodArray<z.ZodObject<{
6503
+ }>, z.ZodObject<{
5940
6504
  id: z.ZodString;
5941
- source: z.ZodString;
5942
- target: z.ZodString;
5943
- type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
5944
- provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
5945
- confidence: z.ZodOptional<z.ZodNumber>;
5946
- lastObserved: z.ZodOptional<z.ZodString>;
5947
- callCount: z.ZodOptional<z.ZodNumber>;
5948
- evidence: z.ZodOptional<z.ZodObject<{
5949
- file: z.ZodString;
5950
- line: z.ZodOptional<z.ZodNumber>;
5951
- snippet: z.ZodOptional<z.ZodString>;
5952
- }, "strip", z.ZodTypeAny, {
5953
- file: string;
5954
- line?: number | undefined;
5955
- snippet?: string | undefined;
5956
- }, {
5957
- file: string;
5958
- line?: number | undefined;
5959
- snippet?: string | undefined;
5960
- }>>;
5961
- signal: z.ZodOptional<z.ZodObject<{
5962
- spanCount: z.ZodNumber;
5963
- errorCount: z.ZodNumber;
5964
- lastObservedAgeMs: z.ZodOptional<z.ZodNumber>;
5965
- }, "strip", z.ZodTypeAny, {
6505
+ type: z.ZodLiteral<"RouteNode">;
6506
+ name: z.ZodString;
6507
+ service: z.ZodString;
6508
+ method: z.ZodString;
6509
+ pathTemplate: z.ZodString;
6510
+ path: z.ZodString;
6511
+ line: z.ZodOptional<z.ZodNumber>;
6512
+ framework: z.ZodOptional<z.ZodString>;
6513
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
6514
+ }, "strip", z.ZodTypeAny, {
6515
+ name: string;
6516
+ path: string;
6517
+ type: "RouteNode";
6518
+ id: string;
6519
+ service: string;
6520
+ method: string;
6521
+ pathTemplate: string;
6522
+ framework?: string | undefined;
6523
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6524
+ line?: number | undefined;
6525
+ }, {
6526
+ name: string;
6527
+ path: string;
6528
+ type: "RouteNode";
6529
+ id: string;
6530
+ service: string;
6531
+ method: string;
6532
+ pathTemplate: string;
6533
+ framework?: string | undefined;
6534
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6535
+ line?: number | undefined;
6536
+ }>, z.ZodObject<{
6537
+ id: z.ZodString;
6538
+ type: z.ZodLiteral<"GraphQLOperationNode">;
6539
+ name: z.ZodString;
6540
+ service: z.ZodString;
6541
+ operationType: z.ZodString;
6542
+ operationName: z.ZodString;
6543
+ path: z.ZodOptional<z.ZodString>;
6544
+ line: z.ZodOptional<z.ZodNumber>;
6545
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
6546
+ }, "strip", z.ZodTypeAny, {
6547
+ name: string;
6548
+ type: "GraphQLOperationNode";
6549
+ id: string;
6550
+ service: string;
6551
+ operationType: string;
6552
+ operationName: string;
6553
+ path?: string | undefined;
6554
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6555
+ line?: number | undefined;
6556
+ }, {
6557
+ name: string;
6558
+ type: "GraphQLOperationNode";
6559
+ id: string;
6560
+ service: string;
6561
+ operationType: string;
6562
+ operationName: string;
6563
+ path?: string | undefined;
6564
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6565
+ line?: number | undefined;
6566
+ }>]>, "many">;
6567
+ edges: z.ZodArray<z.ZodObject<{
6568
+ id: z.ZodString;
6569
+ source: z.ZodString;
6570
+ target: z.ZodString;
6571
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
6572
+ provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
6573
+ confidence: z.ZodOptional<z.ZodNumber>;
6574
+ lastObserved: z.ZodOptional<z.ZodString>;
6575
+ callCount: z.ZodOptional<z.ZodNumber>;
6576
+ evidence: z.ZodOptional<z.ZodObject<{
6577
+ file: z.ZodString;
6578
+ line: z.ZodOptional<z.ZodNumber>;
6579
+ snippet: z.ZodOptional<z.ZodString>;
6580
+ method: z.ZodOptional<z.ZodString>;
6581
+ pathTemplate: z.ZodOptional<z.ZodString>;
6582
+ }, "strip", z.ZodTypeAny, {
6583
+ file: string;
6584
+ method?: string | undefined;
6585
+ pathTemplate?: string | undefined;
6586
+ line?: number | undefined;
6587
+ snippet?: string | undefined;
6588
+ }, {
6589
+ file: string;
6590
+ method?: string | undefined;
6591
+ pathTemplate?: string | undefined;
6592
+ line?: number | undefined;
6593
+ snippet?: string | undefined;
6594
+ }>>;
6595
+ signal: z.ZodOptional<z.ZodObject<{
6596
+ spanCount: z.ZodNumber;
6597
+ errorCount: z.ZodNumber;
6598
+ lastObservedAgeMs: z.ZodOptional<z.ZodNumber>;
6599
+ }, "strip", z.ZodTypeAny, {
5966
6600
  spanCount: number;
5967
6601
  errorCount: number;
5968
6602
  lastObservedAgeMs?: number | undefined;
@@ -5982,6 +6616,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5982
6616
  callCount?: number | undefined;
5983
6617
  evidence?: {
5984
6618
  file: string;
6619
+ method?: string | undefined;
6620
+ pathTemplate?: string | undefined;
5985
6621
  line?: number | undefined;
5986
6622
  snippet?: string | undefined;
5987
6623
  } | undefined;
@@ -6001,6 +6637,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6001
6637
  callCount?: number | undefined;
6002
6638
  evidence?: {
6003
6639
  file: string;
6640
+ method?: string | undefined;
6641
+ pathTemplate?: string | undefined;
6004
6642
  line?: number | undefined;
6005
6643
  snippet?: string | undefined;
6006
6644
  } | undefined;
@@ -6097,6 +6735,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6097
6735
  language?: string | undefined;
6098
6736
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6099
6737
  originalPath?: string | undefined;
6738
+ } | {
6739
+ name: string;
6740
+ path: string;
6741
+ type: "RouteNode";
6742
+ id: string;
6743
+ service: string;
6744
+ method: string;
6745
+ pathTemplate: string;
6746
+ framework?: string | undefined;
6747
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6748
+ line?: number | undefined;
6749
+ } | {
6750
+ name: string;
6751
+ type: "GraphQLOperationNode";
6752
+ id: string;
6753
+ service: string;
6754
+ operationType: string;
6755
+ operationName: string;
6756
+ path?: string | undefined;
6757
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6758
+ line?: number | undefined;
6100
6759
  })[];
6101
6760
  edges: {
6102
6761
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -6109,6 +6768,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6109
6768
  callCount?: number | undefined;
6110
6769
  evidence?: {
6111
6770
  file: string;
6771
+ method?: string | undefined;
6772
+ pathTemplate?: string | undefined;
6112
6773
  line?: number | undefined;
6113
6774
  snippet?: string | undefined;
6114
6775
  } | undefined;
@@ -6205,6 +6866,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6205
6866
  language?: string | undefined;
6206
6867
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6207
6868
  originalPath?: string | undefined;
6869
+ } | {
6870
+ name: string;
6871
+ path: string;
6872
+ type: "RouteNode";
6873
+ id: string;
6874
+ service: string;
6875
+ method: string;
6876
+ pathTemplate: string;
6877
+ framework?: string | undefined;
6878
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6879
+ line?: number | undefined;
6880
+ } | {
6881
+ name: string;
6882
+ type: "GraphQLOperationNode";
6883
+ id: string;
6884
+ service: string;
6885
+ operationType: string;
6886
+ operationName: string;
6887
+ path?: string | undefined;
6888
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6889
+ line?: number | undefined;
6208
6890
  })[];
6209
6891
  edges: {
6210
6892
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -6217,6 +6899,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6217
6899
  callCount?: number | undefined;
6218
6900
  evidence?: {
6219
6901
  file: string;
6902
+ method?: string | undefined;
6903
+ pathTemplate?: string | undefined;
6220
6904
  line?: number | undefined;
6221
6905
  snippet?: string | undefined;
6222
6906
  } | undefined;
@@ -6556,6 +7240,69 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6556
7240
  language?: string | undefined;
6557
7241
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6558
7242
  originalPath?: string | undefined;
7243
+ }>, z.ZodObject<{
7244
+ id: z.ZodString;
7245
+ type: z.ZodLiteral<"RouteNode">;
7246
+ name: z.ZodString;
7247
+ service: z.ZodString;
7248
+ method: z.ZodString;
7249
+ pathTemplate: z.ZodString;
7250
+ path: z.ZodString;
7251
+ line: z.ZodOptional<z.ZodNumber>;
7252
+ framework: z.ZodOptional<z.ZodString>;
7253
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
7254
+ }, "strip", z.ZodTypeAny, {
7255
+ name: string;
7256
+ path: string;
7257
+ type: "RouteNode";
7258
+ id: string;
7259
+ service: string;
7260
+ method: string;
7261
+ pathTemplate: string;
7262
+ framework?: string | undefined;
7263
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7264
+ line?: number | undefined;
7265
+ }, {
7266
+ name: string;
7267
+ path: string;
7268
+ type: "RouteNode";
7269
+ id: string;
7270
+ service: string;
7271
+ method: string;
7272
+ pathTemplate: string;
7273
+ framework?: string | undefined;
7274
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7275
+ line?: number | undefined;
7276
+ }>, z.ZodObject<{
7277
+ id: z.ZodString;
7278
+ type: z.ZodLiteral<"GraphQLOperationNode">;
7279
+ name: z.ZodString;
7280
+ service: z.ZodString;
7281
+ operationType: z.ZodString;
7282
+ operationName: z.ZodString;
7283
+ path: z.ZodOptional<z.ZodString>;
7284
+ line: z.ZodOptional<z.ZodNumber>;
7285
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
7286
+ }, "strip", z.ZodTypeAny, {
7287
+ name: string;
7288
+ type: "GraphQLOperationNode";
7289
+ id: string;
7290
+ service: string;
7291
+ operationType: string;
7292
+ operationName: string;
7293
+ path?: string | undefined;
7294
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7295
+ line?: number | undefined;
7296
+ }, {
7297
+ name: string;
7298
+ type: "GraphQLOperationNode";
7299
+ id: string;
7300
+ service: string;
7301
+ operationType: string;
7302
+ operationName: string;
7303
+ path?: string | undefined;
7304
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7305
+ line?: number | undefined;
6559
7306
  }>]>, "many">;
6560
7307
  edges: z.ZodArray<z.ZodObject<{
6561
7308
  id: z.ZodString;
@@ -6570,12 +7317,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6570
7317
  file: z.ZodString;
6571
7318
  line: z.ZodOptional<z.ZodNumber>;
6572
7319
  snippet: z.ZodOptional<z.ZodString>;
7320
+ method: z.ZodOptional<z.ZodString>;
7321
+ pathTemplate: z.ZodOptional<z.ZodString>;
6573
7322
  }, "strip", z.ZodTypeAny, {
6574
7323
  file: string;
7324
+ method?: string | undefined;
7325
+ pathTemplate?: string | undefined;
6575
7326
  line?: number | undefined;
6576
7327
  snippet?: string | undefined;
6577
7328
  }, {
6578
7329
  file: string;
7330
+ method?: string | undefined;
7331
+ pathTemplate?: string | undefined;
6579
7332
  line?: number | undefined;
6580
7333
  snippet?: string | undefined;
6581
7334
  }>>;
@@ -6603,6 +7356,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6603
7356
  callCount?: number | undefined;
6604
7357
  evidence?: {
6605
7358
  file: string;
7359
+ method?: string | undefined;
7360
+ pathTemplate?: string | undefined;
6606
7361
  line?: number | undefined;
6607
7362
  snippet?: string | undefined;
6608
7363
  } | undefined;
@@ -6622,6 +7377,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6622
7377
  callCount?: number | undefined;
6623
7378
  evidence?: {
6624
7379
  file: string;
7380
+ method?: string | undefined;
7381
+ pathTemplate?: string | undefined;
6625
7382
  line?: number | undefined;
6626
7383
  snippet?: string | undefined;
6627
7384
  } | undefined;
@@ -6718,6 +7475,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6718
7475
  language?: string | undefined;
6719
7476
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6720
7477
  originalPath?: string | undefined;
7478
+ } | {
7479
+ name: string;
7480
+ path: string;
7481
+ type: "RouteNode";
7482
+ id: string;
7483
+ service: string;
7484
+ method: string;
7485
+ pathTemplate: string;
7486
+ framework?: string | undefined;
7487
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7488
+ line?: number | undefined;
7489
+ } | {
7490
+ name: string;
7491
+ type: "GraphQLOperationNode";
7492
+ id: string;
7493
+ service: string;
7494
+ operationType: string;
7495
+ operationName: string;
7496
+ path?: string | undefined;
7497
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7498
+ line?: number | undefined;
6721
7499
  })[];
6722
7500
  edges: {
6723
7501
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -6730,6 +7508,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6730
7508
  callCount?: number | undefined;
6731
7509
  evidence?: {
6732
7510
  file: string;
7511
+ method?: string | undefined;
7512
+ pathTemplate?: string | undefined;
6733
7513
  line?: number | undefined;
6734
7514
  snippet?: string | undefined;
6735
7515
  } | undefined;
@@ -6826,6 +7606,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6826
7606
  language?: string | undefined;
6827
7607
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6828
7608
  originalPath?: string | undefined;
7609
+ } | {
7610
+ name: string;
7611
+ path: string;
7612
+ type: "RouteNode";
7613
+ id: string;
7614
+ service: string;
7615
+ method: string;
7616
+ pathTemplate: string;
7617
+ framework?: string | undefined;
7618
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7619
+ line?: number | undefined;
7620
+ } | {
7621
+ name: string;
7622
+ type: "GraphQLOperationNode";
7623
+ id: string;
7624
+ service: string;
7625
+ operationType: string;
7626
+ operationName: string;
7627
+ path?: string | undefined;
7628
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7629
+ line?: number | undefined;
6829
7630
  })[];
6830
7631
  edges: {
6831
7632
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -6838,6 +7639,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6838
7639
  callCount?: number | undefined;
6839
7640
  evidence?: {
6840
7641
  file: string;
7642
+ method?: string | undefined;
7643
+ pathTemplate?: string | undefined;
6841
7644
  line?: number | undefined;
6842
7645
  snippet?: string | undefined;
6843
7646
  } | undefined;
@@ -7179,6 +7982,69 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7179
7982
  language?: string | undefined;
7180
7983
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7181
7984
  originalPath?: string | undefined;
7985
+ }>, z.ZodObject<{
7986
+ id: z.ZodString;
7987
+ type: z.ZodLiteral<"RouteNode">;
7988
+ name: z.ZodString;
7989
+ service: z.ZodString;
7990
+ method: z.ZodString;
7991
+ pathTemplate: z.ZodString;
7992
+ path: z.ZodString;
7993
+ line: z.ZodOptional<z.ZodNumber>;
7994
+ framework: z.ZodOptional<z.ZodString>;
7995
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
7996
+ }, "strip", z.ZodTypeAny, {
7997
+ name: string;
7998
+ path: string;
7999
+ type: "RouteNode";
8000
+ id: string;
8001
+ service: string;
8002
+ method: string;
8003
+ pathTemplate: string;
8004
+ framework?: string | undefined;
8005
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8006
+ line?: number | undefined;
8007
+ }, {
8008
+ name: string;
8009
+ path: string;
8010
+ type: "RouteNode";
8011
+ id: string;
8012
+ service: string;
8013
+ method: string;
8014
+ pathTemplate: string;
8015
+ framework?: string | undefined;
8016
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8017
+ line?: number | undefined;
8018
+ }>, z.ZodObject<{
8019
+ id: z.ZodString;
8020
+ type: z.ZodLiteral<"GraphQLOperationNode">;
8021
+ name: z.ZodString;
8022
+ service: z.ZodString;
8023
+ operationType: z.ZodString;
8024
+ operationName: z.ZodString;
8025
+ path: z.ZodOptional<z.ZodString>;
8026
+ line: z.ZodOptional<z.ZodNumber>;
8027
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
8028
+ }, "strip", z.ZodTypeAny, {
8029
+ name: string;
8030
+ type: "GraphQLOperationNode";
8031
+ id: string;
8032
+ service: string;
8033
+ operationType: string;
8034
+ operationName: string;
8035
+ path?: string | undefined;
8036
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8037
+ line?: number | undefined;
8038
+ }, {
8039
+ name: string;
8040
+ type: "GraphQLOperationNode";
8041
+ id: string;
8042
+ service: string;
8043
+ operationType: string;
8044
+ operationName: string;
8045
+ path?: string | undefined;
8046
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8047
+ line?: number | undefined;
7182
8048
  }>]>;
7183
8049
  after: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
7184
8050
  id: z.ZodString;
@@ -7508,6 +8374,69 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7508
8374
  language?: string | undefined;
7509
8375
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7510
8376
  originalPath?: string | undefined;
8377
+ }>, z.ZodObject<{
8378
+ id: z.ZodString;
8379
+ type: z.ZodLiteral<"RouteNode">;
8380
+ name: z.ZodString;
8381
+ service: z.ZodString;
8382
+ method: z.ZodString;
8383
+ pathTemplate: z.ZodString;
8384
+ path: z.ZodString;
8385
+ line: z.ZodOptional<z.ZodNumber>;
8386
+ framework: z.ZodOptional<z.ZodString>;
8387
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
8388
+ }, "strip", z.ZodTypeAny, {
8389
+ name: string;
8390
+ path: string;
8391
+ type: "RouteNode";
8392
+ id: string;
8393
+ service: string;
8394
+ method: string;
8395
+ pathTemplate: string;
8396
+ framework?: string | undefined;
8397
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8398
+ line?: number | undefined;
8399
+ }, {
8400
+ name: string;
8401
+ path: string;
8402
+ type: "RouteNode";
8403
+ id: string;
8404
+ service: string;
8405
+ method: string;
8406
+ pathTemplate: string;
8407
+ framework?: string | undefined;
8408
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8409
+ line?: number | undefined;
8410
+ }>, z.ZodObject<{
8411
+ id: z.ZodString;
8412
+ type: z.ZodLiteral<"GraphQLOperationNode">;
8413
+ name: z.ZodString;
8414
+ service: z.ZodString;
8415
+ operationType: z.ZodString;
8416
+ operationName: z.ZodString;
8417
+ path: z.ZodOptional<z.ZodString>;
8418
+ line: z.ZodOptional<z.ZodNumber>;
8419
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
8420
+ }, "strip", z.ZodTypeAny, {
8421
+ name: string;
8422
+ type: "GraphQLOperationNode";
8423
+ id: string;
8424
+ service: string;
8425
+ operationType: string;
8426
+ operationName: string;
8427
+ path?: string | undefined;
8428
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8429
+ line?: number | undefined;
8430
+ }, {
8431
+ name: string;
8432
+ type: "GraphQLOperationNode";
8433
+ id: string;
8434
+ service: string;
8435
+ operationType: string;
8436
+ operationName: string;
8437
+ path?: string | undefined;
8438
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8439
+ line?: number | undefined;
7511
8440
  }>]>;
7512
8441
  }, "strip", z.ZodTypeAny, {
7513
8442
  id: string;
@@ -7597,6 +8526,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7597
8526
  language?: string | undefined;
7598
8527
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7599
8528
  originalPath?: string | undefined;
8529
+ } | {
8530
+ name: string;
8531
+ path: string;
8532
+ type: "RouteNode";
8533
+ id: string;
8534
+ service: string;
8535
+ method: string;
8536
+ pathTemplate: string;
8537
+ framework?: string | undefined;
8538
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8539
+ line?: number | undefined;
8540
+ } | {
8541
+ name: string;
8542
+ type: "GraphQLOperationNode";
8543
+ id: string;
8544
+ service: string;
8545
+ operationType: string;
8546
+ operationName: string;
8547
+ path?: string | undefined;
8548
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8549
+ line?: number | undefined;
7600
8550
  };
7601
8551
  after: {
7602
8552
  name: string;
@@ -7684,6 +8634,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7684
8634
  language?: string | undefined;
7685
8635
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7686
8636
  originalPath?: string | undefined;
8637
+ } | {
8638
+ name: string;
8639
+ path: string;
8640
+ type: "RouteNode";
8641
+ id: string;
8642
+ service: string;
8643
+ method: string;
8644
+ pathTemplate: string;
8645
+ framework?: string | undefined;
8646
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8647
+ line?: number | undefined;
8648
+ } | {
8649
+ name: string;
8650
+ type: "GraphQLOperationNode";
8651
+ id: string;
8652
+ service: string;
8653
+ operationType: string;
8654
+ operationName: string;
8655
+ path?: string | undefined;
8656
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8657
+ line?: number | undefined;
7687
8658
  };
7688
8659
  }, {
7689
8660
  id: string;
@@ -7773,6 +8744,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7773
8744
  language?: string | undefined;
7774
8745
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7775
8746
  originalPath?: string | undefined;
8747
+ } | {
8748
+ name: string;
8749
+ path: string;
8750
+ type: "RouteNode";
8751
+ id: string;
8752
+ service: string;
8753
+ method: string;
8754
+ pathTemplate: string;
8755
+ framework?: string | undefined;
8756
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8757
+ line?: number | undefined;
8758
+ } | {
8759
+ name: string;
8760
+ type: "GraphQLOperationNode";
8761
+ id: string;
8762
+ service: string;
8763
+ operationType: string;
8764
+ operationName: string;
8765
+ path?: string | undefined;
8766
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8767
+ line?: number | undefined;
7776
8768
  };
7777
8769
  after: {
7778
8770
  name: string;
@@ -7860,6 +8852,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7860
8852
  language?: string | undefined;
7861
8853
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7862
8854
  originalPath?: string | undefined;
8855
+ } | {
8856
+ name: string;
8857
+ path: string;
8858
+ type: "RouteNode";
8859
+ id: string;
8860
+ service: string;
8861
+ method: string;
8862
+ pathTemplate: string;
8863
+ framework?: string | undefined;
8864
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8865
+ line?: number | undefined;
8866
+ } | {
8867
+ name: string;
8868
+ type: "GraphQLOperationNode";
8869
+ id: string;
8870
+ service: string;
8871
+ operationType: string;
8872
+ operationName: string;
8873
+ path?: string | undefined;
8874
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8875
+ line?: number | undefined;
7863
8876
  };
7864
8877
  }>, "many">;
7865
8878
  edges: z.ZodArray<z.ZodObject<{
@@ -7877,12 +8890,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7877
8890
  file: z.ZodString;
7878
8891
  line: z.ZodOptional<z.ZodNumber>;
7879
8892
  snippet: z.ZodOptional<z.ZodString>;
8893
+ method: z.ZodOptional<z.ZodString>;
8894
+ pathTemplate: z.ZodOptional<z.ZodString>;
7880
8895
  }, "strip", z.ZodTypeAny, {
7881
8896
  file: string;
8897
+ method?: string | undefined;
8898
+ pathTemplate?: string | undefined;
7882
8899
  line?: number | undefined;
7883
8900
  snippet?: string | undefined;
7884
8901
  }, {
7885
8902
  file: string;
8903
+ method?: string | undefined;
8904
+ pathTemplate?: string | undefined;
7886
8905
  line?: number | undefined;
7887
8906
  snippet?: string | undefined;
7888
8907
  }>>;
@@ -7910,6 +8929,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7910
8929
  callCount?: number | undefined;
7911
8930
  evidence?: {
7912
8931
  file: string;
8932
+ method?: string | undefined;
8933
+ pathTemplate?: string | undefined;
7913
8934
  line?: number | undefined;
7914
8935
  snippet?: string | undefined;
7915
8936
  } | undefined;
@@ -7929,6 +8950,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7929
8950
  callCount?: number | undefined;
7930
8951
  evidence?: {
7931
8952
  file: string;
8953
+ method?: string | undefined;
8954
+ pathTemplate?: string | undefined;
7932
8955
  line?: number | undefined;
7933
8956
  snippet?: string | undefined;
7934
8957
  } | undefined;
@@ -7951,12 +8974,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7951
8974
  file: z.ZodString;
7952
8975
  line: z.ZodOptional<z.ZodNumber>;
7953
8976
  snippet: z.ZodOptional<z.ZodString>;
8977
+ method: z.ZodOptional<z.ZodString>;
8978
+ pathTemplate: z.ZodOptional<z.ZodString>;
7954
8979
  }, "strip", z.ZodTypeAny, {
7955
8980
  file: string;
8981
+ method?: string | undefined;
8982
+ pathTemplate?: string | undefined;
7956
8983
  line?: number | undefined;
7957
8984
  snippet?: string | undefined;
7958
8985
  }, {
7959
8986
  file: string;
8987
+ method?: string | undefined;
8988
+ pathTemplate?: string | undefined;
7960
8989
  line?: number | undefined;
7961
8990
  snippet?: string | undefined;
7962
8991
  }>>;
@@ -7984,6 +9013,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7984
9013
  callCount?: number | undefined;
7985
9014
  evidence?: {
7986
9015
  file: string;
9016
+ method?: string | undefined;
9017
+ pathTemplate?: string | undefined;
7987
9018
  line?: number | undefined;
7988
9019
  snippet?: string | undefined;
7989
9020
  } | undefined;
@@ -8003,6 +9034,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8003
9034
  callCount?: number | undefined;
8004
9035
  evidence?: {
8005
9036
  file: string;
9037
+ method?: string | undefined;
9038
+ pathTemplate?: string | undefined;
8006
9039
  line?: number | undefined;
8007
9040
  snippet?: string | undefined;
8008
9041
  } | undefined;
@@ -8025,6 +9058,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8025
9058
  callCount?: number | undefined;
8026
9059
  evidence?: {
8027
9060
  file: string;
9061
+ method?: string | undefined;
9062
+ pathTemplate?: string | undefined;
8028
9063
  line?: number | undefined;
8029
9064
  snippet?: string | undefined;
8030
9065
  } | undefined;
@@ -8045,6 +9080,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8045
9080
  callCount?: number | undefined;
8046
9081
  evidence?: {
8047
9082
  file: string;
9083
+ method?: string | undefined;
9084
+ pathTemplate?: string | undefined;
8048
9085
  line?: number | undefined;
8049
9086
  snippet?: string | undefined;
8050
9087
  } | undefined;
@@ -8067,6 +9104,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8067
9104
  callCount?: number | undefined;
8068
9105
  evidence?: {
8069
9106
  file: string;
9107
+ method?: string | undefined;
9108
+ pathTemplate?: string | undefined;
8070
9109
  line?: number | undefined;
8071
9110
  snippet?: string | undefined;
8072
9111
  } | undefined;
@@ -8087,6 +9126,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8087
9126
  callCount?: number | undefined;
8088
9127
  evidence?: {
8089
9128
  file: string;
9129
+ method?: string | undefined;
9130
+ pathTemplate?: string | undefined;
8090
9131
  line?: number | undefined;
8091
9132
  snippet?: string | undefined;
8092
9133
  } | undefined;
@@ -8186,6 +9227,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8186
9227
  language?: string | undefined;
8187
9228
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8188
9229
  originalPath?: string | undefined;
9230
+ } | {
9231
+ name: string;
9232
+ path: string;
9233
+ type: "RouteNode";
9234
+ id: string;
9235
+ service: string;
9236
+ method: string;
9237
+ pathTemplate: string;
9238
+ framework?: string | undefined;
9239
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9240
+ line?: number | undefined;
9241
+ } | {
9242
+ name: string;
9243
+ type: "GraphQLOperationNode";
9244
+ id: string;
9245
+ service: string;
9246
+ operationType: string;
9247
+ operationName: string;
9248
+ path?: string | undefined;
9249
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9250
+ line?: number | undefined;
8189
9251
  };
8190
9252
  after: {
8191
9253
  name: string;
@@ -8273,6 +9335,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8273
9335
  language?: string | undefined;
8274
9336
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8275
9337
  originalPath?: string | undefined;
9338
+ } | {
9339
+ name: string;
9340
+ path: string;
9341
+ type: "RouteNode";
9342
+ id: string;
9343
+ service: string;
9344
+ method: string;
9345
+ pathTemplate: string;
9346
+ framework?: string | undefined;
9347
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9348
+ line?: number | undefined;
9349
+ } | {
9350
+ name: string;
9351
+ type: "GraphQLOperationNode";
9352
+ id: string;
9353
+ service: string;
9354
+ operationType: string;
9355
+ operationName: string;
9356
+ path?: string | undefined;
9357
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9358
+ line?: number | undefined;
8276
9359
  };
8277
9360
  }[];
8278
9361
  edges: {
@@ -8288,6 +9371,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8288
9371
  callCount?: number | undefined;
8289
9372
  evidence?: {
8290
9373
  file: string;
9374
+ method?: string | undefined;
9375
+ pathTemplate?: string | undefined;
8291
9376
  line?: number | undefined;
8292
9377
  snippet?: string | undefined;
8293
9378
  } | undefined;
@@ -8308,6 +9393,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8308
9393
  callCount?: number | undefined;
8309
9394
  evidence?: {
8310
9395
  file: string;
9396
+ method?: string | undefined;
9397
+ pathTemplate?: string | undefined;
8311
9398
  line?: number | undefined;
8312
9399
  snippet?: string | undefined;
8313
9400
  } | undefined;
@@ -8407,6 +9494,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8407
9494
  language?: string | undefined;
8408
9495
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8409
9496
  originalPath?: string | undefined;
9497
+ } | {
9498
+ name: string;
9499
+ path: string;
9500
+ type: "RouteNode";
9501
+ id: string;
9502
+ service: string;
9503
+ method: string;
9504
+ pathTemplate: string;
9505
+ framework?: string | undefined;
9506
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9507
+ line?: number | undefined;
9508
+ } | {
9509
+ name: string;
9510
+ type: "GraphQLOperationNode";
9511
+ id: string;
9512
+ service: string;
9513
+ operationType: string;
9514
+ operationName: string;
9515
+ path?: string | undefined;
9516
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9517
+ line?: number | undefined;
8410
9518
  };
8411
9519
  after: {
8412
9520
  name: string;
@@ -8494,6 +9602,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8494
9602
  language?: string | undefined;
8495
9603
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8496
9604
  originalPath?: string | undefined;
9605
+ } | {
9606
+ name: string;
9607
+ path: string;
9608
+ type: "RouteNode";
9609
+ id: string;
9610
+ service: string;
9611
+ method: string;
9612
+ pathTemplate: string;
9613
+ framework?: string | undefined;
9614
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9615
+ line?: number | undefined;
9616
+ } | {
9617
+ name: string;
9618
+ type: "GraphQLOperationNode";
9619
+ id: string;
9620
+ service: string;
9621
+ operationType: string;
9622
+ operationName: string;
9623
+ path?: string | undefined;
9624
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9625
+ line?: number | undefined;
8497
9626
  };
8498
9627
  }[];
8499
9628
  edges: {
@@ -8509,6 +9638,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8509
9638
  callCount?: number | undefined;
8510
9639
  evidence?: {
8511
9640
  file: string;
9641
+ method?: string | undefined;
9642
+ pathTemplate?: string | undefined;
8512
9643
  line?: number | undefined;
8513
9644
  snippet?: string | undefined;
8514
9645
  } | undefined;
@@ -8529,6 +9660,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8529
9660
  callCount?: number | undefined;
8530
9661
  evidence?: {
8531
9662
  file: string;
9663
+ method?: string | undefined;
9664
+ pathTemplate?: string | undefined;
8532
9665
  line?: number | undefined;
8533
9666
  snippet?: string | undefined;
8534
9667
  } | undefined;
@@ -8634,6 +9767,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8634
9767
  language?: string | undefined;
8635
9768
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8636
9769
  originalPath?: string | undefined;
9770
+ } | {
9771
+ name: string;
9772
+ path: string;
9773
+ type: "RouteNode";
9774
+ id: string;
9775
+ service: string;
9776
+ method: string;
9777
+ pathTemplate: string;
9778
+ framework?: string | undefined;
9779
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9780
+ line?: number | undefined;
9781
+ } | {
9782
+ name: string;
9783
+ type: "GraphQLOperationNode";
9784
+ id: string;
9785
+ service: string;
9786
+ operationType: string;
9787
+ operationName: string;
9788
+ path?: string | undefined;
9789
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9790
+ line?: number | undefined;
8637
9791
  })[];
8638
9792
  edges: {
8639
9793
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -8646,6 +9800,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8646
9800
  callCount?: number | undefined;
8647
9801
  evidence?: {
8648
9802
  file: string;
9803
+ method?: string | undefined;
9804
+ pathTemplate?: string | undefined;
8649
9805
  line?: number | undefined;
8650
9806
  snippet?: string | undefined;
8651
9807
  } | undefined;
@@ -8743,6 +9899,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8743
9899
  language?: string | undefined;
8744
9900
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8745
9901
  originalPath?: string | undefined;
9902
+ } | {
9903
+ name: string;
9904
+ path: string;
9905
+ type: "RouteNode";
9906
+ id: string;
9907
+ service: string;
9908
+ method: string;
9909
+ pathTemplate: string;
9910
+ framework?: string | undefined;
9911
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9912
+ line?: number | undefined;
9913
+ } | {
9914
+ name: string;
9915
+ type: "GraphQLOperationNode";
9916
+ id: string;
9917
+ service: string;
9918
+ operationType: string;
9919
+ operationName: string;
9920
+ path?: string | undefined;
9921
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9922
+ line?: number | undefined;
8746
9923
  })[];
8747
9924
  edges: {
8748
9925
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -8755,6 +9932,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8755
9932
  callCount?: number | undefined;
8756
9933
  evidence?: {
8757
9934
  file: string;
9935
+ method?: string | undefined;
9936
+ pathTemplate?: string | undefined;
8758
9937
  line?: number | undefined;
8759
9938
  snippet?: string | undefined;
8760
9939
  } | undefined;
@@ -8854,6 +10033,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8854
10033
  language?: string | undefined;
8855
10034
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8856
10035
  originalPath?: string | undefined;
10036
+ } | {
10037
+ name: string;
10038
+ path: string;
10039
+ type: "RouteNode";
10040
+ id: string;
10041
+ service: string;
10042
+ method: string;
10043
+ pathTemplate: string;
10044
+ framework?: string | undefined;
10045
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10046
+ line?: number | undefined;
10047
+ } | {
10048
+ name: string;
10049
+ type: "GraphQLOperationNode";
10050
+ id: string;
10051
+ service: string;
10052
+ operationType: string;
10053
+ operationName: string;
10054
+ path?: string | undefined;
10055
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10056
+ line?: number | undefined;
8857
10057
  };
8858
10058
  after: {
8859
10059
  name: string;
@@ -8941,6 +10141,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8941
10141
  language?: string | undefined;
8942
10142
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8943
10143
  originalPath?: string | undefined;
10144
+ } | {
10145
+ name: string;
10146
+ path: string;
10147
+ type: "RouteNode";
10148
+ id: string;
10149
+ service: string;
10150
+ method: string;
10151
+ pathTemplate: string;
10152
+ framework?: string | undefined;
10153
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10154
+ line?: number | undefined;
10155
+ } | {
10156
+ name: string;
10157
+ type: "GraphQLOperationNode";
10158
+ id: string;
10159
+ service: string;
10160
+ operationType: string;
10161
+ operationName: string;
10162
+ path?: string | undefined;
10163
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10164
+ line?: number | undefined;
8944
10165
  };
8945
10166
  }[];
8946
10167
  edges: {
@@ -8956,6 +10177,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8956
10177
  callCount?: number | undefined;
8957
10178
  evidence?: {
8958
10179
  file: string;
10180
+ method?: string | undefined;
10181
+ pathTemplate?: string | undefined;
8959
10182
  line?: number | undefined;
8960
10183
  snippet?: string | undefined;
8961
10184
  } | undefined;
@@ -8976,6 +10199,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8976
10199
  callCount?: number | undefined;
8977
10200
  evidence?: {
8978
10201
  file: string;
10202
+ method?: string | undefined;
10203
+ pathTemplate?: string | undefined;
8979
10204
  line?: number | undefined;
8980
10205
  snippet?: string | undefined;
8981
10206
  } | undefined;
@@ -9081,6 +10306,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9081
10306
  language?: string | undefined;
9082
10307
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9083
10308
  originalPath?: string | undefined;
10309
+ } | {
10310
+ name: string;
10311
+ path: string;
10312
+ type: "RouteNode";
10313
+ id: string;
10314
+ service: string;
10315
+ method: string;
10316
+ pathTemplate: string;
10317
+ framework?: string | undefined;
10318
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10319
+ line?: number | undefined;
10320
+ } | {
10321
+ name: string;
10322
+ type: "GraphQLOperationNode";
10323
+ id: string;
10324
+ service: string;
10325
+ operationType: string;
10326
+ operationName: string;
10327
+ path?: string | undefined;
10328
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10329
+ line?: number | undefined;
9084
10330
  })[];
9085
10331
  edges: {
9086
10332
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -9093,6 +10339,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9093
10339
  callCount?: number | undefined;
9094
10340
  evidence?: {
9095
10341
  file: string;
10342
+ method?: string | undefined;
10343
+ pathTemplate?: string | undefined;
9096
10344
  line?: number | undefined;
9097
10345
  snippet?: string | undefined;
9098
10346
  } | undefined;
@@ -9190,6 +10438,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9190
10438
  language?: string | undefined;
9191
10439
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9192
10440
  originalPath?: string | undefined;
10441
+ } | {
10442
+ name: string;
10443
+ path: string;
10444
+ type: "RouteNode";
10445
+ id: string;
10446
+ service: string;
10447
+ method: string;
10448
+ pathTemplate: string;
10449
+ framework?: string | undefined;
10450
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10451
+ line?: number | undefined;
10452
+ } | {
10453
+ name: string;
10454
+ type: "GraphQLOperationNode";
10455
+ id: string;
10456
+ service: string;
10457
+ operationType: string;
10458
+ operationName: string;
10459
+ path?: string | undefined;
10460
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10461
+ line?: number | undefined;
9193
10462
  })[];
9194
10463
  edges: {
9195
10464
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -9202,6 +10471,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9202
10471
  callCount?: number | undefined;
9203
10472
  evidence?: {
9204
10473
  file: string;
10474
+ method?: string | undefined;
10475
+ pathTemplate?: string | undefined;
9205
10476
  line?: number | undefined;
9206
10477
  snippet?: string | undefined;
9207
10478
  } | undefined;
@@ -9301,6 +10572,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9301
10572
  language?: string | undefined;
9302
10573
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9303
10574
  originalPath?: string | undefined;
10575
+ } | {
10576
+ name: string;
10577
+ path: string;
10578
+ type: "RouteNode";
10579
+ id: string;
10580
+ service: string;
10581
+ method: string;
10582
+ pathTemplate: string;
10583
+ framework?: string | undefined;
10584
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10585
+ line?: number | undefined;
10586
+ } | {
10587
+ name: string;
10588
+ type: "GraphQLOperationNode";
10589
+ id: string;
10590
+ service: string;
10591
+ operationType: string;
10592
+ operationName: string;
10593
+ path?: string | undefined;
10594
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10595
+ line?: number | undefined;
9304
10596
  };
9305
10597
  after: {
9306
10598
  name: string;
@@ -9388,6 +10680,27 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9388
10680
  language?: string | undefined;
9389
10681
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9390
10682
  originalPath?: string | undefined;
10683
+ } | {
10684
+ name: string;
10685
+ path: string;
10686
+ type: "RouteNode";
10687
+ id: string;
10688
+ service: string;
10689
+ method: string;
10690
+ pathTemplate: string;
10691
+ framework?: string | undefined;
10692
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10693
+ line?: number | undefined;
10694
+ } | {
10695
+ name: string;
10696
+ type: "GraphQLOperationNode";
10697
+ id: string;
10698
+ service: string;
10699
+ operationType: string;
10700
+ operationName: string;
10701
+ path?: string | undefined;
10702
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10703
+ line?: number | undefined;
9391
10704
  };
9392
10705
  }[];
9393
10706
  edges: {
@@ -9403,6 +10716,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9403
10716
  callCount?: number | undefined;
9404
10717
  evidence?: {
9405
10718
  file: string;
10719
+ method?: string | undefined;
10720
+ pathTemplate?: string | undefined;
9406
10721
  line?: number | undefined;
9407
10722
  snippet?: string | undefined;
9408
10723
  } | undefined;
@@ -9423,6 +10738,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9423
10738
  callCount?: number | undefined;
9424
10739
  evidence?: {
9425
10740
  file: string;
10741
+ method?: string | undefined;
10742
+ pathTemplate?: string | undefined;
9426
10743
  line?: number | undefined;
9427
10744
  snippet?: string | undefined;
9428
10745
  } | undefined;
@@ -9445,4 +10762,4 @@ declare const DEFAULT_EXTRACTED_PRECISION_FLOOR = 0.7;
9445
10762
  declare function extractedPrecisionFloor(): number;
9446
10763
  declare function passesExtractedFloor(confidence: number): boolean;
9447
10764
 
9448
- export { type ApplicablePoliciesResponse, ApplicablePoliciesResponseSchema, type ApplicablePolicy, ApplicablePolicySchema, type BlastRadiusAffectedNode, BlastRadiusAffectedNodeSchema, type BlastRadiusResult, BlastRadiusResultSchema, type BlastRadiusRule, BlastRadiusRuleSchema, type CheckPoliciesScope, CheckPoliciesScopeSchema, type CompatRuleRef, CompatRuleRefSchema, type CompatViolationDivergence, CompatViolationDivergenceSchema, type CompatibilityRule, CompatibilityRuleSchema, type CompatibilityVerdict, CompatibilityVerdictSchema, type CompatibleDriver, CompatibleDriverSchema, type ConfigNode, ConfigNodeSchema, DEFAULT_EXTRACTED_PRECISION_FLOOR, type DaemonHealthResponse, DaemonHealthResponseSchema, type DatabaseNode, DatabaseNodeSchema, type DiscoveredVia, DiscoveredViaSchema, type Divergence, type DivergenceResult, DivergenceResultSchema, DivergenceSchema, type DivergenceType, DivergenceTypeSchema, EMPTY_REGISTRY, EXTRACTED_CONFIDENCE, type EdgeEvidence, EdgeEvidenceSchema, type EdgeSignal, EdgeSignalSchema, EdgeType, EdgeTypeSchema, type EdgeTypeValue, type ErrorEvent, ErrorEventSchema, type ExtractedConfidenceKind, type FileNode, FileNodeSchema, type FrontierNode, FrontierNodeSchema, type GraphDiffResult, GraphDiffResultSchema, type GraphEdge, GraphEdgeSchema, type GraphEdgesResponse, GraphEdgesResponseSchema, type GraphNode, type GraphNodeResponse, GraphNodeResponseSchema, GraphNodeSchema, type HealthResponse, HealthResponseSchema, type HostMismatchDivergence, HostMismatchDivergenceSchema, type HypotheticalAction, HypotheticalActionSchema, type IncidentsResponse, IncidentsResponseSchema, type InfraNode, InfraNodeSchema, type MCPToolName, MCP_TOOL_NAMES, type MissingExtractedDivergence, MissingExtractedDivergenceSchema, type MissingObservedDivergence, MissingObservedDivergenceSchema, NodeType, NodeTypeSchema, type NodeTypeValue, type ObservedDependenciesResult, ObservedDependenciesResultSchema, type OwnershipRule, OwnershipRuleSchema, PROV_RANK, type PoliciesCheckBody, PoliciesCheckBodySchema, type PoliciesViolationsResponse, PoliciesViolationsResponseSchema, type Policy, type PolicyAction, PolicyActionSchema, type PolicyFile, PolicyFileSchema, type PolicyRule, PolicyRuleSchema, PolicySchema, type PolicySeverity, PolicySeveritySchema, type PolicyViolation, PolicyViolationSchema, Provenance, type ProvenanceRule, ProvenanceRuleSchema, ProvenanceSchema, type ProvenanceValue, type RegistryEntry, RegistryEntrySchema, type RegistryFile, RegistryFileSchema, type RegistryStatus, RegistryStatusSchema, type RootCauseResult, RootCauseResultSchema, type 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 };
10765
+ export { type ApplicablePoliciesResponse, ApplicablePoliciesResponseSchema, type ApplicablePolicy, ApplicablePolicySchema, type BlastRadiusAffectedNode, BlastRadiusAffectedNodeSchema, type BlastRadiusResult, BlastRadiusResultSchema, type BlastRadiusRule, BlastRadiusRuleSchema, type CheckPoliciesScope, CheckPoliciesScopeSchema, type CompatRuleRef, CompatRuleRefSchema, type CompatViolationDivergence, CompatViolationDivergenceSchema, type CompatibilityRule, CompatibilityRuleSchema, type CompatibilityVerdict, CompatibilityVerdictSchema, type CompatibleDriver, CompatibleDriverSchema, type ConfigNode, ConfigNodeSchema, DEFAULT_EXTRACTED_PRECISION_FLOOR, type DaemonHealthResponse, DaemonHealthResponseSchema, type DatabaseNode, DatabaseNodeSchema, type DiscoveredVia, DiscoveredViaSchema, type Divergence, type DivergenceResult, DivergenceResultSchema, DivergenceSchema, type DivergenceType, DivergenceTypeSchema, EMPTY_REGISTRY, EXTRACTED_CONFIDENCE, type EdgeEvidence, EdgeEvidenceSchema, type EdgeSignal, EdgeSignalSchema, EdgeType, EdgeTypeSchema, type EdgeTypeValue, type ErrorEvent, ErrorEventSchema, type ExtractedConfidenceKind, type FileNode, FileNodeSchema, type FrontierNode, FrontierNodeSchema, type GraphDiffResult, GraphDiffResultSchema, type GraphEdge, GraphEdgeSchema, type GraphEdgesResponse, GraphEdgesResponseSchema, type GraphNode, type GraphNodeResponse, GraphNodeResponseSchema, GraphNodeSchema, type GraphQLOperationNode, GraphQLOperationNodeSchema, type HealthResponse, HealthResponseSchema, type HostMismatchDivergence, HostMismatchDivergenceSchema, type HypotheticalAction, HypotheticalActionSchema, type IncidentsResponse, IncidentsResponseSchema, type InfraNode, InfraNodeSchema, type MCPToolName, MCP_TOOL_NAMES, type MissingExtractedDivergence, MissingExtractedDivergenceSchema, type MissingObservedDivergence, MissingObservedDivergenceSchema, NodeType, NodeTypeSchema, type NodeTypeValue, type ObservedDependenciesResult, ObservedDependenciesResultSchema, type OwnershipRule, OwnershipRuleSchema, PROV_RANK, type PoliciesCheckBody, PoliciesCheckBodySchema, type PoliciesViolationsResponse, PoliciesViolationsResponseSchema, type Policy, type PolicyAction, PolicyActionSchema, type PolicyFile, PolicyFileSchema, type PolicyRule, PolicyRuleSchema, PolicySchema, type PolicySeverity, PolicySeveritySchema, type PolicyViolation, PolicyViolationSchema, Provenance, type ProvenanceRule, ProvenanceRuleSchema, ProvenanceSchema, type ProvenanceValue, type RegistryEntry, RegistryEntrySchema, type RegistryFile, RegistryFileSchema, type RegistryStatus, RegistryStatusSchema, type RootCauseResult, RootCauseResultSchema, type RouteNode, RouteNodeSchema, type SearchMatch, SearchMatchSchema, type SearchResponse, SearchResponseSchema, type SerializedGraph, SerializedGraphSchema, type ServiceNode, ServiceNodeSchema, type SingleProjectResponse, SingleProjectResponseSchema, type SpanAttributes, SpanAttributesSchema, type StaleEvent, StaleEventSchema, type StaleEventsResponse, StaleEventsResponseSchema, type StructuralRule, StructuralRuleSchema, type TransitiveDependenciesResult, TransitiveDependenciesResultSchema, type TransitiveDependency, TransitiveDependencySchema, type VersionMismatchDivergence, VersionMismatchDivergenceSchema, confidenceForExtracted, confidenceForObservedSignal, configId, databaseId, extractedEdgeId, extractedPrecisionFloor, fileId, frontierId, graphqlOperationId, inferredEdgeId, infraId, localDatabaseId, observedEdgeId, parseConfigId, parseDatabaseId, parseEdgeId, parseFileId, parseFrontierId, parseGraphqlOperationId, parseInfraId, parseRouteId, parseServiceId, passesExtractedFloor, routeId, serviceId };