@neat.is/types 0.4.26-dev.20260702 → 0.4.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -26,10 +26,14 @@ 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";
31
+ readonly GrpcMethodNode: "GrpcMethodNode";
32
+ readonly WebSocketChannelNode: "WebSocketChannelNode";
29
33
  };
30
34
  type NodeTypeValue = (typeof NodeType)[keyof typeof NodeType];
31
35
 
32
- declare const NodeTypeSchema: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
36
+ declare const NodeTypeSchema: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
33
37
 
34
38
  declare const CompatibleDriverSchema: z.ZodObject<{
35
39
  name: z.ZodString;
@@ -384,6 +388,131 @@ declare const FileNodeSchema: z.ZodObject<{
384
388
  originalPath?: string | undefined;
385
389
  }>;
386
390
  type FileNode = z.infer<typeof FileNodeSchema>;
391
+ declare const RouteNodeSchema: z.ZodObject<{
392
+ id: z.ZodString;
393
+ type: z.ZodLiteral<"RouteNode">;
394
+ name: z.ZodString;
395
+ service: z.ZodString;
396
+ method: z.ZodString;
397
+ pathTemplate: z.ZodString;
398
+ path: z.ZodString;
399
+ line: z.ZodOptional<z.ZodNumber>;
400
+ framework: z.ZodOptional<z.ZodString>;
401
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
402
+ }, "strip", z.ZodTypeAny, {
403
+ name: string;
404
+ path: string;
405
+ type: "RouteNode";
406
+ id: string;
407
+ service: string;
408
+ method: string;
409
+ pathTemplate: string;
410
+ framework?: string | undefined;
411
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
412
+ line?: number | undefined;
413
+ }, {
414
+ name: string;
415
+ path: string;
416
+ type: "RouteNode";
417
+ id: string;
418
+ service: string;
419
+ method: string;
420
+ pathTemplate: string;
421
+ framework?: string | undefined;
422
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
423
+ line?: number | undefined;
424
+ }>;
425
+ type RouteNode = z.infer<typeof RouteNodeSchema>;
426
+ declare const GraphQLOperationNodeSchema: z.ZodObject<{
427
+ id: z.ZodString;
428
+ type: z.ZodLiteral<"GraphQLOperationNode">;
429
+ name: z.ZodString;
430
+ service: z.ZodString;
431
+ operationType: z.ZodString;
432
+ operationName: z.ZodString;
433
+ path: z.ZodOptional<z.ZodString>;
434
+ line: z.ZodOptional<z.ZodNumber>;
435
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
436
+ }, "strip", z.ZodTypeAny, {
437
+ name: string;
438
+ type: "GraphQLOperationNode";
439
+ id: string;
440
+ service: string;
441
+ operationType: string;
442
+ operationName: string;
443
+ path?: string | undefined;
444
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
445
+ line?: number | undefined;
446
+ }, {
447
+ name: string;
448
+ type: "GraphQLOperationNode";
449
+ id: string;
450
+ service: string;
451
+ operationType: string;
452
+ operationName: string;
453
+ path?: string | undefined;
454
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
455
+ line?: number | undefined;
456
+ }>;
457
+ type GraphQLOperationNode = z.infer<typeof GraphQLOperationNodeSchema>;
458
+ declare const GrpcMethodNodeSchema: z.ZodObject<{
459
+ id: z.ZodString;
460
+ type: z.ZodLiteral<"GrpcMethodNode">;
461
+ name: z.ZodString;
462
+ rpcService: z.ZodString;
463
+ rpcMethod: z.ZodString;
464
+ path: z.ZodOptional<z.ZodString>;
465
+ line: z.ZodOptional<z.ZodNumber>;
466
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
467
+ }, "strip", z.ZodTypeAny, {
468
+ name: string;
469
+ type: "GrpcMethodNode";
470
+ id: string;
471
+ rpcService: string;
472
+ rpcMethod: string;
473
+ path?: string | undefined;
474
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
475
+ line?: number | undefined;
476
+ }, {
477
+ name: string;
478
+ type: "GrpcMethodNode";
479
+ id: string;
480
+ rpcService: string;
481
+ rpcMethod: string;
482
+ path?: string | undefined;
483
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
484
+ line?: number | undefined;
485
+ }>;
486
+ type GrpcMethodNode = z.infer<typeof GrpcMethodNodeSchema>;
487
+ declare const WebSocketChannelNodeSchema: z.ZodObject<{
488
+ id: z.ZodString;
489
+ type: z.ZodLiteral<"WebSocketChannelNode">;
490
+ name: z.ZodString;
491
+ service: z.ZodString;
492
+ channel: z.ZodString;
493
+ path: z.ZodOptional<z.ZodString>;
494
+ line: z.ZodOptional<z.ZodNumber>;
495
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
496
+ }, "strip", z.ZodTypeAny, {
497
+ name: string;
498
+ type: "WebSocketChannelNode";
499
+ id: string;
500
+ service: string;
501
+ channel: string;
502
+ path?: string | undefined;
503
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
504
+ line?: number | undefined;
505
+ }, {
506
+ name: string;
507
+ type: "WebSocketChannelNode";
508
+ id: string;
509
+ service: string;
510
+ channel: string;
511
+ path?: string | undefined;
512
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
513
+ line?: number | undefined;
514
+ }>;
515
+ type WebSocketChannelNode = z.infer<typeof WebSocketChannelNodeSchema>;
387
516
  declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
388
517
  id: z.ZodString;
389
518
  type: z.ZodLiteral<"ServiceNode">;
@@ -712,6 +841,123 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
712
841
  language?: string | undefined;
713
842
  discoveredVia?: "static" | "otel" | "merged" | undefined;
714
843
  originalPath?: string | undefined;
844
+ }>, z.ZodObject<{
845
+ id: z.ZodString;
846
+ type: z.ZodLiteral<"RouteNode">;
847
+ name: z.ZodString;
848
+ service: z.ZodString;
849
+ method: z.ZodString;
850
+ pathTemplate: z.ZodString;
851
+ path: z.ZodString;
852
+ line: z.ZodOptional<z.ZodNumber>;
853
+ framework: z.ZodOptional<z.ZodString>;
854
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
855
+ }, "strip", z.ZodTypeAny, {
856
+ name: string;
857
+ path: string;
858
+ type: "RouteNode";
859
+ id: string;
860
+ service: string;
861
+ method: string;
862
+ pathTemplate: string;
863
+ framework?: string | undefined;
864
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
865
+ line?: number | undefined;
866
+ }, {
867
+ name: string;
868
+ path: string;
869
+ type: "RouteNode";
870
+ id: string;
871
+ service: string;
872
+ method: string;
873
+ pathTemplate: string;
874
+ framework?: string | undefined;
875
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
876
+ line?: number | undefined;
877
+ }>, z.ZodObject<{
878
+ id: z.ZodString;
879
+ type: z.ZodLiteral<"GraphQLOperationNode">;
880
+ name: z.ZodString;
881
+ service: z.ZodString;
882
+ operationType: z.ZodString;
883
+ operationName: z.ZodString;
884
+ path: z.ZodOptional<z.ZodString>;
885
+ line: z.ZodOptional<z.ZodNumber>;
886
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
887
+ }, "strip", z.ZodTypeAny, {
888
+ name: string;
889
+ type: "GraphQLOperationNode";
890
+ id: string;
891
+ service: string;
892
+ operationType: string;
893
+ operationName: string;
894
+ path?: string | undefined;
895
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
896
+ line?: number | undefined;
897
+ }, {
898
+ name: string;
899
+ type: "GraphQLOperationNode";
900
+ id: string;
901
+ service: string;
902
+ operationType: string;
903
+ operationName: string;
904
+ path?: string | undefined;
905
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
906
+ line?: number | undefined;
907
+ }>, z.ZodObject<{
908
+ id: z.ZodString;
909
+ type: z.ZodLiteral<"GrpcMethodNode">;
910
+ name: z.ZodString;
911
+ rpcService: z.ZodString;
912
+ rpcMethod: z.ZodString;
913
+ path: z.ZodOptional<z.ZodString>;
914
+ line: z.ZodOptional<z.ZodNumber>;
915
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
916
+ }, "strip", z.ZodTypeAny, {
917
+ name: string;
918
+ type: "GrpcMethodNode";
919
+ id: string;
920
+ rpcService: string;
921
+ rpcMethod: string;
922
+ path?: string | undefined;
923
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
924
+ line?: number | undefined;
925
+ }, {
926
+ name: string;
927
+ type: "GrpcMethodNode";
928
+ id: string;
929
+ rpcService: string;
930
+ rpcMethod: string;
931
+ path?: string | undefined;
932
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
933
+ line?: number | undefined;
934
+ }>, z.ZodObject<{
935
+ id: z.ZodString;
936
+ type: z.ZodLiteral<"WebSocketChannelNode">;
937
+ name: z.ZodString;
938
+ service: z.ZodString;
939
+ channel: z.ZodString;
940
+ path: z.ZodOptional<z.ZodString>;
941
+ line: z.ZodOptional<z.ZodNumber>;
942
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
943
+ }, "strip", z.ZodTypeAny, {
944
+ name: string;
945
+ type: "WebSocketChannelNode";
946
+ id: string;
947
+ service: string;
948
+ channel: string;
949
+ path?: string | undefined;
950
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
951
+ line?: number | undefined;
952
+ }, {
953
+ name: string;
954
+ type: "WebSocketChannelNode";
955
+ id: string;
956
+ service: string;
957
+ channel: string;
958
+ path?: string | undefined;
959
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
960
+ line?: number | undefined;
715
961
  }>]>;
716
962
  type GraphNode = z.infer<typeof GraphNodeSchema>;
717
963
 
@@ -721,12 +967,18 @@ declare const EdgeEvidenceSchema: z.ZodObject<{
721
967
  file: z.ZodString;
722
968
  line: z.ZodOptional<z.ZodNumber>;
723
969
  snippet: z.ZodOptional<z.ZodString>;
970
+ method: z.ZodOptional<z.ZodString>;
971
+ pathTemplate: z.ZodOptional<z.ZodString>;
724
972
  }, "strip", z.ZodTypeAny, {
725
973
  file: string;
974
+ method?: string | undefined;
975
+ pathTemplate?: string | undefined;
726
976
  line?: number | undefined;
727
977
  snippet?: string | undefined;
728
978
  }, {
729
979
  file: string;
980
+ method?: string | undefined;
981
+ pathTemplate?: string | undefined;
730
982
  line?: number | undefined;
731
983
  snippet?: string | undefined;
732
984
  }>;
@@ -758,12 +1010,18 @@ declare const GraphEdgeSchema: z.ZodObject<{
758
1010
  file: z.ZodString;
759
1011
  line: z.ZodOptional<z.ZodNumber>;
760
1012
  snippet: z.ZodOptional<z.ZodString>;
1013
+ method: z.ZodOptional<z.ZodString>;
1014
+ pathTemplate: z.ZodOptional<z.ZodString>;
761
1015
  }, "strip", z.ZodTypeAny, {
762
1016
  file: string;
1017
+ method?: string | undefined;
1018
+ pathTemplate?: string | undefined;
763
1019
  line?: number | undefined;
764
1020
  snippet?: string | undefined;
765
1021
  }, {
766
1022
  file: string;
1023
+ method?: string | undefined;
1024
+ pathTemplate?: string | undefined;
767
1025
  line?: number | undefined;
768
1026
  snippet?: string | undefined;
769
1027
  }>>;
