@neat.is/types 0.9.8-dev.20260828 → 0.9.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -2673,6 +2673,449 @@ declare const AskResultSchema: z.ZodObject<{
2673
2673
  }>;
2674
2674
  type AskResult = z.infer<typeof AskResultSchema>;
2675
2675
 
2676
+ declare const IncidentKindSchema: z.ZodEnum<["exception", "5xx", "4xx-burst", "status-error", "connector"]>;
2677
+ type IncidentKind = z.infer<typeof IncidentKindSchema>;
2678
+ declare const IncidentChainHopSchema: z.ZodObject<{
2679
+ node: z.ZodString;
2680
+ grain: z.ZodString;
2681
+ edgeType: z.ZodOptional<z.ZodString>;
2682
+ provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2683
+ carriesSignal: z.ZodOptional<z.ZodBoolean>;
2684
+ }, "strip", z.ZodTypeAny, {
2685
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2686
+ grain: string;
2687
+ node: string;
2688
+ edgeType?: string | undefined;
2689
+ carriesSignal?: boolean | undefined;
2690
+ }, {
2691
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2692
+ grain: string;
2693
+ node: string;
2694
+ edgeType?: string | undefined;
2695
+ carriesSignal?: boolean | undefined;
2696
+ }>;
2697
+ type IncidentChainHop = z.infer<typeof IncidentChainHopSchema>;
2698
+ declare const IncidentLocusSchema: z.ZodObject<{
2699
+ file: z.ZodString;
2700
+ lineStart: z.ZodOptional<z.ZodNumber>;
2701
+ lineEnd: z.ZodOptional<z.ZodNumber>;
2702
+ symbol: z.ZodOptional<z.ZodString>;
2703
+ service: z.ZodOptional<z.ZodString>;
2704
+ provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2705
+ }, "strip", z.ZodTypeAny, {
2706
+ file: string;
2707
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2708
+ symbol?: string | undefined;
2709
+ service?: string | undefined;
2710
+ lineStart?: number | undefined;
2711
+ lineEnd?: number | undefined;
2712
+ }, {
2713
+ file: string;
2714
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2715
+ symbol?: string | undefined;
2716
+ service?: string | undefined;
2717
+ lineStart?: number | undefined;
2718
+ lineEnd?: number | undefined;
2719
+ }>;
2720
+ type IncidentLocus = z.infer<typeof IncidentLocusSchema>;
2721
+ declare const IncidentRootCauseSchema: z.ZodObject<{
2722
+ node: z.ZodString;
2723
+ classification: z.ZodOptional<z.ZodString>;
2724
+ reason: z.ZodString;
2725
+ confidence: z.ZodNumber;
2726
+ fix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2727
+ chain: z.ZodArray<z.ZodObject<{
2728
+ node: z.ZodString;
2729
+ grain: z.ZodString;
2730
+ edgeType: z.ZodOptional<z.ZodString>;
2731
+ provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2732
+ carriesSignal: z.ZodOptional<z.ZodBoolean>;
2733
+ }, "strip", z.ZodTypeAny, {
2734
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2735
+ grain: string;
2736
+ node: string;
2737
+ edgeType?: string | undefined;
2738
+ carriesSignal?: boolean | undefined;
2739
+ }, {
2740
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2741
+ grain: string;
2742
+ node: string;
2743
+ edgeType?: string | undefined;
2744
+ carriesSignal?: boolean | undefined;
2745
+ }>, "many">;
2746
+ }, "strip", z.ZodTypeAny, {
2747
+ reason: string;
2748
+ confidence: number;
2749
+ node: string;
2750
+ chain: {
2751
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2752
+ grain: string;
2753
+ node: string;
2754
+ edgeType?: string | undefined;
2755
+ carriesSignal?: boolean | undefined;
2756
+ }[];
2757
+ classification?: string | undefined;
2758
+ fix?: string | null | undefined;
2759
+ }, {
2760
+ reason: string;
2761
+ confidence: number;
2762
+ node: string;
2763
+ chain: {
2764
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2765
+ grain: string;
2766
+ node: string;
2767
+ edgeType?: string | undefined;
2768
+ carriesSignal?: boolean | undefined;
2769
+ }[];
2770
+ classification?: string | undefined;
2771
+ fix?: string | null | undefined;
2772
+ }>;
2773
+ type IncidentRootCause = z.infer<typeof IncidentRootCauseSchema>;
2774
+ declare const IncidentBlastRadiusSchema: z.ZodObject<{
2775
+ totalAffected: z.ZodNumber;
2776
+ nearest: z.ZodArray<z.ZodObject<{
2777
+ node: z.ZodString;
2778
+ distance: z.ZodNumber;
2779
+ provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2780
+ }, "strip", z.ZodTypeAny, {
2781
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2782
+ node: string;
2783
+ distance: number;
2784
+ }, {
2785
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2786
+ node: string;
2787
+ distance: number;
2788
+ }>, "many">;
2789
+ }, "strip", z.ZodTypeAny, {
2790
+ totalAffected: number;
2791
+ nearest: {
2792
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2793
+ node: string;
2794
+ distance: number;
2795
+ }[];
2796
+ }, {
2797
+ totalAffected: number;
2798
+ nearest: {
2799
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2800
+ node: string;
2801
+ distance: number;
2802
+ }[];
2803
+ }>;
2804
+ type IncidentBlastRadius = z.infer<typeof IncidentBlastRadiusSchema>;
2805
+ declare const IncidentPolicySchema: z.ZodObject<{
2806
+ policyName: z.ZodString;
2807
+ severity: z.ZodString;
2808
+ message: z.ZodOptional<z.ZodString>;
2809
+ }, "strip", z.ZodTypeAny, {
2810
+ severity: string;
2811
+ policyName: string;
2812
+ message?: string | undefined;
2813
+ }, {
2814
+ severity: string;
2815
+ policyName: string;
2816
+ message?: string | undefined;
2817
+ }>;
2818
+ type IncidentPolicy = z.infer<typeof IncidentPolicySchema>;
2819
+ declare const IncidentDivergenceSchema: z.ZodObject<{
2820
+ type: z.ZodString;
2821
+ summary: z.ZodString;
2822
+ }, "strip", z.ZodTypeAny, {
2823
+ type: string;
2824
+ summary: string;
2825
+ }, {
2826
+ type: string;
2827
+ summary: string;
2828
+ }>;
2829
+ type IncidentDivergence = z.infer<typeof IncidentDivergenceSchema>;
2830
+ declare const IncidentCardSchema: z.ZodObject<{
2831
+ kind: z.ZodLiteral<"incident">;
2832
+ id: z.ZodString;
2833
+ at: z.ZodString;
2834
+ incidentKind: z.ZodEnum<["exception", "5xx", "4xx-burst", "status-error", "connector"]>;
2835
+ service: z.ZodString;
2836
+ affectedNode: z.ZodString;
2837
+ message: z.ZodString;
2838
+ exceptionType: z.ZodOptional<z.ZodString>;
2839
+ httpStatusCode: z.ZodOptional<z.ZodNumber>;
2840
+ count: z.ZodOptional<z.ZodNumber>;
2841
+ window: z.ZodOptional<z.ZodObject<{
2842
+ first: z.ZodString;
2843
+ last: z.ZodString;
2844
+ }, "strip", z.ZodTypeAny, {
2845
+ first: string;
2846
+ last: string;
2847
+ }, {
2848
+ first: string;
2849
+ last: string;
2850
+ }>>;
2851
+ traceId: z.ZodOptional<z.ZodString>;
2852
+ spanId: z.ZodOptional<z.ZodString>;
2853
+ locus: z.ZodNullable<z.ZodObject<{
2854
+ file: z.ZodString;
2855
+ lineStart: z.ZodOptional<z.ZodNumber>;
2856
+ lineEnd: z.ZodOptional<z.ZodNumber>;
2857
+ symbol: z.ZodOptional<z.ZodString>;
2858
+ service: z.ZodOptional<z.ZodString>;
2859
+ provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2860
+ }, "strip", z.ZodTypeAny, {
2861
+ file: string;
2862
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2863
+ symbol?: string | undefined;
2864
+ service?: string | undefined;
2865
+ lineStart?: number | undefined;
2866
+ lineEnd?: number | undefined;
2867
+ }, {
2868
+ file: string;
2869
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2870
+ symbol?: string | undefined;
2871
+ service?: string | undefined;
2872
+ lineStart?: number | undefined;
2873
+ lineEnd?: number | undefined;
2874
+ }>>;
2875
+ rootCause: z.ZodNullable<z.ZodObject<{
2876
+ node: z.ZodString;
2877
+ classification: z.ZodOptional<z.ZodString>;
2878
+ reason: z.ZodString;
2879
+ confidence: z.ZodNumber;
2880
+ fix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2881
+ chain: z.ZodArray<z.ZodObject<{
2882
+ node: z.ZodString;
2883
+ grain: z.ZodString;
2884
+ edgeType: z.ZodOptional<z.ZodString>;
2885
+ provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2886
+ carriesSignal: z.ZodOptional<z.ZodBoolean>;
2887
+ }, "strip", z.ZodTypeAny, {
2888
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2889
+ grain: string;
2890
+ node: string;
2891
+ edgeType?: string | undefined;
2892
+ carriesSignal?: boolean | undefined;
2893
+ }, {
2894
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2895
+ grain: string;
2896
+ node: string;
2897
+ edgeType?: string | undefined;
2898
+ carriesSignal?: boolean | undefined;
2899
+ }>, "many">;
2900
+ }, "strip", z.ZodTypeAny, {
2901
+ reason: string;
2902
+ confidence: number;
2903
+ node: string;
2904
+ chain: {
2905
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2906
+ grain: string;
2907
+ node: string;
2908
+ edgeType?: string | undefined;
2909
+ carriesSignal?: boolean | undefined;
2910
+ }[];
2911
+ classification?: string | undefined;
2912
+ fix?: string | null | undefined;
2913
+ }, {
2914
+ reason: string;
2915
+ confidence: number;
2916
+ node: string;
2917
+ chain: {
2918
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2919
+ grain: string;
2920
+ node: string;
2921
+ edgeType?: string | undefined;
2922
+ carriesSignal?: boolean | undefined;
2923
+ }[];
2924
+ classification?: string | undefined;
2925
+ fix?: string | null | undefined;
2926
+ }>>;
2927
+ blastRadius: z.ZodOptional<z.ZodObject<{
2928
+ totalAffected: z.ZodNumber;
2929
+ nearest: z.ZodArray<z.ZodObject<{
2930
+ node: z.ZodString;
2931
+ distance: z.ZodNumber;
2932
+ provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
2933
+ }, "strip", z.ZodTypeAny, {
2934
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2935
+ node: string;
2936
+ distance: number;
2937
+ }, {
2938
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2939
+ node: string;
2940
+ distance: number;
2941
+ }>, "many">;
2942
+ }, "strip", z.ZodTypeAny, {
2943
+ totalAffected: number;
2944
+ nearest: {
2945
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2946
+ node: string;
2947
+ distance: number;
2948
+ }[];
2949
+ }, {
2950
+ totalAffected: number;
2951
+ nearest: {
2952
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2953
+ node: string;
2954
+ distance: number;
2955
+ }[];
2956
+ }>>;
2957
+ policies: z.ZodOptional<z.ZodArray<z.ZodObject<{
2958
+ policyName: z.ZodString;
2959
+ severity: z.ZodString;
2960
+ message: z.ZodOptional<z.ZodString>;
2961
+ }, "strip", z.ZodTypeAny, {
2962
+ severity: string;
2963
+ policyName: string;
2964
+ message?: string | undefined;
2965
+ }, {
2966
+ severity: string;
2967
+ policyName: string;
2968
+ message?: string | undefined;
2969
+ }>, "many">>;
2970
+ divergence: z.ZodOptional<z.ZodArray<z.ZodObject<{
2971
+ type: z.ZodString;
2972
+ summary: z.ZodString;
2973
+ }, "strip", z.ZodTypeAny, {
2974
+ type: string;
2975
+ summary: string;
2976
+ }, {
2977
+ type: string;
2978
+ summary: string;
2979
+ }>, "many">>;
2980
+ headline: z.ZodString;
2981
+ }, "strip", z.ZodTypeAny, {
2982
+ message: string;
2983
+ at: string;
2984
+ id: string;
2985
+ service: string;
2986
+ kind: "incident";
2987
+ affectedNode: string;
2988
+ incidentKind: "exception" | "5xx" | "4xx-burst" | "status-error" | "connector";
2989
+ locus: {
2990
+ file: string;
2991
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
2992
+ symbol?: string | undefined;
2993
+ service?: string | undefined;
2994
+ lineStart?: number | undefined;
2995
+ lineEnd?: number | undefined;
2996
+ } | null;
2997
+ rootCause: {
2998
+ reason: string;
2999
+ confidence: number;
3000
+ node: string;
3001
+ chain: {
3002
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
3003
+ grain: string;
3004
+ node: string;
3005
+ edgeType?: string | undefined;
3006
+ carriesSignal?: boolean | undefined;
3007
+ }[];
3008
+ classification?: string | undefined;
3009
+ fix?: string | null | undefined;
3010
+ } | null;
3011
+ headline: string;
3012
+ traceId?: string | undefined;
3013
+ spanId?: string | undefined;
3014
+ exceptionType?: string | undefined;
3015
+ httpStatusCode?: number | undefined;
3016
+ window?: {
3017
+ first: string;
3018
+ last: string;
3019
+ } | undefined;
3020
+ divergence?: {
3021
+ type: string;
3022
+ summary: string;
3023
+ }[] | undefined;
3024
+ count?: number | undefined;
3025
+ blastRadius?: {
3026
+ totalAffected: number;
3027
+ nearest: {
3028
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
3029
+ node: string;
3030
+ distance: number;
3031
+ }[];
3032
+ } | undefined;
3033
+ policies?: {
3034
+ severity: string;
3035
+ policyName: string;
3036
+ message?: string | undefined;
3037
+ }[] | undefined;
3038
+ }, {
3039
+ message: string;
3040
+ at: string;
3041
+ id: string;
3042
+ service: string;
3043
+ kind: "incident";
3044
+ affectedNode: string;
3045
+ incidentKind: "exception" | "5xx" | "4xx-burst" | "status-error" | "connector";
3046
+ locus: {
3047
+ file: string;
3048
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
3049
+ symbol?: string | undefined;
3050
+ service?: string | undefined;
3051
+ lineStart?: number | undefined;
3052
+ lineEnd?: number | undefined;
3053
+ } | null;
3054
+ rootCause: {
3055
+ reason: string;
3056
+ confidence: number;
3057
+ node: string;
3058
+ chain: {
3059
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
3060
+ grain: string;
3061
+ node: string;
3062
+ edgeType?: string | undefined;
3063
+ carriesSignal?: boolean | undefined;
3064
+ }[];
3065
+ classification?: string | undefined;
3066
+ fix?: string | null | undefined;
3067
+ } | null;
3068
+ headline: string;
3069
+ traceId?: string | undefined;
3070
+ spanId?: string | undefined;
3071
+ exceptionType?: string | undefined;
3072
+ httpStatusCode?: number | undefined;
3073
+ window?: {
3074
+ first: string;
3075
+ last: string;
3076
+ } | undefined;
3077
+ divergence?: {
3078
+ type: string;
3079
+ summary: string;
3080
+ }[] | undefined;
3081
+ count?: number | undefined;
3082
+ blastRadius?: {
3083
+ totalAffected: number;
3084
+ nearest: {
3085
+ provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
3086
+ node: string;
3087
+ distance: number;
3088
+ }[];
3089
+ } | undefined;
3090
+ policies?: {
3091
+ severity: string;
3092
+ policyName: string;
3093
+ message?: string | undefined;
3094
+ }[] | undefined;
3095
+ }>;
3096
+ type IncidentCard = z.infer<typeof IncidentCardSchema>;
3097
+ declare const IncidentEventPayloadSchema: z.ZodObject<{
3098
+ incidentId: z.ZodString;
3099
+ affectedNode: z.ZodString;
3100
+ service: z.ZodString;
3101
+ incidentKind: z.ZodEnum<["exception", "5xx", "4xx-burst", "status-error", "connector"]>;
3102
+ at: z.ZodString;
3103
+ }, "strip", z.ZodTypeAny, {
3104
+ at: string;
3105
+ service: string;
3106
+ affectedNode: string;
3107
+ incidentKind: "exception" | "5xx" | "4xx-burst" | "status-error" | "connector";
3108
+ incidentId: string;
3109
+ }, {
3110
+ at: string;
3111
+ service: string;
3112
+ affectedNode: string;
3113
+ incidentKind: "exception" | "5xx" | "4xx-burst" | "status-error" | "connector";
3114
+ incidentId: string;
3115
+ }>;
3116
+ type IncidentEventPayload = z.infer<typeof IncidentEventPayloadSchema>;
3117
+ declare function incidentKindOf(ev: ErrorEvent): IncidentKind;
3118
+
2676
3119
  declare function serviceId(name: string, env?: string): string;
