@neat.is/types 0.9.12 → 0.9.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +29 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +256 -24
- package/dist/index.d.ts +256 -24
- package/dist/index.js +27 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -66,6 +66,8 @@ declare const ServiceNodeSchema: z.ZodObject<{
|
|
|
66
66
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
67
67
|
declaredImage: z.ZodOptional<z.ZodString>;
|
|
68
68
|
declaredReplicas: z.ZodOptional<z.ZodNumber>;
|
|
69
|
+
observedImage: z.ZodOptional<z.ZodString>;
|
|
70
|
+
observedReadyReplicas: z.ZodOptional<z.ZodNumber>;
|
|
69
71
|
repoPath: z.ZodOptional<z.ZodString>;
|
|
70
72
|
owner: z.ZodOptional<z.ZodString>;
|
|
71
73
|
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -178,6 +180,8 @@ declare const ServiceNodeSchema: z.ZodObject<{
|
|
|
178
180
|
dbConnectionTarget?: string | undefined;
|
|
179
181
|
declaredImage?: string | undefined;
|
|
180
182
|
declaredReplicas?: number | undefined;
|
|
183
|
+
observedImage?: string | undefined;
|
|
184
|
+
observedReadyReplicas?: number | undefined;
|
|
181
185
|
repoPath?: string | undefined;
|
|
182
186
|
owner?: string | undefined;
|
|
183
187
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -226,6 +230,8 @@ declare const ServiceNodeSchema: z.ZodObject<{
|
|
|
226
230
|
dbConnectionTarget?: string | undefined;
|
|
227
231
|
declaredImage?: string | undefined;
|
|
228
232
|
declaredReplicas?: number | undefined;
|
|
233
|
+
observedImage?: string | undefined;
|
|
234
|
+
observedReadyReplicas?: number | undefined;
|
|
229
235
|
repoPath?: string | undefined;
|
|
230
236
|
owner?: string | undefined;
|
|
231
237
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -692,6 +698,8 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
692
698
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
693
699
|
declaredImage: z.ZodOptional<z.ZodString>;
|
|
694
700
|
declaredReplicas: z.ZodOptional<z.ZodNumber>;
|
|
701
|
+
observedImage: z.ZodOptional<z.ZodString>;
|
|
702
|
+
observedReadyReplicas: z.ZodOptional<z.ZodNumber>;
|
|
695
703
|
repoPath: z.ZodOptional<z.ZodString>;
|
|
696
704
|
owner: z.ZodOptional<z.ZodString>;
|
|
697
705
|
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -804,6 +812,8 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
804
812
|
dbConnectionTarget?: string | undefined;
|
|
805
813
|
declaredImage?: string | undefined;
|
|
806
814
|
declaredReplicas?: number | undefined;
|
|
815
|
+
observedImage?: string | undefined;
|
|
816
|
+
observedReadyReplicas?: number | undefined;
|
|
807
817
|
repoPath?: string | undefined;
|
|
808
818
|
owner?: string | undefined;
|
|
809
819
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -852,6 +862,8 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
852
862
|
dbConnectionTarget?: string | undefined;
|
|
853
863
|
declaredImage?: string | undefined;
|
|
854
864
|
declaredReplicas?: number | undefined;
|
|
865
|
+
observedImage?: string | undefined;
|
|
866
|
+
observedReadyReplicas?: number | undefined;
|
|
855
867
|
repoPath?: string | undefined;
|
|
856
868
|
owner?: string | undefined;
|
|
857
869
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -1672,11 +1684,11 @@ declare const NodeContextSchema: z.ZodObject<{
|
|
|
1672
1684
|
hasOutboundDeps?: boolean | undefined;
|
|
1673
1685
|
}>;
|
|
1674
1686
|
type NodeContext = z.infer<typeof NodeContextSchema>;
|
|
1675
|
-
declare const NodeClassificationSchema: z.ZodEnum<["primary-failure", "symptom-only", "unrelated"]>;
|
|
1687
|
+
declare const NodeClassificationSchema: z.ZodEnum<["primary-failure", "symptom-only", "unreachable", "unrelated"]>;
|
|
1676
1688
|
type NodeClassification = z.infer<typeof NodeClassificationSchema>;
|
|
1677
1689
|
declare const RootCauseCandidateSchema: z.ZodObject<{
|
|
1678
1690
|
node: z.ZodString;
|
|
1679
|
-
classification: z.ZodEnum<["primary-failure", "symptom-only", "unrelated"]>;
|
|
1691
|
+
classification: z.ZodEnum<["primary-failure", "symptom-only", "unreachable", "unrelated"]>;
|
|
1680
1692
|
reason: z.ZodString;
|
|
1681
1693
|
context: z.ZodObject<{
|
|
1682
1694
|
errorsEmittedHere: z.ZodNumber;
|
|
@@ -1718,7 +1730,7 @@ declare const RootCauseCandidateSchema: z.ZodObject<{
|
|
|
1718
1730
|
reason: string;
|
|
1719
1731
|
confidence: number;
|
|
1720
1732
|
node: string;
|
|
1721
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
1733
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
1722
1734
|
context: {
|
|
1723
1735
|
callCount: number;
|
|
1724
1736
|
errorsEmittedHere: number;
|
|
@@ -1736,7 +1748,7 @@ declare const RootCauseCandidateSchema: z.ZodObject<{
|
|
|
1736
1748
|
reason: string;
|
|
1737
1749
|
confidence: number;
|
|
1738
1750
|
node: string;
|
|
1739
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
1751
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
1740
1752
|
context: {
|
|
1741
1753
|
callCount: number;
|
|
1742
1754
|
errorsEmittedHere: number;
|
|
@@ -1761,7 +1773,7 @@ declare const RootCauseResultSchema: z.ZodObject<{
|
|
|
1761
1773
|
fixRecommendation: z.ZodOptional<z.ZodString>;
|
|
1762
1774
|
candidates: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1763
1775
|
node: z.ZodString;
|
|
1764
|
-
classification: z.ZodEnum<["primary-failure", "symptom-only", "unrelated"]>;
|
|
1776
|
+
classification: z.ZodEnum<["primary-failure", "symptom-only", "unreachable", "unrelated"]>;
|
|
1765
1777
|
reason: z.ZodString;
|
|
1766
1778
|
context: z.ZodObject<{
|
|
1767
1779
|
errorsEmittedHere: z.ZodNumber;
|
|
@@ -1803,7 +1815,7 @@ declare const RootCauseResultSchema: z.ZodObject<{
|
|
|
1803
1815
|
reason: string;
|
|
1804
1816
|
confidence: number;
|
|
1805
1817
|
node: string;
|
|
1806
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
1818
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
1807
1819
|
context: {
|
|
1808
1820
|
callCount: number;
|
|
1809
1821
|
errorsEmittedHere: number;
|
|
@@ -1821,7 +1833,7 @@ declare const RootCauseResultSchema: z.ZodObject<{
|
|
|
1821
1833
|
reason: string;
|
|
1822
1834
|
confidence: number;
|
|
1823
1835
|
node: string;
|
|
1824
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
1836
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
1825
1837
|
context: {
|
|
1826
1838
|
callCount: number;
|
|
1827
1839
|
errorsEmittedHere: number;
|
|
@@ -1847,7 +1859,7 @@ declare const RootCauseResultSchema: z.ZodObject<{
|
|
|
1847
1859
|
reason: string;
|
|
1848
1860
|
confidence: number;
|
|
1849
1861
|
node: string;
|
|
1850
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
1862
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
1851
1863
|
context: {
|
|
1852
1864
|
callCount: number;
|
|
1853
1865
|
errorsEmittedHere: number;
|
|
@@ -1873,7 +1885,7 @@ declare const RootCauseResultSchema: z.ZodObject<{
|
|
|
1873
1885
|
reason: string;
|
|
1874
1886
|
confidence: number;
|
|
1875
1887
|
node: string;
|
|
1876
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
1888
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
1877
1889
|
context: {
|
|
1878
1890
|
callCount: number;
|
|
1879
1891
|
errorsEmittedHere: number;
|
|
@@ -1970,7 +1982,7 @@ declare const ExpandNeighbourSchema: z.ZodObject<{
|
|
|
1970
1982
|
node: z.ZodString;
|
|
1971
1983
|
edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS", "REFERENCES"]>;
|
|
1972
1984
|
provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
|
|
1973
|
-
classification: z.ZodEnum<["primary-failure", "symptom-only", "unrelated"]>;
|
|
1985
|
+
classification: z.ZodEnum<["primary-failure", "symptom-only", "unreachable", "unrelated"]>;
|
|
1974
1986
|
context: z.ZodObject<{
|
|
1975
1987
|
errorsEmittedHere: z.ZodNumber;
|
|
1976
1988
|
errorsFromCallers: z.ZodNumber;
|
|
@@ -2009,7 +2021,7 @@ declare const ExpandNeighbourSchema: z.ZodObject<{
|
|
|
2009
2021
|
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
2010
2022
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS" | "REFERENCES";
|
|
2011
2023
|
node: string;
|
|
2012
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
2024
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
2013
2025
|
context: {
|
|
2014
2026
|
callCount: number;
|
|
2015
2027
|
errorsEmittedHere: number;
|
|
@@ -2026,7 +2038,7 @@ declare const ExpandNeighbourSchema: z.ZodObject<{
|
|
|
2026
2038
|
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
2027
2039
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS" | "REFERENCES";
|
|
2028
2040
|
node: string;
|
|
2029
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
2041
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
2030
2042
|
context: {
|
|
2031
2043
|
callCount: number;
|
|
2032
2044
|
errorsEmittedHere: number;
|
|
@@ -2046,7 +2058,7 @@ declare const ExpandResultSchema: z.ZodObject<{
|
|
|
2046
2058
|
direction: z.ZodEnum<["up", "down"]>;
|
|
2047
2059
|
node: z.ZodObject<{
|
|
2048
2060
|
id: z.ZodString;
|
|
2049
|
-
classification: z.ZodEnum<["primary-failure", "symptom-only", "unrelated"]>;
|
|
2061
|
+
classification: z.ZodEnum<["primary-failure", "symptom-only", "unreachable", "unrelated"]>;
|
|
2050
2062
|
context: z.ZodObject<{
|
|
2051
2063
|
errorsEmittedHere: z.ZodNumber;
|
|
2052
2064
|
errorsFromCallers: z.ZodNumber;
|
|
@@ -2083,7 +2095,7 @@ declare const ExpandResultSchema: z.ZodObject<{
|
|
|
2083
2095
|
}>;
|
|
2084
2096
|
}, "strip", z.ZodTypeAny, {
|
|
2085
2097
|
id: string;
|
|
2086
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
2098
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
2087
2099
|
context: {
|
|
2088
2100
|
callCount: number;
|
|
2089
2101
|
errorsEmittedHere: number;
|
|
@@ -2098,7 +2110,7 @@ declare const ExpandResultSchema: z.ZodObject<{
|
|
|
2098
2110
|
};
|
|
2099
2111
|
}, {
|
|
2100
2112
|
id: string;
|
|
2101
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
2113
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
2102
2114
|
context: {
|
|
2103
2115
|
callCount: number;
|
|
2104
2116
|
errorsEmittedHere: number;
|
|
@@ -2116,7 +2128,7 @@ declare const ExpandResultSchema: z.ZodObject<{
|
|
|
2116
2128
|
node: z.ZodString;
|
|
2117
2129
|
edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS", "REFERENCES"]>;
|
|
2118
2130
|
provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
|
|
2119
|
-
classification: z.ZodEnum<["primary-failure", "symptom-only", "unrelated"]>;
|
|
2131
|
+
classification: z.ZodEnum<["primary-failure", "symptom-only", "unreachable", "unrelated"]>;
|
|
2120
2132
|
context: z.ZodObject<{
|
|
2121
2133
|
errorsEmittedHere: z.ZodNumber;
|
|
2122
2134
|
errorsFromCallers: z.ZodNumber;
|
|
@@ -2155,7 +2167,7 @@ declare const ExpandResultSchema: z.ZodObject<{
|
|
|
2155
2167
|
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
2156
2168
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS" | "REFERENCES";
|
|
2157
2169
|
node: string;
|
|
2158
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
2170
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
2159
2171
|
context: {
|
|
2160
2172
|
callCount: number;
|
|
2161
2173
|
errorsEmittedHere: number;
|
|
@@ -2172,7 +2184,7 @@ declare const ExpandResultSchema: z.ZodObject<{
|
|
|
2172
2184
|
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
2173
2185
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS" | "REFERENCES";
|
|
2174
2186
|
node: string;
|
|
2175
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
2187
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
2176
2188
|
context: {
|
|
2177
2189
|
callCount: number;
|
|
2178
2190
|
errorsEmittedHere: number;
|
|
@@ -2189,7 +2201,7 @@ declare const ExpandResultSchema: z.ZodObject<{
|
|
|
2189
2201
|
}, "strip", z.ZodTypeAny, {
|
|
2190
2202
|
node: {
|
|
2191
2203
|
id: string;
|
|
2192
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
2204
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
2193
2205
|
context: {
|
|
2194
2206
|
callCount: number;
|
|
2195
2207
|
errorsEmittedHere: number;
|
|
@@ -2209,7 +2221,7 @@ declare const ExpandResultSchema: z.ZodObject<{
|
|
|
2209
2221
|
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
2210
2222
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS" | "REFERENCES";
|
|
2211
2223
|
node: string;
|
|
2212
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
2224
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
2213
2225
|
context: {
|
|
2214
2226
|
callCount: number;
|
|
2215
2227
|
errorsEmittedHere: number;
|
|
@@ -2226,7 +2238,7 @@ declare const ExpandResultSchema: z.ZodObject<{
|
|
|
2226
2238
|
}, {
|
|
2227
2239
|
node: {
|
|
2228
2240
|
id: string;
|
|
2229
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
2241
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
2230
2242
|
context: {
|
|
2231
2243
|
callCount: number;
|
|
2232
2244
|
errorsEmittedHere: number;
|
|
@@ -2246,7 +2258,7 @@ declare const ExpandResultSchema: z.ZodObject<{
|
|
|
2246
2258
|
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
2247
2259
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS" | "INHERITS" | "IMPLEMENTS" | "REFERENCES";
|
|
2248
2260
|
node: string;
|
|
2249
|
-
classification: "primary-failure" | "symptom-only" | "unrelated";
|
|
2261
|
+
classification: "primary-failure" | "symptom-only" | "unreachable" | "unrelated";
|
|
2250
2262
|
context: {
|
|
2251
2263
|
callCount: number;
|
|
2252
2264
|
errorsEmittedHere: number;
|
|
@@ -5515,6 +5527,46 @@ declare const ObservedFailingDivergenceSchema: z.ZodObject<{
|
|
|
5515
5527
|
errorRate?: number | undefined;
|
|
5516
5528
|
}>;
|
|
5517
5529
|
type ObservedFailingDivergence = z.infer<typeof ObservedFailingDivergenceSchema>;
|
|
5530
|
+
declare const DeployMismatchKindSchema: z.ZodEnum<["image", "replicas"]>;
|
|
5531
|
+
type DeployMismatchKind = z.infer<typeof DeployMismatchKindSchema>;
|
|
5532
|
+
declare const DeployMismatchDivergenceSchema: z.ZodObject<{
|
|
5533
|
+
kind: z.ZodEnum<["image", "replicas"]>;
|
|
5534
|
+
declaredImage: z.ZodOptional<z.ZodString>;
|
|
5535
|
+
observedImage: z.ZodOptional<z.ZodString>;
|
|
5536
|
+
declaredReplicas: z.ZodOptional<z.ZodNumber>;
|
|
5537
|
+
observedReplicas: z.ZodOptional<z.ZodNumber>;
|
|
5538
|
+
source: z.ZodString;
|
|
5539
|
+
target: z.ZodString;
|
|
5540
|
+
confidence: z.ZodNumber;
|
|
5541
|
+
reason: z.ZodString;
|
|
5542
|
+
recommendation: z.ZodString;
|
|
5543
|
+
type: z.ZodLiteral<"deploy-mismatch">;
|
|
5544
|
+
}, "strip", z.ZodTypeAny, {
|
|
5545
|
+
reason: string;
|
|
5546
|
+
type: "deploy-mismatch";
|
|
5547
|
+
source: string;
|
|
5548
|
+
target: string;
|
|
5549
|
+
confidence: number;
|
|
5550
|
+
kind: "image" | "replicas";
|
|
5551
|
+
recommendation: string;
|
|
5552
|
+
declaredImage?: string | undefined;
|
|
5553
|
+
declaredReplicas?: number | undefined;
|
|
5554
|
+
observedImage?: string | undefined;
|
|
5555
|
+
observedReplicas?: number | undefined;
|
|
5556
|
+
}, {
|
|
5557
|
+
reason: string;
|
|
5558
|
+
type: "deploy-mismatch";
|
|
5559
|
+
source: string;
|
|
5560
|
+
target: string;
|
|
5561
|
+
confidence: number;
|
|
5562
|
+
kind: "image" | "replicas";
|
|
5563
|
+
recommendation: string;
|
|
5564
|
+
declaredImage?: string | undefined;
|
|
5565
|
+
declaredReplicas?: number | undefined;
|
|
5566
|
+
observedImage?: string | undefined;
|
|
5567
|
+
observedReplicas?: number | undefined;
|
|
5568
|
+
}>;
|
|
5569
|
+
type DeployMismatchDivergence = z.infer<typeof DeployMismatchDivergenceSchema>;
|
|
5518
5570
|
declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
5519
5571
|
edgeType: z.ZodOptional<z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS", "REFERENCES"]>>;
|
|
5520
5572
|
extracted: z.ZodOptional<z.ZodObject<{
|
|
@@ -6698,6 +6750,42 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
6698
6750
|
incidentId?: string | undefined;
|
|
6699
6751
|
location?: string | undefined;
|
|
6700
6752
|
errorRate?: number | undefined;
|
|
6753
|
+
}>, z.ZodObject<{
|
|
6754
|
+
kind: z.ZodEnum<["image", "replicas"]>;
|
|
6755
|
+
declaredImage: z.ZodOptional<z.ZodString>;
|
|
6756
|
+
observedImage: z.ZodOptional<z.ZodString>;
|
|
6757
|
+
declaredReplicas: z.ZodOptional<z.ZodNumber>;
|
|
6758
|
+
observedReplicas: z.ZodOptional<z.ZodNumber>;
|
|
6759
|
+
source: z.ZodString;
|
|
6760
|
+
target: z.ZodString;
|
|
6761
|
+
confidence: z.ZodNumber;
|
|
6762
|
+
reason: z.ZodString;
|
|
6763
|
+
recommendation: z.ZodString;
|
|
6764
|
+
type: z.ZodLiteral<"deploy-mismatch">;
|
|
6765
|
+
}, "strip", z.ZodTypeAny, {
|
|
6766
|
+
reason: string;
|
|
6767
|
+
type: "deploy-mismatch";
|
|
6768
|
+
source: string;
|
|
6769
|
+
target: string;
|
|
6770
|
+
confidence: number;
|
|
6771
|
+
kind: "image" | "replicas";
|
|
6772
|
+
recommendation: string;
|
|
6773
|
+
declaredImage?: string | undefined;
|
|
6774
|
+
declaredReplicas?: number | undefined;
|
|
6775
|
+
observedImage?: string | undefined;
|
|
6776
|
+
observedReplicas?: number | undefined;
|
|
6777
|
+
}, {
|
|
6778
|
+
reason: string;
|
|
6779
|
+
type: "deploy-mismatch";
|
|
6780
|
+
source: string;
|
|
6781
|
+
target: string;
|
|
6782
|
+
confidence: number;
|
|
6783
|
+
kind: "image" | "replicas";
|
|
6784
|
+
recommendation: string;
|
|
6785
|
+
declaredImage?: string | undefined;
|
|
6786
|
+
declaredReplicas?: number | undefined;
|
|
6787
|
+
observedImage?: string | undefined;
|
|
6788
|
+
observedReplicas?: number | undefined;
|
|
6701
6789
|
}>]>;
|
|
6702
6790
|
type Divergence = z.infer<typeof DivergenceSchema>;
|
|
6703
6791
|
declare const DivergenceResultSchema: z.ZodObject<{
|
|
@@ -7884,6 +7972,42 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
7884
7972
|
incidentId?: string | undefined;
|
|
7885
7973
|
location?: string | undefined;
|
|
7886
7974
|
errorRate?: number | undefined;
|
|
7975
|
+
}>, z.ZodObject<{
|
|
7976
|
+
kind: z.ZodEnum<["image", "replicas"]>;
|
|
7977
|
+
declaredImage: z.ZodOptional<z.ZodString>;
|
|
7978
|
+
observedImage: z.ZodOptional<z.ZodString>;
|
|
7979
|
+
declaredReplicas: z.ZodOptional<z.ZodNumber>;
|
|
7980
|
+
observedReplicas: z.ZodOptional<z.ZodNumber>;
|
|
7981
|
+
source: z.ZodString;
|
|
7982
|
+
target: z.ZodString;
|
|
7983
|
+
confidence: z.ZodNumber;
|
|
7984
|
+
reason: z.ZodString;
|
|
7985
|
+
recommendation: z.ZodString;
|
|
7986
|
+
type: z.ZodLiteral<"deploy-mismatch">;
|
|
7987
|
+
}, "strip", z.ZodTypeAny, {
|
|
7988
|
+
reason: string;
|
|
7989
|
+
type: "deploy-mismatch";
|
|
7990
|
+
source: string;
|
|
7991
|
+
target: string;
|
|
7992
|
+
confidence: number;
|
|
7993
|
+
kind: "image" | "replicas";
|
|
7994
|
+
recommendation: string;
|
|
7995
|
+
declaredImage?: string | undefined;
|
|
7996
|
+
declaredReplicas?: number | undefined;
|
|
7997
|
+
observedImage?: string | undefined;
|
|
7998
|
+
observedReplicas?: number | undefined;
|
|
7999
|
+
}, {
|
|
8000
|
+
reason: string;
|
|
8001
|
+
type: "deploy-mismatch";
|
|
8002
|
+
source: string;
|
|
8003
|
+
target: string;
|
|
8004
|
+
confidence: number;
|
|
8005
|
+
kind: "image" | "replicas";
|
|
8006
|
+
recommendation: string;
|
|
8007
|
+
declaredImage?: string | undefined;
|
|
8008
|
+
declaredReplicas?: number | undefined;
|
|
8009
|
+
observedImage?: string | undefined;
|
|
8010
|
+
observedReplicas?: number | undefined;
|
|
7887
8011
|
}>]>, "many">;
|
|
7888
8012
|
totalAffected: z.ZodNumber;
|
|
7889
8013
|
computedAt: z.ZodString;
|
|
@@ -8114,6 +8238,18 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
8114
8238
|
incidentId?: string | undefined;
|
|
8115
8239
|
location?: string | undefined;
|
|
8116
8240
|
errorRate?: number | undefined;
|
|
8241
|
+
} | {
|
|
8242
|
+
reason: string;
|
|
8243
|
+
type: "deploy-mismatch";
|
|
8244
|
+
source: string;
|
|
8245
|
+
target: string;
|
|
8246
|
+
confidence: number;
|
|
8247
|
+
kind: "image" | "replicas";
|
|
8248
|
+
recommendation: string;
|
|
8249
|
+
declaredImage?: string | undefined;
|
|
8250
|
+
declaredReplicas?: number | undefined;
|
|
8251
|
+
observedImage?: string | undefined;
|
|
8252
|
+
observedReplicas?: number | undefined;
|
|
8117
8253
|
})[];
|
|
8118
8254
|
computedAt: string;
|
|
8119
8255
|
}, {
|
|
@@ -8343,11 +8479,23 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
8343
8479
|
incidentId?: string | undefined;
|
|
8344
8480
|
location?: string | undefined;
|
|
8345
8481
|
errorRate?: number | undefined;
|
|
8482
|
+
} | {
|
|
8483
|
+
reason: string;
|
|
8484
|
+
type: "deploy-mismatch";
|
|
8485
|
+
source: string;
|
|
8486
|
+
target: string;
|
|
8487
|
+
confidence: number;
|
|
8488
|
+
kind: "image" | "replicas";
|
|
8489
|
+
recommendation: string;
|
|
8490
|
+
declaredImage?: string | undefined;
|
|
8491
|
+
declaredReplicas?: number | undefined;
|
|
8492
|
+
observedImage?: string | undefined;
|
|
8493
|
+
observedReplicas?: number | undefined;
|
|
8346
8494
|
})[];
|
|
8347
8495
|
computedAt: string;
|
|
8348
8496
|
}>;
|
|
8349
8497
|
type DivergenceResult = z.infer<typeof DivergenceResultSchema>;
|
|
8350
|
-
declare const DivergenceTypeSchema: z.ZodEnum<["missing-observed", "missing-extracted", "version-mismatch", "host-mismatch", "compat-violation", "observed-symbol-mismatch", "observed-failing"]>;
|
|
8498
|
+
declare const DivergenceTypeSchema: z.ZodEnum<["missing-observed", "missing-extracted", "version-mismatch", "host-mismatch", "compat-violation", "observed-symbol-mismatch", "observed-failing", "deploy-mismatch"]>;
|
|
8351
8499
|
type DivergenceType = z.infer<typeof DivergenceTypeSchema>;
|
|
8352
8500
|
|
|
8353
8501
|
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"];
|
|
@@ -8678,6 +8826,8 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
8678
8826
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
8679
8827
|
declaredImage: z.ZodOptional<z.ZodString>;
|
|
8680
8828
|
declaredReplicas: z.ZodOptional<z.ZodNumber>;
|
|
8829
|
+
observedImage: z.ZodOptional<z.ZodString>;
|
|
8830
|
+
observedReadyReplicas: z.ZodOptional<z.ZodNumber>;
|
|
8681
8831
|
repoPath: z.ZodOptional<z.ZodString>;
|
|
8682
8832
|
owner: z.ZodOptional<z.ZodString>;
|
|
8683
8833
|
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -8790,6 +8940,8 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
8790
8940
|
dbConnectionTarget?: string | undefined;
|
|
8791
8941
|
declaredImage?: string | undefined;
|
|
8792
8942
|
declaredReplicas?: number | undefined;
|
|
8943
|
+
observedImage?: string | undefined;
|
|
8944
|
+
observedReadyReplicas?: number | undefined;
|
|
8793
8945
|
repoPath?: string | undefined;
|
|
8794
8946
|
owner?: string | undefined;
|
|
8795
8947
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -8838,6 +8990,8 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
8838
8990
|
dbConnectionTarget?: string | undefined;
|
|
8839
8991
|
declaredImage?: string | undefined;
|
|
8840
8992
|
declaredReplicas?: number | undefined;
|
|
8993
|
+
observedImage?: string | undefined;
|
|
8994
|
+
observedReadyReplicas?: number | undefined;
|
|
8841
8995
|
repoPath?: string | undefined;
|
|
8842
8996
|
owner?: string | undefined;
|
|
8843
8997
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -9252,6 +9406,8 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
9252
9406
|
dbConnectionTarget?: string | undefined;
|
|
9253
9407
|
declaredImage?: string | undefined;
|
|
9254
9408
|
declaredReplicas?: number | undefined;
|
|
9409
|
+
observedImage?: string | undefined;
|
|
9410
|
+
observedReadyReplicas?: number | undefined;
|
|
9255
9411
|
repoPath?: string | undefined;
|
|
9256
9412
|
owner?: string | undefined;
|
|
9257
9413
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -9416,6 +9572,8 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
9416
9572
|
dbConnectionTarget?: string | undefined;
|
|
9417
9573
|
declaredImage?: string | undefined;
|
|
9418
9574
|
declaredReplicas?: number | undefined;
|
|
9575
|
+
observedImage?: string | undefined;
|
|
9576
|
+
observedReadyReplicas?: number | undefined;
|
|
9419
9577
|
repoPath?: string | undefined;
|
|
9420
9578
|
owner?: string | undefined;
|
|
9421
9579
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -10463,6 +10621,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
10463
10621
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
10464
10622
|
declaredImage: z.ZodOptional<z.ZodString>;
|
|
10465
10623
|
declaredReplicas: z.ZodOptional<z.ZodNumber>;
|
|
10624
|
+
observedImage: z.ZodOptional<z.ZodString>;
|
|
10625
|
+
observedReadyReplicas: z.ZodOptional<z.ZodNumber>;
|
|
10466
10626
|
repoPath: z.ZodOptional<z.ZodString>;
|
|
10467
10627
|
owner: z.ZodOptional<z.ZodString>;
|
|
10468
10628
|
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -10575,6 +10735,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
10575
10735
|
dbConnectionTarget?: string | undefined;
|
|
10576
10736
|
declaredImage?: string | undefined;
|
|
10577
10737
|
declaredReplicas?: number | undefined;
|
|
10738
|
+
observedImage?: string | undefined;
|
|
10739
|
+
observedReadyReplicas?: number | undefined;
|
|
10578
10740
|
repoPath?: string | undefined;
|
|
10579
10741
|
owner?: string | undefined;
|
|
10580
10742
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -10623,6 +10785,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
10623
10785
|
dbConnectionTarget?: string | undefined;
|
|
10624
10786
|
declaredImage?: string | undefined;
|
|
10625
10787
|
declaredReplicas?: number | undefined;
|
|
10788
|
+
observedImage?: string | undefined;
|
|
10789
|
+
observedReadyReplicas?: number | undefined;
|
|
10626
10790
|
repoPath?: string | undefined;
|
|
10627
10791
|
owner?: string | undefined;
|
|
10628
10792
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -11196,6 +11360,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
11196
11360
|
dbConnectionTarget?: string | undefined;
|
|
11197
11361
|
declaredImage?: string | undefined;
|
|
11198
11362
|
declaredReplicas?: number | undefined;
|
|
11363
|
+
observedImage?: string | undefined;
|
|
11364
|
+
observedReadyReplicas?: number | undefined;
|
|
11199
11365
|
repoPath?: string | undefined;
|
|
11200
11366
|
owner?: string | undefined;
|
|
11201
11367
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -11395,6 +11561,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
11395
11561
|
dbConnectionTarget?: string | undefined;
|
|
11396
11562
|
declaredImage?: string | undefined;
|
|
11397
11563
|
declaredReplicas?: number | undefined;
|
|
11564
|
+
observedImage?: string | undefined;
|
|
11565
|
+
observedReadyReplicas?: number | undefined;
|
|
11398
11566
|
repoPath?: string | undefined;
|
|
11399
11567
|
owner?: string | undefined;
|
|
11400
11568
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -11611,6 +11779,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11611
11779
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
11612
11780
|
declaredImage: z.ZodOptional<z.ZodString>;
|
|
11613
11781
|
declaredReplicas: z.ZodOptional<z.ZodNumber>;
|
|
11782
|
+
observedImage: z.ZodOptional<z.ZodString>;
|
|
11783
|
+
observedReadyReplicas: z.ZodOptional<z.ZodNumber>;
|
|
11614
11784
|
repoPath: z.ZodOptional<z.ZodString>;
|
|
11615
11785
|
owner: z.ZodOptional<z.ZodString>;
|
|
11616
11786
|
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -11723,6 +11893,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11723
11893
|
dbConnectionTarget?: string | undefined;
|
|
11724
11894
|
declaredImage?: string | undefined;
|
|
11725
11895
|
declaredReplicas?: number | undefined;
|
|
11896
|
+
observedImage?: string | undefined;
|
|
11897
|
+
observedReadyReplicas?: number | undefined;
|
|
11726
11898
|
repoPath?: string | undefined;
|
|
11727
11899
|
owner?: string | undefined;
|
|
11728
11900
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -11771,6 +11943,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11771
11943
|
dbConnectionTarget?: string | undefined;
|
|
11772
11944
|
declaredImage?: string | undefined;
|
|
11773
11945
|
declaredReplicas?: number | undefined;
|
|
11946
|
+
observedImage?: string | undefined;
|
|
11947
|
+
observedReadyReplicas?: number | undefined;
|
|
11774
11948
|
repoPath?: string | undefined;
|
|
11775
11949
|
owner?: string | undefined;
|
|
11776
11950
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -12344,6 +12518,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
12344
12518
|
dbConnectionTarget?: string | undefined;
|
|
12345
12519
|
declaredImage?: string | undefined;
|
|
12346
12520
|
declaredReplicas?: number | undefined;
|
|
12521
|
+
observedImage?: string | undefined;
|
|
12522
|
+
observedReadyReplicas?: number | undefined;
|
|
12347
12523
|
repoPath?: string | undefined;
|
|
12348
12524
|
owner?: string | undefined;
|
|
12349
12525
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -12543,6 +12719,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
12543
12719
|
dbConnectionTarget?: string | undefined;
|
|
12544
12720
|
declaredImage?: string | undefined;
|
|
12545
12721
|
declaredReplicas?: number | undefined;
|
|
12722
|
+
observedImage?: string | undefined;
|
|
12723
|
+
observedReadyReplicas?: number | undefined;
|
|
12546
12724
|
repoPath?: string | undefined;
|
|
12547
12725
|
owner?: string | undefined;
|
|
12548
12726
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -12743,6 +12921,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
12743
12921
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
12744
12922
|
declaredImage: z.ZodOptional<z.ZodString>;
|
|
12745
12923
|
declaredReplicas: z.ZodOptional<z.ZodNumber>;
|
|
12924
|
+
observedImage: z.ZodOptional<z.ZodString>;
|
|
12925
|
+
observedReadyReplicas: z.ZodOptional<z.ZodNumber>;
|
|
12746
12926
|
repoPath: z.ZodOptional<z.ZodString>;
|
|
12747
12927
|
owner: z.ZodOptional<z.ZodString>;
|
|
12748
12928
|
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -12855,6 +13035,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
12855
13035
|
dbConnectionTarget?: string | undefined;
|
|
12856
13036
|
declaredImage?: string | undefined;
|
|
12857
13037
|
declaredReplicas?: number | undefined;
|
|
13038
|
+
observedImage?: string | undefined;
|
|
13039
|
+
observedReadyReplicas?: number | undefined;
|
|
12858
13040
|
repoPath?: string | undefined;
|
|
12859
13041
|
owner?: string | undefined;
|
|
12860
13042
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -12903,6 +13085,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
12903
13085
|
dbConnectionTarget?: string | undefined;
|
|
12904
13086
|
declaredImage?: string | undefined;
|
|
12905
13087
|
declaredReplicas?: number | undefined;
|
|
13088
|
+
observedImage?: string | undefined;
|
|
13089
|
+
observedReadyReplicas?: number | undefined;
|
|
12906
13090
|
repoPath?: string | undefined;
|
|
12907
13091
|
owner?: string | undefined;
|
|
12908
13092
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -13476,6 +13660,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13476
13660
|
dbConnectionTarget?: string | undefined;
|
|
13477
13661
|
declaredImage?: string | undefined;
|
|
13478
13662
|
declaredReplicas?: number | undefined;
|
|
13663
|
+
observedImage?: string | undefined;
|
|
13664
|
+
observedReadyReplicas?: number | undefined;
|
|
13479
13665
|
repoPath?: string | undefined;
|
|
13480
13666
|
owner?: string | undefined;
|
|
13481
13667
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -13675,6 +13861,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13675
13861
|
dbConnectionTarget?: string | undefined;
|
|
13676
13862
|
declaredImage?: string | undefined;
|
|
13677
13863
|
declaredReplicas?: number | undefined;
|
|
13864
|
+
observedImage?: string | undefined;
|
|
13865
|
+
observedReadyReplicas?: number | undefined;
|
|
13678
13866
|
repoPath?: string | undefined;
|
|
13679
13867
|
owner?: string | undefined;
|
|
13680
13868
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -13877,6 +14065,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13877
14065
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
13878
14066
|
declaredImage: z.ZodOptional<z.ZodString>;
|
|
13879
14067
|
declaredReplicas: z.ZodOptional<z.ZodNumber>;
|
|
14068
|
+
observedImage: z.ZodOptional<z.ZodString>;
|
|
14069
|
+
observedReadyReplicas: z.ZodOptional<z.ZodNumber>;
|
|
13880
14070
|
repoPath: z.ZodOptional<z.ZodString>;
|
|
13881
14071
|
owner: z.ZodOptional<z.ZodString>;
|
|
13882
14072
|
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -13989,6 +14179,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13989
14179
|
dbConnectionTarget?: string | undefined;
|
|
13990
14180
|
declaredImage?: string | undefined;
|
|
13991
14181
|
declaredReplicas?: number | undefined;
|
|
14182
|
+
observedImage?: string | undefined;
|
|
14183
|
+
observedReadyReplicas?: number | undefined;
|
|
13992
14184
|
repoPath?: string | undefined;
|
|
13993
14185
|
owner?: string | undefined;
|
|
13994
14186
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -14037,6 +14229,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14037
14229
|
dbConnectionTarget?: string | undefined;
|
|
14038
14230
|
declaredImage?: string | undefined;
|
|
14039
14231
|
declaredReplicas?: number | undefined;
|
|
14232
|
+
observedImage?: string | undefined;
|
|
14233
|
+
observedReadyReplicas?: number | undefined;
|
|
14040
14234
|
repoPath?: string | undefined;
|
|
14041
14235
|
owner?: string | undefined;
|
|
14042
14236
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -14450,6 +14644,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14450
14644
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
14451
14645
|
declaredImage: z.ZodOptional<z.ZodString>;
|
|
14452
14646
|
declaredReplicas: z.ZodOptional<z.ZodNumber>;
|
|
14647
|
+
observedImage: z.ZodOptional<z.ZodString>;
|
|
14648
|
+
observedReadyReplicas: z.ZodOptional<z.ZodNumber>;
|
|
14453
14649
|
repoPath: z.ZodOptional<z.ZodString>;
|
|
14454
14650
|
owner: z.ZodOptional<z.ZodString>;
|
|
14455
14651
|
dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -14562,6 +14758,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14562
14758
|
dbConnectionTarget?: string | undefined;
|
|
14563
14759
|
declaredImage?: string | undefined;
|
|
14564
14760
|
declaredReplicas?: number | undefined;
|
|
14761
|
+
observedImage?: string | undefined;
|
|
14762
|
+
observedReadyReplicas?: number | undefined;
|
|
14565
14763
|
repoPath?: string | undefined;
|
|
14566
14764
|
owner?: string | undefined;
|
|
14567
14765
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -14610,6 +14808,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14610
14808
|
dbConnectionTarget?: string | undefined;
|
|
14611
14809
|
declaredImage?: string | undefined;
|
|
14612
14810
|
declaredReplicas?: number | undefined;
|
|
14811
|
+
observedImage?: string | undefined;
|
|
14812
|
+
observedReadyReplicas?: number | undefined;
|
|
14613
14813
|
repoPath?: string | undefined;
|
|
14614
14814
|
owner?: string | undefined;
|
|
14615
14815
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -15025,6 +15225,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15025
15225
|
dbConnectionTarget?: string | undefined;
|
|
15026
15226
|
declaredImage?: string | undefined;
|
|
15027
15227
|
declaredReplicas?: number | undefined;
|
|
15228
|
+
observedImage?: string | undefined;
|
|
15229
|
+
observedReadyReplicas?: number | undefined;
|
|
15028
15230
|
repoPath?: string | undefined;
|
|
15029
15231
|
owner?: string | undefined;
|
|
15030
15232
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -15188,6 +15390,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15188
15390
|
dbConnectionTarget?: string | undefined;
|
|
15189
15391
|
declaredImage?: string | undefined;
|
|
15190
15392
|
declaredReplicas?: number | undefined;
|
|
15393
|
+
observedImage?: string | undefined;
|
|
15394
|
+
observedReadyReplicas?: number | undefined;
|
|
15191
15395
|
repoPath?: string | undefined;
|
|
15192
15396
|
owner?: string | undefined;
|
|
15193
15397
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -15353,6 +15557,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15353
15557
|
dbConnectionTarget?: string | undefined;
|
|
15354
15558
|
declaredImage?: string | undefined;
|
|
15355
15559
|
declaredReplicas?: number | undefined;
|
|
15560
|
+
observedImage?: string | undefined;
|
|
15561
|
+
observedReadyReplicas?: number | undefined;
|
|
15356
15562
|
repoPath?: string | undefined;
|
|
15357
15563
|
owner?: string | undefined;
|
|
15358
15564
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -15516,6 +15722,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15516
15722
|
dbConnectionTarget?: string | undefined;
|
|
15517
15723
|
declaredImage?: string | undefined;
|
|
15518
15724
|
declaredReplicas?: number | undefined;
|
|
15725
|
+
observedImage?: string | undefined;
|
|
15726
|
+
observedReadyReplicas?: number | undefined;
|
|
15519
15727
|
repoPath?: string | undefined;
|
|
15520
15728
|
owner?: string | undefined;
|
|
15521
15729
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -16148,6 +16356,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
16148
16356
|
dbConnectionTarget?: string | undefined;
|
|
16149
16357
|
declaredImage?: string | undefined;
|
|
16150
16358
|
declaredReplicas?: number | undefined;
|
|
16359
|
+
observedImage?: string | undefined;
|
|
16360
|
+
observedReadyReplicas?: number | undefined;
|
|
16151
16361
|
repoPath?: string | undefined;
|
|
16152
16362
|
owner?: string | undefined;
|
|
16153
16363
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -16311,6 +16521,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
16311
16521
|
dbConnectionTarget?: string | undefined;
|
|
16312
16522
|
declaredImage?: string | undefined;
|
|
16313
16523
|
declaredReplicas?: number | undefined;
|
|
16524
|
+
observedImage?: string | undefined;
|
|
16525
|
+
observedReadyReplicas?: number | undefined;
|
|
16314
16526
|
repoPath?: string | undefined;
|
|
16315
16527
|
owner?: string | undefined;
|
|
16316
16528
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -16551,6 +16763,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
16551
16763
|
dbConnectionTarget?: string | undefined;
|
|
16552
16764
|
declaredImage?: string | undefined;
|
|
16553
16765
|
declaredReplicas?: number | undefined;
|
|
16766
|
+
observedImage?: string | undefined;
|
|
16767
|
+
observedReadyReplicas?: number | undefined;
|
|
16554
16768
|
repoPath?: string | undefined;
|
|
16555
16769
|
owner?: string | undefined;
|
|
16556
16770
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -16714,6 +16928,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
16714
16928
|
dbConnectionTarget?: string | undefined;
|
|
16715
16929
|
declaredImage?: string | undefined;
|
|
16716
16930
|
declaredReplicas?: number | undefined;
|
|
16931
|
+
observedImage?: string | undefined;
|
|
16932
|
+
observedReadyReplicas?: number | undefined;
|
|
16717
16933
|
repoPath?: string | undefined;
|
|
16718
16934
|
owner?: string | undefined;
|
|
16719
16935
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -16960,6 +17176,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
16960
17176
|
dbConnectionTarget?: string | undefined;
|
|
16961
17177
|
declaredImage?: string | undefined;
|
|
16962
17178
|
declaredReplicas?: number | undefined;
|
|
17179
|
+
observedImage?: string | undefined;
|
|
17180
|
+
observedReadyReplicas?: number | undefined;
|
|
16963
17181
|
repoPath?: string | undefined;
|
|
16964
17182
|
owner?: string | undefined;
|
|
16965
17183
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -17160,6 +17378,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
17160
17378
|
dbConnectionTarget?: string | undefined;
|
|
17161
17379
|
declaredImage?: string | undefined;
|
|
17162
17380
|
declaredReplicas?: number | undefined;
|
|
17381
|
+
observedImage?: string | undefined;
|
|
17382
|
+
observedReadyReplicas?: number | undefined;
|
|
17163
17383
|
repoPath?: string | undefined;
|
|
17164
17384
|
owner?: string | undefined;
|
|
17165
17385
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -17362,6 +17582,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
17362
17582
|
dbConnectionTarget?: string | undefined;
|
|
17363
17583
|
declaredImage?: string | undefined;
|
|
17364
17584
|
declaredReplicas?: number | undefined;
|
|
17585
|
+
observedImage?: string | undefined;
|
|
17586
|
+
observedReadyReplicas?: number | undefined;
|
|
17365
17587
|
repoPath?: string | undefined;
|
|
17366
17588
|
owner?: string | undefined;
|
|
17367
17589
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -17525,6 +17747,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
17525
17747
|
dbConnectionTarget?: string | undefined;
|
|
17526
17748
|
declaredImage?: string | undefined;
|
|
17527
17749
|
declaredReplicas?: number | undefined;
|
|
17750
|
+
observedImage?: string | undefined;
|
|
17751
|
+
observedReadyReplicas?: number | undefined;
|
|
17528
17752
|
repoPath?: string | undefined;
|
|
17529
17753
|
owner?: string | undefined;
|
|
17530
17754
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -17771,6 +17995,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
17771
17995
|
dbConnectionTarget?: string | undefined;
|
|
17772
17996
|
declaredImage?: string | undefined;
|
|
17773
17997
|
declaredReplicas?: number | undefined;
|
|
17998
|
+
observedImage?: string | undefined;
|
|
17999
|
+
observedReadyReplicas?: number | undefined;
|
|
17774
18000
|
repoPath?: string | undefined;
|
|
17775
18001
|
owner?: string | undefined;
|
|
17776
18002
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -17971,6 +18197,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
17971
18197
|
dbConnectionTarget?: string | undefined;
|
|
17972
18198
|
declaredImage?: string | undefined;
|
|
17973
18199
|
declaredReplicas?: number | undefined;
|
|
18200
|
+
observedImage?: string | undefined;
|
|
18201
|
+
observedReadyReplicas?: number | undefined;
|
|
17974
18202
|
repoPath?: string | undefined;
|
|
17975
18203
|
owner?: string | undefined;
|
|
17976
18204
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -18173,6 +18401,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
18173
18401
|
dbConnectionTarget?: string | undefined;
|
|
18174
18402
|
declaredImage?: string | undefined;
|
|
18175
18403
|
declaredReplicas?: number | undefined;
|
|
18404
|
+
observedImage?: string | undefined;
|
|
18405
|
+
observedReadyReplicas?: number | undefined;
|
|
18176
18406
|
repoPath?: string | undefined;
|
|
18177
18407
|
owner?: string | undefined;
|
|
18178
18408
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -18336,6 +18566,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
18336
18566
|
dbConnectionTarget?: string | undefined;
|
|
18337
18567
|
declaredImage?: string | undefined;
|
|
18338
18568
|
declaredReplicas?: number | undefined;
|
|
18569
|
+
observedImage?: string | undefined;
|
|
18570
|
+
observedReadyReplicas?: number | undefined;
|
|
18339
18571
|
repoPath?: string | undefined;
|
|
18340
18572
|
owner?: string | undefined;
|
|
18341
18573
|
dependencies?: Record<string, string> | undefined;
|
|
@@ -18572,4 +18804,4 @@ declare const DEFAULT_EXTRACTED_PRECISION_FLOOR = 0.7;
|
|
|
18572
18804
|
declare function extractedPrecisionFloor(): number;
|
|
18573
18805
|
declare function passesExtractedFloor(confidence: number): boolean;
|
|
18574
18806
|
|
|
18575
|
-
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 };
|
|
18807
|
+
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 DeployMismatchDivergence, DeployMismatchDivergenceSchema, type DeployMismatchKind, DeployMismatchKindSchema, 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 };
|