@@ -791,6 +1049,8 @@ declare const GraphEdgeSchema: z.ZodObject<{
791
1049
  callCount?: number | undefined;
792
1050
  evidence?: {
793
1051
  file: string;
1052
+ method?: string | undefined;
1053
+ pathTemplate?: string | undefined;
794
1054
  line?: number | undefined;
795
1055
  snippet?: string | undefined;
796
1056
  } | undefined;
@@ -810,6 +1070,8 @@ declare const GraphEdgeSchema: z.ZodObject<{
810
1070
  callCount?: number | undefined;
811
1071
  evidence?: {
812
1072
  file: string;
1073
+ method?: string | undefined;
1074
+ pathTemplate?: string | undefined;
813
1075
  line?: number | undefined;
814
1076
  snippet?: string | undefined;
815
1077
  } | undefined;
@@ -1064,12 +1326,18 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1064
1326
  file: z.ZodString;
1065
1327
  line: z.ZodOptional<z.ZodNumber>;
1066
1328
  snippet: z.ZodOptional<z.ZodString>;
1329
+ method: z.ZodOptional<z.ZodString>;
1330
+ pathTemplate: z.ZodOptional<z.ZodString>;
1067
1331
  }, "strip", z.ZodTypeAny, {
1068
1332
  file: string;
1333
+ method?: string | undefined;
1334
+ pathTemplate?: string | undefined;
1069
1335
  line?: number | undefined;
1070
1336
  snippet?: string | undefined;
1071
1337
  }, {
1072
1338
  file: string;
1339
+ method?: string | undefined;
1340
+ pathTemplate?: string | undefined;
1073
1341
  line?: number | undefined;
1074
1342
  snippet?: string | undefined;
1075
1343
  }>>;
@@ -1097,6 +1365,8 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1097
1365
  callCount?: number | undefined;
1098
1366
  evidence?: {
1099
1367
  file: string;
1368
+ method?: string | undefined;
1369
+ pathTemplate?: string | undefined;
1100
1370
  line?: number | undefined;
1101
1371
  snippet?: string | undefined;
1102
1372
  } | undefined;
@@ -1116,6 +1386,8 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1116
1386
  callCount?: number | undefined;
1117
1387
  evidence?: {
1118
1388
  file: string;
1389
+ method?: string | undefined;
1390
+ pathTemplate?: string | undefined;
1119
1391
  line?: number | undefined;
1120
1392
  snippet?: string | undefined;
1121
1393
  } | undefined;
@@ -1140,6 +1412,8 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1140
1412
  callCount?: number | undefined;
1141
1413
  evidence?: {
1142
1414
  file: string;
1415
+ method?: string | undefined;
1416
+ pathTemplate?: string | undefined;
1143
1417
  line?: number | undefined;
1144
1418
  snippet?: string | undefined;
1145
1419
  } | undefined;
@@ -1165,6 +1439,8 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
1165
1439
  callCount?: number | undefined;
1166
1440
  evidence?: {
1167
1441
  file: string;
1442
+ method?: string | undefined;
1443
+ pathTemplate?: string | undefined;
1168
1444
  line?: number | undefined;
1169
1445
  snippet?: string | undefined;
1170
1446
  } | undefined;
@@ -1188,6 +1464,7 @@ declare function parseServiceId(id: string): {
1188
1464
  } | null;
1189
1465
  declare function databaseId(host: string): string;
1190
1466
  declare function parseDatabaseId(id: string): string | null;
1467
+ declare function localDatabaseId(service: string, name: string): string;
1191
1468
  declare function configId(relPath: string): string;
1192
1469
  declare function parseConfigId(id: string): string | null;
1193
1470
  declare function infraId(kind: string, name: string): string;
@@ -1202,6 +1479,28 @@ declare function parseFileId(id: string): {
1202
1479
  service: string;
1203
1480
  relPath: string;
1204
1481
  } | null;
1482
+ declare function routeId(service: string, method: string, pathTemplate: string): string;
1483
+ declare function parseRouteId(id: string): {
1484
+ service: string;
1485
+ method: string;
1486
+ pathTemplate: string;
1487
+ } | null;
1488
+ declare function graphqlOperationId(service: string, operationType: string, operationName: string): string;
1489
+ declare function parseGraphqlOperationId(id: string): {
1490
+ service: string;
1491
+ operationType: string;
1492
+ operationName: string;
1493
+ } | null;
1494
+ declare function grpcMethodId(rpcService: string, rpcMethod: string): string;
1495
+ declare function parseGrpcMethodId(id: string): {
1496
+ rpcService: string;
1497
+ rpcMethod: string;
1498
+ } | null;
1499
+ declare function websocketChannelId(service: string, channel: string): string;
1500
+ declare function parseWebsocketChannelId(id: string): {
1501
+ service: string;
1502
+ channel: string;
1503
+ } | null;
1205
1504
  declare function extractedEdgeId(source: string, target: string, type: string): string;
1206
1505
  declare function observedEdgeId(source: string, target: string, type: string): string;
1207
1506
  declare function inferredEdgeId(source: string, target: string, type: string): string;
@@ -1219,19 +1518,19 @@ declare const PolicyActionSchema: z.ZodEnum<["log", "alert", "block"]>;
1219
1518
  type PolicyAction = z.infer<typeof PolicyActionSchema>;
1220
1519
  declare const StructuralRuleSchema: z.ZodObject<{
1221
1520
  type: z.ZodLiteral<"structural">;
1222
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1521
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1223
1522
  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"]>;
1523
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1225
1524
  }, "strip", z.ZodTypeAny, {
1226
1525
  type: "structural";
1227
1526
  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";
1527
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1528
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1230
1529
  }, {
1231
1530
  type: "structural";
1232
1531
  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";
1532
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1533
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1235
1534
  }>;
1236
1535
  type StructuralRule = z.infer<typeof StructuralRuleSchema>;
1237
1536
  declare const CompatibilityRuleSchema: z.ZodObject<{
@@ -1264,50 +1563,50 @@ declare const ProvenanceRuleSchema: z.ZodObject<{
1264
1563
  type ProvenanceRule = z.infer<typeof ProvenanceRuleSchema>;
1265
1564
  declare const OwnershipRuleSchema: z.ZodObject<{
1266
1565
  type: z.ZodLiteral<"ownership">;
1267
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1566
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1268
1567
  field: z.ZodDefault<z.ZodString>;
1269
1568
  }, "strip", z.ZodTypeAny, {
1270
1569
  type: "ownership";
1271
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1570
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1272
1571
  field: string;
1273
1572
  }, {
1274
1573
  type: "ownership";
1275
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1574
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1276
1575
  field?: string | undefined;
1277
1576
  }>;
1278
1577
  type OwnershipRule = z.infer<typeof OwnershipRuleSchema>;
1279
1578
  declare const BlastRadiusRuleSchema: z.ZodObject<{
1280
1579
  type: z.ZodLiteral<"blast-radius">;
1281
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1580
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1282
1581
  maxAffected: z.ZodNumber;
1283
1582
  depth: z.ZodOptional<z.ZodNumber>;
1284
1583
  }, "strip", z.ZodTypeAny, {
1285
1584
  type: "blast-radius";
1286
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1585
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1287
1586
  maxAffected: number;
1288
1587
  depth?: number | undefined;
1289
1588
  }, {
1290
1589
  type: "blast-radius";
1291
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1590
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1292
1591
  maxAffected: number;
1293
1592
  depth?: number | undefined;
1294
1593
  }>;
1295
1594
  type BlastRadiusRule = z.infer<typeof BlastRadiusRuleSchema>;
1296
1595
  declare const PolicyRuleSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1297
1596
  type: z.ZodLiteral<"structural">;
1298
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1597
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1299
1598
  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"]>;
1599
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1301
1600
  }, "strip", z.ZodTypeAny, {
1302
1601
  type: "structural";
1303
1602
  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";
1603
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1604
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1306
1605
  }, {
1307
1606
  type: "structural";
1308
1607
  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";
1608
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1609
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1311
1610
  }>, z.ZodObject<{
1312
1611
  type: z.ZodLiteral<"compatibility">;
1313
1612
  kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
@@ -1334,29 +1633,29 @@ declare const PolicyRuleSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1334
1633
  targetNodeId?: string | undefined;
1335
1634
  }>, z.ZodObject<{
1336
1635
  type: z.ZodLiteral<"ownership">;
1337
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1636
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1338
1637
  field: z.ZodDefault<z.ZodString>;
1339
1638
  }, "strip", z.ZodTypeAny, {
1340
1639
  type: "ownership";
1341
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1640
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1342
1641
  field: string;
1343
1642
  }, {
1344
1643
  type: "ownership";
1345
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1644
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1346
1645
  field?: string | undefined;
1347
1646
  }>, z.ZodObject<{
1348
1647
  type: z.ZodLiteral<"blast-radius">;
1349
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1648
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1350
1649
  maxAffected: z.ZodNumber;
1351
1650
  depth: z.ZodOptional<z.ZodNumber>;
1352
1651
  }, "strip", z.ZodTypeAny, {
1353
1652
  type: "blast-radius";
1354
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1653
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1355
1654
  maxAffected: number;
1356
1655
  depth?: number | undefined;
1357
1656
  }, {
1358
1657
  type: "blast-radius";
1359
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1658
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1360
1659
  maxAffected: number;
1361
1660
  depth?: number | undefined;
1362
1661
  }>]>;
@@ -1369,19 +1668,19 @@ declare const PolicySchema: z.ZodObject<{
1369
1668
  onViolation: z.ZodOptional<z.ZodEnum<["log", "alert", "block"]>>;
1370
1669
  rule: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1371
1670
  type: z.ZodLiteral<"structural">;
1372
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1671
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1373
1672
  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"]>;
1673
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1375
1674
  }, "strip", z.ZodTypeAny, {
1376
1675
  type: "structural";
1377
1676
  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";
1677
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1678
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1380
1679
  }, {
1381
1680
  type: "structural";
1382
1681
  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";
1682
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1683
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1385
1684
  }>, z.ZodObject<{
1386
1685
  type: z.ZodLiteral<"compatibility">;
1387
1686
  kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
@@ -1408,29 +1707,29 @@ declare const PolicySchema: z.ZodObject<{
1408
1707
  targetNodeId?: string | undefined;
1409
1708
  }>, z.ZodObject<{
1410
1709
  type: z.ZodLiteral<"ownership">;
1411
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1710
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1412
1711
  field: z.ZodDefault<z.ZodString>;
1413
1712
  }, "strip", z.ZodTypeAny, {
1414
1713
  type: "ownership";
1415
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1714
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1416
1715
  field: string;
1417
1716
  }, {
1418
1717
  type: "ownership";
1419
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1718
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1420
1719
  field?: string | undefined;
1421
1720
  }>, z.ZodObject<{
1422
1721
  type: z.ZodLiteral<"blast-radius">;
1423
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1722
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1424
1723
  maxAffected: z.ZodNumber;
1425
1724
  depth: z.ZodOptional<z.ZodNumber>;
1426
1725
  }, "strip", z.ZodTypeAny, {
1427
1726
  type: "blast-radius";
1428
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1727
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1429
1728
  maxAffected: number;
1430
1729
  depth?: number | undefined;
1431
1730
  }, {
1432
1731
  type: "blast-radius";
1433
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1732
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1434
1733
  maxAffected: number;
1435
1734
  depth?: number | undefined;
1436
1735
  }>]>;
@@ -1441,8 +1740,8 @@ declare const PolicySchema: z.ZodObject<{
1441
1740
  rule: {
1442
1741
  type: "structural";
1443
1742
  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";
1743
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1744
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1446
1745
  } | {
1447
1746
  type: "compatibility";
1448
1747
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1453,11 +1752,11 @@ declare const PolicySchema: z.ZodObject<{
1453
1752
  targetNodeId?: string | undefined;
1454
1753
  } | {
1455
1754
  type: "ownership";
1456
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1755
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1457
1756
  field: string;
1458
1757
  } | {
1459
1758
  type: "blast-radius";
1460
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1759
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1461
1760
  maxAffected: number;
1462
1761
  depth?: number | undefined;
1463
1762
  };
@@ -1470,8 +1769,8 @@ declare const PolicySchema: z.ZodObject<{
1470
1769
  rule: {
1471
1770
  type: "structural";
1472
1771
  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";
1772
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1773
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1475
1774
  } | {
1476
1775
  type: "compatibility";
1477
1776
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1482,11 +1781,11 @@ declare const PolicySchema: z.ZodObject<{
1482
1781
  targetNodeId?: string | undefined;
1483
1782
  } | {
1484
1783
  type: "ownership";
1485
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1784
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1486
1785
  field?: string | undefined;
1487
1786
  } | {
1488
1787
  type: "blast-radius";
1489
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1788
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1490
1789
  maxAffected: number;
1491
1790
  depth?: number | undefined;
1492
1791
  };
@@ -1504,19 +1803,19 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1504
1803
  onViolation: z.ZodOptional<z.ZodEnum<["log", "alert", "block"]>>;
1505
1804
  rule: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
1506
1805
  type: z.ZodLiteral<"structural">;
1507
- fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1806
+ fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1508
1807
  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"]>;
1808
+ toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1510
1809
  }, "strip", z.ZodTypeAny, {
1511
1810
  type: "structural";
1512
1811
  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";
1812
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1813
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1515
1814
  }, {
1516
1815
  type: "structural";
1517
1816
  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";
1817
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1818
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1520
1819
  }>, z.ZodObject<{
1521
1820
  type: z.ZodLiteral<"compatibility">;
1522
1821
  kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
@@ -1543,29 +1842,29 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1543
1842
  targetNodeId?: string | undefined;
1544
1843
  }>, z.ZodObject<{
1545
1844
  type: z.ZodLiteral<"ownership">;
1546
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1845
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1547
1846
  field: z.ZodDefault<z.ZodString>;
1548
1847
  }, "strip", z.ZodTypeAny, {
1549
1848
  type: "ownership";
1550
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1849
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1551
1850
  field: string;
1552
1851
  }, {
1553
1852
  type: "ownership";
1554
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1853
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1555
1854
  field?: string | undefined;
1556
1855
  }>, z.ZodObject<{
1557
1856
  type: z.ZodLiteral<"blast-radius">;
1558
- nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode"]>;
1857
+ nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
1559
1858
  maxAffected: z.ZodNumber;
1560
1859
  depth: z.ZodOptional<z.ZodNumber>;
1561
1860
  }, "strip", z.ZodTypeAny, {
1562
1861
  type: "blast-radius";
1563
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1862
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1564
1863
  maxAffected: number;
1565
1864
  depth?: number | undefined;
1566
1865
  }, {
1567
1866
  type: "blast-radius";
1568
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1867
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1569
1868
  maxAffected: number;
1570
1869
  depth?: number | undefined;
1571
1870
  }>]>;
@@ -1576,8 +1875,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1576
1875
  rule: {
1577
1876
  type: "structural";
1578
1877
  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";
1878
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1879
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1581
1880
  } | {
1582
1881
  type: "compatibility";
1583
1882
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1588,11 +1887,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1588
1887
  targetNodeId?: string | undefined;
1589
1888
  } | {
1590
1889
  type: "ownership";
1591
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1890
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1592
1891
  field: string;
1593
1892
  } | {
1594
1893
  type: "blast-radius";
1595
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1894
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1596
1895
  maxAffected: number;
1597
1896
  depth?: number | undefined;
1598
1897
  };
@@ -1605,8 +1904,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1605
1904
  rule: {
1606
1905
  type: "structural";
1607
1906
  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";
1907
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1908
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1610
1909
  } | {
1611
1910
  type: "compatibility";
1612
1911
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1617,11 +1916,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1617
1916
  targetNodeId?: string | undefined;
1618
1917
  } | {
1619
1918
  type: "ownership";
1620
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1919
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1621
1920
  field?: string | undefined;
1622
1921
  } | {
1623
1922
  type: "blast-radius";
1624
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1923
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1625
1924
  maxAffected: number;
1626
1925
  depth?: number | undefined;
1627
1926
  };
@@ -1637,8 +1936,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1637
1936
  rule: {
1638
1937
  type: "structural";
1639
1938
  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";
1939
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1940
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1642
1941
  } | {
1643
1942
  type: "compatibility";
1644
1943
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1649,11 +1948,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1649
1948
  targetNodeId?: string | undefined;
1650
1949
  } | {
1651
1950
  type: "ownership";
1652
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1951
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1653
1952
  field: string;
1654
1953
  } | {
1655
1954
  type: "blast-radius";
1656
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1955
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1657
1956
  maxAffected: number;
1658
1957
  depth?: number | undefined;
1659
1958
  };
@@ -1669,8 +1968,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1669
1968
  rule: {
1670
1969
  type: "structural";
1671
1970
  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";
1971
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1972
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1674
1973
  } | {
1675
1974
  type: "compatibility";
1676
1975
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1681,11 +1980,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1681
1980
  targetNodeId?: string | undefined;
1682
1981
  } | {
1683
1982
  type: "ownership";
1684
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1983
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1685
1984
  field?: string | undefined;
1686
1985
  } | {
1687
1986
  type: "blast-radius";
1688
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
1987
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1689
1988
  maxAffected: number;
1690
1989
  depth?: number | undefined;
1691
1990
  };
@@ -1701,8 +2000,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1701
2000
  rule: {
1702
2001
  type: "structural";
1703
2002
  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";
2003
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2004
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1706
2005
  } | {
1707
2006
  type: "compatibility";
1708
2007
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1713,11 +2012,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1713
2012
  targetNodeId?: string | undefined;
1714
2013
  } | {
1715
2014
  type: "ownership";
1716
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
2015
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1717
2016
  field: string;
1718
2017
  } | {
1719
2018
  type: "blast-radius";
1720
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
2019
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1721
2020
  maxAffected: number;
1722
2021
  depth?: number | undefined;
1723
2022
  };
@@ -1733,8 +2032,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1733
2032
  rule: {
1734
2033
  type: "structural";
1735
2034
  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";
2035
+ fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
2036
+ toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1738
2037
  } | {
1739
2038
  type: "compatibility";
1740
2039
  kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
@@ -1745,11 +2044,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
1745
2044
  targetNodeId?: string | undefined;
1746
2045
  } | {
1747
2046
  type: "ownership";
1748
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
2047
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1749
2048
  field?: string | undefined;
1750
2049
  } | {
1751
2050
  type: "blast-radius";
1752
- nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode";
2051
+ nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
1753
2052
  maxAffected: number;
1754
2053
  depth?: number | undefined;
1755
2054
  };
@@ -2082,12 +2381,18 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2082
2381
  file: z.ZodString;
2083
2382
  line: z.ZodOptional<z.ZodNumber>;
2084
2383
  snippet: z.ZodOptional<z.ZodString>;
2384
+ method: z.ZodOptional<z.ZodString>;
2385
+ pathTemplate: z.ZodOptional<z.ZodString>;
2085
2386
  }, "strip", z.ZodTypeAny, {
2086
2387
  file: string;
2388
+ method?: string | undefined;
2389
+ pathTemplate?: string | undefined;
2087
2390
  line?: number | undefined;
2088
2391
  snippet?: string | undefined;
2089
2392
  }, {
2090
2393
  file: string;
2394
+ method?: string | undefined;
2395
+ pathTemplate?: string | undefined;
2091
2396
  line?: number | undefined;
2092
2397
  snippet?: string | undefined;
2093
2398
  }>>;
@@ -2115,6 +2420,8 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2115
2420
  callCount?: number | undefined;
2116
2421
  evidence?: {
2117
2422
  file: string;
2423
+ method?: string | undefined;
2424
+ pathTemplate?: string | undefined;
2118
2425
  line?: number | undefined;
2119
2426
  snippet?: string | undefined;
2120
2427
  } | undefined;
@@ -2134,6 +2441,8 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2134
2441
  callCount?: number | undefined;
2135
2442
  evidence?: {
2136
2443
  file: string;
2444
+ method?: string | undefined;
2445
+ pathTemplate?: string | undefined;
2137
2446
  line?: number | undefined;
2138
2447
  snippet?: string | undefined;
2139
2448
  } | undefined;
@@ -2167,6 +2476,8 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2167
2476
  callCount?: number | undefined;
2168
2477
  evidence?: {
2169
2478
  file: string;
2479
+ method?: string | undefined;
2480
+ pathTemplate?: string | undefined;
2170
2481
  line?: number | undefined;
2171
2482
  snippet?: string | undefined;
2172
2483
  } | undefined;
@@ -2195,6 +2506,8 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
2195
2506
  callCount?: number | undefined;
2196
2507
  evidence?: {
2197
2508
  file: string;
2509
+ method?: string | undefined;
2510
+ pathTemplate?: string | undefined;
2198
2511
  line?: number | undefined;
2199
2512
  snippet?: string | undefined;
2200
2513
  } | undefined;
@@ -2222,12 +2535,18 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2222
2535
  file: z.ZodString;
2223
2536
  line: z.ZodOptional<z.ZodNumber>;
2224
2537
  snippet: z.ZodOptional<z.ZodString>;
2538
+ method: z.ZodOptional<z.ZodString>;
2539
+ pathTemplate: z.ZodOptional<z.ZodString>;
2225
2540
  }, "strip", z.ZodTypeAny, {
2226
2541
  file: string;
2542
+ method?: string | undefined;
2543
+ pathTemplate?: string | undefined;
2227
2544
  line?: number | undefined;
2228
2545
  snippet?: string | undefined;
2229
2546
  }, {
2230
2547
  file: string;
2548
+ method?: string | undefined;
2549
+ pathTemplate?: string | undefined;
2231
2550
  line?: number | undefined;
2232
2551
  snippet?: string | undefined;
2233
2552
  }>>;
@@ -2255,6 +2574,8 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2255
2574
  callCount?: number | undefined;
2256
2575
  evidence?: {
2257
2576
  file: string;
2577
+ method?: string | undefined;
2578
+ pathTemplate?: string | undefined;
2258
2579
  line?: number | undefined;
2259
2580
  snippet?: string | undefined;
2260
2581
  } | undefined;
@@ -2274,6 +2595,8 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2274
2595
  callCount?: number | undefined;
2275
2596
  evidence?: {
2276
2597
  file: string;
2598
+ method?: string | undefined;
2599
+ pathTemplate?: string | undefined;
2277
2600
  line?: number | undefined;
2278
2601
  snippet?: string | undefined;
2279
2602
  } | undefined;
@@ -2307,6 +2630,8 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2307
2630
  callCount?: number | undefined;
2308
2631
  evidence?: {
2309
2632
  file: string;
2633
+ method?: string | undefined;
2634
+ pathTemplate?: string | undefined;
2310
2635
  line?: number | undefined;
2311
2636
  snippet?: string | undefined;
2312
2637
  } | undefined;
@@ -2335,6 +2660,8 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
2335
2660
  callCount?: number | undefined;
2336
2661
  evidence?: {
2337
2662
  file: string;
2663
+ method?: string | undefined;
2664
+ pathTemplate?: string | undefined;
2338
2665
  line?: number | undefined;
2339
2666
  snippet?: string | undefined;
2340
2667
  } | undefined;
@@ -2463,12 +2790,18 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2463
2790
  file: z.ZodString;
2464
2791
  line: z.ZodOptional<z.ZodNumber>;
2465
2792
  snippet: z.ZodOptional<z.ZodString>;
2793
+ method: z.ZodOptional<z.ZodString>;
2794
+ pathTemplate: z.ZodOptional<z.ZodString>;
2466
2795
  }, "strip", z.ZodTypeAny, {
2467
2796
  file: string;
2797
+ method?: string | undefined;
2798
+ pathTemplate?: string | undefined;
2468
2799
  line?: number | undefined;
2469
2800
  snippet?: string | undefined;
2470
2801
  }, {
2471
2802
  file: string;
2803
+ method?: string | undefined;
2804
+ pathTemplate?: string | undefined;
2472
2805
  line?: number | undefined;
2473
2806
  snippet?: string | undefined;
2474
2807
  }>>;