2677
3120
  declare function parseServiceId(id: string): {
2678
3121
  name: string;
@@ -3510,18 +3953,18 @@ declare const ApplicablePolicySchema: z.ZodObject<{
3510
3953
  }, "strip", z.ZodTypeAny, {
3511
3954
  reason: string;
3512
3955
  severity: "info" | "warning" | "error" | "critical";
3956
+ policyName: string;
3513
3957
  onViolation: "log" | "alert" | "block";
3514
3958
  policyId: string;
3515
- policyName: string;
3516
3959
  ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
3517
3960
  match: "region" | "subject";
3518
3961
  description?: string | undefined;
3519
3962
  }, {
3520
3963
  reason: string;
3521
3964
  severity: "info" | "warning" | "error" | "critical";
3965
+ policyName: string;
3522
3966
  onViolation: "log" | "alert" | "block";
3523
3967
  policyId: string;
3524
- policyName: string;
3525
3968
  ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
3526
3969
  match: "region" | "subject";
3527
3970
  description?: string | undefined;
@@ -3541,18 +3984,18 @@ declare const ApplicablePoliciesResponseSchema: z.ZodObject<{
3541
3984
  }, "strip", z.ZodTypeAny, {
3542
3985
  reason: string;
3543
3986
  severity: "info" | "warning" | "error" | "critical";
3987
+ policyName: string;
3544
3988
  onViolation: "log" | "alert" | "block";
3545
3989
  policyId: string;
3546
- policyName: string;
3547
3990
  ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
3548
3991
  match: "region" | "subject";
3549
3992
  description?: string | undefined;
3550
3993
  }, {
3551
3994
  reason: string;
3552
3995
  severity: "info" | "warning" | "error" | "critical";
3996
+ policyName: string;
3553
3997
  onViolation: "log" | "alert" | "block";
3554
3998
  policyId: string;
3555
- policyName: string;
3556
3999
  ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
3557
4000
  match: "region" | "subject";
3558
4001
  description?: string | undefined;
@@ -3562,9 +4005,9 @@ declare const ApplicablePoliciesResponseSchema: z.ZodObject<{
3562
4005
  applicable: {
3563
4006
  reason: string;
3564
4007
  severity: "info" | "warning" | "error" | "critical";
4008
+ policyName: string;
3565
4009
  onViolation: "log" | "alert" | "block";
3566
4010
  policyId: string;
3567
- policyName: string;
3568
4011
  ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
3569
4012
  match: "region" | "subject";
3570
4013
  description?: string | undefined;
@@ -3574,9 +4017,9 @@ declare const ApplicablePoliciesResponseSchema: z.ZodObject<{
3574
4017
  applicable: {
3575
4018
  reason: string;
3576
4019
  severity: "info" | "warning" | "error" | "critical";
4020
+ policyName: string;
3577
4021
  onViolation: "log" | "alert" | "block";
3578
4022
  policyId: string;
3579
- policyName: string;
3580
4023
  ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
3581
4024
  match: "region" | "subject";
3582
4025
  description?: string | undefined;
@@ -3617,9 +4060,9 @@ declare const PolicyViolationSchema: z.ZodObject<{
3617
4060
  message: string;
3618
4061
  id: string;
3619
4062
  severity: "info" | "warning" | "error" | "critical";
4063
+ policyName: string;
3620
4064
  onViolation: "log" | "alert" | "block";
3621
4065
  policyId: string;
3622
- policyName: string;
3623
4066
  ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
3624
4067
  subject: {
3625
4068
  path?: string[] | undefined;
@@ -3631,9 +4074,9 @@ declare const PolicyViolationSchema: z.ZodObject<{
3631
4074
  message: string;
3632
4075
  id: string;
3633
4076
  severity: "info" | "warning" | "error" | "critical";
4077
+ policyName: string;
3634
4078
  onViolation: "log" | "alert" | "block";
3635
4079
  policyId: string;
3636
- policyName: string;
3637
4080
  ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
3638
4081
  subject: {
3639
4082
  path?: string[] | undefined;
@@ -4635,8 +5078,8 @@ declare const ObservedSymbolMismatchDivergenceSchema: z.ZodObject<{
4635
5078
  mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
4636
5079
  symbol?: string | undefined;
4637
5080
  incidentCount?: number | undefined;
4638
- location?: string | undefined;
4639
5081
  incidentId?: string | undefined;
5082
+ location?: string | undefined;
4640
5083
  }, {
4641
5084
  reason: string;
4642
5085
  type: "observed-symbol-mismatch";
@@ -4649,8 +5092,8 @@ declare const ObservedSymbolMismatchDivergenceSchema: z.ZodObject<{
4649
5092
  mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
4650
5093
  symbol?: string | undefined;
4651
5094
  incidentCount?: number | undefined;
4652
- location?: string | undefined;
4653
5095
  incidentId?: string | undefined;
5096
+ location?: string | undefined;
4654
5097
  }>;
4655
5098
  type ObservedSymbolMismatchDivergence = z.infer<typeof ObservedSymbolMismatchDivergenceSchema>;
4656
5099
  declare const ObservedFailureKindSchema: z.ZodEnum<["error-rate", "connection-refused", "deadline-exceeded", "timeout", "unavailable", "server-error"]>;
@@ -4882,8 +5325,8 @@ declare const ObservedFailingDivergenceSchema: z.ZodObject<{
4882
5325
  } | undefined;
4883
5326
  grain?: "file" | "service" | undefined;
4884
5327
  } | undefined;
4885
- location?: string | undefined;
4886
5328
  incidentId?: string | undefined;
5329
+ location?: string | undefined;
4887
5330
  errorRate?: number | undefined;
4888
5331
  }, {
4889
5332
  reason: string;
@@ -4935,8 +5378,8 @@ declare const ObservedFailingDivergenceSchema: z.ZodObject<{
4935
5378
  } | undefined;
4936
5379
  grain?: "file" | "service" | undefined;
4937
5380
  } | undefined;
4938
- location?: string | undefined;
4939
5381
  incidentId?: string | undefined;
5382
+ location?: string | undefined;
4940
5383
  errorRate?: number | undefined;
4941
5384
  }>;
4942
5385
  type ObservedFailingDivergence = z.infer<typeof ObservedFailingDivergenceSchema>;
@@ -5824,8 +6267,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5824
6267
  mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
5825
6268
  symbol?: string | undefined;
5826
6269
  incidentCount?: number | undefined;
5827
- location?: string | undefined;
5828
6270
  incidentId?: string | undefined;
6271
+ location?: string | undefined;
5829
6272
  }, {
5830
6273
  reason: string;
5831
6274
  type: "observed-symbol-mismatch";
@@ -5838,8 +6281,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5838
6281
  mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
5839
6282
  symbol?: string | undefined;
5840
6283
  incidentCount?: number | undefined;
5841
- location?: string | undefined;
5842
6284
  incidentId?: string | undefined;
6285
+ location?: string | undefined;
5843
6286
  }>, z.ZodObject<{
5844
6287
  failureKind: z.ZodEnum<["error-rate", "connection-refused", "deadline-exceeded", "timeout", "unavailable", "server-error"]>;
5845
6288
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
@@ -6067,8 +6510,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
6067
6510
  } | undefined;
6068
6511
  grain?: "file" | "service" | undefined;
6069
6512
  } | undefined;
6070
- location?: string | undefined;
6071
6513
  incidentId?: string | undefined;
6514
+ location?: string | undefined;
6072
6515
  errorRate?: number | undefined;
6073
6516
  }, {
6074
6517
  reason: string;
@@ -6120,8 +6563,8 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
6120
6563
  } | undefined;
6121
6564
  grain?: "file" | "service" | undefined;
6122
6565
  } | undefined;
6123
- location?: string | undefined;
6124
6566
  incidentId?: string | undefined;
6567
+ location?: string | undefined;
6125
6568
  errorRate?: number | undefined;
6126
6569
  }>]>;
6127
6570
  type Divergence = z.infer<typeof DivergenceSchema>;
@@ -7010,8 +7453,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
7010
7453
  mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
7011
7454
  symbol?: string | undefined;
7012
7455
  incidentCount?: number | undefined;
7013
- location?: string | undefined;
7014
7456
  incidentId?: string | undefined;
7457
+ location?: string | undefined;
7015
7458
  }, {
7016
7459
  reason: string;
7017
7460
  type: "observed-symbol-mismatch";
@@ -7024,8 +7467,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
7024
7467
  mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
7025
7468
  symbol?: string | undefined;
7026
7469
  incidentCount?: number | undefined;
7027
- location?: string | undefined;
7028
7470
  incidentId?: string | undefined;
7471
+ location?: string | undefined;
7029
7472
  }>, z.ZodObject<{
7030
7473
  failureKind: z.ZodEnum<["error-rate", "connection-refused", "deadline-exceeded", "timeout", "unavailable", "server-error"]>;
7031
7474
  provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
@@ -7253,8 +7696,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
7253
7696
  } | undefined;
7254
7697
  grain?: "file" | "service" | undefined;
7255
7698
  } | undefined;
7256
- location?: string | undefined;
7257
7699
  incidentId?: string | undefined;
7700
+ location?: string | undefined;
7258
7701
  errorRate?: number | undefined;
7259
7702
  }, {
7260
7703
  reason: string;
@@ -7306,8 +7749,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
7306
7749
  } | undefined;
