@neat.is/types 0.9.2 → 0.9.3
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 +42 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +305 -2
- package/dist/index.d.ts +305 -2
- package/dist/index.js +40 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1232,18 +1232,21 @@ declare const EdgeEvidenceSchema: z.ZodObject<{
|
|
|
1232
1232
|
snippet: z.ZodOptional<z.ZodString>;
|
|
1233
1233
|
method: z.ZodOptional<z.ZodString>;
|
|
1234
1234
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
1235
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
1235
1236
|
}, "strip", z.ZodTypeAny, {
|
|
1236
1237
|
file: string;
|
|
1237
1238
|
line?: number | undefined;
|
|
1238
1239
|
snippet?: string | undefined;
|
|
1239
1240
|
method?: string | undefined;
|
|
1240
1241
|
pathTemplate?: string | undefined;
|
|
1242
|
+
hostSource?: "literal" | "config" | undefined;
|
|
1241
1243
|
}, {
|
|
1242
1244
|
file: string;
|
|
1243
1245
|
line?: number | undefined;
|
|
1244
1246
|
snippet?: string | undefined;
|
|
1245
1247
|
method?: string | undefined;
|
|
1246
1248
|
pathTemplate?: string | undefined;
|
|
1249
|
+
hostSource?: "literal" | "config" | undefined;
|
|
1247
1250
|
}>;
|
|
1248
1251
|
type EdgeEvidence = z.infer<typeof EdgeEvidenceSchema>;
|
|
1249
1252
|
declare const LatencyMsSchema: z.ZodObject<{
|
|
@@ -1336,18 +1339,21 @@ declare const GraphEdgeSchema: z.ZodObject<{
|
|
|
1336
1339
|
snippet: z.ZodOptional<z.ZodString>;
|
|
1337
1340
|
method: z.ZodOptional<z.ZodString>;
|
|
1338
1341
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
1342
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
1339
1343
|
}, "strip", z.ZodTypeAny, {
|
|
1340
1344
|
file: string;
|
|
1341
1345
|
line?: number | undefined;
|
|
1342
1346
|
snippet?: string | undefined;
|
|
1343
1347
|
method?: string | undefined;
|
|
1344
1348
|
pathTemplate?: string | undefined;
|
|
1349
|
+
hostSource?: "literal" | "config" | undefined;
|
|
1345
1350
|
}, {
|
|
1346
1351
|
file: string;
|
|
1347
1352
|
line?: number | undefined;
|
|
1348
1353
|
snippet?: string | undefined;
|
|
1349
1354
|
method?: string | undefined;
|
|
1350
1355
|
pathTemplate?: string | undefined;
|
|
1356
|
+
hostSource?: "literal" | "config" | undefined;
|
|
1351
1357
|
}>>;
|
|
1352
1358
|
signal: z.ZodOptional<z.ZodObject<{
|
|
1353
1359
|
spanCount: z.ZodNumber;
|
|
@@ -1417,6 +1423,7 @@ declare const GraphEdgeSchema: z.ZodObject<{
|
|
|
1417
1423
|
snippet?: string | undefined;
|
|
1418
1424
|
method?: string | undefined;
|
|
1419
1425
|
pathTemplate?: string | undefined;
|
|
1426
|
+
hostSource?: "literal" | "config" | undefined;
|
|
1420
1427
|
} | undefined;
|
|
1421
1428
|
signal?: {
|
|
1422
1429
|
spanCount: number;
|
|
@@ -1448,6 +1455,7 @@ declare const GraphEdgeSchema: z.ZodObject<{
|
|
|
1448
1455
|
snippet?: string | undefined;
|
|
1449
1456
|
method?: string | undefined;
|
|
1450
1457
|
pathTemplate?: string | undefined;
|
|
1458
|
+
hostSource?: "literal" | "config" | undefined;
|
|
1451
1459
|
} | undefined;
|
|
1452
1460
|
signal?: {
|
|
1453
1461
|
spanCount: number;
|
|
@@ -2246,18 +2254,21 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
|
|
|
2246
2254
|
snippet: z.ZodOptional<z.ZodString>;
|
|
2247
2255
|
method: z.ZodOptional<z.ZodString>;
|
|
2248
2256
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
2257
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
2249
2258
|
}, "strip", z.ZodTypeAny, {
|
|
2250
2259
|
file: string;
|
|
2251
2260
|
line?: number | undefined;
|
|
2252
2261
|
snippet?: string | undefined;
|
|
2253
2262
|
method?: string | undefined;
|
|
2254
2263
|
pathTemplate?: string | undefined;
|
|
2264
|
+
hostSource?: "literal" | "config" | undefined;
|
|
2255
2265
|
}, {
|
|
2256
2266
|
file: string;
|
|
2257
2267
|
line?: number | undefined;
|
|
2258
2268
|
snippet?: string | undefined;
|
|
2259
2269
|
method?: string | undefined;
|
|
2260
2270
|
pathTemplate?: string | undefined;
|
|
2271
|
+
hostSource?: "literal" | "config" | undefined;
|
|
2261
2272
|
}>>;
|
|
2262
2273
|
signal: z.ZodOptional<z.ZodObject<{
|
|
2263
2274
|
spanCount: z.ZodNumber;
|
|
@@ -2327,6 +2338,7 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
|
|
|
2327
2338
|
snippet?: string | undefined;
|
|
2328
2339
|
method?: string | undefined;
|
|
2329
2340
|
pathTemplate?: string | undefined;
|
|
2341
|
+
hostSource?: "literal" | "config" | undefined;
|
|
2330
2342
|
} | undefined;
|
|
2331
2343
|
signal?: {
|
|
2332
2344
|
spanCount: number;
|
|
@@ -2358,6 +2370,7 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
|
|
|
2358
2370
|
snippet?: string | undefined;
|
|
2359
2371
|
method?: string | undefined;
|
|
2360
2372
|
pathTemplate?: string | undefined;
|
|
2373
|
+
hostSource?: "literal" | "config" | undefined;
|
|
2361
2374
|
} | undefined;
|
|
2362
2375
|
signal?: {
|
|
2363
2376
|
spanCount: number;
|
|
@@ -2397,6 +2410,7 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
|
|
|
2397
2410
|
snippet?: string | undefined;
|
|
2398
2411
|
method?: string | undefined;
|
|
2399
2412
|
pathTemplate?: string | undefined;
|
|
2413
|
+
hostSource?: "literal" | "config" | undefined;
|
|
2400
2414
|
} | undefined;
|
|
2401
2415
|
signal?: {
|
|
2402
2416
|
spanCount: number;
|
|
@@ -2437,6 +2451,7 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
|
|
|
2437
2451
|
snippet?: string | undefined;
|
|
2438
2452
|
method?: string | undefined;
|
|
2439
2453
|
pathTemplate?: string | undefined;
|
|
2454
|
+
hostSource?: "literal" | "config" | undefined;
|
|
2440
2455
|
} | undefined;
|
|
2441
2456
|
signal?: {
|
|
2442
2457
|
spanCount: number;
|
|
@@ -3689,18 +3704,21 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
|
|
|
3689
3704
|
snippet: z.ZodOptional<z.ZodString>;
|
|
3690
3705
|
method: z.ZodOptional<z.ZodString>;
|
|
3691
3706
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
3707
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
3692
3708
|
}, "strip", z.ZodTypeAny, {
|
|
3693
3709
|
file: string;
|
|
3694
3710
|
line?: number | undefined;
|
|
3695
3711
|
snippet?: string | undefined;
|
|
3696
3712
|
method?: string | undefined;
|
|
3697
3713
|
pathTemplate?: string | undefined;
|
|
3714
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3698
3715
|
}, {
|
|
3699
3716
|
file: string;
|
|
3700
3717
|
line?: number | undefined;
|
|
3701
3718
|
snippet?: string | undefined;
|
|
3702
3719
|
method?: string | undefined;
|
|
3703
3720
|
pathTemplate?: string | undefined;
|
|
3721
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3704
3722
|
}>>;
|
|
3705
3723
|
signal: z.ZodOptional<z.ZodObject<{
|
|
3706
3724
|
spanCount: z.ZodNumber;
|
|
@@ -3770,6 +3788,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
|
|
|
3770
3788
|
snippet?: string | undefined;
|
|
3771
3789
|
method?: string | undefined;
|
|
3772
3790
|
pathTemplate?: string | undefined;
|
|
3791
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3773
3792
|
} | undefined;
|
|
3774
3793
|
signal?: {
|
|
3775
3794
|
spanCount: number;
|
|
@@ -3801,6 +3820,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
|
|
|
3801
3820
|
snippet?: string | undefined;
|
|
3802
3821
|
method?: string | undefined;
|
|
3803
3822
|
pathTemplate?: string | undefined;
|
|
3823
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3804
3824
|
} | undefined;
|
|
3805
3825
|
signal?: {
|
|
3806
3826
|
spanCount: number;
|
|
@@ -3849,6 +3869,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
|
|
|
3849
3869
|
snippet?: string | undefined;
|
|
3850
3870
|
method?: string | undefined;
|
|
3851
3871
|
pathTemplate?: string | undefined;
|
|
3872
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3852
3873
|
} | undefined;
|
|
3853
3874
|
signal?: {
|
|
3854
3875
|
spanCount: number;
|
|
@@ -3891,6 +3912,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
|
|
|
3891
3912
|
snippet?: string | undefined;
|
|
3892
3913
|
method?: string | undefined;
|
|
3893
3914
|
pathTemplate?: string | undefined;
|
|
3915
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3894
3916
|
} | undefined;
|
|
3895
3917
|
signal?: {
|
|
3896
3918
|
spanCount: number;
|
|
@@ -3929,18 +3951,21 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
|
|
|
3929
3951
|
snippet: z.ZodOptional<z.ZodString>;
|
|
3930
3952
|
method: z.ZodOptional<z.ZodString>;
|
|
3931
3953
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
3954
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
3932
3955
|
}, "strip", z.ZodTypeAny, {
|
|
3933
3956
|
file: string;
|
|
3934
3957
|
line?: number | undefined;
|
|
3935
3958
|
snippet?: string | undefined;
|
|
3936
3959
|
method?: string | undefined;
|
|
3937
3960
|
pathTemplate?: string | undefined;
|
|
3961
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3938
3962
|
}, {
|
|
3939
3963
|
file: string;
|
|
3940
3964
|
line?: number | undefined;
|
|
3941
3965
|
snippet?: string | undefined;
|
|
3942
3966
|
method?: string | undefined;
|
|
3943
3967
|
pathTemplate?: string | undefined;
|
|
3968
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3944
3969
|
}>>;
|
|
3945
3970
|
signal: z.ZodOptional<z.ZodObject<{
|
|
3946
3971
|
spanCount: z.ZodNumber;
|
|
@@ -4010,6 +4035,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
|
|
|
4010
4035
|
snippet?: string | undefined;
|
|
4011
4036
|
method?: string | undefined;
|
|
4012
4037
|
pathTemplate?: string | undefined;
|
|
4038
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4013
4039
|
} | undefined;
|
|
4014
4040
|
signal?: {
|
|
4015
4041
|
spanCount: number;
|
|
@@ -4041,6 +4067,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
|
|
|
4041
4067
|
snippet?: string | undefined;
|
|
4042
4068
|
method?: string | undefined;
|
|
4043
4069
|
pathTemplate?: string | undefined;
|
|
4070
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4044
4071
|
} | undefined;
|
|
4045
4072
|
signal?: {
|
|
4046
4073
|
spanCount: number;
|
|
@@ -4089,6 +4116,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
|
|
|
4089
4116
|
snippet?: string | undefined;
|
|
4090
4117
|
method?: string | undefined;
|
|
4091
4118
|
pathTemplate?: string | undefined;
|
|
4119
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4092
4120
|
} | undefined;
|
|
4093
4121
|
signal?: {
|
|
4094
4122
|
spanCount: number;
|
|
@@ -4131,6 +4159,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
|
|
|
4131
4159
|
snippet?: string | undefined;
|
|
4132
4160
|
method?: string | undefined;
|
|
4133
4161
|
pathTemplate?: string | undefined;
|
|
4162
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4134
4163
|
} | undefined;
|
|
4135
4164
|
signal?: {
|
|
4136
4165
|
spanCount: number;
|
|
@@ -4270,18 +4299,21 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
|
|
|
4270
4299
|
snippet: z.ZodOptional<z.ZodString>;
|
|
4271
4300
|
method: z.ZodOptional<z.ZodString>;
|
|
4272
4301
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
4302
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
4273
4303
|
}, "strip", z.ZodTypeAny, {
|
|
4274
4304
|
file: string;
|
|
4275
4305
|
line?: number | undefined;
|
|
4276
4306
|
snippet?: string | undefined;
|
|
4277
4307
|
method?: string | undefined;
|
|
4278
4308
|
pathTemplate?: string | undefined;
|
|
4309
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4279
4310
|
}, {
|
|
4280
4311
|
file: string;
|
|
4281
4312
|
line?: number | undefined;
|
|
4282
4313
|
snippet?: string | undefined;
|
|
4283
4314
|
method?: string | undefined;
|
|
4284
4315
|
pathTemplate?: string | undefined;
|
|
4316
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4285
4317
|
}>>;
|
|
4286
4318
|
signal: z.ZodOptional<z.ZodObject<{
|
|
4287
4319
|
spanCount: z.ZodNumber;
|
|
@@ -4351,6 +4383,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
|
|
|
4351
4383
|
snippet?: string | undefined;
|
|
4352
4384
|
method?: string | undefined;
|
|
4353
4385
|
pathTemplate?: string | undefined;
|
|
4386
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4354
4387
|
} | undefined;
|
|
4355
4388
|
signal?: {
|
|
4356
4389
|
spanCount: number;
|
|
@@ -4382,6 +4415,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
|
|
|
4382
4415
|
snippet?: string | undefined;
|
|
4383
4416
|
method?: string | undefined;
|
|
4384
4417
|
pathTemplate?: string | undefined;
|
|
4418
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4385
4419
|
} | undefined;
|
|
4386
4420
|
signal?: {
|
|
4387
4421
|
spanCount: number;
|
|
@@ -4433,6 +4467,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
|
|
|
4433
4467
|
snippet?: string | undefined;
|
|
4434
4468
|
method?: string | undefined;
|
|
4435
4469
|
pathTemplate?: string | undefined;
|
|
4470
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4436
4471
|
} | undefined;
|
|
4437
4472
|
signal?: {
|
|
4438
4473
|
spanCount: number;
|
|
@@ -4479,6 +4514,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
|
|
|
4479
4514
|
snippet?: string | undefined;
|
|
4480
4515
|
method?: string | undefined;
|
|
4481
4516
|
pathTemplate?: string | undefined;
|
|
4517
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4482
4518
|
} | undefined;
|
|
4483
4519
|
signal?: {
|
|
4484
4520
|
spanCount: number;
|
|
@@ -4499,6 +4535,52 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
|
|
|
4499
4535
|
recommendation: string;
|
|
4500
4536
|
}>;
|
|
4501
4537
|
type CompatViolationDivergence = z.infer<typeof CompatViolationDivergenceSchema>;
|
|
4538
|
+
declare const SymbolMismatchKindSchema: z.ZodEnum<["missing-attribute", "missing-field", "missing-property", "missing-column", "undefined-method"]>;
|
|
4539
|
+
type SymbolMismatchKind = z.infer<typeof SymbolMismatchKindSchema>;
|
|
4540
|
+
declare const ObservedSymbolMismatchDivergenceSchema: z.ZodObject<{
|
|
4541
|
+
mismatchKind: z.ZodEnum<["missing-attribute", "missing-field", "missing-property", "missing-column", "undefined-method"]>;
|
|
4542
|
+
symbol: z.ZodOptional<z.ZodString>;
|
|
4543
|
+
location: z.ZodOptional<z.ZodString>;
|
|
4544
|
+
provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
|
|
4545
|
+
incidentId: z.ZodOptional<z.ZodString>;
|
|
4546
|
+
errorMessage: z.ZodString;
|
|
4547
|
+
incidentCount: z.ZodOptional<z.ZodNumber>;
|
|
4548
|
+
source: z.ZodString;
|
|
4549
|
+
target: z.ZodString;
|
|
4550
|
+
confidence: z.ZodNumber;
|
|
4551
|
+
reason: z.ZodString;
|
|
4552
|
+
recommendation: z.ZodString;
|
|
4553
|
+
type: z.ZodLiteral<"observed-symbol-mismatch">;
|
|
4554
|
+
}, "strip", z.ZodTypeAny, {
|
|
4555
|
+
type: "observed-symbol-mismatch";
|
|
4556
|
+
source: string;
|
|
4557
|
+
target: string;
|
|
4558
|
+
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
4559
|
+
confidence: number;
|
|
4560
|
+
reason: string;
|
|
4561
|
+
errorMessage: string;
|
|
4562
|
+
recommendation: string;
|
|
4563
|
+
mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
|
|
4564
|
+
symbol?: string | undefined;
|
|
4565
|
+
incidentCount?: number | undefined;
|
|
4566
|
+
location?: string | undefined;
|
|
4567
|
+
incidentId?: string | undefined;
|
|
4568
|
+
}, {
|
|
4569
|
+
type: "observed-symbol-mismatch";
|
|
4570
|
+
source: string;
|
|
4571
|
+
target: string;
|
|
4572
|
+
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
4573
|
+
confidence: number;
|
|
4574
|
+
reason: string;
|
|
4575
|
+
errorMessage: string;
|
|
4576
|
+
recommendation: string;
|
|
4577
|
+
mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
|
|
4578
|
+
symbol?: string | undefined;
|
|
4579
|
+
incidentCount?: number | undefined;
|
|
4580
|
+
location?: string | undefined;
|
|
4581
|
+
incidentId?: string | undefined;
|
|
4582
|
+
}>;
|
|
4583
|
+
type ObservedSymbolMismatchDivergence = z.infer<typeof ObservedSymbolMismatchDivergenceSchema>;
|
|
4502
4584
|
declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
4503
4585
|
edgeType: z.ZodOptional<z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS", "INHERITS", "IMPLEMENTS", "REFERENCES"]>>;
|
|
4504
4586
|
extracted: z.ZodOptional<z.ZodObject<{
|
|
@@ -4516,18 +4598,21 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4516
4598
|
snippet: z.ZodOptional<z.ZodString>;
|
|
4517
4599
|
method: z.ZodOptional<z.ZodString>;
|
|
4518
4600
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
4601
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
4519
4602
|
}, "strip", z.ZodTypeAny, {
|
|
4520
4603
|
file: string;
|
|
4521
4604
|
line?: number | undefined;
|
|
4522
4605
|
snippet?: string | undefined;
|
|
4523
4606
|
method?: string | undefined;
|
|
4524
4607
|
pathTemplate?: string | undefined;
|
|
4608
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4525
4609
|
}, {
|
|
4526
4610
|
file: string;
|
|
4527
4611
|
line?: number | undefined;
|
|
4528
4612
|
snippet?: string | undefined;
|
|
4529
4613
|
method?: string | undefined;
|
|
4530
4614
|
pathTemplate?: string | undefined;
|
|
4615
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4531
4616
|
}>>;
|
|
4532
4617
|
signal: z.ZodOptional<z.ZodObject<{
|
|
4533
4618
|
spanCount: z.ZodNumber;
|
|
@@ -4597,6 +4682,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4597
4682
|
snippet?: string | undefined;
|
|
4598
4683
|
method?: string | undefined;
|
|
4599
4684
|
pathTemplate?: string | undefined;
|
|
4685
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4600
4686
|
} | undefined;
|
|
4601
4687
|
signal?: {
|
|
4602
4688
|
spanCount: number;
|
|
@@ -4628,6 +4714,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4628
4714
|
snippet?: string | undefined;
|
|
4629
4715
|
method?: string | undefined;
|
|
4630
4716
|
pathTemplate?: string | undefined;
|
|
4717
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4631
4718
|
} | undefined;
|
|
4632
4719
|
signal?: {
|
|
4633
4720
|
spanCount: number;
|
|
@@ -4676,6 +4763,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4676
4763
|
snippet?: string | undefined;
|
|
4677
4764
|
method?: string | undefined;
|
|
4678
4765
|
pathTemplate?: string | undefined;
|
|
4766
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4679
4767
|
} | undefined;
|
|
4680
4768
|
signal?: {
|
|
4681
4769
|
spanCount: number;
|
|
@@ -4718,6 +4806,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4718
4806
|
snippet?: string | undefined;
|
|
4719
4807
|
method?: string | undefined;
|
|
4720
4808
|
pathTemplate?: string | undefined;
|
|
4809
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4721
4810
|
} | undefined;
|
|
4722
4811
|
signal?: {
|
|
4723
4812
|
spanCount: number;
|
|
@@ -4754,18 +4843,21 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4754
4843
|
snippet: z.ZodOptional<z.ZodString>;
|
|
4755
4844
|
method: z.ZodOptional<z.ZodString>;
|
|
4756
4845
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
4846
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
4757
4847
|
}, "strip", z.ZodTypeAny, {
|
|
4758
4848
|
file: string;
|
|
4759
4849
|
line?: number | undefined;
|
|
4760
4850
|
snippet?: string | undefined;
|
|
4761
4851
|
method?: string | undefined;
|
|
4762
4852
|
pathTemplate?: string | undefined;
|
|
4853
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4763
4854
|
}, {
|
|
4764
4855
|
file: string;
|
|
4765
4856
|
line?: number | undefined;
|
|
4766
4857
|
snippet?: string | undefined;
|
|
4767
4858
|
method?: string | undefined;
|
|
4768
4859
|
pathTemplate?: string | undefined;
|
|
4860
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4769
4861
|
}>>;
|
|
4770
4862
|
signal: z.ZodOptional<z.ZodObject<{
|
|
4771
4863
|
spanCount: z.ZodNumber;
|
|
@@ -4835,6 +4927,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4835
4927
|
snippet?: string | undefined;
|
|
4836
4928
|
method?: string | undefined;
|
|
4837
4929
|
pathTemplate?: string | undefined;
|
|
4930
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4838
4931
|
} | undefined;
|
|
4839
4932
|
signal?: {
|
|
4840
4933
|
spanCount: number;
|
|
@@ -4866,6 +4959,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4866
4959
|
snippet?: string | undefined;
|
|
4867
4960
|
method?: string | undefined;
|
|
4868
4961
|
pathTemplate?: string | undefined;
|
|
4962
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4869
4963
|
} | undefined;
|
|
4870
4964
|
signal?: {
|
|
4871
4965
|
spanCount: number;
|
|
@@ -4914,6 +5008,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4914
5008
|
snippet?: string | undefined;
|
|
4915
5009
|
method?: string | undefined;
|
|
4916
5010
|
pathTemplate?: string | undefined;
|
|
5011
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4917
5012
|
} | undefined;
|
|
4918
5013
|
signal?: {
|
|
4919
5014
|
spanCount: number;
|
|
@@ -4956,6 +5051,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4956
5051
|
snippet?: string | undefined;
|
|
4957
5052
|
method?: string | undefined;
|
|
4958
5053
|
pathTemplate?: string | undefined;
|
|
5054
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4959
5055
|
} | undefined;
|
|
4960
5056
|
signal?: {
|
|
4961
5057
|
spanCount: number;
|
|
@@ -5067,18 +5163,21 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5067
5163
|
snippet: z.ZodOptional<z.ZodString>;
|
|
5068
5164
|
method: z.ZodOptional<z.ZodString>;
|
|
5069
5165
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
5166
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
5070
5167
|
}, "strip", z.ZodTypeAny, {
|
|
5071
5168
|
file: string;
|
|
5072
5169
|
line?: number | undefined;
|
|
5073
5170
|
snippet?: string | undefined;
|
|
5074
5171
|
method?: string | undefined;
|
|
5075
5172
|
pathTemplate?: string | undefined;
|
|
5173
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5076
5174
|
}, {
|
|
5077
5175
|
file: string;
|
|
5078
5176
|
line?: number | undefined;
|
|
5079
5177
|
snippet?: string | undefined;
|
|
5080
5178
|
method?: string | undefined;
|
|
5081
5179
|
pathTemplate?: string | undefined;
|
|
5180
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5082
5181
|
}>>;
|
|
5083
5182
|
signal: z.ZodOptional<z.ZodObject<{
|
|
5084
5183
|
spanCount: z.ZodNumber;
|
|
@@ -5148,6 +5247,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5148
5247
|
snippet?: string | undefined;
|
|
5149
5248
|
method?: string | undefined;
|
|
5150
5249
|
pathTemplate?: string | undefined;
|
|
5250
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5151
5251
|
} | undefined;
|
|
5152
5252
|
signal?: {
|
|
5153
5253
|
spanCount: number;
|
|
@@ -5179,6 +5279,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5179
5279
|
snippet?: string | undefined;
|
|
5180
5280
|
method?: string | undefined;
|
|
5181
5281
|
pathTemplate?: string | undefined;
|
|
5282
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5182
5283
|
} | undefined;
|
|
5183
5284
|
signal?: {
|
|
5184
5285
|
spanCount: number;
|
|
@@ -5230,6 +5331,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5230
5331
|
snippet?: string | undefined;
|
|
5231
5332
|
method?: string | undefined;
|
|
5232
5333
|
pathTemplate?: string | undefined;
|
|
5334
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5233
5335
|
} | undefined;
|
|
5234
5336
|
signal?: {
|
|
5235
5337
|
spanCount: number;
|
|
@@ -5276,6 +5378,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5276
5378
|
snippet?: string | undefined;
|
|
5277
5379
|
method?: string | undefined;
|
|
5278
5380
|
pathTemplate?: string | undefined;
|
|
5381
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5279
5382
|
} | undefined;
|
|
5280
5383
|
signal?: {
|
|
5281
5384
|
spanCount: number;
|
|
@@ -5294,6 +5397,48 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5294
5397
|
grain?: "file" | "service" | undefined;
|
|
5295
5398
|
};
|
|
5296
5399
|
recommendation: string;
|
|
5400
|
+
}>, z.ZodObject<{
|
|
5401
|
+
mismatchKind: z.ZodEnum<["missing-attribute", "missing-field", "missing-property", "missing-column", "undefined-method"]>;
|
|
5402
|
+
symbol: z.ZodOptional<z.ZodString>;
|
|
5403
|
+
location: z.ZodOptional<z.ZodString>;
|
|
5404
|
+
provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
|
|
5405
|
+
incidentId: z.ZodOptional<z.ZodString>;
|
|
5406
|
+
errorMessage: z.ZodString;
|
|
5407
|
+
incidentCount: z.ZodOptional<z.ZodNumber>;
|
|
5408
|
+
source: z.ZodString;
|
|
5409
|
+
target: z.ZodString;
|
|
5410
|
+
confidence: z.ZodNumber;
|
|
5411
|
+
reason: z.ZodString;
|
|
5412
|
+
recommendation: z.ZodString;
|
|
5413
|
+
type: z.ZodLiteral<"observed-symbol-mismatch">;
|
|
5414
|
+
}, "strip", z.ZodTypeAny, {
|
|
5415
|
+
type: "observed-symbol-mismatch";
|
|
5416
|
+
source: string;
|
|
5417
|
+
target: string;
|
|
5418
|
+
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
5419
|
+
confidence: number;
|
|
5420
|
+
reason: string;
|
|
5421
|
+
errorMessage: string;
|
|
5422
|
+
recommendation: string;
|
|
5423
|
+
mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
|
|
5424
|
+
symbol?: string | undefined;
|
|
5425
|
+
incidentCount?: number | undefined;
|
|
5426
|
+
location?: string | undefined;
|
|
5427
|
+
incidentId?: string | undefined;
|
|
5428
|
+
}, {
|
|
5429
|
+
type: "observed-symbol-mismatch";
|
|
5430
|
+
source: string;
|
|
5431
|
+
target: string;
|
|
5432
|
+
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
5433
|
+
confidence: number;
|
|
5434
|
+
reason: string;
|
|
5435
|
+
errorMessage: string;
|
|
5436
|
+
recommendation: string;
|
|
5437
|
+
mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
|
|
5438
|
+
symbol?: string | undefined;
|
|
5439
|
+
incidentCount?: number | undefined;
|
|
5440
|
+
location?: string | undefined;
|
|
5441
|
+
incidentId?: string | undefined;
|
|
5297
5442
|
}>]>;
|
|
5298
5443
|
type Divergence = z.infer<typeof DivergenceSchema>;
|
|
5299
5444
|
declare const DivergenceResultSchema: z.ZodObject<{
|
|
@@ -5314,18 +5459,21 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5314
5459
|
snippet: z.ZodOptional<z.ZodString>;
|
|
5315
5460
|
method: z.ZodOptional<z.ZodString>;
|
|
5316
5461
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
5462
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
5317
5463
|
}, "strip", z.ZodTypeAny, {
|
|
5318
5464
|
file: string;
|
|
5319
5465
|
line?: number | undefined;
|
|
5320
5466
|
snippet?: string | undefined;
|
|
5321
5467
|
method?: string | undefined;
|
|
5322
5468
|
pathTemplate?: string | undefined;
|
|
5469
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5323
5470
|
}, {
|
|
5324
5471
|
file: string;
|
|
5325
5472
|
line?: number | undefined;
|
|
5326
5473
|
snippet?: string | undefined;
|
|
5327
5474
|
method?: string | undefined;
|
|
5328
5475
|
pathTemplate?: string | undefined;
|
|
5476
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5329
5477
|
}>>;
|
|
5330
5478
|
signal: z.ZodOptional<z.ZodObject<{
|
|
5331
5479
|
spanCount: z.ZodNumber;
|
|
@@ -5395,6 +5543,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5395
5543
|
snippet?: string | undefined;
|
|
5396
5544
|
method?: string | undefined;
|
|
5397
5545
|
pathTemplate?: string | undefined;
|
|
5546
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5398
5547
|
} | undefined;
|
|
5399
5548
|
signal?: {
|
|
5400
5549
|
spanCount: number;
|
|
@@ -5426,6 +5575,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5426
5575
|
snippet?: string | undefined;
|
|
5427
5576
|
method?: string | undefined;
|
|
5428
5577
|
pathTemplate?: string | undefined;
|
|
5578
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5429
5579
|
} | undefined;
|
|
5430
5580
|
signal?: {
|
|
5431
5581
|
spanCount: number;
|
|
@@ -5474,6 +5624,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5474
5624
|
snippet?: string | undefined;
|
|
5475
5625
|
method?: string | undefined;
|
|
5476
5626
|
pathTemplate?: string | undefined;
|
|
5627
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5477
5628
|
} | undefined;
|
|
5478
5629
|
signal?: {
|
|
5479
5630
|
spanCount: number;
|
|
@@ -5516,6 +5667,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5516
5667
|
snippet?: string | undefined;
|
|
5517
5668
|
method?: string | undefined;
|
|
5518
5669
|
pathTemplate?: string | undefined;
|
|
5670
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5519
5671
|
} | undefined;
|
|
5520
5672
|
signal?: {
|
|
5521
5673
|
spanCount: number;
|
|
@@ -5552,18 +5704,21 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5552
5704
|
snippet: z.ZodOptional<z.ZodString>;
|
|
5553
5705
|
method: z.ZodOptional<z.ZodString>;
|
|
5554
5706
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
5707
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
5555
5708
|
}, "strip", z.ZodTypeAny, {
|
|
5556
5709
|
file: string;
|
|
5557
5710
|
line?: number | undefined;
|
|
5558
5711
|
snippet?: string | undefined;
|
|
5559
5712
|
method?: string | undefined;
|
|
5560
5713
|
pathTemplate?: string | undefined;
|
|
5714
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5561
5715
|
}, {
|
|
5562
5716
|
file: string;
|
|
5563
5717
|
line?: number | undefined;
|
|
5564
5718
|
snippet?: string | undefined;
|
|
5565
5719
|
method?: string | undefined;
|
|
5566
5720
|
pathTemplate?: string | undefined;
|
|
5721
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5567
5722
|
}>>;
|
|
5568
5723
|
signal: z.ZodOptional<z.ZodObject<{
|
|
5569
5724
|
spanCount: z.ZodNumber;
|
|
@@ -5633,6 +5788,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5633
5788
|
snippet?: string | undefined;
|
|
5634
5789
|
method?: string | undefined;
|
|
5635
5790
|
pathTemplate?: string | undefined;
|
|
5791
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5636
5792
|
} | undefined;
|
|
5637
5793
|
signal?: {
|
|
5638
5794
|
spanCount: number;
|
|
@@ -5664,6 +5820,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5664
5820
|
snippet?: string | undefined;
|
|
5665
5821
|
method?: string | undefined;
|
|
5666
5822
|
pathTemplate?: string | undefined;
|
|
5823
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5667
5824
|
} | undefined;
|
|
5668
5825
|
signal?: {
|
|
5669
5826
|
spanCount: number;
|
|
@@ -5712,6 +5869,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5712
5869
|
snippet?: string | undefined;
|
|
5713
5870
|
method?: string | undefined;
|
|
5714
5871
|
pathTemplate?: string | undefined;
|
|
5872
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5715
5873
|
} | undefined;
|
|
5716
5874
|
signal?: {
|
|
5717
5875
|
spanCount: number;
|
|
@@ -5754,6 +5912,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5754
5912
|
snippet?: string | undefined;
|
|
5755
5913
|
method?: string | undefined;
|
|
5756
5914
|
pathTemplate?: string | undefined;
|
|
5915
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5757
5916
|
} | undefined;
|
|
5758
5917
|
signal?: {
|
|
5759
5918
|
spanCount: number;
|
|
@@ -5865,18 +6024,21 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5865
6024
|
snippet: z.ZodOptional<z.ZodString>;
|
|
5866
6025
|
method: z.ZodOptional<z.ZodString>;
|
|
5867
6026
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
6027
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
5868
6028
|
}, "strip", z.ZodTypeAny, {
|
|
5869
6029
|
file: string;
|
|
5870
6030
|
line?: number | undefined;
|
|
5871
6031
|
snippet?: string | undefined;
|
|
5872
6032
|
method?: string | undefined;
|
|
5873
6033
|
pathTemplate?: string | undefined;
|
|
6034
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5874
6035
|
}, {
|
|
5875
6036
|
file: string;
|
|
5876
6037
|
line?: number | undefined;
|
|
5877
6038
|
snippet?: string | undefined;
|
|
5878
6039
|
method?: string | undefined;
|
|
5879
6040
|
pathTemplate?: string | undefined;
|
|
6041
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5880
6042
|
}>>;
|
|
5881
6043
|
signal: z.ZodOptional<z.ZodObject<{
|
|
5882
6044
|
spanCount: z.ZodNumber;
|
|
@@ -5946,6 +6108,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5946
6108
|
snippet?: string | undefined;
|
|
5947
6109
|
method?: string | undefined;
|
|
5948
6110
|
pathTemplate?: string | undefined;
|
|
6111
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5949
6112
|
} | undefined;
|
|
5950
6113
|
signal?: {
|
|
5951
6114
|
spanCount: number;
|
|
@@ -5977,6 +6140,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5977
6140
|
snippet?: string | undefined;
|
|
5978
6141
|
method?: string | undefined;
|
|
5979
6142
|
pathTemplate?: string | undefined;
|
|
6143
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5980
6144
|
} | undefined;
|
|
5981
6145
|
signal?: {
|
|
5982
6146
|
spanCount: number;
|
|
@@ -6028,6 +6192,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6028
6192
|
snippet?: string | undefined;
|
|
6029
6193
|
method?: string | undefined;
|
|
6030
6194
|
pathTemplate?: string | undefined;
|
|
6195
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6031
6196
|
} | undefined;
|
|
6032
6197
|
signal?: {
|
|
6033
6198
|
spanCount: number;
|
|
@@ -6074,6 +6239,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6074
6239
|
snippet?: string | undefined;
|
|
6075
6240
|
method?: string | undefined;
|
|
6076
6241
|
pathTemplate?: string | undefined;
|
|
6242
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6077
6243
|
} | undefined;
|
|
6078
6244
|
signal?: {
|
|
6079
6245
|
spanCount: number;
|
|
@@ -6092,6 +6258,48 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6092
6258
|
grain?: "file" | "service" | undefined;
|
|
6093
6259
|
};
|
|
6094
6260
|
recommendation: string;
|
|
6261
|
+
}>, z.ZodObject<{
|
|
6262
|
+
mismatchKind: z.ZodEnum<["missing-attribute", "missing-field", "missing-property", "missing-column", "undefined-method"]>;
|
|
6263
|
+
symbol: z.ZodOptional<z.ZodString>;
|
|
6264
|
+
location: z.ZodOptional<z.ZodString>;
|
|
6265
|
+
provenance: z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>;
|
|
6266
|
+
incidentId: z.ZodOptional<z.ZodString>;
|
|
6267
|
+
errorMessage: z.ZodString;
|
|
6268
|
+
incidentCount: z.ZodOptional<z.ZodNumber>;
|
|
6269
|
+
source: z.ZodString;
|
|
6270
|
+
target: z.ZodString;
|
|
6271
|
+
confidence: z.ZodNumber;
|
|
6272
|
+
reason: z.ZodString;
|
|
6273
|
+
recommendation: z.ZodString;
|
|
6274
|
+
type: z.ZodLiteral<"observed-symbol-mismatch">;
|
|
6275
|
+
}, "strip", z.ZodTypeAny, {
|
|
6276
|
+
type: "observed-symbol-mismatch";
|
|
6277
|
+
source: string;
|
|
6278
|
+
target: string;
|
|
6279
|
+
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
6280
|
+
confidence: number;
|
|
6281
|
+
reason: string;
|
|
6282
|
+
errorMessage: string;
|
|
6283
|
+
recommendation: string;
|
|
6284
|
+
mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
|
|
6285
|
+
symbol?: string | undefined;
|
|
6286
|
+
incidentCount?: number | undefined;
|
|
6287
|
+
location?: string | undefined;
|
|
6288
|
+
incidentId?: string | undefined;
|
|
6289
|
+
}, {
|
|
6290
|
+
type: "observed-symbol-mismatch";
|
|
6291
|
+
source: string;
|
|
6292
|
+
target: string;
|
|
6293
|
+
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
6294
|
+
confidence: number;
|
|
6295
|
+
reason: string;
|
|
6296
|
+
errorMessage: string;
|
|
6297
|
+
recommendation: string;
|
|
6298
|
+
mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
|
|
6299
|
+
symbol?: string | undefined;
|
|
6300
|
+
incidentCount?: number | undefined;
|
|
6301
|
+
location?: string | undefined;
|
|
6302
|
+
incidentId?: string | undefined;
|
|
6095
6303
|
}>]>, "many">;
|
|
6096
6304
|
totalAffected: z.ZodNumber;
|
|
6097
6305
|
computedAt: z.ZodString;
|
|
@@ -6120,6 +6328,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6120
6328
|
snippet?: string | undefined;
|
|
6121
6329
|
method?: string | undefined;
|
|
6122
6330
|
pathTemplate?: string | undefined;
|
|
6331
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6123
6332
|
} | undefined;
|
|
6124
6333
|
signal?: {
|
|
6125
6334
|
spanCount: number;
|
|
@@ -6162,6 +6371,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6162
6371
|
snippet?: string | undefined;
|
|
6163
6372
|
method?: string | undefined;
|
|
6164
6373
|
pathTemplate?: string | undefined;
|
|
6374
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6165
6375
|
} | undefined;
|
|
6166
6376
|
signal?: {
|
|
6167
6377
|
spanCount: number;
|
|
@@ -6228,6 +6438,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6228
6438
|
snippet?: string | undefined;
|
|
6229
6439
|
method?: string | undefined;
|
|
6230
6440
|
pathTemplate?: string | undefined;
|
|
6441
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6231
6442
|
} | undefined;
|
|
6232
6443
|
signal?: {
|
|
6233
6444
|
spanCount: number;
|
|
@@ -6246,6 +6457,20 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6246
6457
|
grain?: "file" | "service" | undefined;
|
|
6247
6458
|
};
|
|
6248
6459
|
recommendation: string;
|
|
6460
|
+
} | {
|
|
6461
|
+
type: "observed-symbol-mismatch";
|
|
6462
|
+
source: string;
|
|
6463
|
+
target: string;
|
|
6464
|
+
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
6465
|
+
confidence: number;
|
|
6466
|
+
reason: string;
|
|
6467
|
+
errorMessage: string;
|
|
6468
|
+
recommendation: string;
|
|
6469
|
+
mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
|
|
6470
|
+
symbol?: string | undefined;
|
|
6471
|
+
incidentCount?: number | undefined;
|
|
6472
|
+
location?: string | undefined;
|
|
6473
|
+
incidentId?: string | undefined;
|
|
6249
6474
|
})[];
|
|
6250
6475
|
computedAt: string;
|
|
6251
6476
|
}, {
|
|
@@ -6273,6 +6498,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6273
6498
|
snippet?: string | undefined;
|
|
6274
6499
|
method?: string | undefined;
|
|
6275
6500
|
pathTemplate?: string | undefined;
|
|
6501
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6276
6502
|
} | undefined;
|
|
6277
6503
|
signal?: {
|
|
6278
6504
|
spanCount: number;
|
|
@@ -6315,6 +6541,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6315
6541
|
snippet?: string | undefined;
|
|
6316
6542
|
method?: string | undefined;
|
|
6317
6543
|
pathTemplate?: string | undefined;
|
|
6544
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6318
6545
|
} | undefined;
|
|
6319
6546
|
signal?: {
|
|
6320
6547
|
spanCount: number;
|
|
@@ -6381,6 +6608,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6381
6608
|
snippet?: string | undefined;
|
|
6382
6609
|
method?: string | undefined;
|
|
6383
6610
|
pathTemplate?: string | undefined;
|
|
6611
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6384
6612
|
} | undefined;
|
|
6385
6613
|
signal?: {
|
|
6386
6614
|
spanCount: number;
|
|
@@ -6399,11 +6627,25 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6399
6627
|
grain?: "file" | "service" | undefined;
|
|
6400
6628
|
};
|
|
6401
6629
|
recommendation: string;
|
|
6630
|
+
} | {
|
|
6631
|
+
type: "observed-symbol-mismatch";
|
|
6632
|
+
source: string;
|
|
6633
|
+
target: string;
|
|
6634
|
+
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
6635
|
+
confidence: number;
|
|
6636
|
+
reason: string;
|
|
6637
|
+
errorMessage: string;
|
|
6638
|
+
recommendation: string;
|
|
6639
|
+
mismatchKind: "missing-attribute" | "missing-field" | "missing-property" | "missing-column" | "undefined-method";
|
|
6640
|
+
symbol?: string | undefined;
|
|
6641
|
+
incidentCount?: number | undefined;
|
|
6642
|
+
location?: string | undefined;
|
|
6643
|
+
incidentId?: string | undefined;
|
|
6402
6644
|
})[];
|
|
6403
6645
|
computedAt: string;
|
|
6404
6646
|
}>;
|
|
6405
6647
|
type DivergenceResult = z.infer<typeof DivergenceResultSchema>;
|
|
6406
|
-
declare const DivergenceTypeSchema: z.ZodEnum<["missing-observed", "missing-extracted", "version-mismatch", "host-mismatch", "compat-violation"]>;
|
|
6648
|
+
declare const DivergenceTypeSchema: z.ZodEnum<["missing-observed", "missing-extracted", "version-mismatch", "host-mismatch", "compat-violation", "observed-symbol-mismatch"]>;
|
|
6407
6649
|
type DivergenceType = z.infer<typeof DivergenceTypeSchema>;
|
|
6408
6650
|
|
|
6409
6651
|
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"];
|
|
@@ -7615,18 +7857,21 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7615
7857
|
snippet: z.ZodOptional<z.ZodString>;
|
|
7616
7858
|
method: z.ZodOptional<z.ZodString>;
|
|
7617
7859
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
7860
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
7618
7861
|
}, "strip", z.ZodTypeAny, {
|
|
7619
7862
|
file: string;
|
|
7620
7863
|
line?: number | undefined;
|
|
7621
7864
|
snippet?: string | undefined;
|
|
7622
7865
|
method?: string | undefined;
|
|
7623
7866
|
pathTemplate?: string | undefined;
|
|
7867
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7624
7868
|
}, {
|
|
7625
7869
|
file: string;
|
|
7626
7870
|
line?: number | undefined;
|
|
7627
7871
|
snippet?: string | undefined;
|
|
7628
7872
|
method?: string | undefined;
|
|
7629
7873
|
pathTemplate?: string | undefined;
|
|
7874
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7630
7875
|
}>>;
|
|
7631
7876
|
signal: z.ZodOptional<z.ZodObject<{
|
|
7632
7877
|
spanCount: z.ZodNumber;
|
|
@@ -7696,6 +7941,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7696
7941
|
snippet?: string | undefined;
|
|
7697
7942
|
method?: string | undefined;
|
|
7698
7943
|
pathTemplate?: string | undefined;
|
|
7944
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7699
7945
|
} | undefined;
|
|
7700
7946
|
signal?: {
|
|
7701
7947
|
spanCount: number;
|
|
@@ -7727,6 +7973,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7727
7973
|
snippet?: string | undefined;
|
|
7728
7974
|
method?: string | undefined;
|
|
7729
7975
|
pathTemplate?: string | undefined;
|
|
7976
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7730
7977
|
} | undefined;
|
|
7731
7978
|
signal?: {
|
|
7732
7979
|
spanCount: number;
|
|
@@ -7759,18 +8006,21 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7759
8006
|
snippet: z.ZodOptional<z.ZodString>;
|
|
7760
8007
|
method: z.ZodOptional<z.ZodString>;
|
|
7761
8008
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
8009
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
7762
8010
|
}, "strip", z.ZodTypeAny, {
|
|
7763
8011
|
file: string;
|
|
7764
8012
|
line?: number | undefined;
|
|
7765
8013
|
snippet?: string | undefined;
|
|
7766
8014
|
method?: string | undefined;
|
|
7767
8015
|
pathTemplate?: string | undefined;
|
|
8016
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7768
8017
|
}, {
|
|
7769
8018
|
file: string;
|
|
7770
8019
|
line?: number | undefined;
|
|
7771
8020
|
snippet?: string | undefined;
|
|
7772
8021
|
method?: string | undefined;
|
|
7773
8022
|
pathTemplate?: string | undefined;
|
|
8023
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7774
8024
|
}>>;
|
|
7775
8025
|
signal: z.ZodOptional<z.ZodObject<{
|
|
7776
8026
|
spanCount: z.ZodNumber;
|
|
@@ -7840,6 +8090,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7840
8090
|
snippet?: string | undefined;
|
|
7841
8091
|
method?: string | undefined;
|
|
7842
8092
|
pathTemplate?: string | undefined;
|
|
8093
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7843
8094
|
} | undefined;
|
|
7844
8095
|
signal?: {
|
|
7845
8096
|
spanCount: number;
|
|
@@ -7871,6 +8122,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7871
8122
|
snippet?: string | undefined;
|
|
7872
8123
|
method?: string | undefined;
|
|
7873
8124
|
pathTemplate?: string | undefined;
|
|
8125
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7874
8126
|
} | undefined;
|
|
7875
8127
|
signal?: {
|
|
7876
8128
|
spanCount: number;
|
|
@@ -7904,6 +8156,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7904
8156
|
snippet?: string | undefined;
|
|
7905
8157
|
method?: string | undefined;
|
|
7906
8158
|
pathTemplate?: string | undefined;
|
|
8159
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7907
8160
|
} | undefined;
|
|
7908
8161
|
signal?: {
|
|
7909
8162
|
spanCount: number;
|
|
@@ -7936,6 +8189,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7936
8189
|
snippet?: string | undefined;
|
|
7937
8190
|
method?: string | undefined;
|
|
7938
8191
|
pathTemplate?: string | undefined;
|
|
8192
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7939
8193
|
} | undefined;
|
|
7940
8194
|
signal?: {
|
|
7941
8195
|
spanCount: number;
|
|
@@ -7969,6 +8223,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7969
8223
|
snippet?: string | undefined;
|
|
7970
8224
|
method?: string | undefined;
|
|
7971
8225
|
pathTemplate?: string | undefined;
|
|
8226
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7972
8227
|
} | undefined;
|
|
7973
8228
|
signal?: {
|
|
7974
8229
|
spanCount: number;
|
|
@@ -8001,6 +8256,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
8001
8256
|
snippet?: string | undefined;
|
|
8002
8257
|
method?: string | undefined;
|
|
8003
8258
|
pathTemplate?: string | undefined;
|
|
8259
|
+
hostSource?: "literal" | "config" | undefined;
|
|
8004
8260
|
} | undefined;
|
|
8005
8261
|
signal?: {
|
|
8006
8262
|
spanCount: number;
|
|
@@ -9012,18 +9268,21 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
9012
9268
|
snippet: z.ZodOptional<z.ZodString>;
|
|
9013
9269
|
method: z.ZodOptional<z.ZodString>;
|
|
9014
9270
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
9271
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
9015
9272
|
}, "strip", z.ZodTypeAny, {
|
|
9016
9273
|
file: string;
|
|
9017
9274
|
line?: number | undefined;
|
|
9018
9275
|
snippet?: string | undefined;
|
|
9019
9276
|
method?: string | undefined;
|
|
9020
9277
|
pathTemplate?: string | undefined;
|
|
9278
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9021
9279
|
}, {
|
|
9022
9280
|
file: string;
|
|
9023
9281
|
line?: number | undefined;
|
|
9024
9282
|
snippet?: string | undefined;
|
|
9025
9283
|
method?: string | undefined;
|
|
9026
9284
|
pathTemplate?: string | undefined;
|
|
9285
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9027
9286
|
}>>;
|
|
9028
9287
|
signal: z.ZodOptional<z.ZodObject<{
|
|
9029
9288
|
spanCount: z.ZodNumber;
|
|
@@ -9093,6 +9352,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
9093
9352
|
snippet?: string | undefined;
|
|
9094
9353
|
method?: string | undefined;
|
|
9095
9354
|
pathTemplate?: string | undefined;
|
|
9355
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9096
9356
|
} | undefined;
|
|
9097
9357
|
signal?: {
|
|
9098
9358
|
spanCount: number;
|
|
@@ -9124,6 +9384,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
9124
9384
|
snippet?: string | undefined;
|
|
9125
9385
|
method?: string | undefined;
|
|
9126
9386
|
pathTemplate?: string | undefined;
|
|
9387
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9127
9388
|
} | undefined;
|
|
9128
9389
|
signal?: {
|
|
9129
9390
|
spanCount: number;
|
|
@@ -9315,6 +9576,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
9315
9576
|
snippet?: string | undefined;
|
|
9316
9577
|
method?: string | undefined;
|
|
9317
9578
|
pathTemplate?: string | undefined;
|
|
9579
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9318
9580
|
} | undefined;
|
|
9319
9581
|
signal?: {
|
|
9320
9582
|
spanCount: number;
|
|
@@ -9506,6 +9768,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
9506
9768
|
snippet?: string | undefined;
|
|
9507
9769
|
method?: string | undefined;
|
|
9508
9770
|
pathTemplate?: string | undefined;
|
|
9771
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9509
9772
|
} | undefined;
|
|
9510
9773
|
signal?: {
|
|
9511
9774
|
spanCount: number;
|
|
@@ -10114,18 +10377,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10114
10377
|
snippet: z.ZodOptional<z.ZodString>;
|
|
10115
10378
|
method: z.ZodOptional<z.ZodString>;
|
|
10116
10379
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
10380
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
10117
10381
|
}, "strip", z.ZodTypeAny, {
|
|
10118
10382
|
file: string;
|
|
10119
10383
|
line?: number | undefined;
|
|
10120
10384
|
snippet?: string | undefined;
|
|
10121
10385
|
method?: string | undefined;
|
|
10122
10386
|
pathTemplate?: string | undefined;
|
|
10387
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10123
10388
|
}, {
|
|
10124
10389
|
file: string;
|
|
10125
10390
|
line?: number | undefined;
|
|
10126
10391
|
snippet?: string | undefined;
|
|
10127
10392
|
method?: string | undefined;
|
|
10128
10393
|
pathTemplate?: string | undefined;
|
|
10394
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10129
10395
|
}>>;
|
|
10130
10396
|
signal: z.ZodOptional<z.ZodObject<{
|
|
10131
10397
|
spanCount: z.ZodNumber;
|
|
@@ -10195,6 +10461,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10195
10461
|
snippet?: string | undefined;
|
|
10196
10462
|
method?: string | undefined;
|
|
10197
10463
|
pathTemplate?: string | undefined;
|
|
10464
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10198
10465
|
} | undefined;
|
|
10199
10466
|
signal?: {
|
|
10200
10467
|
spanCount: number;
|
|
@@ -10226,6 +10493,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10226
10493
|
snippet?: string | undefined;
|
|
10227
10494
|
method?: string | undefined;
|
|
10228
10495
|
pathTemplate?: string | undefined;
|
|
10496
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10229
10497
|
} | undefined;
|
|
10230
10498
|
signal?: {
|
|
10231
10499
|
spanCount: number;
|
|
@@ -10417,6 +10685,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10417
10685
|
snippet?: string | undefined;
|
|
10418
10686
|
method?: string | undefined;
|
|
10419
10687
|
pathTemplate?: string | undefined;
|
|
10688
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10420
10689
|
} | undefined;
|
|
10421
10690
|
signal?: {
|
|
10422
10691
|
spanCount: number;
|
|
@@ -10608,6 +10877,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10608
10877
|
snippet?: string | undefined;
|
|
10609
10878
|
method?: string | undefined;
|
|
10610
10879
|
pathTemplate?: string | undefined;
|
|
10880
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10611
10881
|
} | undefined;
|
|
10612
10882
|
signal?: {
|
|
10613
10883
|
spanCount: number;
|
|
@@ -11200,18 +11470,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11200
11470
|
snippet: z.ZodOptional<z.ZodString>;
|
|
11201
11471
|
method: z.ZodOptional<z.ZodString>;
|
|
11202
11472
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
11473
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
11203
11474
|
}, "strip", z.ZodTypeAny, {
|
|
11204
11475
|
file: string;
|
|
11205
11476
|
line?: number | undefined;
|
|
11206
11477
|
snippet?: string | undefined;
|
|
11207
11478
|
method?: string | undefined;
|
|
11208
11479
|
pathTemplate?: string | undefined;
|
|
11480
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11209
11481
|
}, {
|
|
11210
11482
|
file: string;
|
|
11211
11483
|
line?: number | undefined;
|
|
11212
11484
|
snippet?: string | undefined;
|
|
11213
11485
|
method?: string | undefined;
|
|
11214
11486
|
pathTemplate?: string | undefined;
|
|
11487
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11215
11488
|
}>>;
|
|
11216
11489
|
signal: z.ZodOptional<z.ZodObject<{
|
|
11217
11490
|
spanCount: z.ZodNumber;
|
|
@@ -11281,6 +11554,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11281
11554
|
snippet?: string | undefined;
|
|
11282
11555
|
method?: string | undefined;
|
|
11283
11556
|
pathTemplate?: string | undefined;
|
|
11557
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11284
11558
|
} | undefined;
|
|
11285
11559
|
signal?: {
|
|
11286
11560
|
spanCount: number;
|
|
@@ -11312,6 +11586,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11312
11586
|
snippet?: string | undefined;
|
|
11313
11587
|
method?: string | undefined;
|
|
11314
11588
|
pathTemplate?: string | undefined;
|
|
11589
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11315
11590
|
} | undefined;
|
|
11316
11591
|
signal?: {
|
|
11317
11592
|
spanCount: number;
|
|
@@ -11503,6 +11778,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11503
11778
|
snippet?: string | undefined;
|
|
11504
11779
|
method?: string | undefined;
|
|
11505
11780
|
pathTemplate?: string | undefined;
|
|
11781
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11506
11782
|
} | undefined;
|
|
11507
11783
|
signal?: {
|
|
11508
11784
|
spanCount: number;
|
|
@@ -11694,6 +11970,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11694
11970
|
snippet?: string | undefined;
|
|
11695
11971
|
method?: string | undefined;
|
|
11696
11972
|
pathTemplate?: string | undefined;
|
|
11973
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11697
11974
|
} | undefined;
|
|
11698
11975
|
signal?: {
|
|
11699
11976
|
spanCount: number;
|
|
@@ -13485,18 +13762,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13485
13762
|
snippet: z.ZodOptional<z.ZodString>;
|
|
13486
13763
|
method: z.ZodOptional<z.ZodString>;
|
|
13487
13764
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
13765
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
13488
13766
|
}, "strip", z.ZodTypeAny, {
|
|
13489
13767
|
file: string;
|
|
13490
13768
|
line?: number | undefined;
|
|
13491
13769
|
snippet?: string | undefined;
|
|
13492
13770
|
method?: string | undefined;
|
|
13493
13771
|
pathTemplate?: string | undefined;
|
|
13772
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13494
13773
|
}, {
|
|
13495
13774
|
file: string;
|
|
13496
13775
|
line?: number | undefined;
|
|
13497
13776
|
snippet?: string | undefined;
|
|
13498
13777
|
method?: string | undefined;
|
|
13499
13778
|
pathTemplate?: string | undefined;
|
|
13779
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13500
13780
|
}>>;
|
|
13501
13781
|
signal: z.ZodOptional<z.ZodObject<{
|
|
13502
13782
|
spanCount: z.ZodNumber;
|
|
@@ -13566,6 +13846,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13566
13846
|
snippet?: string | undefined;
|
|
13567
13847
|
method?: string | undefined;
|
|
13568
13848
|
pathTemplate?: string | undefined;
|
|
13849
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13569
13850
|
} | undefined;
|
|
13570
13851
|
signal?: {
|
|
13571
13852
|
spanCount: number;
|
|
@@ -13597,6 +13878,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13597
13878
|
snippet?: string | undefined;
|
|
13598
13879
|
method?: string | undefined;
|
|
13599
13880
|
pathTemplate?: string | undefined;
|
|
13881
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13600
13882
|
} | undefined;
|
|
13601
13883
|
signal?: {
|
|
13602
13884
|
spanCount: number;
|
|
@@ -13629,18 +13911,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13629
13911
|
snippet: z.ZodOptional<z.ZodString>;
|
|
13630
13912
|
method: z.ZodOptional<z.ZodString>;
|
|
13631
13913
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
13914
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
13632
13915
|
}, "strip", z.ZodTypeAny, {
|
|
13633
13916
|
file: string;
|
|
13634
13917
|
line?: number | undefined;
|
|
13635
13918
|
snippet?: string | undefined;
|
|
13636
13919
|
method?: string | undefined;
|
|
13637
13920
|
pathTemplate?: string | undefined;
|
|
13921
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13638
13922
|
}, {
|
|
13639
13923
|
file: string;
|
|
13640
13924
|
line?: number | undefined;
|
|
13641
13925
|
snippet?: string | undefined;
|
|
13642
13926
|
method?: string | undefined;
|
|
13643
13927
|
pathTemplate?: string | undefined;
|
|
13928
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13644
13929
|
}>>;
|
|
13645
13930
|
signal: z.ZodOptional<z.ZodObject<{
|
|
13646
13931
|
spanCount: z.ZodNumber;
|
|
@@ -13710,6 +13995,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13710
13995
|
snippet?: string | undefined;
|
|
13711
13996
|
method?: string | undefined;
|
|
13712
13997
|
pathTemplate?: string | undefined;
|
|
13998
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13713
13999
|
} | undefined;
|
|
13714
14000
|
signal?: {
|
|
13715
14001
|
spanCount: number;
|
|
@@ -13741,6 +14027,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13741
14027
|
snippet?: string | undefined;
|
|
13742
14028
|
method?: string | undefined;
|
|
13743
14029
|
pathTemplate?: string | undefined;
|
|
14030
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13744
14031
|
} | undefined;
|
|
13745
14032
|
signal?: {
|
|
13746
14033
|
spanCount: number;
|
|
@@ -13775,6 +14062,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13775
14062
|
snippet?: string | undefined;
|
|
13776
14063
|
method?: string | undefined;
|
|
13777
14064
|
pathTemplate?: string | undefined;
|
|
14065
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13778
14066
|
} | undefined;
|
|
13779
14067
|
signal?: {
|
|
13780
14068
|
spanCount: number;
|
|
@@ -13807,6 +14095,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13807
14095
|
snippet?: string | undefined;
|
|
13808
14096
|
method?: string | undefined;
|
|
13809
14097
|
pathTemplate?: string | undefined;
|
|
14098
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13810
14099
|
} | undefined;
|
|
13811
14100
|
signal?: {
|
|
13812
14101
|
spanCount: number;
|
|
@@ -13841,6 +14130,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13841
14130
|
snippet?: string | undefined;
|
|
13842
14131
|
method?: string | undefined;
|
|
13843
14132
|
pathTemplate?: string | undefined;
|
|
14133
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13844
14134
|
} | undefined;
|
|
13845
14135
|
signal?: {
|
|
13846
14136
|
spanCount: number;
|
|
@@ -13873,6 +14163,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13873
14163
|
snippet?: string | undefined;
|
|
13874
14164
|
method?: string | undefined;
|
|
13875
14165
|
pathTemplate?: string | undefined;
|
|
14166
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13876
14167
|
} | undefined;
|
|
13877
14168
|
signal?: {
|
|
13878
14169
|
spanCount: number;
|
|
@@ -14228,6 +14519,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14228
14519
|
snippet?: string | undefined;
|
|
14229
14520
|
method?: string | undefined;
|
|
14230
14521
|
pathTemplate?: string | undefined;
|
|
14522
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14231
14523
|
} | undefined;
|
|
14232
14524
|
signal?: {
|
|
14233
14525
|
spanCount: number;
|
|
@@ -14260,6 +14552,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14260
14552
|
snippet?: string | undefined;
|
|
14261
14553
|
method?: string | undefined;
|
|
14262
14554
|
pathTemplate?: string | undefined;
|
|
14555
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14263
14556
|
} | undefined;
|
|
14264
14557
|
signal?: {
|
|
14265
14558
|
spanCount: number;
|
|
@@ -14615,6 +14908,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14615
14908
|
snippet?: string | undefined;
|
|
14616
14909
|
method?: string | undefined;
|
|
14617
14910
|
pathTemplate?: string | undefined;
|
|
14911
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14618
14912
|
} | undefined;
|
|
14619
14913
|
signal?: {
|
|
14620
14914
|
spanCount: number;
|
|
@@ -14647,6 +14941,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14647
14941
|
snippet?: string | undefined;
|
|
14648
14942
|
method?: string | undefined;
|
|
14649
14943
|
pathTemplate?: string | undefined;
|
|
14944
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14650
14945
|
} | undefined;
|
|
14651
14946
|
signal?: {
|
|
14652
14947
|
spanCount: number;
|
|
@@ -14847,6 +15142,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14847
15142
|
snippet?: string | undefined;
|
|
14848
15143
|
method?: string | undefined;
|
|
14849
15144
|
pathTemplate?: string | undefined;
|
|
15145
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14850
15146
|
} | undefined;
|
|
14851
15147
|
signal?: {
|
|
14852
15148
|
spanCount: number;
|
|
@@ -15039,6 +15335,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15039
15335
|
snippet?: string | undefined;
|
|
15040
15336
|
method?: string | undefined;
|
|
15041
15337
|
pathTemplate?: string | undefined;
|
|
15338
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15042
15339
|
} | undefined;
|
|
15043
15340
|
signal?: {
|
|
15044
15341
|
spanCount: number;
|
|
@@ -15394,6 +15691,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15394
15691
|
snippet?: string | undefined;
|
|
15395
15692
|
method?: string | undefined;
|
|
15396
15693
|
pathTemplate?: string | undefined;
|
|
15694
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15397
15695
|
} | undefined;
|
|
15398
15696
|
signal?: {
|
|
15399
15697
|
spanCount: number;
|
|
@@ -15426,6 +15724,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15426
15724
|
snippet?: string | undefined;
|
|
15427
15725
|
method?: string | undefined;
|
|
15428
15726
|
pathTemplate?: string | undefined;
|
|
15727
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15429
15728
|
} | undefined;
|
|
15430
15729
|
signal?: {
|
|
15431
15730
|
spanCount: number;
|
|
@@ -15626,6 +15925,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15626
15925
|
snippet?: string | undefined;
|
|
15627
15926
|
method?: string | undefined;
|
|
15628
15927
|
pathTemplate?: string | undefined;
|
|
15928
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15629
15929
|
} | undefined;
|
|
15630
15930
|
signal?: {
|
|
15631
15931
|
spanCount: number;
|
|
@@ -15818,6 +16118,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15818
16118
|
snippet?: string | undefined;
|
|
15819
16119
|
method?: string | undefined;
|
|
15820
16120
|
pathTemplate?: string | undefined;
|
|
16121
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15821
16122
|
} | undefined;
|
|
15822
16123
|
signal?: {
|
|
15823
16124
|
spanCount: number;
|
|
@@ -16173,6 +16474,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
16173
16474
|
snippet?: string | undefined;
|
|
16174
16475
|
method?: string | undefined;
|
|
16175
16476
|
pathTemplate?: string | undefined;
|
|
16477
|
+
hostSource?: "literal" | "config" | undefined;
|
|
16176
16478
|
} | undefined;
|
|
16177
16479
|
signal?: {
|
|
16178
16480
|
spanCount: number;
|
|
@@ -16205,6 +16507,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
16205
16507
|
snippet?: string | undefined;
|
|
16206
16508
|
method?: string | undefined;
|
|
16207
16509
|
pathTemplate?: string | undefined;
|
|
16510
|
+
hostSource?: "literal" | "config" | undefined;
|
|
16208
16511
|
} | undefined;
|
|
16209
16512
|
signal?: {
|
|
16210
16513
|
spanCount: number;
|
|
@@ -16235,4 +16538,4 @@ declare const DEFAULT_EXTRACTED_PRECISION_FLOOR = 0.7;
|
|
|
16235
16538
|
declare function extractedPrecisionFloor(): number;
|
|
16236
16539
|
declare function passesExtractedFloor(confidence: number): boolean;
|
|
16237
16540
|
|
|
16238
|
-
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 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 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 };
|
|
16541
|
+
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 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 };
|