@@ -2496,6 +2829,8 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2496
2829
  callCount?: number | undefined;
2497
2830
  evidence?: {
2498
2831
  file: string;
2832
+ method?: string | undefined;
2833
+ pathTemplate?: string | undefined;
2499
2834
  line?: number | undefined;
2500
2835
  snippet?: string | undefined;
2501
2836
  } | undefined;
@@ -2515,6 +2850,8 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2515
2850
  callCount?: number | undefined;
2516
2851
  evidence?: {
2517
2852
  file: string;
2853
+ method?: string | undefined;
2854
+ pathTemplate?: string | undefined;
2518
2855
  line?: number | undefined;
2519
2856
  snippet?: string | undefined;
2520
2857
  } | undefined;
@@ -2547,6 +2884,8 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2547
2884
  callCount?: number | undefined;
2548
2885
  evidence?: {
2549
2886
  file: string;
2887
+ method?: string | undefined;
2888
+ pathTemplate?: string | undefined;
2550
2889
  line?: number | undefined;
2551
2890
  snippet?: string | undefined;
2552
2891
  } | undefined;
@@ -2581,6 +2920,8 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
2581
2920
  callCount?: number | undefined;
2582
2921
  evidence?: {
2583
2922
  file: string;
2923
+ method?: string | undefined;
2924
+ pathTemplate?: string | undefined;
2584
2925
  line?: number | undefined;
2585
2926
  snippet?: string | undefined;
2586
2927
  } | undefined;
@@ -2615,12 +2956,18 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2615
2956
  file: z.ZodString;
2616
2957
  line: z.ZodOptional<z.ZodNumber>;
2617
2958
  snippet: z.ZodOptional<z.ZodString>;
2959
+ method: z.ZodOptional<z.ZodString>;
2960
+ pathTemplate: z.ZodOptional<z.ZodString>;
2618
2961
  }, "strip", z.ZodTypeAny, {
2619
2962
  file: string;
2963
+ method?: string | undefined;
2964
+ pathTemplate?: string | undefined;
2620
2965
  line?: number | undefined;
2621
2966
  snippet?: string | undefined;
2622
2967
  }, {
2623
2968
  file: string;
2969
+ method?: string | undefined;
2970
+ pathTemplate?: string | undefined;
2624
2971
  line?: number | undefined;
2625
2972
  snippet?: string | undefined;
2626
2973
  }>>;
@@ -2648,6 +2995,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2648
2995
  callCount?: number | undefined;
2649
2996
  evidence?: {
2650
2997
  file: string;
2998
+ method?: string | undefined;
2999
+ pathTemplate?: string | undefined;
2651
3000
  line?: number | undefined;
2652
3001
  snippet?: string | undefined;
2653
3002
  } | undefined;
@@ -2667,6 +3016,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2667
3016
  callCount?: number | undefined;
2668
3017
  evidence?: {
2669
3018
  file: string;
3019
+ method?: string | undefined;
3020
+ pathTemplate?: string | undefined;
2670
3021
  line?: number | undefined;
2671
3022
  snippet?: string | undefined;
2672
3023
  } | undefined;
@@ -2700,6 +3051,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2700
3051
  callCount?: number | undefined;
2701
3052
  evidence?: {
2702
3053
  file: string;
3054
+ method?: string | undefined;
3055
+ pathTemplate?: string | undefined;
2703
3056
  line?: number | undefined;
2704
3057
  snippet?: string | undefined;
2705
3058
  } | undefined;
@@ -2728,6 +3081,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2728
3081
  callCount?: number | undefined;
2729
3082
  evidence?: {
2730
3083
  file: string;
3084
+ method?: string | undefined;
3085
+ pathTemplate?: string | undefined;
2731
3086
  line?: number | undefined;
2732
3087
  snippet?: string | undefined;
2733
3088
  } | undefined;
@@ -2753,12 +3108,18 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2753
3108
  file: z.ZodString;
2754
3109
  line: z.ZodOptional<z.ZodNumber>;
2755
3110
  snippet: z.ZodOptional<z.ZodString>;
3111
+ method: z.ZodOptional<z.ZodString>;
3112
+ pathTemplate: z.ZodOptional<z.ZodString>;
2756
3113
  }, "strip", z.ZodTypeAny, {
2757
3114
  file: string;
3115
+ method?: string | undefined;
3116
+ pathTemplate?: string | undefined;
2758
3117
  line?: number | undefined;
2759
3118
  snippet?: string | undefined;
2760
3119
  }, {
2761
3120
  file: string;
3121
+ method?: string | undefined;
3122
+ pathTemplate?: string | undefined;
2762
3123
  line?: number | undefined;
2763
3124
  snippet?: string | undefined;
2764
3125
  }>>;
@@ -2786,6 +3147,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2786
3147
  callCount?: number | undefined;
2787
3148
  evidence?: {
2788
3149
  file: string;
3150
+ method?: string | undefined;
3151
+ pathTemplate?: string | undefined;
2789
3152
  line?: number | undefined;
2790
3153
  snippet?: string | undefined;
2791
3154
  } | undefined;
@@ -2805,6 +3168,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2805
3168
  callCount?: number | undefined;
2806
3169
  evidence?: {
2807
3170
  file: string;
3171
+ method?: string | undefined;
3172
+ pathTemplate?: string | undefined;
2808
3173
  line?: number | undefined;
2809
3174
  snippet?: string | undefined;
2810
3175
  } | undefined;
@@ -2838,6 +3203,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2838
3203
  callCount?: number | undefined;
2839
3204
  evidence?: {
2840
3205
  file: string;
3206
+ method?: string | undefined;
3207
+ pathTemplate?: string | undefined;
2841
3208
  line?: number | undefined;
2842
3209
  snippet?: string | undefined;
2843
3210
  } | undefined;
@@ -2866,6 +3233,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2866
3233
  callCount?: number | undefined;
2867
3234
  evidence?: {
2868
3235
  file: string;
3236
+ method?: string | undefined;
3237
+ pathTemplate?: string | undefined;
2869
3238
  line?: number | undefined;
2870
3239
  snippet?: string | undefined;
2871
3240
  } | undefined;
@@ -2966,12 +3335,18 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2966
3335
  file: z.ZodString;
2967
3336
  line: z.ZodOptional<z.ZodNumber>;
2968
3337
  snippet: z.ZodOptional<z.ZodString>;
3338
+ method: z.ZodOptional<z.ZodString>;
3339
+ pathTemplate: z.ZodOptional<z.ZodString>;
2969
3340
  }, "strip", z.ZodTypeAny, {
2970
3341
  file: string;
3342
+ method?: string | undefined;
3343
+ pathTemplate?: string | undefined;
2971
3344
  line?: number | undefined;
2972
3345
  snippet?: string | undefined;
2973
3346
  }, {
2974
3347
  file: string;
3348
+ method?: string | undefined;
3349
+ pathTemplate?: string | undefined;
2975
3350
  line?: number | undefined;
2976
3351
  snippet?: string | undefined;
2977
3352
  }>>;
@@ -2999,6 +3374,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2999
3374
  callCount?: number | undefined;
3000
3375
  evidence?: {
3001
3376
  file: string;
3377
+ method?: string | undefined;
3378
+ pathTemplate?: string | undefined;
3002
3379
  line?: number | undefined;
3003
3380
  snippet?: string | undefined;
3004
3381
  } | undefined;
@@ -3018,6 +3395,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3018
3395
  callCount?: number | undefined;
3019
3396
  evidence?: {
3020
3397
  file: string;
3398
+ method?: string | undefined;
3399
+ pathTemplate?: string | undefined;
3021
3400
  line?: number | undefined;
3022
3401
  snippet?: string | undefined;
3023
3402
  } | undefined;
@@ -3050,6 +3429,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3050
3429
  callCount?: number | undefined;
3051
3430
  evidence?: {
3052
3431
  file: string;
3432
+ method?: string | undefined;
3433
+ pathTemplate?: string | undefined;
3053
3434
  line?: number | undefined;
3054
3435
  snippet?: string | undefined;
3055
3436
  } | undefined;
@@ -3084,6 +3465,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3084
3465
  callCount?: number | undefined;
3085
3466
  evidence?: {
3086
3467
  file: string;
3468
+ method?: string | undefined;
3469
+ pathTemplate?: string | undefined;
3087
3470
  line?: number | undefined;
3088
3471
  snippet?: string | undefined;
3089
3472
  } | undefined;
@@ -3119,12 +3502,18 @@ declare const DivergenceResultSchema: z.ZodObject<{
3119
3502
  file: z.ZodString;
3120
3503
  line: z.ZodOptional<z.ZodNumber>;
3121
3504
  snippet: z.ZodOptional<z.ZodString>;
3505
+ method: z.ZodOptional<z.ZodString>;
3506
+ pathTemplate: z.ZodOptional<z.ZodString>;
3122
3507
  }, "strip", z.ZodTypeAny, {
3123
3508
  file: string;
3509
+ method?: string | undefined;
3510
+ pathTemplate?: string | undefined;
3124
3511
  line?: number | undefined;
3125
3512
  snippet?: string | undefined;
3126
3513
  }, {
3127
3514
  file: string;
3515
+ method?: string | undefined;
3516
+ pathTemplate?: string | undefined;
3128
3517
  line?: number | undefined;
3129
3518
  snippet?: string | undefined;
3130
3519
  }>>;
@@ -3152,6 +3541,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3152
3541
  callCount?: number | undefined;
3153
3542
  evidence?: {
3154
3543
  file: string;
3544
+ method?: string | undefined;
3545
+ pathTemplate?: string | undefined;
3155
3546
  line?: number | undefined;
3156
3547
  snippet?: string | undefined;
3157
3548
  } | undefined;
@@ -3171,6 +3562,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3171
3562
  callCount?: number | undefined;
3172
3563
  evidence?: {
3173
3564
  file: string;
3565
+ method?: string | undefined;
3566
+ pathTemplate?: string | undefined;
3174
3567
  line?: number | undefined;
3175
3568
  snippet?: string | undefined;
3176
3569
  } | undefined;
@@ -3204,6 +3597,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3204
3597
  callCount?: number | undefined;
3205
3598
  evidence?: {
3206
3599
  file: string;
3600
+ method?: string | undefined;
3601
+ pathTemplate?: string | undefined;
3207
3602
  line?: number | undefined;
3208
3603
  snippet?: string | undefined;
3209
3604
  } | undefined;
@@ -3232,6 +3627,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3232
3627
  callCount?: number | undefined;
3233
3628
  evidence?: {
3234
3629
  file: string;
3630
+ method?: string | undefined;
3631
+ pathTemplate?: string | undefined;
3235
3632
  line?: number | undefined;
3236
3633
  snippet?: string | undefined;
3237
3634
  } | undefined;
@@ -3257,12 +3654,18 @@ declare const DivergenceResultSchema: z.ZodObject<{
3257
3654
  file: z.ZodString;
3258
3655
  line: z.ZodOptional<z.ZodNumber>;
3259
3656
  snippet: z.ZodOptional<z.ZodString>;
3657
+ method: z.ZodOptional<z.ZodString>;
3658
+ pathTemplate: z.ZodOptional<z.ZodString>;
3260
3659
  }, "strip", z.ZodTypeAny, {
3261
3660
  file: string;
3661
+ method?: string | undefined;
3662
+ pathTemplate?: string | undefined;
3262
3663
  line?: number | undefined;
3263
3664
  snippet?: string | undefined;
3264
3665
  }, {
3265
3666
  file: string;
3667
+ method?: string | undefined;
3668
+ pathTemplate?: string | undefined;
3266
3669
  line?: number | undefined;
3267
3670
  snippet?: string | undefined;
3268
3671
  }>>;
@@ -3290,6 +3693,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3290
3693
  callCount?: number | undefined;
3291
3694
  evidence?: {
3292
3695
  file: string;
3696
+ method?: string | undefined;
3697
+ pathTemplate?: string | undefined;
3293
3698
  line?: number | undefined;
3294
3699
  snippet?: string | undefined;
3295
3700
  } | undefined;
@@ -3309,6 +3714,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3309
3714
  callCount?: number | undefined;
3310
3715
  evidence?: {
3311
3716
  file: string;
3717
+ method?: string | undefined;
3718
+ pathTemplate?: string | undefined;
3312
3719
  line?: number | undefined;
3313
3720
  snippet?: string | undefined;
3314
3721
  } | undefined;
@@ -3342,6 +3749,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3342
3749
  callCount?: number | undefined;
3343
3750
  evidence?: {
3344
3751
  file: string;
3752
+ method?: string | undefined;
3753
+ pathTemplate?: string | undefined;
3345
3754
  line?: number | undefined;
3346
3755
  snippet?: string | undefined;
3347
3756
  } | undefined;
@@ -3370,6 +3779,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3370
3779
  callCount?: number | undefined;
3371
3780
  evidence?: {
3372
3781
  file: string;
3782
+ method?: string | undefined;
3783
+ pathTemplate?: string | undefined;
3373
3784
  line?: number | undefined;
3374
3785
  snippet?: string | undefined;
3375
3786
  } | undefined;
@@ -3470,12 +3881,18 @@ declare const DivergenceResultSchema: z.ZodObject<{
3470
3881
  file: z.ZodString;
3471
3882
  line: z.ZodOptional<z.ZodNumber>;
3472
3883
  snippet: z.ZodOptional<z.ZodString>;
3884
+ method: z.ZodOptional<z.ZodString>;
3885
+ pathTemplate: z.ZodOptional<z.ZodString>;
3473
3886
  }, "strip", z.ZodTypeAny, {
3474
3887
  file: string;
3888
+ method?: string | undefined;
3889
+ pathTemplate?: string | undefined;
3475
3890
  line?: number | undefined;
3476
3891
  snippet?: string | undefined;
3477
3892
  }, {
3478
3893
  file: string;
3894
+ method?: string | undefined;
3895
+ pathTemplate?: string | undefined;
3479
3896
  line?: number | undefined;
3480
3897
  snippet?: string | undefined;
3481
3898
  }>>;
@@ -3503,6 +3920,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3503
3920
  callCount?: number | undefined;
3504
3921
  evidence?: {
3505
3922
  file: string;
3923
+ method?: string | undefined;
3924
+ pathTemplate?: string | undefined;
3506
3925
  line?: number | undefined;
3507
3926
  snippet?: string | undefined;
3508
3927
  } | undefined;
@@ -3522,6 +3941,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3522
3941
  callCount?: number | undefined;
3523
3942
  evidence?: {
3524
3943
  file: string;
3944
+ method?: string | undefined;
3945
+ pathTemplate?: string | undefined;
3525
3946
  line?: number | undefined;
3526
3947
  snippet?: string | undefined;
3527
3948
  } | undefined;
@@ -3554,6 +3975,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3554
3975
  callCount?: number | undefined;
3555
3976
  evidence?: {
3556
3977
  file: string;
3978
+ method?: string | undefined;
3979
+ pathTemplate?: string | undefined;
3557
3980
  line?: number | undefined;
3558
3981
  snippet?: string | undefined;
3559
3982
  } | undefined;
@@ -3588,6 +4011,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3588
4011
  callCount?: number | undefined;
3589
4012
  evidence?: {
3590
4013
  file: string;
4014
+ method?: string | undefined;
4015
+ pathTemplate?: string | undefined;
3591
4016
  line?: number | undefined;
3592
4017
  snippet?: string | undefined;
3593
4018
  } | undefined;
@@ -3628,6 +4053,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3628
4053
  callCount?: number | undefined;
3629
4054
  evidence?: {
3630
4055
  file: string;
4056
+ method?: string | undefined;
4057
+ pathTemplate?: string | undefined;
3631
4058
  line?: number | undefined;
3632
4059
  snippet?: string | undefined;
3633
4060
  } | undefined;
@@ -3656,6 +4083,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3656
4083
  callCount?: number | undefined;
3657
4084
  evidence?: {
3658
4085
  file: string;
4086
+ method?: string | undefined;
4087
+ pathTemplate?: string | undefined;
3659
4088
  line?: number | undefined;
3660
4089
  snippet?: string | undefined;
3661
4090
  } | undefined;
@@ -3702,6 +4131,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3702
4131
  callCount?: number | undefined;
3703
4132
  evidence?: {
3704
4133
  file: string;
4134
+ method?: string | undefined;
4135
+ pathTemplate?: string | undefined;
3705
4136
  line?: number | undefined;
3706
4137
  snippet?: string | undefined;
3707
4138
  } | undefined;
@@ -3741,6 +4172,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3741
4172
  callCount?: number | undefined;
3742
4173
  evidence?: {
3743
4174
  file: string;
4175
+ method?: string | undefined;
4176
+ pathTemplate?: string | undefined;
3744
4177
  line?: number | undefined;
3745
4178
  snippet?: string | undefined;
3746
4179
  } | undefined;
@@ -3769,6 +4202,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3769
4202
  callCount?: number | undefined;
3770
4203
  evidence?: {
3771
4204
  file: string;
4205
+ method?: string | undefined;
4206
+ pathTemplate?: string | undefined;
3772
4207
  line?: number | undefined;
3773
4208
  snippet?: string | undefined;
3774
4209
  } | undefined;