7307
7750
  grain?: "file" | "service" | undefined;
7308
7751
  } | undefined;
7309
- location?: string | undefined;
7310
7752
  incidentId?: string | undefined;
7753
+ location?: string | undefined;
7311
7754
  errorRate?: number | undefined;
7312
7755
  }>]>, "many">;
7313
7756
  totalAffected: z.ZodNumber;
@@ -7484,8 +7927,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
7484
7927
  mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
7485
7928
  symbol?: string | undefined;
7486
7929
  incidentCount?: number | undefined;
7487
- location?: string | undefined;
7488
7930
  incidentId?: string | undefined;
7931
+ location?: string | undefined;
7489
7932
  } | {
7490
7933
  reason: string;
7491
7934
  type: "observed-failing";
@@ -7536,8 +7979,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
7536
7979
  } | undefined;
7537
7980
  grain?: "file" | "service" | undefined;
7538
7981
  } | undefined;
7539
- location?: string | undefined;
7540
7982
  incidentId?: string | undefined;
7983
+ location?: string | undefined;
7541
7984
  errorRate?: number | undefined;
7542
7985
  })[];
7543
7986
  computedAt: string;
@@ -7713,8 +8156,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
7713
8156
  mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
7714
8157
  symbol?: string | undefined;
7715
8158
  incidentCount?: number | undefined;