@@ -3815,6 +4250,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
3815
4250
  callCount?: number | undefined;
3816
4251
  evidence?: {
3817
4252
  file: string;
4253
+ method?: string | undefined;
4254
+ pathTemplate?: string | undefined;
3818
4255
  line?: number | undefined;
3819
4256
  snippet?: string | undefined;
3820
4257
  } | undefined;
@@ -4418,6 +4855,123 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
4418
4855
  language?: string | undefined;
4419
4856
  discoveredVia?: "static" | "otel" | "merged" | undefined;
4420
4857
  originalPath?: string | undefined;
4858
+ }>, z.ZodObject<{
4859
+ id: z.ZodString;
4860
+ type: z.ZodLiteral<"RouteNode">;
4861
+ name: z.ZodString;
4862
+ service: z.ZodString;
4863
+ method: z.ZodString;
4864
+ pathTemplate: z.ZodString;
4865
+ path: z.ZodString;
4866
+ line: z.ZodOptional<z.ZodNumber>;
4867
+ framework: z.ZodOptional<z.ZodString>;
4868
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
4869
+ }, "strip", z.ZodTypeAny, {
4870
+ name: string;
4871
+ path: string;
4872
+ type: "RouteNode";
4873
+ id: string;
4874
+ service: string;
4875
+ method: string;
4876
+ pathTemplate: string;
4877
+ framework?: string | undefined;
4878
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4879
+ line?: number | undefined;
4880
+ }, {
4881
+ name: string;
4882
+ path: string;
4883
+ type: "RouteNode";
4884
+ id: string;
4885
+ service: string;
4886
+ method: string;
4887
+ pathTemplate: string;
4888
+ framework?: string | undefined;
4889
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4890
+ line?: number | undefined;
4891
+ }>, z.ZodObject<{
4892
+ id: z.ZodString;
4893
+ type: z.ZodLiteral<"GraphQLOperationNode">;
4894
+ name: z.ZodString;
4895
+ service: z.ZodString;
4896
+ operationType: z.ZodString;
4897
+ operationName: z.ZodString;
4898
+ path: z.ZodOptional<z.ZodString>;
4899
+ line: z.ZodOptional<z.ZodNumber>;
4900
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
4901
+ }, "strip", z.ZodTypeAny, {
4902
+ name: string;
4903
+ type: "GraphQLOperationNode";
4904
+ id: string;
4905
+ service: string;
4906
+ operationType: string;
4907
+ operationName: string;
4908
+ path?: string | undefined;
4909
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4910
+ line?: number | undefined;
4911
+ }, {
4912
+ name: string;
4913
+ type: "GraphQLOperationNode";
4914
+ id: string;
4915
+ service: string;
4916
+ operationType: string;
4917
+ operationName: string;
4918
+ path?: string | undefined;
4919
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4920
+ line?: number | undefined;
4921
+ }>, z.ZodObject<{
4922
+ id: z.ZodString;
4923
+ type: z.ZodLiteral<"GrpcMethodNode">;
4924
+ name: z.ZodString;
4925
+ rpcService: z.ZodString;
4926
+ rpcMethod: z.ZodString;
4927
+ path: z.ZodOptional<z.ZodString>;
4928
+ line: z.ZodOptional<z.ZodNumber>;
4929
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
4930
+ }, "strip", z.ZodTypeAny, {
4931
+ name: string;
4932
+ type: "GrpcMethodNode";
4933
+ id: string;
4934
+ rpcService: string;
4935
+ rpcMethod: string;
4936
+ path?: string | undefined;
4937
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4938
+ line?: number | undefined;
4939
+ }, {
4940
+ name: string;
4941
+ type: "GrpcMethodNode";
4942
+ id: string;
4943
+ rpcService: string;
4944
+ rpcMethod: string;
4945
+ path?: string | undefined;
4946
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4947
+ line?: number | undefined;
4948
+ }>, z.ZodObject<{
4949
+ id: z.ZodString;
4950
+ type: z.ZodLiteral<"WebSocketChannelNode">;
4951
+ name: z.ZodString;
4952
+ service: z.ZodString;
4953
+ channel: z.ZodString;
4954
+ path: z.ZodOptional<z.ZodString>;
4955
+ line: z.ZodOptional<z.ZodNumber>;
4956
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
4957
+ }, "strip", z.ZodTypeAny, {
4958
+ name: string;
4959
+ type: "WebSocketChannelNode";
4960
+ id: string;
4961
+ service: string;
4962
+ channel: string;
4963
+ path?: string | undefined;
4964
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4965
+ line?: number | undefined;
4966
+ }, {
4967
+ name: string;
4968
+ type: "WebSocketChannelNode";
4969
+ id: string;
4970
+ service: string;
4971
+ channel: string;
4972
+ path?: string | undefined;
4973
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
4974
+ line?: number | undefined;
4421
4975
  }>]>;
4422
4976
  }, "strip", z.ZodTypeAny, {
4423
4977
  node: {
@@ -4506,31 +5060,70 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
4506
5060
  language?: string | undefined;
4507
5061
  discoveredVia?: "static" | "otel" | "merged" | undefined;
4508
5062
  originalPath?: string | undefined;
4509
- };
4510
- }, {
4511
- node: {
5063
+ } | {
4512
5064
  name: string;
4513
- type: "ServiceNode";
5065
+ path: string;
5066
+ type: "RouteNode";
4514
5067
  id: string;
4515
- language: string;
4516
- env?: string | undefined;
5068
+ service: string;
5069
+ method: string;
5070
+ pathTemplate: string;
4517
5071
  framework?: string | undefined;
4518
5072
  discoveredVia?: "static" | "otel" | "merged" | undefined;
4519
- version?: string | undefined;
4520
- dbConnectionTarget?: string | undefined;
4521
- repoPath?: string | undefined;
4522
- owner?: string | undefined;
4523
- dependencies?: Record<string, string> | undefined;
4524
- aliases?: string[] | undefined;
4525
- nodeEngine?: string | undefined;
4526
- incompatibilities?: ({
4527
- driver: string;
4528
- driverVersion: string;
4529
- engine: string;
4530
- engineVersion: string;
4531
- reason: string;
4532
- kind?: "driver-engine" | undefined;
4533
- } | {
5073
+ line?: number | undefined;
5074
+ } | {
5075
+ name: string;
5076
+ type: "GraphQLOperationNode";
5077
+ id: string;
5078
+ service: string;
5079
+ operationType: string;
5080
+ operationName: string;
5081
+ path?: string | undefined;
5082
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5083
+ line?: number | undefined;
5084
+ } | {
5085
+ name: string;
5086
+ type: "GrpcMethodNode";
5087
+ id: string;
5088
+ rpcService: string;
5089
+ rpcMethod: string;
5090
+ path?: string | undefined;
5091
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5092
+ line?: number | undefined;
5093
+ } | {
5094
+ name: string;
5095
+ type: "WebSocketChannelNode";
5096
+ id: string;
5097
+ service: string;
5098
+ channel: string;
5099
+ path?: string | undefined;
5100
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5101
+ line?: number | undefined;
5102
+ };
5103
+ }, {
5104
+ node: {
5105
+ name: string;
5106
+ type: "ServiceNode";
5107
+ id: string;
5108
+ language: string;
5109
+ env?: string | undefined;
5110
+ framework?: string | undefined;
5111
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5112
+ version?: string | undefined;
5113
+ dbConnectionTarget?: string | undefined;
5114
+ repoPath?: string | undefined;
5115
+ owner?: string | undefined;
5116
+ dependencies?: Record<string, string> | undefined;
5117
+ aliases?: string[] | undefined;
5118
+ nodeEngine?: string | undefined;
5119
+ incompatibilities?: ({
5120
+ driver: string;
5121
+ driverVersion: string;
5122
+ engine: string;
5123
+ engineVersion: string;
5124
+ reason: string;
5125
+ kind?: "driver-engine" | undefined;
5126
+ } | {
4534
5127
  kind: "node-engine";
4535
5128
  reason: string;
4536
5129
  package: string;
@@ -4594,6 +5187,45 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
4594
5187
  language?: string | undefined;
4595
5188
  discoveredVia?: "static" | "otel" | "merged" | undefined;
4596
5189
  originalPath?: string | undefined;
5190
+ } | {
5191
+ name: string;
5192
+ path: string;
5193
+ type: "RouteNode";
5194
+ id: string;
5195
+ service: string;
5196
+ method: string;
5197
+ pathTemplate: string;
5198
+ framework?: string | undefined;
5199
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5200
+ line?: number | undefined;
5201
+ } | {
5202
+ name: string;
5203
+ type: "GraphQLOperationNode";
5204
+ id: string;
5205
+ service: string;
5206
+ operationType: string;
5207
+ operationName: string;
5208
+ path?: string | undefined;
5209
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5210
+ line?: number | undefined;
5211
+ } | {
5212
+ name: string;
5213
+ type: "GrpcMethodNode";
5214
+ id: string;
5215
+ rpcService: string;
5216
+ rpcMethod: string;
5217
+ path?: string | undefined;
5218
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5219
+ line?: number | undefined;
5220
+ } | {
5221
+ name: string;
5222
+ type: "WebSocketChannelNode";
5223
+ id: string;
5224
+ service: string;
5225
+ channel: string;
5226
+ path?: string | undefined;
5227
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5228
+ line?: number | undefined;
4597
5229
  };
4598
5230
  }>;
4599
5231
  type GraphNodeResponse = z.infer<typeof GraphNodeResponseSchema>;
@@ -4611,12 +5243,18 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4611
5243
  file: z.ZodString;
4612
5244
  line: z.ZodOptional<z.ZodNumber>;
4613
5245
  snippet: z.ZodOptional<z.ZodString>;
5246
+ method: z.ZodOptional<z.ZodString>;
5247
+ pathTemplate: z.ZodOptional<z.ZodString>;
4614
5248
  }, "strip", z.ZodTypeAny, {
4615
5249
  file: string;
5250
+ method?: string | undefined;
5251
+ pathTemplate?: string | undefined;
4616
5252
  line?: number | undefined;
4617
5253
  snippet?: string | undefined;
4618
5254
  }, {
4619
5255
  file: string;
5256
+ method?: string | undefined;
5257
+ pathTemplate?: string | undefined;
4620
5258
  line?: number | undefined;
4621
5259
  snippet?: string | undefined;
4622
5260
  }>>;
@@ -4644,6 +5282,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4644
5282
  callCount?: number | undefined;
4645
5283
  evidence?: {
4646
5284
  file: string;
5285
+ method?: string | undefined;
5286
+ pathTemplate?: string | undefined;
4647
5287
  line?: number | undefined;
4648
5288
  snippet?: string | undefined;
4649
5289
  } | undefined;
@@ -4663,6 +5303,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4663
5303
  callCount?: number | undefined;
4664
5304
  evidence?: {
4665
5305
  file: string;
5306
+ method?: string | undefined;
5307
+ pathTemplate?: string | undefined;
4666
5308
  line?: number | undefined;
4667
5309
  snippet?: string | undefined;
4668
5310
  } | undefined;
@@ -4685,12 +5327,18 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4685
5327
  file: z.ZodString;
4686
5328
  line: z.ZodOptional<z.ZodNumber>;
4687
5329
  snippet: z.ZodOptional<z.ZodString>;
5330
+ method: z.ZodOptional<z.ZodString>;
5331
+ pathTemplate: z.ZodOptional<z.ZodString>;
4688
5332
  }, "strip", z.ZodTypeAny, {
4689
5333
  file: string;
5334
+ method?: string | undefined;
5335
+ pathTemplate?: string | undefined;
4690
5336
  line?: number | undefined;
4691
5337
  snippet?: string | undefined;
4692
5338
  }, {
4693
5339
  file: string;
5340
+ method?: string | undefined;
5341
+ pathTemplate?: string | undefined;
4694
5342
  line?: number | undefined;
4695
5343
  snippet?: string | undefined;
4696
5344
  }>>;
@@ -4718,6 +5366,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4718
5366
  callCount?: number | undefined;
4719
5367
  evidence?: {
4720
5368
  file: string;
5369
+ method?: string | undefined;
5370
+ pathTemplate?: string | undefined;
4721
5371
  line?: number | undefined;
4722
5372
  snippet?: string | undefined;
4723
5373
  } | undefined;
@@ -4737,6 +5387,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4737
5387
  callCount?: number | undefined;
4738
5388
  evidence?: {
4739
5389
  file: string;
5390
+ method?: string | undefined;
5391
+ pathTemplate?: string | undefined;
4740
5392
  line?: number | undefined;
4741
5393
  snippet?: string | undefined;
4742
5394
  } | undefined;
@@ -4758,6 +5410,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4758
5410
  callCount?: number | undefined;
4759
5411
  evidence?: {
4760
5412
  file: string;
5413
+ method?: string | undefined;
5414
+ pathTemplate?: string | undefined;
4761
5415
  line?: number | undefined;
4762
5416
  snippet?: string | undefined;
4763
5417
  } | undefined;
@@ -4778,6 +5432,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4778
5432
  callCount?: number | undefined;
4779
5433
  evidence?: {
4780
5434
  file: string;
5435
+ method?: string | undefined;
5436
+ pathTemplate?: string | undefined;
4781
5437
  line?: number | undefined;
4782
5438
  snippet?: string | undefined;
4783
5439
  } | undefined;
@@ -4799,6 +5455,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4799
5455
  callCount?: number | undefined;
4800
5456
  evidence?: {
4801
5457
  file: string;
5458
+ method?: string | undefined;
5459
+ pathTemplate?: string | undefined;
4802
5460
  line?: number | undefined;
4803
5461
  snippet?: string | undefined;
4804
5462
  } | undefined;
@@ -4819,6 +5477,8 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
4819
5477
  callCount?: number | undefined;
4820
5478
  evidence?: {
4821
5479
  file: string;
5480
+ method?: string | undefined;
5481
+ pathTemplate?: string | undefined;
4822
5482
  line?: number | undefined;
4823
5483
  snippet?: string | undefined;
4824
5484
  } | undefined;
@@ -5298,6 +5958,123 @@ declare const SerializedGraphSchema: z.ZodObject<{
5298
5958
  language?: string | undefined;
5299
5959
  discoveredVia?: "static" | "otel" | "merged" | undefined;
5300
5960
  originalPath?: string | undefined;
5961
+ }>, z.ZodObject<{
5962
+ id: z.ZodString;
5963
+ type: z.ZodLiteral<"RouteNode">;
5964
+ name: z.ZodString;
5965
+ service: z.ZodString;
5966
+ method: z.ZodString;
5967
+ pathTemplate: z.ZodString;
5968
+ path: z.ZodString;
5969
+ line: z.ZodOptional<z.ZodNumber>;
5970
+ framework: z.ZodOptional<z.ZodString>;
5971
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
5972
+ }, "strip", z.ZodTypeAny, {
5973
+ name: string;
5974
+ path: string;
5975
+ type: "RouteNode";
5976
+ id: string;
5977
+ service: string;
5978
+ method: string;
5979
+ pathTemplate: string;
5980
+ framework?: string | undefined;
5981
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5982
+ line?: number | undefined;
5983
+ }, {
5984
+ name: string;
5985
+ path: string;
5986
+ type: "RouteNode";
5987
+ id: string;
5988
+ service: string;
5989
+ method: string;
5990
+ pathTemplate: string;
5991
+ framework?: string | undefined;
5992
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
5993
+ line?: number | undefined;
5994
+ }>, z.ZodObject<{
5995
+ id: z.ZodString;
5996
+ type: z.ZodLiteral<"GraphQLOperationNode">;
5997
+ name: z.ZodString;
5998
+ service: z.ZodString;
5999
+ operationType: z.ZodString;
6000
+ operationName: z.ZodString;
6001
+ path: z.ZodOptional<z.ZodString>;
6002
+ line: z.ZodOptional<z.ZodNumber>;
6003
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
6004
+ }, "strip", z.ZodTypeAny, {
6005
+ name: string;
6006
+ type: "GraphQLOperationNode";
6007
+ id: string;
6008
+ service: string;
6009
+ operationType: string;
6010
+ operationName: string;
6011
+ path?: string | undefined;
6012
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6013
+ line?: number | undefined;
6014
+ }, {
6015
+ name: string;
6016
+ type: "GraphQLOperationNode";
6017
+ id: string;
6018
+ service: string;
6019
+ operationType: string;
6020
+ operationName: string;
6021
+ path?: string | undefined;
6022
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6023
+ line?: number | undefined;
6024
+ }>, z.ZodObject<{
6025
+ id: z.ZodString;
6026
+ type: z.ZodLiteral<"GrpcMethodNode">;
6027
+ name: z.ZodString;
6028
+ rpcService: z.ZodString;
6029
+ rpcMethod: z.ZodString;
6030
+ path: z.ZodOptional<z.ZodString>;
6031
+ line: z.ZodOptional<z.ZodNumber>;
6032
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
6033
+ }, "strip", z.ZodTypeAny, {
6034
+ name: string;
6035
+ type: "GrpcMethodNode";
6036
+ id: string;
6037
+ rpcService: string;
6038
+ rpcMethod: string;
6039
+ path?: string | undefined;
6040
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6041
+ line?: number | undefined;
6042
+ }, {
6043
+ name: string;
6044
+ type: "GrpcMethodNode";
6045
+ id: string;
6046
+ rpcService: string;
6047
+ rpcMethod: string;
6048
+ path?: string | undefined;
6049
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6050
+ line?: number | undefined;
6051
+ }>, z.ZodObject<{
6052
+ id: z.ZodString;
6053
+ type: z.ZodLiteral<"WebSocketChannelNode">;
6054
+ name: z.ZodString;
6055
+ service: z.ZodString;
6056
+ channel: z.ZodString;
6057
+ path: z.ZodOptional<z.ZodString>;
6058
+ line: z.ZodOptional<z.ZodNumber>;
6059
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
6060
+ }, "strip", z.ZodTypeAny, {
6061
+ name: string;
6062
+ type: "WebSocketChannelNode";
6063
+ id: string;
6064
+ service: string;
6065
+ channel: string;
6066
+ path?: string | undefined;
6067
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6068
+ line?: number | undefined;
6069
+ }, {
6070
+ name: string;
6071
+ type: "WebSocketChannelNode";
6072
+ id: string;
6073
+ service: string;
6074
+ channel: string;
6075
+ path?: string | undefined;
6076
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6077
+ line?: number | undefined;
5301
6078
  }>]>, "many">;
5302
6079
  edges: z.ZodArray<z.ZodObject<{
5303
6080
  id: z.ZodString;
@@ -5312,12 +6089,18 @@ declare const SerializedGraphSchema: z.ZodObject<{
5312
6089
  file: z.ZodString;
5313
6090
  line: z.ZodOptional<z.ZodNumber>;
5314
6091
  snippet: z.ZodOptional<z.ZodString>;
6092
+ method: z.ZodOptional<z.ZodString>;
6093
+ pathTemplate: z.ZodOptional<z.ZodString>;
5315
6094
  }, "strip", z.ZodTypeAny, {
5316
6095
  file: string;
6096
+ method?: string | undefined;
6097
+ pathTemplate?: string | undefined;
5317
6098
  line?: number | undefined;
5318
6099
  snippet?: string | undefined;
5319
6100
  }, {
5320
6101
  file: string;
6102
+ method?: string | undefined;
6103
+ pathTemplate?: string | undefined;
5321
6104
  line?: number | undefined;
5322
6105
  snippet?: string | undefined;
5323
6106
  }>>;
@@ -5345,6 +6128,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
5345
6128
  callCount?: number | undefined;
5346
6129
  evidence?: {
5347
6130
  file: string;
6131
+ method?: string | undefined;
6132
+ pathTemplate?: string | undefined;
5348
6133
  line?: number | undefined;
5349
6134
  snippet?: string | undefined;
5350
6135
  } | undefined;
@@ -5364,6 +6149,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
5364
6149
  callCount?: number | undefined;
5365
6150
  evidence?: {
5366
6151
  file: string;
6152
+ method?: string | undefined;
6153
+ pathTemplate?: string | undefined;
5367
6154
  line?: number | undefined;
5368
6155
  snippet?: string | undefined;
5369
6156
  } | undefined;
@@ -5460,6 +6247,45 @@ declare const SerializedGraphSchema: z.ZodObject<{
5460
6247
  language?: string | undefined;
5461
6248
  discoveredVia?: "static" | "otel" | "merged" | undefined;
5462
6249
  originalPath?: string | undefined;
6250
+ } | {
6251
+ name: string;
6252
+ path: string;
6253
+ type: "RouteNode";
6254
+ id: string;
6255
+ service: string;
6256
+ method: string;
6257
+ pathTemplate: string;
6258
+ framework?: string | undefined;
6259
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6260
+ line?: number | undefined;
6261
+ } | {
6262
+ name: string;
6263
+ type: "GraphQLOperationNode";
6264
+ id: string;
6265
+ service: string;
6266
+ operationType: string;
6267
+ operationName: string;
6268
+ path?: string | undefined;
6269
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6270
+ line?: number | undefined;
6271
+ } | {
6272
+ name: string;
6273
+ type: "GrpcMethodNode";
6274
+ id: string;
6275
+ rpcService: string;
6276
+ rpcMethod: string;
6277
+ path?: string | undefined;
6278
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6279
+ line?: number | undefined;
6280
+ } | {
6281
+ name: string;
6282
+ type: "WebSocketChannelNode";
6283
+ id: string;
6284
+ service: string;
6285
+ channel: string;
6286
+ path?: string | undefined;
6287
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6288
+ line?: number | undefined;
5463
6289
  })[];
5464
6290
  edges: {
5465
6291
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -5472,6 +6298,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
5472
6298
  callCount?: number | undefined;
5473
6299
  evidence?: {
5474
6300
  file: string;
6301
+ method?: string | undefined;
6302
+ pathTemplate?: string | undefined;
5475
6303
  line?: number | undefined;
5476
6304
  snippet?: string | undefined;
5477
6305
  } | undefined;
@@ -5568,6 +6396,45 @@ declare const SerializedGraphSchema: z.ZodObject<{
5568
6396
  language?: string | undefined;
5569
6397
  discoveredVia?: "static" | "otel" | "merged" | undefined;
5570
6398
  originalPath?: string | undefined;
6399
+ } | {
6400
+ name: string;
6401
+ path: string;
6402
+ type: "RouteNode";
6403
+ id: string;
6404
+ service: string;
6405
+ method: string;
6406
+ pathTemplate: string;
6407
+ framework?: string | undefined;
6408
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6409
+ line?: number | undefined;
6410
+ } | {
6411
+ name: string;
6412
+ type: "GraphQLOperationNode";
6413
+ id: string;
6414
+ service: string;
6415
+ operationType: string;
6416
+ operationName: string;
6417
+ path?: string | undefined;
6418
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6419
+ line?: number | undefined;
6420
+ } | {
6421
+ name: string;
6422
+ type: "GrpcMethodNode";
6423
+ id: string;
6424
+ rpcService: string;
6425
+ rpcMethod: string;
6426
+ path?: string | undefined;
6427
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6428
+ line?: number | undefined;
6429
+ } | {
6430
+ name: string;
6431
+ type: "WebSocketChannelNode";
6432
+ id: string;
6433
+ service: string;
6434
+ channel: string;
6435
+ path?: string | undefined;
6436
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6437
+ line?: number | undefined;
5571
6438
  })[];
5572
6439
  edges: {
5573
6440
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -5580,6 +6447,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
5580
6447
  callCount?: number | undefined;
5581
6448
  evidence?: {
5582
6449
  file: string;
6450
+ method?: string | undefined;
6451
+ pathTemplate?: string | undefined;
5583
6452
  line?: number | undefined;
5584
6453
  snippet?: string | undefined;
5585
6454
  } | undefined;
@@ -5935,63 +6804,188 @@ declare const GraphDiffResultSchema: z.ZodObject<{
5935
6804
  language?: string | undefined;
5936
6805
  discoveredVia?: "static" | "otel" | "merged" | undefined;
5937
6806
  originalPath?: string | undefined;
5938
- }>]>, "many">;
5939
- edges: z.ZodArray<z.ZodObject<{
6807
+ }>, z.ZodObject<{
5940
6808
  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, {
5966
- spanCount: number;
5967
- errorCount: number;
5968
- lastObservedAgeMs?: number | undefined;
5969
- }, {
5970
- spanCount: number;
5971
- errorCount: number;
5972
- lastObservedAgeMs?: number | undefined;
5973
- }>>;
6809
+ type: z.ZodLiteral<"RouteNode">;
6810
+ name: z.ZodString;
6811
+ service: z.ZodString;
6812
+ method: z.ZodString;
6813
+ pathTemplate: z.ZodString;
6814
+ path: z.ZodString;
6815
+ line: z.ZodOptional<z.ZodNumber>;
6816
+ framework: z.ZodOptional<z.ZodString>;
6817
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
5974
6818
  }, "strip", z.ZodTypeAny, {
5975
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
6819
+ name: string;
6820
+ path: string;
6821
+ type: "RouteNode";
5976
6822
  id: string;
5977
- source: string;
5978
- target: string;
5979
- provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
5980
- lastObserved?: string | undefined;
5981
- confidence?: number | undefined;
5982
- callCount?: number | undefined;
5983
- evidence?: {
5984
- file: string;
5985
- line?: number | undefined;
5986
- snippet?: string | undefined;
5987
- } | undefined;
5988
- signal?: {
5989
- spanCount: number;
5990
- errorCount: number;
5991
- lastObservedAgeMs?: number | undefined;
5992
- } | undefined;
5993
- }, {
5994
- type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
6823
+ service: string;
6824
+ method: string;
6825
+ pathTemplate: string;
6826
+ framework?: string | undefined;
6827
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6828
+ line?: number | undefined;
6829
+ }, {
6830
+ name: string;
6831
+ path: string;
6832
+ type: "RouteNode";
6833
+ id: string;
6834
+ service: string;
6835
+ method: string;
6836
+ pathTemplate: string;
6837
+ framework?: string | undefined;
6838
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6839
+ line?: number | undefined;
6840
+ }>, z.ZodObject<{
6841
+ id: z.ZodString;
6842
+ type: z.ZodLiteral<"GraphQLOperationNode">;
6843
+ name: z.ZodString;
6844
+ service: z.ZodString;
6845
+ operationType: z.ZodString;
6846
+ operationName: z.ZodString;
6847
+ path: z.ZodOptional<z.ZodString>;
6848
+ line: z.ZodOptional<z.ZodNumber>;
6849
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
6850
+ }, "strip", z.ZodTypeAny, {
6851
+ name: string;
6852
+ type: "GraphQLOperationNode";
6853
+ id: string;
6854
+ service: string;
6855
+ operationType: string;
6856
+ operationName: string;
6857
+ path?: string | undefined;
6858
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6859
+ line?: number | undefined;
6860
+ }, {
6861
+ name: string;
6862
+ type: "GraphQLOperationNode";
6863
+ id: string;
6864
+ service: string;
6865
+ operationType: string;
6866
+ operationName: string;
6867
+ path?: string | undefined;
6868
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6869
+ line?: number | undefined;
6870
+ }>, z.ZodObject<{
6871
+ id: z.ZodString;
6872
+ type: z.ZodLiteral<"GrpcMethodNode">;
6873
+ name: z.ZodString;
6874
+ rpcService: z.ZodString;
6875
+ rpcMethod: z.ZodString;
6876
+ path: z.ZodOptional<z.ZodString>;
6877
+ line: z.ZodOptional<z.ZodNumber>;
6878
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
6879
+ }, "strip", z.ZodTypeAny, {
6880
+ name: string;
6881
+ type: "GrpcMethodNode";
6882
+ id: string;
6883
+ rpcService: string;
6884
+ rpcMethod: string;
6885
+ path?: string | undefined;
6886
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6887
+ line?: number | undefined;
6888
+ }, {
6889
+ name: string;
6890
+ type: "GrpcMethodNode";
6891
+ id: string;
6892
+ rpcService: string;
6893
+ rpcMethod: string;
6894
+ path?: string | undefined;
6895
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6896
+ line?: number | undefined;
6897
+ }>, z.ZodObject<{
6898
+ id: z.ZodString;
6899
+ type: z.ZodLiteral<"WebSocketChannelNode">;
6900
+ name: z.ZodString;
6901
+ service: z.ZodString;
6902
+ channel: z.ZodString;
6903
+ path: z.ZodOptional<z.ZodString>;
6904
+ line: z.ZodOptional<z.ZodNumber>;
6905
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
6906
+ }, "strip", z.ZodTypeAny, {
6907
+ name: string;
6908
+ type: "WebSocketChannelNode";
6909
+ id: string;
6910
+ service: string;
6911
+ channel: string;
6912
+ path?: string | undefined;
6913
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6914
+ line?: number | undefined;
6915
+ }, {
6916
+ name: string;
6917
+ type: "WebSocketChannelNode";
6918
+ id: string;
6919
+ service: string;
6920
+ channel: string;
6921
+ path?: string | undefined;
6922
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
6923
+ line?: number | undefined;
6924
+ }>]>, "many">;
6925
+ edges: z.ZodArray<z.ZodObject<{
6926
+ id: z.ZodString;
6927
+ source: z.ZodString;
6928
+ target: z.ZodString;
6929
+ type: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
6930
+ provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
6931
+ confidence: z.ZodOptional<z.ZodNumber>;
6932
+ lastObserved: z.ZodOptional<z.ZodString>;
6933
+ callCount: z.ZodOptional<z.ZodNumber>;
6934
+ evidence: z.ZodOptional<z.ZodObject<{
6935
+ file: z.ZodString;
6936
+ line: z.ZodOptional<z.ZodNumber>;
6937
+ snippet: z.ZodOptional<z.ZodString>;
6938
+ method: z.ZodOptional<z.ZodString>;
6939
+ pathTemplate: z.ZodOptional<z.ZodString>;
6940
+ }, "strip", z.ZodTypeAny, {
6941
+ file: string;
6942
+ method?: string | undefined;
6943
+ pathTemplate?: string | undefined;
6944
+ line?: number | undefined;
6945
+ snippet?: string | undefined;
6946
+ }, {
6947
+ file: string;
6948
+ method?: string | undefined;
6949
+ pathTemplate?: string | undefined;
6950
+ line?: number | undefined;
6951
+ snippet?: string | undefined;
6952
+ }>>;
6953
+ signal: z.ZodOptional<z.ZodObject<{
6954
+ spanCount: z.ZodNumber;
6955
+ errorCount: z.ZodNumber;
6956
+ lastObservedAgeMs: z.ZodOptional<z.ZodNumber>;
6957
+ }, "strip", z.ZodTypeAny, {
6958
+ spanCount: number;
6959
+ errorCount: number;
6960
+ lastObservedAgeMs?: number | undefined;
6961
+ }, {
6962
+ spanCount: number;
6963
+ errorCount: number;
6964
+ lastObservedAgeMs?: number | undefined;
6965
+ }>>;
6966
+ }, "strip", z.ZodTypeAny, {
6967
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
6968
+ id: string;
6969
+ source: string;
6970
+ target: string;
6971
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
6972
+ lastObserved?: string | undefined;
6973
+ confidence?: number | undefined;
6974
+ callCount?: number | undefined;
6975
+ evidence?: {
6976
+ file: string;
6977
+ method?: string | undefined;
6978
+ pathTemplate?: string | undefined;
6979
+ line?: number | undefined;
6980
+ snippet?: string | undefined;
6981
+ } | undefined;
6982
+ signal?: {
6983
+ spanCount: number;
6984
+ errorCount: number;
6985
+ lastObservedAgeMs?: number | undefined;
6986
+ } | undefined;
6987
+ }, {
6988
+ type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
5995
6989
  id: string;
5996
6990
  source: string;
5997
6991
  target: string;
@@ -6001,6 +6995,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6001
6995
  callCount?: number | undefined;
6002
6996
  evidence?: {
6003
6997
  file: string;
6998
+ method?: string | undefined;
6999
+ pathTemplate?: string | undefined;
6004
7000
  line?: number | undefined;
6005
7001
  snippet?: string | undefined;
6006
7002
  } | undefined;
@@ -6097,6 +7093,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6097
7093
  language?: string | undefined;
6098
7094
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6099
7095
  originalPath?: string | undefined;
7096
+ } | {
7097
+ name: string;
7098
+ path: string;
7099
+ type: "RouteNode";
7100
+ id: string;
7101
+ service: string;
7102
+ method: string;
7103
+ pathTemplate: string;
7104
+ framework?: string | undefined;
7105
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7106
+ line?: number | undefined;
7107
+ } | {
7108
+ name: string;
7109
+ type: "GraphQLOperationNode";
7110
+ id: string;
7111
+ service: string;
7112
+ operationType: string;
7113
+ operationName: string;
7114
+ path?: string | undefined;
7115
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7116
+ line?: number | undefined;
7117
+ } | {
7118
+ name: string;
7119
+ type: "GrpcMethodNode";
7120
+ id: string;
7121
+ rpcService: string;
7122
+ rpcMethod: string;
7123
+ path?: string | undefined;
7124
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7125
+ line?: number | undefined;
7126
+ } | {
7127
+ name: string;
7128
+ type: "WebSocketChannelNode";
7129
+ id: string;
7130
+ service: string;
7131
+ channel: string;
7132
+ path?: string | undefined;
7133
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7134
+ line?: number | undefined;
6100
7135
  })[];
6101
7136
  edges: {
6102
7137
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -6109,6 +7144,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6109
7144
  callCount?: number | undefined;
6110
7145
  evidence?: {
6111
7146
  file: string;
7147
+ method?: string | undefined;
7148
+ pathTemplate?: string | undefined;
6112
7149
  line?: number | undefined;
6113
7150
  snippet?: string | undefined;
6114
7151
  } | undefined;
@@ -6205,6 +7242,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6205
7242
  language?: string | undefined;
6206
7243
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6207
7244
  originalPath?: string | undefined;
7245
+ } | {
7246
+ name: string;
7247
+ path: string;
7248
+ type: "RouteNode";
7249
+ id: string;
7250
+ service: string;
7251
+ method: string;
7252
+ pathTemplate: string;
7253
+ framework?: string | undefined;
7254
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7255
+ line?: number | undefined;
7256
+ } | {
7257
+ name: string;
7258
+ type: "GraphQLOperationNode";
7259
+ id: string;
7260
+ service: string;
7261
+ operationType: string;
7262
+ operationName: string;
7263
+ path?: string | undefined;
7264
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7265
+ line?: number | undefined;
7266
+ } | {
7267
+ name: string;
7268
+ type: "GrpcMethodNode";
7269
+ id: string;
7270
+ rpcService: string;
7271
+ rpcMethod: string;
7272
+ path?: string | undefined;
7273
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7274
+ line?: number | undefined;
7275
+ } | {
7276
+ name: string;
7277
+ type: "WebSocketChannelNode";
7278
+ id: string;
7279
+ service: string;
7280
+ channel: string;
7281
+ path?: string | undefined;
7282
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7283
+ line?: number | undefined;
6208
7284
  })[];