7716
- location?: string | undefined;
7717
8159
  incidentId?: string | undefined;
8160
+ location?: string | undefined;
7718
8161
  } | {
7719
8162
  reason: string;
7720
8163
  type: "observed-failing";
@@ -7765,8 +8208,8 @@ declare const DivergenceResultSchema: z.ZodObject<{
7765
8208
  } | undefined;
7766
8209
  grain?: "file" | "service" | undefined;
7767
8210
  } | undefined;
7768
- location?: string | undefined;
7769
8211
  incidentId?: string | undefined;
8212
+ location?: string | undefined;
7770
8213
  errorRate?: number | undefined;
7771
8214
  })[];
7772
8215
  computedAt: string;
@@ -7775,7 +8218,7 @@ type DivergenceResult = z.infer<typeof DivergenceResultSchema>;
7775
8218
  declare const DivergenceTypeSchema: z.ZodEnum<["missing-observed", "missing-extracted", "version-mismatch", "host-mismatch", "compat-violation", "observed-symbol-mismatch", "observed-failing"]>;
7776
8219
  type DivergenceType = z.infer<typeof DivergenceTypeSchema>;
7777
8220
 
7778
- declare const MCP_TOOL_NAMES: readonly ["get_root_cause", "get_blast_radius", "get_dependencies", "get_observed_dependencies", "get_incident_history", "semantic_search", "get_graph_diff", "get_recent_stale_edges", "check_policies", "get_divergences", "expand", "relate", "ask", "neat_list_uninstrumented", "neat_lookup_instrumentation", "neat_describe_project_instrumentation", "neat_apply_extension", "neat_dry_run_extension", "neat_rollback_extension"];
8221
+ declare const MCP_TOOL_NAMES: readonly ["get_root_cause", "get_blast_radius", "get_dependencies", "get_observed_dependencies", "get_incident_history", "get_incident_card", "semantic_search", "get_graph_diff", "get_recent_stale_edges", "check_policies", "get_divergences", "expand", "relate", "ask", "neat_list_uninstrumented", "neat_lookup_instrumentation", "neat_describe_project_instrumentation", "neat_apply_extension", "neat_dry_run_extension", "neat_rollback_extension"];
7779
8222
  type MCPToolName = (typeof MCP_TOOL_NAMES)[number];