6209
7285
  edges: {
6210
7286
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -6217,6 +7293,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6217
7293
  callCount?: number | undefined;
6218
7294
  evidence?: {
6219
7295
  file: string;
7296
+ method?: string | undefined;
7297
+ pathTemplate?: string | undefined;
6220
7298
  line?: number | undefined;
6221
7299
  snippet?: string | undefined;
6222
7300
  } | undefined;
@@ -6556,6 +7634,123 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6556
7634
  language?: string | undefined;
6557
7635
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6558
7636
  originalPath?: string | undefined;
7637
+ }>, z.ZodObject<{
7638
+ id: z.ZodString;
7639
+ type: z.ZodLiteral<"RouteNode">;
7640
+ name: z.ZodString;
7641
+ service: z.ZodString;
7642
+ method: z.ZodString;
7643
+ pathTemplate: z.ZodString;
7644
+ path: z.ZodString;
7645
+ line: z.ZodOptional<z.ZodNumber>;
7646
+ framework: z.ZodOptional<z.ZodString>;
7647
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
7648
+ }, "strip", z.ZodTypeAny, {
7649
+ name: string;
7650
+ path: string;
7651
+ type: "RouteNode";
7652
+ id: string;
7653
+ service: string;
7654
+ method: string;
7655
+ pathTemplate: string;
7656
+ framework?: string | undefined;
7657
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7658
+ line?: number | undefined;
7659
+ }, {
7660
+ name: string;
7661
+ path: string;
7662
+ type: "RouteNode";
7663
+ id: string;
7664
+ service: string;
7665
+ method: string;
7666
+ pathTemplate: string;
7667
+ framework?: string | undefined;
7668
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7669
+ line?: number | undefined;
7670
+ }>, z.ZodObject<{
7671
+ id: z.ZodString;
7672
+ type: z.ZodLiteral<"GraphQLOperationNode">;
7673
+ name: z.ZodString;
7674
+ service: z.ZodString;
7675
+ operationType: z.ZodString;
7676
+ operationName: z.ZodString;
7677
+ path: z.ZodOptional<z.ZodString>;
7678
+ line: z.ZodOptional<z.ZodNumber>;
7679
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
7680
+ }, "strip", z.ZodTypeAny, {
7681
+ name: string;
7682
+ type: "GraphQLOperationNode";
7683
+ id: string;
7684
+ service: string;
7685
+ operationType: string;
7686
+ operationName: string;
7687
+ path?: string | undefined;
7688
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7689
+ line?: number | undefined;
7690
+ }, {
7691
+ name: string;
7692
+ type: "GraphQLOperationNode";
7693
+ id: string;
7694
+ service: string;
7695
+ operationType: string;
7696
+ operationName: string;
7697
+ path?: string | undefined;
7698
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7699
+ line?: number | undefined;
7700
+ }>, z.ZodObject<{
7701
+ id: z.ZodString;
7702
+ type: z.ZodLiteral<"GrpcMethodNode">;
7703
+ name: z.ZodString;
7704
+ rpcService: z.ZodString;
7705
+ rpcMethod: z.ZodString;
7706
+ path: z.ZodOptional<z.ZodString>;
7707
+ line: z.ZodOptional<z.ZodNumber>;
7708
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
7709
+ }, "strip", z.ZodTypeAny, {
7710
+ name: string;
7711
+ type: "GrpcMethodNode";
7712
+ id: string;
7713
+ rpcService: string;
7714
+ rpcMethod: string;
7715
+ path?: string | undefined;
7716
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7717
+ line?: number | undefined;
7718
+ }, {
7719
+ name: string;
7720
+ type: "GrpcMethodNode";
7721
+ id: string;
7722
+ rpcService: string;
7723
+ rpcMethod: string;
7724
+ path?: string | undefined;
7725
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7726
+ line?: number | undefined;
7727
+ }>, z.ZodObject<{
7728
+ id: z.ZodString;
7729
+ type: z.ZodLiteral<"WebSocketChannelNode">;
7730
+ name: z.ZodString;
7731
+ service: z.ZodString;
7732
+ channel: z.ZodString;
7733
+ path: z.ZodOptional<z.ZodString>;
7734
+ line: z.ZodOptional<z.ZodNumber>;
7735
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
7736
+ }, "strip", z.ZodTypeAny, {
7737
+ name: string;
7738
+ type: "WebSocketChannelNode";
7739
+ id: string;
7740
+ service: string;
7741
+ channel: string;
7742
+ path?: string | undefined;
7743
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7744
+ line?: number | undefined;
7745
+ }, {
7746
+ name: string;
7747
+ type: "WebSocketChannelNode";
7748
+ id: string;
7749
+ service: string;
7750
+ channel: string;
7751
+ path?: string | undefined;
7752
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7753
+ line?: number | undefined;
6559
7754
  }>]>, "many">;
6560
7755
  edges: z.ZodArray<z.ZodObject<{
6561
7756
  id: z.ZodString;
@@ -6570,12 +7765,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6570
7765
  file: z.ZodString;
6571
7766
  line: z.ZodOptional<z.ZodNumber>;
6572
7767
  snippet: z.ZodOptional<z.ZodString>;
7768
+ method: z.ZodOptional<z.ZodString>;
7769
+ pathTemplate: z.ZodOptional<z.ZodString>;
6573
7770
  }, "strip", z.ZodTypeAny, {
6574
7771
  file: string;
7772
+ method?: string | undefined;
7773
+ pathTemplate?: string | undefined;
6575
7774
  line?: number | undefined;
6576
7775
  snippet?: string | undefined;
6577
7776
  }, {
6578
7777
  file: string;
7778
+ method?: string | undefined;
7779
+ pathTemplate?: string | undefined;
6579
7780
  line?: number | undefined;
6580
7781
  snippet?: string | undefined;
6581
7782
  }>>;
@@ -6603,6 +7804,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6603
7804
  callCount?: number | undefined;
6604
7805
  evidence?: {
6605
7806
  file: string;
7807
+ method?: string | undefined;
7808
+ pathTemplate?: string | undefined;
6606
7809
  line?: number | undefined;
6607
7810
  snippet?: string | undefined;
6608
7811
  } | undefined;
@@ -6622,6 +7825,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6622
7825
  callCount?: number | undefined;
6623
7826
  evidence?: {
6624
7827
  file: string;
7828
+ method?: string | undefined;
7829
+ pathTemplate?: string | undefined;
6625
7830
  line?: number | undefined;
6626
7831
  snippet?: string | undefined;
6627
7832
  } | undefined;
@@ -6718,6 +7923,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6718
7923
  language?: string | undefined;
6719
7924
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6720
7925
  originalPath?: string | undefined;
7926
+ } | {
7927
+ name: string;
7928
+ path: string;
7929
+ type: "RouteNode";
7930
+ id: string;
7931
+ service: string;
7932
+ method: string;
7933
+ pathTemplate: string;
7934
+ framework?: string | undefined;
7935
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7936
+ line?: number | undefined;
7937
+ } | {
7938
+ name: string;
7939
+ type: "GraphQLOperationNode";
7940
+ id: string;
7941
+ service: string;
7942
+ operationType: string;
7943
+ operationName: string;
7944
+ path?: string | undefined;
7945
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7946
+ line?: number | undefined;
7947
+ } | {
7948
+ name: string;
7949
+ type: "GrpcMethodNode";
7950
+ id: string;
7951
+ rpcService: string;
7952
+ rpcMethod: string;
7953
+ path?: string | undefined;
7954
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7955
+ line?: number | undefined;
7956
+ } | {
7957
+ name: string;
7958
+ type: "WebSocketChannelNode";
7959
+ id: string;
7960
+ service: string;
7961
+ channel: string;
7962
+ path?: string | undefined;
7963
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
7964
+ line?: number | undefined;
6721
7965
  })[];
6722
7966
  edges: {
6723
7967
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -6730,6 +7974,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6730
7974
  callCount?: number | undefined;
6731
7975
  evidence?: {
6732
7976
  file: string;
7977
+ method?: string | undefined;
7978
+ pathTemplate?: string | undefined;
6733
7979
  line?: number | undefined;
6734
7980
  snippet?: string | undefined;
6735
7981
  } | undefined;
@@ -6826,6 +8072,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6826
8072
  language?: string | undefined;
6827
8073
  discoveredVia?: "static" | "otel" | "merged" | undefined;
6828
8074
  originalPath?: string | undefined;
8075
+ } | {
8076
+ name: string;
8077
+ path: string;
8078
+ type: "RouteNode";
8079
+ id: string;
8080
+ service: string;
8081
+ method: string;
8082
+ pathTemplate: string;
8083
+ framework?: string | undefined;
8084
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8085
+ line?: number | undefined;
8086
+ } | {
8087
+ name: string;
8088
+ type: "GraphQLOperationNode";
8089
+ id: string;
8090
+ service: string;
8091
+ operationType: string;
8092
+ operationName: string;
8093
+ path?: string | undefined;
8094
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8095
+ line?: number | undefined;
8096
+ } | {
8097
+ name: string;
8098
+ type: "GrpcMethodNode";
8099
+ id: string;
8100
+ rpcService: string;
8101
+ rpcMethod: string;
8102
+ path?: string | undefined;
8103
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8104
+ line?: number | undefined;
8105
+ } | {
8106
+ name: string;
8107
+ type: "WebSocketChannelNode";
8108
+ id: string;
8109
+ service: string;
8110
+ channel: string;
8111
+ path?: string | undefined;
8112
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8113
+ line?: number | undefined;
6829
8114
  })[];
6830
8115
  edges: {
6831
8116
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -6838,6 +8123,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
6838
8123
  callCount?: number | undefined;
6839
8124
  evidence?: {
6840
8125
  file: string;
8126
+ method?: string | undefined;
8127
+ pathTemplate?: string | undefined;
6841
8128
  line?: number | undefined;
6842
8129
  snippet?: string | undefined;
6843
8130
  } | undefined;
@@ -7145,40 +8432,157 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7145
8432
  name: string;
7146
8433
  type: "FrontierNode";
7147
8434
  id: string;
7148
- host: string;
7149
- firstObserved?: string | undefined;
7150
- lastObserved?: string | undefined;
8435
+ host: string;
8436
+ firstObserved?: string | undefined;
8437
+ lastObserved?: string | undefined;
8438
+ }, {
8439
+ name: string;
8440
+ type: "FrontierNode";
8441
+ id: string;
8442
+ host: string;
8443
+ firstObserved?: string | undefined;
8444
+ lastObserved?: string | undefined;
8445
+ }>, z.ZodObject<{
8446
+ id: z.ZodString;
8447
+ type: z.ZodLiteral<"FileNode">;
8448
+ service: z.ZodString;
8449
+ path: z.ZodString;
8450
+ language: z.ZodOptional<z.ZodString>;
8451
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
8452
+ originalPath: z.ZodOptional<z.ZodString>;
8453
+ }, "strip", z.ZodTypeAny, {
8454
+ path: string;
8455
+ type: "FileNode";
8456
+ id: string;
8457
+ service: string;
8458
+ language?: string | undefined;
8459
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8460
+ originalPath?: string | undefined;
8461
+ }, {
8462
+ path: string;
8463
+ type: "FileNode";
8464
+ id: string;
8465
+ service: string;
8466
+ language?: string | undefined;
8467
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8468
+ originalPath?: string | undefined;
8469
+ }>, z.ZodObject<{
8470
+ id: z.ZodString;
8471
+ type: z.ZodLiteral<"RouteNode">;
8472
+ name: z.ZodString;
8473
+ service: z.ZodString;
8474
+ method: z.ZodString;
8475
+ pathTemplate: z.ZodString;
8476
+ path: z.ZodString;
8477
+ line: z.ZodOptional<z.ZodNumber>;
8478
+ framework: z.ZodOptional<z.ZodString>;
8479
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
8480
+ }, "strip", z.ZodTypeAny, {
8481
+ name: string;
8482
+ path: string;
8483
+ type: "RouteNode";
8484
+ id: string;
8485
+ service: string;
8486
+ method: string;
8487
+ pathTemplate: string;
8488
+ framework?: string | undefined;
8489
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8490
+ line?: number | undefined;
8491
+ }, {
8492
+ name: string;
8493
+ path: string;
8494
+ type: "RouteNode";
8495
+ id: string;
8496
+ service: string;
8497
+ method: string;
8498
+ pathTemplate: string;
8499
+ framework?: string | undefined;
8500
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8501
+ line?: number | undefined;
8502
+ }>, z.ZodObject<{
8503
+ id: z.ZodString;
8504
+ type: z.ZodLiteral<"GraphQLOperationNode">;
8505
+ name: z.ZodString;
8506
+ service: z.ZodString;
8507
+ operationType: z.ZodString;
8508
+ operationName: z.ZodString;
8509
+ path: z.ZodOptional<z.ZodString>;
8510
+ line: z.ZodOptional<z.ZodNumber>;
8511
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
8512
+ }, "strip", z.ZodTypeAny, {
8513
+ name: string;
8514
+ type: "GraphQLOperationNode";
8515
+ id: string;
8516
+ service: string;
8517
+ operationType: string;
8518
+ operationName: string;
8519
+ path?: string | undefined;
8520
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8521
+ line?: number | undefined;
8522
+ }, {
8523
+ name: string;
8524
+ type: "GraphQLOperationNode";
8525
+ id: string;
8526
+ service: string;
8527
+ operationType: string;
8528
+ operationName: string;
8529
+ path?: string | undefined;
8530
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8531
+ line?: number | undefined;
8532
+ }>, z.ZodObject<{
8533
+ id: z.ZodString;
8534
+ type: z.ZodLiteral<"GrpcMethodNode">;
8535
+ name: z.ZodString;
8536
+ rpcService: z.ZodString;
8537
+ rpcMethod: z.ZodString;
8538
+ path: z.ZodOptional<z.ZodString>;
8539
+ line: z.ZodOptional<z.ZodNumber>;
8540
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
8541
+ }, "strip", z.ZodTypeAny, {
8542
+ name: string;
8543
+ type: "GrpcMethodNode";
8544
+ id: string;
8545
+ rpcService: string;
8546
+ rpcMethod: string;
8547
+ path?: string | undefined;
8548
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8549
+ line?: number | undefined;
7151
8550
  }, {
7152
8551
  name: string;
7153
- type: "FrontierNode";
8552
+ type: "GrpcMethodNode";
7154
8553
  id: string;
7155
- host: string;
7156
- firstObserved?: string | undefined;
7157
- lastObserved?: string | undefined;
8554
+ rpcService: string;
8555
+ rpcMethod: string;
8556
+ path?: string | undefined;
8557
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8558
+ line?: number | undefined;
7158
8559
  }>, z.ZodObject<{
7159
8560
  id: z.ZodString;
7160
- type: z.ZodLiteral<"FileNode">;
8561
+ type: z.ZodLiteral<"WebSocketChannelNode">;
8562
+ name: z.ZodString;
7161
8563
  service: z.ZodString;
7162
- path: z.ZodString;
7163
- language: z.ZodOptional<z.ZodString>;
8564
+ channel: z.ZodString;
8565
+ path: z.ZodOptional<z.ZodString>;
8566
+ line: z.ZodOptional<z.ZodNumber>;
7164
8567
  discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
7165
- originalPath: z.ZodOptional<z.ZodString>;
7166
8568
  }, "strip", z.ZodTypeAny, {
7167
- path: string;
7168
- type: "FileNode";
8569
+ name: string;
8570
+ type: "WebSocketChannelNode";
7169
8571
  id: string;
7170
8572
  service: string;
7171
- language?: string | undefined;
8573
+ channel: string;
8574
+ path?: string | undefined;
7172
8575
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7173
- originalPath?: string | undefined;
8576
+ line?: number | undefined;
7174
8577
  }, {
7175
- path: string;
7176
- type: "FileNode";
8578
+ name: string;
8579
+ type: "WebSocketChannelNode";
7177
8580
  id: string;
7178
8581
  service: string;
7179
- language?: string | undefined;
8582
+ channel: string;
8583
+ path?: string | undefined;
7180
8584
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7181
- originalPath?: string | undefined;
8585
+ line?: number | undefined;
7182
8586
  }>]>;
7183
8587
  after: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
7184
8588
  id: z.ZodString;
@@ -7508,6 +8912,123 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7508
8912
  language?: string | undefined;
7509
8913
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7510
8914
  originalPath?: string | undefined;
8915
+ }>, z.ZodObject<{
8916
+ id: z.ZodString;
8917
+ type: z.ZodLiteral<"RouteNode">;
8918
+ name: z.ZodString;
8919
+ service: z.ZodString;
8920
+ method: z.ZodString;
8921
+ pathTemplate: z.ZodString;
8922
+ path: z.ZodString;
8923
+ line: z.ZodOptional<z.ZodNumber>;
8924
+ framework: z.ZodOptional<z.ZodString>;
8925
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
8926
+ }, "strip", z.ZodTypeAny, {
8927
+ name: string;
8928
+ path: string;
8929
+ type: "RouteNode";
8930
+ id: string;
8931
+ service: string;
8932
+ method: string;
8933
+ pathTemplate: string;
8934
+ framework?: string | undefined;
8935
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8936
+ line?: number | undefined;
8937
+ }, {
8938
+ name: string;
8939
+ path: string;
8940
+ type: "RouteNode";
8941
+ id: string;
8942
+ service: string;
8943
+ method: string;
8944
+ pathTemplate: string;
8945
+ framework?: string | undefined;
8946
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8947
+ line?: number | undefined;
8948
+ }>, z.ZodObject<{
8949
+ id: z.ZodString;
8950
+ type: z.ZodLiteral<"GraphQLOperationNode">;
8951
+ name: z.ZodString;
8952
+ service: z.ZodString;
8953
+ operationType: z.ZodString;
8954
+ operationName: z.ZodString;
8955
+ path: z.ZodOptional<z.ZodString>;
8956
+ line: z.ZodOptional<z.ZodNumber>;
8957
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
8958
+ }, "strip", z.ZodTypeAny, {
8959
+ name: string;
8960
+ type: "GraphQLOperationNode";
8961
+ id: string;
8962
+ service: string;
8963
+ operationType: string;
8964
+ operationName: string;
8965
+ path?: string | undefined;
8966
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8967
+ line?: number | undefined;
8968
+ }, {
8969
+ name: string;
8970
+ type: "GraphQLOperationNode";
8971
+ id: string;
8972
+ service: string;
8973
+ operationType: string;
8974
+ operationName: string;
8975
+ path?: string | undefined;
8976
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8977
+ line?: number | undefined;
8978
+ }>, z.ZodObject<{
8979
+ id: z.ZodString;
8980
+ type: z.ZodLiteral<"GrpcMethodNode">;
8981
+ name: z.ZodString;
8982
+ rpcService: z.ZodString;
8983
+ rpcMethod: z.ZodString;
8984
+ path: z.ZodOptional<z.ZodString>;
8985
+ line: z.ZodOptional<z.ZodNumber>;
8986
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
8987
+ }, "strip", z.ZodTypeAny, {
8988
+ name: string;
8989
+ type: "GrpcMethodNode";
8990
+ id: string;
8991
+ rpcService: string;
8992
+ rpcMethod: string;
8993
+ path?: string | undefined;
8994
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
8995
+ line?: number | undefined;
8996
+ }, {
8997
+ name: string;
8998
+ type: "GrpcMethodNode";
8999
+ id: string;
9000
+ rpcService: string;
9001
+ rpcMethod: string;
9002
+ path?: string | undefined;
9003
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9004
+ line?: number | undefined;
9005
+ }>, z.ZodObject<{
9006
+ id: z.ZodString;
9007
+ type: z.ZodLiteral<"WebSocketChannelNode">;
9008
+ name: z.ZodString;
9009
+ service: z.ZodString;
9010
+ channel: z.ZodString;
9011
+ path: z.ZodOptional<z.ZodString>;
9012
+ line: z.ZodOptional<z.ZodNumber>;
9013
+ discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
9014
+ }, "strip", z.ZodTypeAny, {
9015
+ name: string;
9016
+ type: "WebSocketChannelNode";
9017
+ id: string;
9018
+ service: string;
9019
+ channel: string;
9020
+ path?: string | undefined;
9021
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9022
+ line?: number | undefined;
9023
+ }, {
9024
+ name: string;
9025
+ type: "WebSocketChannelNode";
9026
+ id: string;
9027
+ service: string;
9028
+ channel: string;
9029
+ path?: string | undefined;
9030
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9031
+ line?: number | undefined;
7511
9032
  }>]>;
7512
9033
  }, "strip", z.ZodTypeAny, {
7513
9034
  id: string;
@@ -7597,6 +9118,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7597
9118
  language?: string | undefined;
7598
9119
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7599
9120
  originalPath?: string | undefined;
9121
+ } | {
9122
+ name: string;
9123
+ path: string;
9124
+ type: "RouteNode";
9125
+ id: string;
9126
+ service: string;
9127
+ method: string;
9128
+ pathTemplate: string;
9129
+ framework?: string | undefined;
9130
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9131
+ line?: number | undefined;
9132
+ } | {
9133
+ name: string;
9134
+ type: "GraphQLOperationNode";
9135
+ id: string;
9136
+ service: string;
9137
+ operationType: string;
9138
+ operationName: string;
9139
+ path?: string | undefined;
9140
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9141
+ line?: number | undefined;
9142
+ } | {
9143
+ name: string;
9144
+ type: "GrpcMethodNode";
9145
+ id: string;
9146
+ rpcService: string;
9147
+ rpcMethod: string;
9148
+ path?: string | undefined;
9149
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9150
+ line?: number | undefined;
9151
+ } | {
9152
+ name: string;
9153
+ type: "WebSocketChannelNode";
9154
+ id: string;
9155
+ service: string;
9156
+ channel: string;
9157
+ path?: string | undefined;
9158
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9159
+ line?: number | undefined;
7600
9160
  };
7601
9161
  after: {
7602
9162
  name: string;
@@ -7684,6 +9244,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7684
9244
  language?: string | undefined;
7685
9245
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7686
9246
  originalPath?: string | undefined;
9247
+ } | {
9248
+ name: string;
9249
+ path: string;
9250
+ type: "RouteNode";
9251
+ id: string;
9252
+ service: string;
9253
+ method: string;
9254
+ pathTemplate: string;
9255
+ framework?: string | undefined;
9256
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9257
+ line?: number | undefined;
9258
+ } | {
9259
+ name: string;
9260
+ type: "GraphQLOperationNode";
9261
+ id: string;
9262
+ service: string;
9263
+ operationType: string;
9264
+ operationName: string;
9265
+ path?: string | undefined;
9266
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9267
+ line?: number | undefined;
9268
+ } | {
9269
+ name: string;
9270
+ type: "GrpcMethodNode";
9271
+ id: string;
9272
+ rpcService: string;
9273
+ rpcMethod: string;
9274
+ path?: string | undefined;
9275
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9276
+ line?: number | undefined;
9277
+ } | {
9278
+ name: string;
9279
+ type: "WebSocketChannelNode";
9280
+ id: string;
9281
+ service: string;
9282
+ channel: string;
9283
+ path?: string | undefined;
9284
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9285
+ line?: number | undefined;
7687
9286
  };
7688
9287
  }, {
7689
9288
  id: string;
@@ -7773,6 +9372,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7773
9372
  language?: string | undefined;
7774
9373
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7775
9374
  originalPath?: string | undefined;
9375
+ } | {
9376
+ name: string;
9377
+ path: string;
9378
+ type: "RouteNode";
9379
+ id: string;
9380
+ service: string;
9381
+ method: string;
9382
+ pathTemplate: string;
9383
+ framework?: string | undefined;
9384
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9385
+ line?: number | undefined;
9386
+ } | {
9387
+ name: string;
9388
+ type: "GraphQLOperationNode";
9389
+ id: string;
9390
+ service: string;
9391
+ operationType: string;
9392
+ operationName: string;
9393
+ path?: string | undefined;
9394
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9395
+ line?: number | undefined;
9396
+ } | {
9397
+ name: string;
9398
+ type: "GrpcMethodNode";
9399
+ id: string;
9400
+ rpcService: string;
9401
+ rpcMethod: string;
9402
+ path?: string | undefined;
9403
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9404
+ line?: number | undefined;
9405
+ } | {
9406
+ name: string;
9407
+ type: "WebSocketChannelNode";
9408
+ id: string;
9409
+ service: string;
9410
+ channel: string;
9411
+ path?: string | undefined;
9412
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9413
+ line?: number | undefined;
7776
9414
  };
7777
9415
  after: {
7778
9416
  name: string;
@@ -7860,6 +9498,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7860
9498
  language?: string | undefined;
7861
9499
  discoveredVia?: "static" | "otel" | "merged" | undefined;
7862
9500
  originalPath?: string | undefined;
9501
+ } | {
9502
+ name: string;
9503
+ path: string;
9504
+ type: "RouteNode";
9505
+ id: string;
9506
+ service: string;
9507
+ method: string;
9508
+ pathTemplate: string;
9509
+ framework?: string | undefined;
9510
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9511
+ line?: number | undefined;
9512
+ } | {
9513
+ name: string;
9514
+ type: "GraphQLOperationNode";
9515
+ id: string;
9516
+ service: string;
9517
+ operationType: string;
9518
+ operationName: string;
9519
+ path?: string | undefined;
9520
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9521
+ line?: number | undefined;
9522
+ } | {
9523
+ name: string;
9524
+ type: "GrpcMethodNode";
9525
+ id: string;
9526
+ rpcService: string;
9527
+ rpcMethod: string;
9528
+ path?: string | undefined;
9529
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9530
+ line?: number | undefined;
9531
+ } | {
9532
+ name: string;
9533
+ type: "WebSocketChannelNode";
9534
+ id: string;
9535
+ service: string;
9536
+ channel: string;
9537
+ path?: string | undefined;
9538
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9539
+ line?: number | undefined;
7863
9540
  };
7864
9541
  }>, "many">;
7865
9542
  edges: z.ZodArray<z.ZodObject<{
@@ -7877,12 +9554,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7877
9554
  file: z.ZodString;
7878
9555
  line: z.ZodOptional<z.ZodNumber>;
7879
9556
  snippet: z.ZodOptional<z.ZodString>;
9557
+ method: z.ZodOptional<z.ZodString>;
9558
+ pathTemplate: z.ZodOptional<z.ZodString>;
7880
9559
  }, "strip", z.ZodTypeAny, {
7881
9560
  file: string;
9561
+ method?: string | undefined;
9562
+ pathTemplate?: string | undefined;
7882
9563
  line?: number | undefined;
7883
9564
  snippet?: string | undefined;
7884
9565
  }, {
7885
9566
  file: string;
9567
+ method?: string | undefined;
9568
+ pathTemplate?: string | undefined;
7886
9569
  line?: number | undefined;
7887
9570
  snippet?: string | undefined;
7888
9571
  }>>;
@@ -7910,6 +9593,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7910
9593
  callCount?: number | undefined;
7911
9594
  evidence?: {
7912
9595
  file: string;
9596
+ method?: string | undefined;
9597
+ pathTemplate?: string | undefined;
7913
9598
  line?: number | undefined;
7914
9599
  snippet?: string | undefined;
7915
9600
  } | undefined;
@@ -7929,6 +9614,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7929
9614
  callCount?: number | undefined;
7930
9615
  evidence?: {
7931
9616
  file: string;
9617
+ method?: string | undefined;
9618
+ pathTemplate?: string | undefined;
7932
9619
  line?: number | undefined;
7933
9620
  snippet?: string | undefined;
7934
9621
  } | undefined;
@@ -7951,12 +9638,18 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7951
9638
  file: z.ZodString;
7952
9639
  line: z.ZodOptional<z.ZodNumber>;
7953
9640
  snippet: z.ZodOptional<z.ZodString>;
9641
+ method: z.ZodOptional<z.ZodString>;
9642
+ pathTemplate: z.ZodOptional<z.ZodString>;
7954
9643
  }, "strip", z.ZodTypeAny, {
7955
9644
  file: string;
9645
+ method?: string | undefined;
9646
+ pathTemplate?: string | undefined;
7956
9647
  line?: number | undefined;
7957
9648
  snippet?: string | undefined;
7958
9649
  }, {
7959
9650
  file: string;
9651
+ method?: string | undefined;
9652
+ pathTemplate?: string | undefined;
7960
9653
  line?: number | undefined;
7961
9654
  snippet?: string | undefined;
7962
9655
  }>>;
@@ -7984,6 +9677,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
7984
9677
  callCount?: number | undefined;
7985
9678
  evidence?: {
7986
9679
  file: string;
9680
+ method?: string | undefined;
9681
+ pathTemplate?: string | undefined;
7987
9682
  line?: number | undefined;
7988
9683
  snippet?: string | undefined;
7989
9684
  } | undefined;
@@ -8003,6 +9698,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8003
9698
  callCount?: number | undefined;
8004
9699
  evidence?: {
8005
9700
  file: string;
9701
+ method?: string | undefined;
9702
+ pathTemplate?: string | undefined;
8006
9703
  line?: number | undefined;
8007
9704
  snippet?: string | undefined;
8008
9705
  } | undefined;
@@ -8025,6 +9722,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8025
9722
  callCount?: number | undefined;
8026
9723
  evidence?: {
8027
9724
  file: string;
9725
+ method?: string | undefined;
9726
+ pathTemplate?: string | undefined;
8028
9727
  line?: number | undefined;
8029
9728
  snippet?: string | undefined;
8030
9729
  } | undefined;
@@ -8045,6 +9744,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8045
9744
  callCount?: number | undefined;
8046
9745
  evidence?: {
8047
9746
  file: string;
9747
+ method?: string | undefined;
9748
+ pathTemplate?: string | undefined;
8048
9749
  line?: number | undefined;
8049
9750
  snippet?: string | undefined;
8050
9751
  } | undefined;
@@ -8067,6 +9768,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8067
9768
  callCount?: number | undefined;
8068
9769
  evidence?: {
8069
9770
  file: string;
9771
+ method?: string | undefined;
9772
+ pathTemplate?: string | undefined;
8070
9773
  line?: number | undefined;
8071
9774
  snippet?: string | undefined;
8072
9775
  } | undefined;
@@ -8087,6 +9790,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8087
9790
  callCount?: number | undefined;
8088
9791
  evidence?: {
8089
9792
  file: string;
9793
+ method?: string | undefined;
9794
+ pathTemplate?: string | undefined;
8090
9795
  line?: number | undefined;
8091
9796
  snippet?: string | undefined;
8092
9797
  } | undefined;
@@ -8186,6 +9891,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8186
9891
  language?: string | undefined;
8187
9892
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8188
9893
  originalPath?: string | undefined;
9894
+ } | {
9895
+ name: string;
9896
+ path: string;
9897
+ type: "RouteNode";
9898
+ id: string;
9899
+ service: string;
9900
+ method: string;
9901
+ pathTemplate: string;
9902
+ framework?: string | undefined;
9903
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9904
+ line?: number | undefined;
9905
+ } | {
9906
+ name: string;
9907
+ type: "GraphQLOperationNode";
9908
+ id: string;
9909
+ service: string;
9910
+ operationType: string;
9911
+ operationName: string;
9912
+ path?: string | undefined;
9913
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9914
+ line?: number | undefined;
9915
+ } | {
9916
+ name: string;
9917
+ type: "GrpcMethodNode";
9918
+ id: string;
9919
+ rpcService: string;
9920
+ rpcMethod: string;
9921
+ path?: string | undefined;
9922
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9923
+ line?: number | undefined;
9924
+ } | {
9925
+ name: string;
9926
+ type: "WebSocketChannelNode";
9927
+ id: string;
9928
+ service: string;
9929
+ channel: string;
9930
+ path?: string | undefined;
9931
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
9932
+ line?: number | undefined;
8189
9933
  };
8190
9934
  after: {
8191
9935
  name: string;
@@ -8266,13 +10010,52 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8266
10010
  firstObserved?: string | undefined;
8267
10011
  lastObserved?: string | undefined;
8268
10012
  } | {
8269
- path: string;
8270
- type: "FileNode";
10013
+ path: string;
10014
+ type: "FileNode";
10015
+ id: string;
10016
+ service: string;
10017
+ language?: string | undefined;
10018
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10019
+ originalPath?: string | undefined;
10020
+ } | {
10021
+ name: string;
10022
+ path: string;
10023
+ type: "RouteNode";
10024
+ id: string;
10025
+ service: string;
10026
+ method: string;
10027
+ pathTemplate: string;
10028
+ framework?: string | undefined;
10029
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10030
+ line?: number | undefined;
10031
+ } | {
10032
+ name: string;
10033
+ type: "GraphQLOperationNode";
10034
+ id: string;
10035
+ service: string;
10036
+ operationType: string;
10037
+ operationName: string;
10038
+ path?: string | undefined;
10039
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10040
+ line?: number | undefined;
10041
+ } | {
10042
+ name: string;
10043
+ type: "GrpcMethodNode";
10044
+ id: string;
10045
+ rpcService: string;
10046
+ rpcMethod: string;
10047
+ path?: string | undefined;
10048
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10049
+ line?: number | undefined;
10050
+ } | {
10051
+ name: string;
10052
+ type: "WebSocketChannelNode";
8271
10053
  id: string;
8272
10054
  service: string;
8273
- language?: string | undefined;
10055
+ channel: string;
10056
+ path?: string | undefined;
8274
10057
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8275
- originalPath?: string | undefined;
10058
+ line?: number | undefined;
8276
10059
  };
8277
10060
  }[];
8278
10061
  edges: {
@@ -8288,6 +10071,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8288
10071
  callCount?: number | undefined;
8289
10072
  evidence?: {
8290
10073
  file: string;
10074
+ method?: string | undefined;
10075
+ pathTemplate?: string | undefined;
8291
10076
  line?: number | undefined;
8292
10077
  snippet?: string | undefined;
8293
10078
  } | undefined;
@@ -8308,6 +10093,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8308
10093
  callCount?: number | undefined;
8309
10094
  evidence?: {
8310
10095
  file: string;
10096
+ method?: string | undefined;
10097
+ pathTemplate?: string | undefined;
8311
10098
  line?: number | undefined;
8312
10099
  snippet?: string | undefined;
8313
10100
  } | undefined;
@@ -8407,6 +10194,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8407
10194
  language?: string | undefined;
8408
10195
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8409
10196
  originalPath?: string | undefined;
10197
+ } | {
10198
+ name: string;
10199
+ path: string;
10200
+ type: "RouteNode";
10201
+ id: string;
10202
+ service: string;
10203
+ method: string;
10204
+ pathTemplate: string;
10205
+ framework?: string | undefined;
10206
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10207
+ line?: number | undefined;
10208
+ } | {
10209
+ name: string;
10210
+ type: "GraphQLOperationNode";
10211
+ id: string;
10212
+ service: string;
10213
+ operationType: string;
10214
+ operationName: string;
10215
+ path?: string | undefined;
10216
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10217
+ line?: number | undefined;
10218
+ } | {
10219
+ name: string;
10220
+ type: "GrpcMethodNode";
10221
+ id: string;
10222
+ rpcService: string;
10223
+ rpcMethod: string;
10224
+ path?: string | undefined;
10225
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10226
+ line?: number | undefined;
10227
+ } | {
10228
+ name: string;
10229
+ type: "WebSocketChannelNode";
10230
+ id: string;
10231
+ service: string;
10232
+ channel: string;
10233
+ path?: string | undefined;
10234
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10235
+ line?: number | undefined;
8410
10236
  };