7780
8223
 
7781
8224
  declare const IncidentsResponseSchema: z.ZodObject<{
@@ -8030,9 +8473,9 @@ declare const PoliciesViolationsResponseSchema: z.ZodObject<{
8030
8473
  message: string;
8031
8474
  id: string;
8032
8475
  severity: "info" | "warning" | "error" | "critical";
8476
+ policyName: string;
8033
8477
  onViolation: "log" | "alert" | "block";
8034
8478
  policyId: string;
8035
- policyName: string;
8036
8479
  ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
8037
8480
  subject: {
8038
8481
  path?: string[] | undefined;
@@ -8044,9 +8487,9 @@ declare const PoliciesViolationsResponseSchema: z.ZodObject<{
8044
8487
  message: string;
8045
8488
  id: string;
8046
8489
  severity: "info" | "warning" | "error" | "critical";
8490
+ policyName: string;
8047
8491
  onViolation: "log" | "alert" | "block";
8048
8492
  policyId: string;
8049
- policyName: string;
8050
8493
  ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
8051
8494
  subject: {
8052
8495
  path?: string[] | undefined;
@@ -8060,9 +8503,9 @@ declare const PoliciesViolationsResponseSchema: z.ZodObject<{
8060
8503
  message: string;
8061
8504
  id: string;
8062
8505
  severity: "info" | "warning" | "error" | "critical";
8506
+ policyName: string;
8063
8507
  onViolation: "log" | "alert" | "block";
8064
8508
  policyId: string;
8065
- policyName: string;
8066
8509
  ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
8067
8510
  subject: {
8068
8511
  path?: string[] | undefined;
@@ -8076,9 +8519,9 @@ declare const PoliciesViolationsResponseSchema: z.ZodObject<{
8076
8519
  message: string;
8077
8520
  id: string;
8078
8521
  severity: "info" | "warning" | "error" | "critical";
8522
+ policyName: string;
8079
8523
  onViolation: "log" | "alert" | "block";
8080
8524
  policyId: string;
8081
- policyName: string;
8082
8525
  ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
8083
8526
  subject: {
8084
8527
  path?: string[] | undefined;
@@ -17787,4 +18230,4 @@ declare const DEFAULT_EXTRACTED_PRECISION_FLOOR = 0.7;
17787
18230
  declare function extractedPrecisionFloor(): number;
17788
18231
  declare function passesExtractedFloor(confidence: number): boolean;
17789
18232
 
17790
- export { type ApplicablePoliciesResponse, ApplicablePoliciesResponseSchema, type ApplicablePolicy, ApplicablePolicySchema, type AskFact, AskFactSchema, type AskIntent, AskIntentSchema, type AskMatch, AskMatchSchema, type AskResult, AskResultSchema, type AskSection, AskSectionSchema, type BlastRadiusAffectedNode, BlastRadiusAffectedNodeSchema, type BlastRadiusResult, BlastRadiusResultSchema, type BlastRadiusRule, BlastRadiusRuleSchema, type CheckPoliciesScope, CheckPoliciesScopeSchema, type ColumnAttr, ColumnAttrSchema, type CompatRuleRef, CompatRuleRefSchema, type CompatViolationDivergence, CompatViolationDivergenceSchema, type CompatibilityRule, CompatibilityRuleSchema, type CompatibilityVerdict, CompatibilityVerdictSchema, type CompatibleDriver, CompatibleDriverSchema, type ConfigNode, ConfigNodeSchema, type ConnectorPollState, ConnectorPollStateSchema, type ConnectorPollState as ConnectorState, ConnectorPollStateSchema as ConnectorStateSchema, type ConnectorStatus, type ConnectorStatusEntry, ConnectorStatusEntrySchema, ConnectorStatusSchema, type ConnectorStatusEntry as ConnectorSummary, ConnectorStatusEntrySchema as ConnectorSummarySchema, type ConnectorsStatusResponse as ConnectorsResponse, ConnectorsStatusResponseSchema as ConnectorsResponseSchema, type ConnectorsStatusResponse, ConnectorsStatusResponseSchema, DEFAULT_EXTRACTED_PRECISION_FLOOR, type DaemonHealthResponse, DaemonHealthResponseSchema, type DatabaseNode, DatabaseNodeSchema, type DiscoveredVia, DiscoveredViaSchema, type Divergence, type DivergenceResult, DivergenceResultSchema, DivergenceSchema, type DivergenceType, DivergenceTypeSchema, EMPTY_REGISTRY, EXTRACTED_CONFIDENCE, type EdgeAnomaly, EdgeAnomalySchema, type EdgeEvidence, EdgeEvidenceSchema, type EdgeSignal, EdgeSignalSchema, EdgeType, EdgeTypeSchema, type EdgeTypeValue, type ErrorEvent, ErrorEventSchema, type ExpandNeighbour, ExpandNeighbourSchema, type ExpandResult, ExpandResultSchema, type ExtractedConfidenceKind, type ExtractionCoverage, ExtractionCoverageSchema, type FieldGuardRule, FieldGuardRuleSchema, 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 LatencyMs, LatencyMsSchema, type LogEntry, LogEntrySchema, type LogSource, LogSourceSchema, type LogsResponse, LogsResponseSchema, type MCPToolName, MCP_TOOL_NAMES, type MissingExtractedDivergence, MissingExtractedDivergenceSchema, type MissingObservedDivergence, MissingObservedDivergenceSchema, type NodeClassification, NodeClassificationSchema, type NodeContext, NodeContextSchema, NodeType, NodeTypeSchema, type NodeTypeValue, type ObservedDependenciesResult, ObservedDependenciesResultSchema, type ObservedFailingDivergence, ObservedFailingDivergenceSchema, type ObservedFailureKind, ObservedFailureKindSchema, type ObservedSymbolMismatchDivergence, ObservedSymbolMismatchDivergenceSchema, type OwnershipRule, OwnershipRuleSchema, PROV_RANK, type PoliciesCheckBody, PoliciesCheckBodySchema, type PoliciesViolationsResponse, PoliciesViolationsResponseSchema, type Policy, type PolicyAction, PolicyActionSchema, type PolicyFile, PolicyFileSchema, type PolicyRule, PolicyRuleSchema, PolicySchema, type PolicySeverity, PolicySeveritySchema, type PolicyViolation, PolicyViolationSchema, type ProjectListEntry, ProjectListEntrySchema, type ProjectServedBy, ProjectServedBySchema, Provenance, type ProvenanceRule, ProvenanceRuleSchema, ProvenanceSchema, type ProvenanceValue, type RegistryEntry, RegistryEntrySchema, type RegistryFile, RegistryFileSchema, type RegistryStatus, RegistryStatusSchema, type RelatePath, RelatePathSchema, type RelateResult, RelateResultSchema, type RootCauseCandidate, RootCauseCandidateSchema, type RootCauseResult, RootCauseResultSchema, type RouteNode, RouteNodeSchema, type SearchMatch, SearchMatchSchema, type SearchResponse, SearchResponseSchema, type SerializedGraph, SerializedGraphSchema, type ServerActionNode, ServerActionNodeSchema, type ServiceNode, ServiceNodeSchema, type SingleProjectResponse, SingleProjectResponseSchema, type SpanAttributes, SpanAttributesSchema, type StaleEvent, StaleEventSchema, type StaleEventsResponse, StaleEventsResponseSchema, type StructuralRule, StructuralRuleSchema, type SymbolKind, SymbolKindSchema, type SymbolMismatchKind, SymbolMismatchKindSchema, type SymbolNode, SymbolNodeSchema, type SymbolSpan, SymbolSpanSchema, type TransitiveDependenciesResult, TransitiveDependenciesResultSchema, type TransitiveDependency, TransitiveDependencySchema, type VersionMismatchDivergence, VersionMismatchDivergenceSchema, type WebSocketChannelNode, WebSocketChannelNodeSchema, confidenceForExtracted, confidenceForObservedSignal, configId, databaseId, extractedEdgeId, extractedPrecisionFloor, fileId, frontierId, graphqlOperationId, grpcMethodId, inferredEdgeId, infraId, localDatabaseId, observedEdgeId, parseConfigId, parseDatabaseId, parseEdgeId, parseFileId, parseFrontierId, parseGraphqlOperationId, parseGrpcMethodId, parseInfraId, parseRouteId, parseServerActionId, parseServiceId, parseSymbolId, parseWebsocketChannelId, passesExtractedFloor, routeId, serverActionId, serviceId, symbolId, websocketChannelId };
18233
+ export { type ApplicablePoliciesResponse, ApplicablePoliciesResponseSchema, type ApplicablePolicy, ApplicablePolicySchema, type AskFact, AskFactSchema, type AskIntent, AskIntentSchema, type AskMatch, AskMatchSchema, type AskResult, AskResultSchema, type AskSection, AskSectionSchema, type BlastRadiusAffectedNode, BlastRadiusAffectedNodeSchema, type BlastRadiusResult, BlastRadiusResultSchema, type BlastRadiusRule, BlastRadiusRuleSchema, type CheckPoliciesScope, CheckPoliciesScopeSchema, type ColumnAttr, ColumnAttrSchema, type CompatRuleRef, CompatRuleRefSchema, type CompatViolationDivergence, CompatViolationDivergenceSchema, type CompatibilityRule, CompatibilityRuleSchema, type CompatibilityVerdict, CompatibilityVerdictSchema, type CompatibleDriver, CompatibleDriverSchema, type ConfigNode, ConfigNodeSchema, type ConnectorPollState, ConnectorPollStateSchema, type ConnectorPollState as ConnectorState, ConnectorPollStateSchema as ConnectorStateSchema, type ConnectorStatus, type ConnectorStatusEntry, ConnectorStatusEntrySchema, ConnectorStatusSchema, type ConnectorStatusEntry as ConnectorSummary, ConnectorStatusEntrySchema as ConnectorSummarySchema, type ConnectorsStatusResponse as ConnectorsResponse, ConnectorsStatusResponseSchema as ConnectorsResponseSchema, type ConnectorsStatusResponse, ConnectorsStatusResponseSchema, DEFAULT_EXTRACTED_PRECISION_FLOOR, type DaemonHealthResponse, DaemonHealthResponseSchema, type DatabaseNode, DatabaseNodeSchema, type DiscoveredVia, DiscoveredViaSchema, type Divergence, type DivergenceResult, DivergenceResultSchema, DivergenceSchema, type DivergenceType, DivergenceTypeSchema, EMPTY_REGISTRY, EXTRACTED_CONFIDENCE, type EdgeAnomaly, EdgeAnomalySchema, type EdgeEvidence, EdgeEvidenceSchema, type EdgeSignal, EdgeSignalSchema, EdgeType, EdgeTypeSchema, type EdgeTypeValue, type ErrorEvent, ErrorEventSchema, type ExpandNeighbour, ExpandNeighbourSchema, type ExpandResult, ExpandResultSchema, type ExtractedConfidenceKind, type ExtractionCoverage, ExtractionCoverageSchema, type FieldGuardRule, FieldGuardRuleSchema, 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 IncidentBlastRadius, IncidentBlastRadiusSchema, type IncidentCard, IncidentCardSchema, type IncidentChainHop, IncidentChainHopSchema, type IncidentDivergence, IncidentDivergenceSchema, type IncidentEventPayload, IncidentEventPayloadSchema, type IncidentKind, IncidentKindSchema, type IncidentLocus, IncidentLocusSchema, type IncidentPolicy, IncidentPolicySchema, type IncidentRootCause, IncidentRootCauseSchema, type IncidentsResponse, IncidentsResponseSchema, type InfraNode, InfraNodeSchema, type LatencyMs, LatencyMsSchema, type LogEntry, LogEntrySchema, type LogSource, LogSourceSchema, type LogsResponse, LogsResponseSchema, type MCPToolName, MCP_TOOL_NAMES, type MissingExtractedDivergence, MissingExtractedDivergenceSchema, type MissingObservedDivergence, MissingObservedDivergenceSchema, type NodeClassification, NodeClassificationSchema, type NodeContext, NodeContextSchema, NodeType, NodeTypeSchema, type NodeTypeValue, type ObservedDependenciesResult, ObservedDependenciesResultSchema, type ObservedFailingDivergence, ObservedFailingDivergenceSchema, type ObservedFailureKind, ObservedFailureKindSchema, type ObservedSymbolMismatchDivergence, ObservedSymbolMismatchDivergenceSchema, type OwnershipRule, OwnershipRuleSchema, PROV_RANK, type PoliciesCheckBody, PoliciesCheckBodySchema, type PoliciesViolationsResponse, PoliciesViolationsResponseSchema, type Policy, type PolicyAction, PolicyActionSchema, type PolicyFile, PolicyFileSchema, type PolicyRule, PolicyRuleSchema, PolicySchema, type PolicySeverity, PolicySeveritySchema, type PolicyViolation, PolicyViolationSchema, type ProjectListEntry, ProjectListEntrySchema, type ProjectServedBy, ProjectServedBySchema, Provenance, type ProvenanceRule, ProvenanceRuleSchema, ProvenanceSchema, type ProvenanceValue, type RegistryEntry, RegistryEntrySchema, type RegistryFile, RegistryFileSchema, type RegistryStatus, RegistryStatusSchema, type RelatePath, RelatePathSchema, type RelateResult, RelateResultSchema, type RootCauseCandidate, RootCauseCandidateSchema, type RootCauseResult, RootCauseResultSchema, type RouteNode, RouteNodeSchema, type SearchMatch, SearchMatchSchema, type SearchResponse, SearchResponseSchema, type SerializedGraph, SerializedGraphSchema, type ServerActionNode, ServerActionNodeSchema, type ServiceNode, ServiceNodeSchema, type SingleProjectResponse, SingleProjectResponseSchema, type SpanAttributes, SpanAttributesSchema, type StaleEvent, StaleEventSchema, type StaleEventsResponse, StaleEventsResponseSchema, type StructuralRule, StructuralRuleSchema, type SymbolKind, SymbolKindSchema, type SymbolMismatchKind, SymbolMismatchKindSchema, type SymbolNode, SymbolNodeSchema, type SymbolSpan, SymbolSpanSchema, type TransitiveDependenciesResult, TransitiveDependenciesResultSchema, type TransitiveDependency, TransitiveDependencySchema, type VersionMismatchDivergence, VersionMismatchDivergenceSchema, type WebSocketChannelNode, WebSocketChannelNodeSchema, confidenceForExtracted, confidenceForObservedSignal, configId, databaseId, extractedEdgeId, extractedPrecisionFloor, fileId, frontierId, graphqlOperationId, grpcMethodId, incidentKindOf, inferredEdgeId, infraId, localDatabaseId, observedEdgeId, parseConfigId, parseDatabaseId, parseEdgeId, parseFileId, parseFrontierId, parseGraphqlOperationId, parseGrpcMethodId, parseInfraId, parseRouteId, parseServerActionId, parseServiceId, parseSymbolId, parseWebsocketChannelId, passesExtractedFloor, routeId, serverActionId, serviceId, symbolId, websocketChannelId };