8411
10237
  after: {
8412
10238
  name: string;
@@ -8494,6 +10320,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8494
10320
  language?: string | undefined;
8495
10321
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8496
10322
  originalPath?: string | undefined;
10323
+ } | {
10324
+ name: string;
10325
+ path: string;
10326
+ type: "RouteNode";
10327
+ id: string;
10328
+ service: string;
10329
+ method: string;
10330
+ pathTemplate: string;
10331
+ framework?: string | undefined;
10332
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10333
+ line?: number | undefined;
10334
+ } | {
10335
+ name: string;
10336
+ type: "GraphQLOperationNode";
10337
+ id: string;
10338
+ service: string;
10339
+ operationType: string;
10340
+ operationName: string;
10341
+ path?: string | undefined;
10342
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10343
+ line?: number | undefined;
10344
+ } | {
10345
+ name: string;
10346
+ type: "GrpcMethodNode";
10347
+ id: string;
10348
+ rpcService: string;
10349
+ rpcMethod: string;
10350
+ path?: string | undefined;
10351
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10352
+ line?: number | undefined;
10353
+ } | {
10354
+ name: string;
10355
+ type: "WebSocketChannelNode";
10356
+ id: string;
10357
+ service: string;
10358
+ channel: string;
10359
+ path?: string | undefined;
10360
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10361
+ line?: number | undefined;
8497
10362
  };
8498
10363
  }[];
8499
10364
  edges: {
@@ -8509,6 +10374,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8509
10374
  callCount?: number | undefined;
8510
10375
  evidence?: {
8511
10376
  file: string;
10377
+ method?: string | undefined;
10378
+ pathTemplate?: string | undefined;
8512
10379
  line?: number | undefined;
8513
10380
  snippet?: string | undefined;
8514
10381
  } | undefined;
@@ -8529,6 +10396,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8529
10396
  callCount?: number | undefined;
8530
10397
  evidence?: {
8531
10398
  file: string;
10399
+ method?: string | undefined;
10400
+ pathTemplate?: string | undefined;
8532
10401
  line?: number | undefined;
8533
10402
  snippet?: string | undefined;
8534
10403
  } | undefined;
@@ -8634,6 +10503,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8634
10503
  language?: string | undefined;
8635
10504
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8636
10505
  originalPath?: string | undefined;
10506
+ } | {
10507
+ name: string;
10508
+ path: string;
10509
+ type: "RouteNode";
10510
+ id: string;
10511
+ service: string;
10512
+ method: string;
10513
+ pathTemplate: string;
10514
+ framework?: string | undefined;
10515
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10516
+ line?: number | undefined;
10517
+ } | {
10518
+ name: string;
10519
+ type: "GraphQLOperationNode";
10520
+ id: string;
10521
+ service: string;
10522
+ operationType: string;
10523
+ operationName: string;
10524
+ path?: string | undefined;
10525
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10526
+ line?: number | undefined;
10527
+ } | {
10528
+ name: string;
10529
+ type: "GrpcMethodNode";
10530
+ id: string;
10531
+ rpcService: string;
10532
+ rpcMethod: string;
10533
+ path?: string | undefined;
10534
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10535
+ line?: number | undefined;
10536
+ } | {
10537
+ name: string;
10538
+ type: "WebSocketChannelNode";
10539
+ id: string;
10540
+ service: string;
10541
+ channel: string;
10542
+ path?: string | undefined;
10543
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10544
+ line?: number | undefined;
8637
10545
  })[];
8638
10546
  edges: {
8639
10547
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -8646,6 +10554,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8646
10554
  callCount?: number | undefined;
8647
10555
  evidence?: {
8648
10556
  file: string;
10557
+ method?: string | undefined;
10558
+ pathTemplate?: string | undefined;
8649
10559
  line?: number | undefined;
8650
10560
  snippet?: string | undefined;
8651
10561
  } | undefined;
@@ -8743,6 +10653,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8743
10653
  language?: string | undefined;
8744
10654
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8745
10655
  originalPath?: string | undefined;
10656
+ } | {
10657
+ name: string;
10658
+ path: string;
10659
+ type: "RouteNode";
10660
+ id: string;
10661
+ service: string;
10662
+ method: string;
10663
+ pathTemplate: string;
10664
+ framework?: string | undefined;
10665
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10666
+ line?: number | undefined;
10667
+ } | {
10668
+ name: string;
10669
+ type: "GraphQLOperationNode";
10670
+ id: string;
10671
+ service: string;
10672
+ operationType: string;
10673
+ operationName: string;
10674
+ path?: string | undefined;
10675
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10676
+ line?: number | undefined;
10677
+ } | {
10678
+ name: string;
10679
+ type: "GrpcMethodNode";
10680
+ id: string;
10681
+ rpcService: string;
10682
+ rpcMethod: string;
10683
+ path?: string | undefined;
10684
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10685
+ line?: number | undefined;
10686
+ } | {
10687
+ name: string;
10688
+ type: "WebSocketChannelNode";
10689
+ id: string;
10690
+ service: string;
10691
+ channel: string;
10692
+ path?: string | undefined;
10693
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10694
+ line?: number | undefined;
8746
10695
  })[];
8747
10696
  edges: {
8748
10697
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -8755,6 +10704,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8755
10704
  callCount?: number | undefined;
8756
10705
  evidence?: {
8757
10706
  file: string;
10707
+ method?: string | undefined;
10708
+ pathTemplate?: string | undefined;
8758
10709
  line?: number | undefined;
8759
10710
  snippet?: string | undefined;
8760
10711
  } | undefined;
@@ -8854,6 +10805,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8854
10805
  language?: string | undefined;
8855
10806
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8856
10807
  originalPath?: string | undefined;
10808
+ } | {
10809
+ name: string;
10810
+ path: string;
10811
+ type: "RouteNode";
10812
+ id: string;
10813
+ service: string;
10814
+ method: string;
10815
+ pathTemplate: string;
10816
+ framework?: string | undefined;
10817
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10818
+ line?: number | undefined;
10819
+ } | {
10820
+ name: string;
10821
+ type: "GraphQLOperationNode";
10822
+ id: string;
10823
+ service: string;
10824
+ operationType: string;
10825
+ operationName: string;
10826
+ path?: string | undefined;
10827
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10828
+ line?: number | undefined;
10829
+ } | {
10830
+ name: string;
10831
+ type: "GrpcMethodNode";
10832
+ id: string;
10833
+ rpcService: string;
10834
+ rpcMethod: string;
10835
+ path?: string | undefined;
10836
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10837
+ line?: number | undefined;
10838
+ } | {
10839
+ name: string;
10840
+ type: "WebSocketChannelNode";
10841
+ id: string;
10842
+ service: string;
10843
+ channel: string;
10844
+ path?: string | undefined;
10845
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10846
+ line?: number | undefined;
8857
10847
  };
8858
10848
  after: {
8859
10849
  name: string;
@@ -8941,6 +10931,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8941
10931
  language?: string | undefined;
8942
10932
  discoveredVia?: "static" | "otel" | "merged" | undefined;
8943
10933
  originalPath?: string | undefined;
10934
+ } | {
10935
+ name: string;
10936
+ path: string;
10937
+ type: "RouteNode";
10938
+ id: string;
10939
+ service: string;
10940
+ method: string;
10941
+ pathTemplate: string;
10942
+ framework?: string | undefined;
10943
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10944
+ line?: number | undefined;
10945
+ } | {
10946
+ name: string;
10947
+ type: "GraphQLOperationNode";
10948
+ id: string;
10949
+ service: string;
10950
+ operationType: string;
10951
+ operationName: string;
10952
+ path?: string | undefined;
10953
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10954
+ line?: number | undefined;
10955
+ } | {
10956
+ name: string;
10957
+ type: "GrpcMethodNode";
10958
+ id: string;
10959
+ rpcService: string;
10960
+ rpcMethod: string;
10961
+ path?: string | undefined;
10962
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10963
+ line?: number | undefined;
10964
+ } | {
10965
+ name: string;
10966
+ type: "WebSocketChannelNode";
10967
+ id: string;
10968
+ service: string;
10969
+ channel: string;
10970
+ path?: string | undefined;
10971
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
10972
+ line?: number | undefined;
8944
10973
  };
8945
10974
  }[];
8946
10975
  edges: {
@@ -8956,6 +10985,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8956
10985
  callCount?: number | undefined;
8957
10986
  evidence?: {
8958
10987
  file: string;
10988
+ method?: string | undefined;
10989
+ pathTemplate?: string | undefined;
8959
10990
  line?: number | undefined;
8960
10991
  snippet?: string | undefined;
8961
10992
  } | undefined;
@@ -8976,6 +11007,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
8976
11007
  callCount?: number | undefined;
8977
11008
  evidence?: {
8978
11009
  file: string;
11010
+ method?: string | undefined;
11011
+ pathTemplate?: string | undefined;
8979
11012
  line?: number | undefined;
8980
11013
  snippet?: string | undefined;
8981
11014
  } | undefined;
@@ -9081,6 +11114,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9081
11114
  language?: string | undefined;
9082
11115
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9083
11116
  originalPath?: string | undefined;
11117
+ } | {
11118
+ name: string;
11119
+ path: string;
11120
+ type: "RouteNode";
11121
+ id: string;
11122
+ service: string;
11123
+ method: string;
11124
+ pathTemplate: string;
11125
+ framework?: string | undefined;
11126
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11127
+ line?: number | undefined;
11128
+ } | {
11129
+ name: string;
11130
+ type: "GraphQLOperationNode";
11131
+ id: string;
11132
+ service: string;
11133
+ operationType: string;
11134
+ operationName: string;
11135
+ path?: string | undefined;
11136
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11137
+ line?: number | undefined;
11138
+ } | {
11139
+ name: string;
11140
+ type: "GrpcMethodNode";
11141
+ id: string;
11142
+ rpcService: string;
11143
+ rpcMethod: string;
11144
+ path?: string | undefined;
11145
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11146
+ line?: number | undefined;
11147
+ } | {
11148
+ name: string;
11149
+ type: "WebSocketChannelNode";
11150
+ id: string;
11151
+ service: string;
11152
+ channel: string;
11153
+ path?: string | undefined;
11154
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11155
+ line?: number | undefined;
9084
11156
  })[];
9085
11157
  edges: {
9086
11158
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -9093,6 +11165,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9093
11165
  callCount?: number | undefined;
9094
11166
  evidence?: {
9095
11167
  file: string;
11168
+ method?: string | undefined;
11169
+ pathTemplate?: string | undefined;
9096
11170
  line?: number | undefined;
9097
11171
  snippet?: string | undefined;
9098
11172
  } | undefined;
@@ -9190,6 +11264,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9190
11264
  language?: string | undefined;
9191
11265
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9192
11266
  originalPath?: string | undefined;
11267
+ } | {
11268
+ name: string;
11269
+ path: string;
11270
+ type: "RouteNode";
11271
+ id: string;
11272
+ service: string;
11273
+ method: string;
11274
+ pathTemplate: string;
11275
+ framework?: string | undefined;
11276
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11277
+ line?: number | undefined;
11278
+ } | {
11279
+ name: string;
11280
+ type: "GraphQLOperationNode";
11281
+ id: string;
11282
+ service: string;
11283
+ operationType: string;
11284
+ operationName: string;
11285
+ path?: string | undefined;
11286
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11287
+ line?: number | undefined;
11288
+ } | {
11289
+ name: string;
11290
+ type: "GrpcMethodNode";
11291
+ id: string;
11292
+ rpcService: string;
11293
+ rpcMethod: string;
11294
+ path?: string | undefined;
11295
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11296
+ line?: number | undefined;
11297
+ } | {
11298
+ name: string;
11299
+ type: "WebSocketChannelNode";
11300
+ id: string;
11301
+ service: string;
11302
+ channel: string;
11303
+ path?: string | undefined;
11304
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11305
+ line?: number | undefined;
9193
11306
  })[];
9194
11307
  edges: {
9195
11308
  type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
@@ -9202,6 +11315,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9202
11315
  callCount?: number | undefined;
9203
11316
  evidence?: {
9204
11317
  file: string;
11318
+ method?: string | undefined;
11319
+ pathTemplate?: string | undefined;
9205
11320
  line?: number | undefined;
9206
11321
  snippet?: string | undefined;
9207
11322
  } | undefined;
@@ -9301,6 +11416,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9301
11416
  language?: string | undefined;
9302
11417
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9303
11418
  originalPath?: string | undefined;
11419
+ } | {
11420
+ name: string;
11421
+ path: string;
11422
+ type: "RouteNode";
11423
+ id: string;
11424
+ service: string;
11425
+ method: string;
11426
+ pathTemplate: string;
11427
+ framework?: string | undefined;
11428
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11429
+ line?: number | undefined;
11430
+ } | {
11431
+ name: string;
11432
+ type: "GraphQLOperationNode";
11433
+ id: string;
11434
+ service: string;
11435
+ operationType: string;
11436
+ operationName: string;
11437
+ path?: string | undefined;
11438
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11439
+ line?: number | undefined;
11440
+ } | {
11441
+ name: string;
11442
+ type: "GrpcMethodNode";
11443
+ id: string;
11444
+ rpcService: string;
11445
+ rpcMethod: string;
11446
+ path?: string | undefined;
11447
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11448
+ line?: number | undefined;
11449
+ } | {
11450
+ name: string;
11451
+ type: "WebSocketChannelNode";
11452
+ id: string;
11453
+ service: string;
11454
+ channel: string;
11455
+ path?: string | undefined;
11456
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11457
+ line?: number | undefined;
9304
11458
  };
9305
11459
  after: {
9306
11460
  name: string;
@@ -9388,6 +11542,45 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9388
11542
  language?: string | undefined;
9389
11543
  discoveredVia?: "static" | "otel" | "merged" | undefined;
9390
11544
  originalPath?: string | undefined;
11545
+ } | {
11546
+ name: string;
11547
+ path: string;
11548
+ type: "RouteNode";
11549
+ id: string;
11550
+ service: string;
11551
+ method: string;
11552
+ pathTemplate: string;
11553
+ framework?: string | undefined;
11554
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11555
+ line?: number | undefined;
11556
+ } | {
11557
+ name: string;
11558
+ type: "GraphQLOperationNode";
11559
+ id: string;
11560
+ service: string;
11561
+ operationType: string;
11562
+ operationName: string;
11563
+ path?: string | undefined;
11564
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11565
+ line?: number | undefined;
11566
+ } | {
11567
+ name: string;
11568
+ type: "GrpcMethodNode";
11569
+ id: string;
11570
+ rpcService: string;
11571
+ rpcMethod: string;
11572
+ path?: string | undefined;
11573
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11574
+ line?: number | undefined;
11575
+ } | {
11576
+ name: string;
11577
+ type: "WebSocketChannelNode";
11578
+ id: string;
11579
+ service: string;
11580
+ channel: string;
11581
+ path?: string | undefined;
11582
+ discoveredVia?: "static" | "otel" | "merged" | undefined;
11583
+ line?: number | undefined;
9391
11584
  };
9392
11585
  }[];
9393
11586
  edges: {
@@ -9403,6 +11596,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9403
11596
  callCount?: number | undefined;
9404
11597
  evidence?: {
9405
11598
  file: string;
11599
+ method?: string | undefined;
11600
+ pathTemplate?: string | undefined;
9406
11601
  line?: number | undefined;
9407
11602
  snippet?: string | undefined;
9408
11603
  } | undefined;
@@ -9423,6 +11618,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
9423
11618
  callCount?: number | undefined;
9424
11619
  evidence?: {
9425
11620
  file: string;
11621
+ method?: string | undefined;
11622
+ pathTemplate?: string | undefined;
9426
11623
  line?: number | undefined;
9427
11624
  snippet?: string | undefined;
9428
11625
  } | undefined;
@@ -9445,4 +11642,4 @@ declare const DEFAULT_EXTRACTED_PRECISION_FLOOR = 0.7;
9445
11642
  declare function extractedPrecisionFloor(): number;
9446
11643
  declare function passesExtractedFloor(confidence: number): boolean;
9447
11644
 
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 };
11645
+ 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 GrpcMethodNode, GrpcMethodNodeSchema, 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, type WebSocketChannelNode, WebSocketChannelNodeSchema, confidenceForExtracted, confidenceForObservedSignal, configId, databaseId, extractedEdgeId, extractedPrecisionFloor, fileId, frontierId, graphqlOperationId, grpcMethodId, inferredEdgeId, infraId, localDatabaseId, observedEdgeId, parseConfigId, parseDatabaseId, parseEdgeId, parseFileId, parseFrontierId, parseGraphqlOperationId, parseGrpcMethodId, parseInfraId, parseRouteId, parseServiceId, parseWebsocketChannelId, passesExtractedFloor, routeId, serviceId, websocketChannelId };