@neat.is/types 0.9.2-dev.20260822 → 0.9.3-dev.20260823
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 +76 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +323 -14
- package/dist/index.d.ts +323 -14
- package/dist/index.js +71 -1
- 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;
|
|
@@ -2463,6 +2478,170 @@ declare const ObservedDependenciesResultSchema: z.ZodObject<{
|
|
|
2463
2478
|
inboundLastObserved?: string | undefined;
|
|
2464
2479
|
}>;
|
|
2465
2480
|
type ObservedDependenciesResult = z.infer<typeof ObservedDependenciesResultSchema>;
|
|
2481
|
+
declare const AskIntentSchema: z.ZodEnum<["root-cause", "blast-radius", "dependencies", "observed", "incidents", "divergence", "overview"]>;
|
|
2482
|
+
type AskIntent = z.infer<typeof AskIntentSchema>;
|
|
2483
|
+
declare const AskMatchSchema: z.ZodObject<{
|
|
2484
|
+
nodeId: z.ZodString;
|
|
2485
|
+
label: z.ZodString;
|
|
2486
|
+
via: z.ZodEnum<["id", "label", "token", "embedding"]>;
|
|
2487
|
+
score: z.ZodNumber;
|
|
2488
|
+
}, "strip", z.ZodTypeAny, {
|
|
2489
|
+
nodeId: string;
|
|
2490
|
+
label: string;
|
|
2491
|
+
via: "id" | "label" | "token" | "embedding";
|
|
2492
|
+
score: number;
|
|
2493
|
+
}, {
|
|
2494
|
+
nodeId: string;
|
|
2495
|
+
label: string;
|
|
2496
|
+
via: "id" | "label" | "token" | "embedding";
|
|
2497
|
+
score: number;
|
|
2498
|
+
}>;
|
|
2499
|
+
type AskMatch = z.infer<typeof AskMatchSchema>;
|
|
2500
|
+
declare const AskFactSchema: z.ZodObject<{
|
|
2501
|
+
text: z.ZodString;
|
|
2502
|
+
provenance: z.ZodOptional<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>>;
|
|
2503
|
+
confidence: z.ZodOptional<z.ZodNumber>;
|
|
2504
|
+
}, "strip", z.ZodTypeAny, {
|
|
2505
|
+
text: string;
|
|
2506
|
+
provenance?: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | undefined;
|
|
2507
|
+
confidence?: number | undefined;
|
|
2508
|
+
}, {
|
|
2509
|
+
text: string;
|
|
2510
|
+
provenance?: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | undefined;
|
|
2511
|
+
confidence?: number | undefined;
|
|
2512
|
+
}>;
|
|
2513
|
+
type AskFact = z.infer<typeof AskFactSchema>;
|
|
2514
|
+
declare const AskSectionSchema: z.ZodObject<{
|
|
2515
|
+
heading: z.ZodString;
|
|
2516
|
+
facts: z.ZodArray<z.ZodObject<{
|
|
2517
|
+
text: z.ZodString;
|
|
2518
|
+
provenance: z.ZodOptional<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>>;
|
|
2519
|
+
confidence: z.ZodOptional<z.ZodNumber>;
|
|
2520
|
+
}, "strip", z.ZodTypeAny, {
|
|
2521
|
+
text: string;
|
|
2522
|
+
provenance?: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | undefined;
|
|
2523
|
+
confidence?: number | undefined;
|
|
2524
|
+
}, {
|
|
2525
|
+
text: string;
|
|
2526
|
+
provenance?: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | undefined;
|
|
2527
|
+
confidence?: number | undefined;
|
|
2528
|
+
}>, "many">;
|
|
2529
|
+
}, "strip", z.ZodTypeAny, {
|
|
2530
|
+
heading: string;
|
|
2531
|
+
facts: {
|
|
2532
|
+
text: string;
|
|
2533
|
+
provenance?: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | undefined;
|
|
2534
|
+
confidence?: number | undefined;
|
|
2535
|
+
}[];
|
|
2536
|
+
}, {
|
|
2537
|
+
heading: string;
|
|
2538
|
+
facts: {
|
|
2539
|
+
text: string;
|
|
2540
|
+
provenance?: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | undefined;
|
|
2541
|
+
confidence?: number | undefined;
|
|
2542
|
+
}[];
|
|
2543
|
+
}>;
|
|
2544
|
+
type AskSection = z.infer<typeof AskSectionSchema>;
|
|
2545
|
+
declare const AskResultSchema: z.ZodObject<{
|
|
2546
|
+
question: z.ZodString;
|
|
2547
|
+
intent: z.ZodEnum<["root-cause", "blast-radius", "dependencies", "observed", "incidents", "divergence", "overview"]>;
|
|
2548
|
+
matched: z.ZodArray<z.ZodObject<{
|
|
2549
|
+
nodeId: z.ZodString;
|
|
2550
|
+
label: z.ZodString;
|
|
2551
|
+
via: z.ZodEnum<["id", "label", "token", "embedding"]>;
|
|
2552
|
+
score: z.ZodNumber;
|
|
2553
|
+
}, "strip", z.ZodTypeAny, {
|
|
2554
|
+
nodeId: string;
|
|
2555
|
+
label: string;
|
|
2556
|
+
via: "id" | "label" | "token" | "embedding";
|
|
2557
|
+
score: number;
|
|
2558
|
+
}, {
|
|
2559
|
+
nodeId: string;
|
|
2560
|
+
label: string;
|
|
2561
|
+
via: "id" | "label" | "token" | "embedding";
|
|
2562
|
+
score: number;
|
|
2563
|
+
}>, "many">;
|
|
2564
|
+
primaryNode: z.ZodOptional<z.ZodString>;
|
|
2565
|
+
scope: z.ZodOptional<z.ZodEnum<["global", "node"]>>;
|
|
2566
|
+
sections: z.ZodArray<z.ZodObject<{
|
|
2567
|
+
heading: z.ZodString;
|
|
2568
|
+
facts: z.ZodArray<z.ZodObject<{
|
|
2569
|
+
text: z.ZodString;
|
|
2570
|
+
provenance: z.ZodOptional<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>>;
|
|
2571
|
+
confidence: z.ZodOptional<z.ZodNumber>;
|
|
2572
|
+
}, "strip", z.ZodTypeAny, {
|
|
2573
|
+
text: string;
|
|
2574
|
+
provenance?: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | undefined;
|
|
2575
|
+
confidence?: number | undefined;
|
|
2576
|
+
}, {
|
|
2577
|
+
text: string;
|
|
2578
|
+
provenance?: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | undefined;
|
|
2579
|
+
confidence?: number | undefined;
|
|
2580
|
+
}>, "many">;
|
|
2581
|
+
}, "strip", z.ZodTypeAny, {
|
|
2582
|
+
heading: string;
|
|
2583
|
+
facts: {
|
|
2584
|
+
text: string;
|
|
2585
|
+
provenance?: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | undefined;
|
|
2586
|
+
confidence?: number | undefined;
|
|
2587
|
+
}[];
|
|
2588
|
+
}, {
|
|
2589
|
+
heading: string;
|
|
2590
|
+
facts: {
|
|
2591
|
+
text: string;
|
|
2592
|
+
provenance?: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | undefined;
|
|
2593
|
+
confidence?: number | undefined;
|
|
2594
|
+
}[];
|
|
2595
|
+
}>, "many">;
|
|
2596
|
+
answer: z.ZodString;
|
|
2597
|
+
confidence: z.ZodOptional<z.ZodNumber>;
|
|
2598
|
+
provenance: z.ZodArray<z.ZodEnum<["EXTRACTED", "INFERRED", "OBSERVED", "STALE"]>, "many">;
|
|
2599
|
+
}, "strip", z.ZodTypeAny, {
|
|
2600
|
+
provenance: ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
|
|
2601
|
+
question: string;
|
|
2602
|
+
intent: "dependencies" | "observed" | "root-cause" | "blast-radius" | "incidents" | "divergence" | "overview";
|
|
2603
|
+
matched: {
|
|
2604
|
+
nodeId: string;
|
|
2605
|
+
label: string;
|
|
2606
|
+
via: "id" | "label" | "token" | "embedding";
|
|
2607
|
+
score: number;
|
|
2608
|
+
}[];
|
|
2609
|
+
sections: {
|
|
2610
|
+
heading: string;
|
|
2611
|
+
facts: {
|
|
2612
|
+
text: string;
|
|
2613
|
+
provenance?: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | undefined;
|
|
2614
|
+
confidence?: number | undefined;
|
|
2615
|
+
}[];
|
|
2616
|
+
}[];
|
|
2617
|
+
answer: string;
|
|
2618
|
+
confidence?: number | undefined;
|
|
2619
|
+
primaryNode?: string | undefined;
|
|
2620
|
+
scope?: "node" | "global" | undefined;
|
|
2621
|
+
}, {
|
|
2622
|
+
provenance: ("EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE")[];
|
|
2623
|
+
question: string;
|
|
2624
|
+
intent: "dependencies" | "observed" | "root-cause" | "blast-radius" | "incidents" | "divergence" | "overview";
|
|
2625
|
+
matched: {
|
|
2626
|
+
nodeId: string;
|
|
2627
|
+
label: string;
|
|
2628
|
+
via: "id" | "label" | "token" | "embedding";
|
|
2629
|
+
score: number;
|
|
2630
|
+
}[];
|
|
2631
|
+
sections: {
|
|
2632
|
+
heading: string;
|
|
2633
|
+
facts: {
|
|
2634
|
+
text: string;
|
|
2635
|
+
provenance?: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE" | undefined;
|
|
2636
|
+
confidence?: number | undefined;
|
|
2637
|
+
}[];
|
|
2638
|
+
}[];
|
|
2639
|
+
answer: string;
|
|
2640
|
+
confidence?: number | undefined;
|
|
2641
|
+
primaryNode?: string | undefined;
|
|
2642
|
+
scope?: "node" | "global" | undefined;
|
|
2643
|
+
}>;
|
|
2644
|
+
type AskResult = z.infer<typeof AskResultSchema>;
|
|
2466
2645
|
|
|
2467
2646
|
declare function serviceId(name: string, env?: string): string;
|
|
2468
2647
|
declare function parseServiceId(id: string): {
|
|
@@ -3304,7 +3483,7 @@ declare const ApplicablePolicySchema: z.ZodObject<{
|
|
|
3304
3483
|
onViolation: "log" | "alert" | "block";
|
|
3305
3484
|
policyId: string;
|
|
3306
3485
|
policyName: string;
|
|
3307
|
-
ruleType: "provenance" | "
|
|
3486
|
+
ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
|
|
3308
3487
|
match: "region" | "subject";
|
|
3309
3488
|
description?: string | undefined;
|
|
3310
3489
|
}, {
|
|
@@ -3313,7 +3492,7 @@ declare const ApplicablePolicySchema: z.ZodObject<{
|
|
|
3313
3492
|
onViolation: "log" | "alert" | "block";
|
|
3314
3493
|
policyId: string;
|
|
3315
3494
|
policyName: string;
|
|
3316
|
-
ruleType: "provenance" | "
|
|
3495
|
+
ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
|
|
3317
3496
|
match: "region" | "subject";
|
|
3318
3497
|
description?: string | undefined;
|
|
3319
3498
|
}>;
|
|
@@ -3335,7 +3514,7 @@ declare const ApplicablePoliciesResponseSchema: z.ZodObject<{
|
|
|
3335
3514
|
onViolation: "log" | "alert" | "block";
|
|
3336
3515
|
policyId: string;
|
|
3337
3516
|
policyName: string;
|
|
3338
|
-
ruleType: "provenance" | "
|
|
3517
|
+
ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
|
|
3339
3518
|
match: "region" | "subject";
|
|
3340
3519
|
description?: string | undefined;
|
|
3341
3520
|
}, {
|
|
@@ -3344,7 +3523,7 @@ declare const ApplicablePoliciesResponseSchema: z.ZodObject<{
|
|
|
3344
3523
|
onViolation: "log" | "alert" | "block";
|
|
3345
3524
|
policyId: string;
|
|
3346
3525
|
policyName: string;
|
|
3347
|
-
ruleType: "provenance" | "
|
|
3526
|
+
ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
|
|
3348
3527
|
match: "region" | "subject";
|
|
3349
3528
|
description?: string | undefined;
|
|
3350
3529
|
}>, "many">;
|
|
@@ -3356,7 +3535,7 @@ declare const ApplicablePoliciesResponseSchema: z.ZodObject<{
|
|
|
3356
3535
|
onViolation: "log" | "alert" | "block";
|
|
3357
3536
|
policyId: string;
|
|
3358
3537
|
policyName: string;
|
|
3359
|
-
ruleType: "provenance" | "
|
|
3538
|
+
ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
|
|
3360
3539
|
match: "region" | "subject";
|
|
3361
3540
|
description?: string | undefined;
|
|
3362
3541
|
}[];
|
|
@@ -3368,7 +3547,7 @@ declare const ApplicablePoliciesResponseSchema: z.ZodObject<{
|
|
|
3368
3547
|
onViolation: "log" | "alert" | "block";
|
|
3369
3548
|
policyId: string;
|
|
3370
3549
|
policyName: string;
|
|
3371
|
-
ruleType: "provenance" | "
|
|
3550
|
+
ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
|
|
3372
3551
|
match: "region" | "subject";
|
|
3373
3552
|
description?: string | undefined;
|
|
3374
3553
|
}[];
|
|
@@ -3411,7 +3590,7 @@ declare const PolicyViolationSchema: z.ZodObject<{
|
|
|
3411
3590
|
onViolation: "log" | "alert" | "block";
|
|
3412
3591
|
policyId: string;
|
|
3413
3592
|
policyName: string;
|
|
3414
|
-
ruleType: "provenance" | "
|
|
3593
|
+
ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
|
|
3415
3594
|
subject: {
|
|
3416
3595
|
path?: string[] | undefined;
|
|
3417
3596
|
edgeId?: string | undefined;
|
|
@@ -3425,7 +3604,7 @@ declare const PolicyViolationSchema: z.ZodObject<{
|
|
|
3425
3604
|
onViolation: "log" | "alert" | "block";
|
|
3426
3605
|
policyId: string;
|
|
3427
3606
|
policyName: string;
|
|
3428
|
-
ruleType: "provenance" | "
|
|
3607
|
+
ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
|
|
3429
3608
|
subject: {
|
|
3430
3609
|
path?: string[] | undefined;
|
|
3431
3610
|
edgeId?: string | undefined;
|
|
@@ -3525,18 +3704,21 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
|
|
|
3525
3704
|
snippet: z.ZodOptional<z.ZodString>;
|
|
3526
3705
|
method: z.ZodOptional<z.ZodString>;
|
|
3527
3706
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
3707
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
3528
3708
|
}, "strip", z.ZodTypeAny, {
|
|
3529
3709
|
file: string;
|
|
3530
3710
|
line?: number | undefined;
|
|
3531
3711
|
snippet?: string | undefined;
|
|
3532
3712
|
method?: string | undefined;
|
|
3533
3713
|
pathTemplate?: string | undefined;
|
|
3714
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3534
3715
|
}, {
|
|
3535
3716
|
file: string;
|
|
3536
3717
|
line?: number | undefined;
|
|
3537
3718
|
snippet?: string | undefined;
|
|
3538
3719
|
method?: string | undefined;
|
|
3539
3720
|
pathTemplate?: string | undefined;
|
|
3721
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3540
3722
|
}>>;
|
|
3541
3723
|
signal: z.ZodOptional<z.ZodObject<{
|
|
3542
3724
|
spanCount: z.ZodNumber;
|
|
@@ -3606,6 +3788,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
|
|
|
3606
3788
|
snippet?: string | undefined;
|
|
3607
3789
|
method?: string | undefined;
|
|
3608
3790
|
pathTemplate?: string | undefined;
|
|
3791
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3609
3792
|
} | undefined;
|
|
3610
3793
|
signal?: {
|
|
3611
3794
|
spanCount: number;
|
|
@@ -3637,6 +3820,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
|
|
|
3637
3820
|
snippet?: string | undefined;
|
|
3638
3821
|
method?: string | undefined;
|
|
3639
3822
|
pathTemplate?: string | undefined;
|
|
3823
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3640
3824
|
} | undefined;
|
|
3641
3825
|
signal?: {
|
|
3642
3826
|
spanCount: number;
|
|
@@ -3685,6 +3869,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
|
|
|
3685
3869
|
snippet?: string | undefined;
|
|
3686
3870
|
method?: string | undefined;
|
|
3687
3871
|
pathTemplate?: string | undefined;
|
|
3872
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3688
3873
|
} | undefined;
|
|
3689
3874
|
signal?: {
|
|
3690
3875
|
spanCount: number;
|
|
@@ -3727,6 +3912,7 @@ declare const MissingObservedDivergenceSchema: z.ZodObject<{
|
|
|
3727
3912
|
snippet?: string | undefined;
|
|
3728
3913
|
method?: string | undefined;
|
|
3729
3914
|
pathTemplate?: string | undefined;
|
|
3915
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3730
3916
|
} | undefined;
|
|
3731
3917
|
signal?: {
|
|
3732
3918
|
spanCount: number;
|
|
@@ -3765,18 +3951,21 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
|
|
|
3765
3951
|
snippet: z.ZodOptional<z.ZodString>;
|
|
3766
3952
|
method: z.ZodOptional<z.ZodString>;
|
|
3767
3953
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
3954
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
3768
3955
|
}, "strip", z.ZodTypeAny, {
|
|
3769
3956
|
file: string;
|
|
3770
3957
|
line?: number | undefined;
|
|
3771
3958
|
snippet?: string | undefined;
|
|
3772
3959
|
method?: string | undefined;
|
|
3773
3960
|
pathTemplate?: string | undefined;
|
|
3961
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3774
3962
|
}, {
|
|
3775
3963
|
file: string;
|
|
3776
3964
|
line?: number | undefined;
|
|
3777
3965
|
snippet?: string | undefined;
|
|
3778
3966
|
method?: string | undefined;
|
|
3779
3967
|
pathTemplate?: string | undefined;
|
|
3968
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3780
3969
|
}>>;
|
|
3781
3970
|
signal: z.ZodOptional<z.ZodObject<{
|
|
3782
3971
|
spanCount: z.ZodNumber;
|
|
@@ -3846,6 +4035,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
|
|
|
3846
4035
|
snippet?: string | undefined;
|
|
3847
4036
|
method?: string | undefined;
|
|
3848
4037
|
pathTemplate?: string | undefined;
|
|
4038
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3849
4039
|
} | undefined;
|
|
3850
4040
|
signal?: {
|
|
3851
4041
|
spanCount: number;
|
|
@@ -3877,6 +4067,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
|
|
|
3877
4067
|
snippet?: string | undefined;
|
|
3878
4068
|
method?: string | undefined;
|
|
3879
4069
|
pathTemplate?: string | undefined;
|
|
4070
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3880
4071
|
} | undefined;
|
|
3881
4072
|
signal?: {
|
|
3882
4073
|
spanCount: number;
|
|
@@ -3925,6 +4116,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
|
|
|
3925
4116
|
snippet?: string | undefined;
|
|
3926
4117
|
method?: string | undefined;
|
|
3927
4118
|
pathTemplate?: string | undefined;
|
|
4119
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3928
4120
|
} | undefined;
|
|
3929
4121
|
signal?: {
|
|
3930
4122
|
spanCount: number;
|
|
@@ -3967,6 +4159,7 @@ declare const MissingExtractedDivergenceSchema: z.ZodObject<{
|
|
|
3967
4159
|
snippet?: string | undefined;
|
|
3968
4160
|
method?: string | undefined;
|
|
3969
4161
|
pathTemplate?: string | undefined;
|
|
4162
|
+
hostSource?: "literal" | "config" | undefined;
|
|
3970
4163
|
} | undefined;
|
|
3971
4164
|
signal?: {
|
|
3972
4165
|
spanCount: number;
|
|
@@ -4106,18 +4299,21 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
|
|
|
4106
4299
|
snippet: z.ZodOptional<z.ZodString>;
|
|
4107
4300
|
method: z.ZodOptional<z.ZodString>;
|
|
4108
4301
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
4302
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
4109
4303
|
}, "strip", z.ZodTypeAny, {
|
|
4110
4304
|
file: string;
|
|
4111
4305
|
line?: number | undefined;
|
|
4112
4306
|
snippet?: string | undefined;
|
|
4113
4307
|
method?: string | undefined;
|
|
4114
4308
|
pathTemplate?: string | undefined;
|
|
4309
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4115
4310
|
}, {
|
|
4116
4311
|
file: string;
|
|
4117
4312
|
line?: number | undefined;
|
|
4118
4313
|
snippet?: string | undefined;
|
|
4119
4314
|
method?: string | undefined;
|
|
4120
4315
|
pathTemplate?: string | undefined;
|
|
4316
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4121
4317
|
}>>;
|
|
4122
4318
|
signal: z.ZodOptional<z.ZodObject<{
|
|
4123
4319
|
spanCount: z.ZodNumber;
|
|
@@ -4187,6 +4383,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
|
|
|
4187
4383
|
snippet?: string | undefined;
|
|
4188
4384
|
method?: string | undefined;
|
|
4189
4385
|
pathTemplate?: string | undefined;
|
|
4386
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4190
4387
|
} | undefined;
|
|
4191
4388
|
signal?: {
|
|
4192
4389
|
spanCount: number;
|
|
@@ -4218,6 +4415,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
|
|
|
4218
4415
|
snippet?: string | undefined;
|
|
4219
4416
|
method?: string | undefined;
|
|
4220
4417
|
pathTemplate?: string | undefined;
|
|
4418
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4221
4419
|
} | undefined;
|
|
4222
4420
|
signal?: {
|
|
4223
4421
|
spanCount: number;
|
|
@@ -4269,6 +4467,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
|
|
|
4269
4467
|
snippet?: string | undefined;
|
|
4270
4468
|
method?: string | undefined;
|
|
4271
4469
|
pathTemplate?: string | undefined;
|
|
4470
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4272
4471
|
} | undefined;
|
|
4273
4472
|
signal?: {
|
|
4274
4473
|
spanCount: number;
|
|
@@ -4315,6 +4514,7 @@ declare const CompatViolationDivergenceSchema: z.ZodObject<{
|
|
|
4315
4514
|
snippet?: string | undefined;
|
|
4316
4515
|
method?: string | undefined;
|
|
4317
4516
|
pathTemplate?: string | undefined;
|
|
4517
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4318
4518
|
} | undefined;
|
|
4319
4519
|
signal?: {
|
|
4320
4520
|
spanCount: number;
|
|
@@ -4352,18 +4552,21 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4352
4552
|
snippet: z.ZodOptional<z.ZodString>;
|
|
4353
4553
|
method: z.ZodOptional<z.ZodString>;
|
|
4354
4554
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
4555
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
4355
4556
|
}, "strip", z.ZodTypeAny, {
|
|
4356
4557
|
file: string;
|
|
4357
4558
|
line?: number | undefined;
|
|
4358
4559
|
snippet?: string | undefined;
|
|
4359
4560
|
method?: string | undefined;
|
|
4360
4561
|
pathTemplate?: string | undefined;
|
|
4562
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4361
4563
|
}, {
|
|
4362
4564
|
file: string;
|
|
4363
4565
|
line?: number | undefined;
|
|
4364
4566
|
snippet?: string | undefined;
|
|
4365
4567
|
method?: string | undefined;
|
|
4366
4568
|
pathTemplate?: string | undefined;
|
|
4569
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4367
4570
|
}>>;
|
|
4368
4571
|
signal: z.ZodOptional<z.ZodObject<{
|
|
4369
4572
|
spanCount: z.ZodNumber;
|
|
@@ -4433,6 +4636,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4433
4636
|
snippet?: string | undefined;
|
|
4434
4637
|
method?: string | undefined;
|
|
4435
4638
|
pathTemplate?: string | undefined;
|
|
4639
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4436
4640
|
} | undefined;
|
|
4437
4641
|
signal?: {
|
|
4438
4642
|
spanCount: number;
|
|
@@ -4464,6 +4668,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4464
4668
|
snippet?: string | undefined;
|
|
4465
4669
|
method?: string | undefined;
|
|
4466
4670
|
pathTemplate?: string | undefined;
|
|
4671
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4467
4672
|
} | undefined;
|
|
4468
4673
|
signal?: {
|
|
4469
4674
|
spanCount: number;
|
|
@@ -4512,6 +4717,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4512
4717
|
snippet?: string | undefined;
|
|
4513
4718
|
method?: string | undefined;
|
|
4514
4719
|
pathTemplate?: string | undefined;
|
|
4720
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4515
4721
|
} | undefined;
|
|
4516
4722
|
signal?: {
|
|
4517
4723
|
spanCount: number;
|
|
@@ -4554,6 +4760,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4554
4760
|
snippet?: string | undefined;
|
|
4555
4761
|
method?: string | undefined;
|
|
4556
4762
|
pathTemplate?: string | undefined;
|
|
4763
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4557
4764
|
} | undefined;
|
|
4558
4765
|
signal?: {
|
|
4559
4766
|
spanCount: number;
|
|
@@ -4590,18 +4797,21 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4590
4797
|
snippet: z.ZodOptional<z.ZodString>;
|
|
4591
4798
|
method: z.ZodOptional<z.ZodString>;
|
|
4592
4799
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
4800
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
4593
4801
|
}, "strip", z.ZodTypeAny, {
|
|
4594
4802
|
file: string;
|
|
4595
4803
|
line?: number | undefined;
|
|
4596
4804
|
snippet?: string | undefined;
|
|
4597
4805
|
method?: string | undefined;
|
|
4598
4806
|
pathTemplate?: string | undefined;
|
|
4807
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4599
4808
|
}, {
|
|
4600
4809
|
file: string;
|
|
4601
4810
|
line?: number | undefined;
|
|
4602
4811
|
snippet?: string | undefined;
|
|
4603
4812
|
method?: string | undefined;
|
|
4604
4813
|
pathTemplate?: string | undefined;
|
|
4814
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4605
4815
|
}>>;
|
|
4606
4816
|
signal: z.ZodOptional<z.ZodObject<{
|
|
4607
4817
|
spanCount: z.ZodNumber;
|
|
@@ -4671,6 +4881,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4671
4881
|
snippet?: string | undefined;
|
|
4672
4882
|
method?: string | undefined;
|
|
4673
4883
|
pathTemplate?: string | undefined;
|
|
4884
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4674
4885
|
} | undefined;
|
|
4675
4886
|
signal?: {
|
|
4676
4887
|
spanCount: number;
|
|
@@ -4702,6 +4913,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4702
4913
|
snippet?: string | undefined;
|
|
4703
4914
|
method?: string | undefined;
|
|
4704
4915
|
pathTemplate?: string | undefined;
|
|
4916
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4705
4917
|
} | undefined;
|
|
4706
4918
|
signal?: {
|
|
4707
4919
|
spanCount: number;
|
|
@@ -4750,6 +4962,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4750
4962
|
snippet?: string | undefined;
|
|
4751
4963
|
method?: string | undefined;
|
|
4752
4964
|
pathTemplate?: string | undefined;
|
|
4965
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4753
4966
|
} | undefined;
|
|
4754
4967
|
signal?: {
|
|
4755
4968
|
spanCount: number;
|
|
@@ -4792,6 +5005,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4792
5005
|
snippet?: string | undefined;
|
|
4793
5006
|
method?: string | undefined;
|
|
4794
5007
|
pathTemplate?: string | undefined;
|
|
5008
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4795
5009
|
} | undefined;
|
|
4796
5010
|
signal?: {
|
|
4797
5011
|
spanCount: number;
|
|
@@ -4903,18 +5117,21 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4903
5117
|
snippet: z.ZodOptional<z.ZodString>;
|
|
4904
5118
|
method: z.ZodOptional<z.ZodString>;
|
|
4905
5119
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
5120
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
4906
5121
|
}, "strip", z.ZodTypeAny, {
|
|
4907
5122
|
file: string;
|
|
4908
5123
|
line?: number | undefined;
|
|
4909
5124
|
snippet?: string | undefined;
|
|
4910
5125
|
method?: string | undefined;
|
|
4911
5126
|
pathTemplate?: string | undefined;
|
|
5127
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4912
5128
|
}, {
|
|
4913
5129
|
file: string;
|
|
4914
5130
|
line?: number | undefined;
|
|
4915
5131
|
snippet?: string | undefined;
|
|
4916
5132
|
method?: string | undefined;
|
|
4917
5133
|
pathTemplate?: string | undefined;
|
|
5134
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4918
5135
|
}>>;
|
|
4919
5136
|
signal: z.ZodOptional<z.ZodObject<{
|
|
4920
5137
|
spanCount: z.ZodNumber;
|
|
@@ -4984,6 +5201,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4984
5201
|
snippet?: string | undefined;
|
|
4985
5202
|
method?: string | undefined;
|
|
4986
5203
|
pathTemplate?: string | undefined;
|
|
5204
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4987
5205
|
} | undefined;
|
|
4988
5206
|
signal?: {
|
|
4989
5207
|
spanCount: number;
|
|
@@ -5015,6 +5233,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5015
5233
|
snippet?: string | undefined;
|
|
5016
5234
|
method?: string | undefined;
|
|
5017
5235
|
pathTemplate?: string | undefined;
|
|
5236
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5018
5237
|
} | undefined;
|
|
5019
5238
|
signal?: {
|
|
5020
5239
|
spanCount: number;
|
|
@@ -5066,6 +5285,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5066
5285
|
snippet?: string | undefined;
|
|
5067
5286
|
method?: string | undefined;
|
|
5068
5287
|
pathTemplate?: string | undefined;
|
|
5288
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5069
5289
|
} | undefined;
|
|
5070
5290
|
signal?: {
|
|
5071
5291
|
spanCount: number;
|
|
@@ -5112,6 +5332,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5112
5332
|
snippet?: string | undefined;
|
|
5113
5333
|
method?: string | undefined;
|
|
5114
5334
|
pathTemplate?: string | undefined;
|
|
5335
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5115
5336
|
} | undefined;
|
|
5116
5337
|
signal?: {
|
|
5117
5338
|
spanCount: number;
|
|
@@ -5150,18 +5371,21 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5150
5371
|
snippet: z.ZodOptional<z.ZodString>;
|
|
5151
5372
|
method: z.ZodOptional<z.ZodString>;
|
|
5152
5373
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
5374
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
5153
5375
|
}, "strip", z.ZodTypeAny, {
|
|
5154
5376
|
file: string;
|
|
5155
5377
|
line?: number | undefined;
|
|
5156
5378
|
snippet?: string | undefined;
|
|
5157
5379
|
method?: string | undefined;
|
|
5158
5380
|
pathTemplate?: string | undefined;
|
|
5381
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5159
5382
|
}, {
|
|
5160
5383
|
file: string;
|
|
5161
5384
|
line?: number | undefined;
|
|
5162
5385
|
snippet?: string | undefined;
|
|
5163
5386
|
method?: string | undefined;
|
|
5164
5387
|
pathTemplate?: string | undefined;
|
|
5388
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5165
5389
|
}>>;
|
|
5166
5390
|
signal: z.ZodOptional<z.ZodObject<{
|
|
5167
5391
|
spanCount: z.ZodNumber;
|
|
@@ -5231,6 +5455,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5231
5455
|
snippet?: string | undefined;
|
|
5232
5456
|
method?: string | undefined;
|
|
5233
5457
|
pathTemplate?: string | undefined;
|
|
5458
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5234
5459
|
} | undefined;
|
|
5235
5460
|
signal?: {
|
|
5236
5461
|
spanCount: number;
|
|
@@ -5262,6 +5487,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5262
5487
|
snippet?: string | undefined;
|
|
5263
5488
|
method?: string | undefined;
|
|
5264
5489
|
pathTemplate?: string | undefined;
|
|
5490
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5265
5491
|
} | undefined;
|
|
5266
5492
|
signal?: {
|
|
5267
5493
|
spanCount: number;
|
|
@@ -5310,6 +5536,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5310
5536
|
snippet?: string | undefined;
|
|
5311
5537
|
method?: string | undefined;
|
|
5312
5538
|
pathTemplate?: string | undefined;
|
|
5539
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5313
5540
|
} | undefined;
|
|
5314
5541
|
signal?: {
|
|
5315
5542
|
spanCount: number;
|
|
@@ -5352,6 +5579,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5352
5579
|
snippet?: string | undefined;
|
|
5353
5580
|
method?: string | undefined;
|
|
5354
5581
|
pathTemplate?: string | undefined;
|
|
5582
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5355
5583
|
} | undefined;
|
|
5356
5584
|
signal?: {
|
|
5357
5585
|
spanCount: number;
|
|
@@ -5388,18 +5616,21 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5388
5616
|
snippet: z.ZodOptional<z.ZodString>;
|
|
5389
5617
|
method: z.ZodOptional<z.ZodString>;
|
|
5390
5618
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
5619
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
5391
5620
|
}, "strip", z.ZodTypeAny, {
|
|
5392
5621
|
file: string;
|
|
5393
5622
|
line?: number | undefined;
|
|
5394
5623
|
snippet?: string | undefined;
|
|
5395
5624
|
method?: string | undefined;
|
|
5396
5625
|
pathTemplate?: string | undefined;
|
|
5626
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5397
5627
|
}, {
|
|
5398
5628
|
file: string;
|
|
5399
5629
|
line?: number | undefined;
|
|
5400
5630
|
snippet?: string | undefined;
|
|
5401
5631
|
method?: string | undefined;
|
|
5402
5632
|
pathTemplate?: string | undefined;
|
|
5633
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5403
5634
|
}>>;
|
|
5404
5635
|
signal: z.ZodOptional<z.ZodObject<{
|
|
5405
5636
|
spanCount: z.ZodNumber;
|
|
@@ -5469,6 +5700,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5469
5700
|
snippet?: string | undefined;
|
|
5470
5701
|
method?: string | undefined;
|
|
5471
5702
|
pathTemplate?: string | undefined;
|
|
5703
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5472
5704
|
} | undefined;
|
|
5473
5705
|
signal?: {
|
|
5474
5706
|
spanCount: number;
|
|
@@ -5500,6 +5732,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5500
5732
|
snippet?: string | undefined;
|
|
5501
5733
|
method?: string | undefined;
|
|
5502
5734
|
pathTemplate?: string | undefined;
|
|
5735
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5503
5736
|
} | undefined;
|
|
5504
5737
|
signal?: {
|
|
5505
5738
|
spanCount: number;
|
|
@@ -5548,6 +5781,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5548
5781
|
snippet?: string | undefined;
|
|
5549
5782
|
method?: string | undefined;
|
|
5550
5783
|
pathTemplate?: string | undefined;
|
|
5784
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5551
5785
|
} | undefined;
|
|
5552
5786
|
signal?: {
|
|
5553
5787
|
spanCount: number;
|
|
@@ -5590,6 +5824,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5590
5824
|
snippet?: string | undefined;
|
|
5591
5825
|
method?: string | undefined;
|
|
5592
5826
|
pathTemplate?: string | undefined;
|
|
5827
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5593
5828
|
} | undefined;
|
|
5594
5829
|
signal?: {
|
|
5595
5830
|
spanCount: number;
|
|
@@ -5701,18 +5936,21 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5701
5936
|
snippet: z.ZodOptional<z.ZodString>;
|
|
5702
5937
|
method: z.ZodOptional<z.ZodString>;
|
|
5703
5938
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
5939
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
5704
5940
|
}, "strip", z.ZodTypeAny, {
|
|
5705
5941
|
file: string;
|
|
5706
5942
|
line?: number | undefined;
|
|
5707
5943
|
snippet?: string | undefined;
|
|
5708
5944
|
method?: string | undefined;
|
|
5709
5945
|
pathTemplate?: string | undefined;
|
|
5946
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5710
5947
|
}, {
|
|
5711
5948
|
file: string;
|
|
5712
5949
|
line?: number | undefined;
|
|
5713
5950
|
snippet?: string | undefined;
|
|
5714
5951
|
method?: string | undefined;
|
|
5715
5952
|
pathTemplate?: string | undefined;
|
|
5953
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5716
5954
|
}>>;
|
|
5717
5955
|
signal: z.ZodOptional<z.ZodObject<{
|
|
5718
5956
|
spanCount: z.ZodNumber;
|
|
@@ -5782,6 +6020,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5782
6020
|
snippet?: string | undefined;
|
|
5783
6021
|
method?: string | undefined;
|
|
5784
6022
|
pathTemplate?: string | undefined;
|
|
6023
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5785
6024
|
} | undefined;
|
|
5786
6025
|
signal?: {
|
|
5787
6026
|
spanCount: number;
|
|
@@ -5813,6 +6052,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5813
6052
|
snippet?: string | undefined;
|
|
5814
6053
|
method?: string | undefined;
|
|
5815
6054
|
pathTemplate?: string | undefined;
|
|
6055
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5816
6056
|
} | undefined;
|
|
5817
6057
|
signal?: {
|
|
5818
6058
|
spanCount: number;
|
|
@@ -5864,6 +6104,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5864
6104
|
snippet?: string | undefined;
|
|
5865
6105
|
method?: string | undefined;
|
|
5866
6106
|
pathTemplate?: string | undefined;
|
|
6107
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5867
6108
|
} | undefined;
|
|
5868
6109
|
signal?: {
|
|
5869
6110
|
spanCount: number;
|
|
@@ -5910,6 +6151,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5910
6151
|
snippet?: string | undefined;
|
|
5911
6152
|
method?: string | undefined;
|
|
5912
6153
|
pathTemplate?: string | undefined;
|
|
6154
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5913
6155
|
} | undefined;
|
|
5914
6156
|
signal?: {
|
|
5915
6157
|
spanCount: number;
|
|
@@ -5956,6 +6198,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5956
6198
|
snippet?: string | undefined;
|
|
5957
6199
|
method?: string | undefined;
|
|
5958
6200
|
pathTemplate?: string | undefined;
|
|
6201
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5959
6202
|
} | undefined;
|
|
5960
6203
|
signal?: {
|
|
5961
6204
|
spanCount: number;
|
|
@@ -5998,6 +6241,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5998
6241
|
snippet?: string | undefined;
|
|
5999
6242
|
method?: string | undefined;
|
|
6000
6243
|
pathTemplate?: string | undefined;
|
|
6244
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6001
6245
|
} | undefined;
|
|
6002
6246
|
signal?: {
|
|
6003
6247
|
spanCount: number;
|
|
@@ -6064,6 +6308,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6064
6308
|
snippet?: string | undefined;
|
|
6065
6309
|
method?: string | undefined;
|
|
6066
6310
|
pathTemplate?: string | undefined;
|
|
6311
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6067
6312
|
} | undefined;
|
|
6068
6313
|
signal?: {
|
|
6069
6314
|
spanCount: number;
|
|
@@ -6109,6 +6354,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6109
6354
|
snippet?: string | undefined;
|
|
6110
6355
|
method?: string | undefined;
|
|
6111
6356
|
pathTemplate?: string | undefined;
|
|
6357
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6112
6358
|
} | undefined;
|
|
6113
6359
|
signal?: {
|
|
6114
6360
|
spanCount: number;
|
|
@@ -6151,6 +6397,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6151
6397
|
snippet?: string | undefined;
|
|
6152
6398
|
method?: string | undefined;
|
|
6153
6399
|
pathTemplate?: string | undefined;
|
|
6400
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6154
6401
|
} | undefined;
|
|
6155
6402
|
signal?: {
|
|
6156
6403
|
spanCount: number;
|
|
@@ -6217,6 +6464,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6217
6464
|
snippet?: string | undefined;
|
|
6218
6465
|
method?: string | undefined;
|
|
6219
6466
|
pathTemplate?: string | undefined;
|
|
6467
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6220
6468
|
} | undefined;
|
|
6221
6469
|
signal?: {
|
|
6222
6470
|
spanCount: number;
|
|
@@ -6242,7 +6490,7 @@ type DivergenceResult = z.infer<typeof DivergenceResultSchema>;
|
|
|
6242
6490
|
declare const DivergenceTypeSchema: z.ZodEnum<["missing-observed", "missing-extracted", "version-mismatch", "host-mismatch", "compat-violation"]>;
|
|
6243
6491
|
type DivergenceType = z.infer<typeof DivergenceTypeSchema>;
|
|
6244
6492
|
|
|
6245
|
-
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", "neat_list_uninstrumented", "neat_lookup_instrumentation", "neat_describe_project_instrumentation", "neat_apply_extension", "neat_dry_run_extension", "neat_rollback_extension"];
|
|
6493
|
+
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"];
|
|
6246
6494
|
type MCPToolName = (typeof MCP_TOOL_NAMES)[number];
|
|
6247
6495
|
|
|
6248
6496
|
declare const IncidentsResponseSchema: z.ZodObject<{
|
|
@@ -6500,7 +6748,7 @@ declare const PoliciesViolationsResponseSchema: z.ZodObject<{
|
|
|
6500
6748
|
onViolation: "log" | "alert" | "block";
|
|
6501
6749
|
policyId: string;
|
|
6502
6750
|
policyName: string;
|
|
6503
|
-
ruleType: "provenance" | "
|
|
6751
|
+
ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
|
|
6504
6752
|
subject: {
|
|
6505
6753
|
path?: string[] | undefined;
|
|
6506
6754
|
edgeId?: string | undefined;
|
|
@@ -6514,7 +6762,7 @@ declare const PoliciesViolationsResponseSchema: z.ZodObject<{
|
|
|
6514
6762
|
onViolation: "log" | "alert" | "block";
|
|
6515
6763
|
policyId: string;
|
|
6516
6764
|
policyName: string;
|
|
6517
|
-
ruleType: "provenance" | "
|
|
6765
|
+
ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
|
|
6518
6766
|
subject: {
|
|
6519
6767
|
path?: string[] | undefined;
|
|
6520
6768
|
edgeId?: string | undefined;
|
|
@@ -6530,7 +6778,7 @@ declare const PoliciesViolationsResponseSchema: z.ZodObject<{
|
|
|
6530
6778
|
onViolation: "log" | "alert" | "block";
|
|
6531
6779
|
policyId: string;
|
|
6532
6780
|
policyName: string;
|
|
6533
|
-
ruleType: "provenance" | "
|
|
6781
|
+
ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
|
|
6534
6782
|
subject: {
|
|
6535
6783
|
path?: string[] | undefined;
|
|
6536
6784
|
edgeId?: string | undefined;
|
|
@@ -6546,7 +6794,7 @@ declare const PoliciesViolationsResponseSchema: z.ZodObject<{
|
|
|
6546
6794
|
onViolation: "log" | "alert" | "block";
|
|
6547
6795
|
policyId: string;
|
|
6548
6796
|
policyName: string;
|
|
6549
|
-
ruleType: "provenance" | "
|
|
6797
|
+
ruleType: "provenance" | "blast-radius" | "structural" | "compatibility" | "ownership" | "field-guard";
|
|
6550
6798
|
subject: {
|
|
6551
6799
|
path?: string[] | undefined;
|
|
6552
6800
|
edgeId?: string | undefined;
|
|
@@ -7451,18 +7699,21 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7451
7699
|
snippet: z.ZodOptional<z.ZodString>;
|
|
7452
7700
|
method: z.ZodOptional<z.ZodString>;
|
|
7453
7701
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
7702
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
7454
7703
|
}, "strip", z.ZodTypeAny, {
|
|
7455
7704
|
file: string;
|
|
7456
7705
|
line?: number | undefined;
|
|
7457
7706
|
snippet?: string | undefined;
|
|
7458
7707
|
method?: string | undefined;
|
|
7459
7708
|
pathTemplate?: string | undefined;
|
|
7709
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7460
7710
|
}, {
|
|
7461
7711
|
file: string;
|
|
7462
7712
|
line?: number | undefined;
|
|
7463
7713
|
snippet?: string | undefined;
|
|
7464
7714
|
method?: string | undefined;
|
|
7465
7715
|
pathTemplate?: string | undefined;
|
|
7716
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7466
7717
|
}>>;
|
|
7467
7718
|
signal: z.ZodOptional<z.ZodObject<{
|
|
7468
7719
|
spanCount: z.ZodNumber;
|
|
@@ -7532,6 +7783,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7532
7783
|
snippet?: string | undefined;
|
|
7533
7784
|
method?: string | undefined;
|
|
7534
7785
|
pathTemplate?: string | undefined;
|
|
7786
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7535
7787
|
} | undefined;
|
|
7536
7788
|
signal?: {
|
|
7537
7789
|
spanCount: number;
|
|
@@ -7563,6 +7815,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7563
7815
|
snippet?: string | undefined;
|
|
7564
7816
|
method?: string | undefined;
|
|
7565
7817
|
pathTemplate?: string | undefined;
|
|
7818
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7566
7819
|
} | undefined;
|
|
7567
7820
|
signal?: {
|
|
7568
7821
|
spanCount: number;
|
|
@@ -7595,18 +7848,21 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7595
7848
|
snippet: z.ZodOptional<z.ZodString>;
|
|
7596
7849
|
method: z.ZodOptional<z.ZodString>;
|
|
7597
7850
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
7851
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
7598
7852
|
}, "strip", z.ZodTypeAny, {
|
|
7599
7853
|
file: string;
|
|
7600
7854
|
line?: number | undefined;
|
|
7601
7855
|
snippet?: string | undefined;
|
|
7602
7856
|
method?: string | undefined;
|
|
7603
7857
|
pathTemplate?: string | undefined;
|
|
7858
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7604
7859
|
}, {
|
|
7605
7860
|
file: string;
|
|
7606
7861
|
line?: number | undefined;
|
|
7607
7862
|
snippet?: string | undefined;
|
|
7608
7863
|
method?: string | undefined;
|
|
7609
7864
|
pathTemplate?: string | undefined;
|
|
7865
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7610
7866
|
}>>;
|
|
7611
7867
|
signal: z.ZodOptional<z.ZodObject<{
|
|
7612
7868
|
spanCount: z.ZodNumber;
|
|
@@ -7676,6 +7932,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7676
7932
|
snippet?: string | undefined;
|
|
7677
7933
|
method?: string | undefined;
|
|
7678
7934
|
pathTemplate?: string | undefined;
|
|
7935
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7679
7936
|
} | undefined;
|
|
7680
7937
|
signal?: {
|
|
7681
7938
|
spanCount: number;
|
|
@@ -7707,6 +7964,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7707
7964
|
snippet?: string | undefined;
|
|
7708
7965
|
method?: string | undefined;
|
|
7709
7966
|
pathTemplate?: string | undefined;
|
|
7967
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7710
7968
|
} | undefined;
|
|
7711
7969
|
signal?: {
|
|
7712
7970
|
spanCount: number;
|
|
@@ -7740,6 +7998,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7740
7998
|
snippet?: string | undefined;
|
|
7741
7999
|
method?: string | undefined;
|
|
7742
8000
|
pathTemplate?: string | undefined;
|
|
8001
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7743
8002
|
} | undefined;
|
|
7744
8003
|
signal?: {
|
|
7745
8004
|
spanCount: number;
|
|
@@ -7772,6 +8031,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7772
8031
|
snippet?: string | undefined;
|
|
7773
8032
|
method?: string | undefined;
|
|
7774
8033
|
pathTemplate?: string | undefined;
|
|
8034
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7775
8035
|
} | undefined;
|
|
7776
8036
|
signal?: {
|
|
7777
8037
|
spanCount: number;
|
|
@@ -7805,6 +8065,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7805
8065
|
snippet?: string | undefined;
|
|
7806
8066
|
method?: string | undefined;
|
|
7807
8067
|
pathTemplate?: string | undefined;
|
|
8068
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7808
8069
|
} | undefined;
|
|
7809
8070
|
signal?: {
|
|
7810
8071
|
spanCount: number;
|
|
@@ -7837,6 +8098,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7837
8098
|
snippet?: string | undefined;
|
|
7838
8099
|
method?: string | undefined;
|
|
7839
8100
|
pathTemplate?: string | undefined;
|
|
8101
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7840
8102
|
} | undefined;
|
|
7841
8103
|
signal?: {
|
|
7842
8104
|
spanCount: number;
|
|
@@ -8848,18 +9110,21 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
8848
9110
|
snippet: z.ZodOptional<z.ZodString>;
|
|
8849
9111
|
method: z.ZodOptional<z.ZodString>;
|
|
8850
9112
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
9113
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
8851
9114
|
}, "strip", z.ZodTypeAny, {
|
|
8852
9115
|
file: string;
|
|
8853
9116
|
line?: number | undefined;
|
|
8854
9117
|
snippet?: string | undefined;
|
|
8855
9118
|
method?: string | undefined;
|
|
8856
9119
|
pathTemplate?: string | undefined;
|
|
9120
|
+
hostSource?: "literal" | "config" | undefined;
|
|
8857
9121
|
}, {
|
|
8858
9122
|
file: string;
|
|
8859
9123
|
line?: number | undefined;
|
|
8860
9124
|
snippet?: string | undefined;
|
|
8861
9125
|
method?: string | undefined;
|
|
8862
9126
|
pathTemplate?: string | undefined;
|
|
9127
|
+
hostSource?: "literal" | "config" | undefined;
|
|
8863
9128
|
}>>;
|
|
8864
9129
|
signal: z.ZodOptional<z.ZodObject<{
|
|
8865
9130
|
spanCount: z.ZodNumber;
|
|
@@ -8929,6 +9194,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
8929
9194
|
snippet?: string | undefined;
|
|
8930
9195
|
method?: string | undefined;
|
|
8931
9196
|
pathTemplate?: string | undefined;
|
|
9197
|
+
hostSource?: "literal" | "config" | undefined;
|
|
8932
9198
|
} | undefined;
|
|
8933
9199
|
signal?: {
|
|
8934
9200
|
spanCount: number;
|
|
@@ -8960,6 +9226,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
8960
9226
|
snippet?: string | undefined;
|
|
8961
9227
|
method?: string | undefined;
|
|
8962
9228
|
pathTemplate?: string | undefined;
|
|
9229
|
+
hostSource?: "literal" | "config" | undefined;
|
|
8963
9230
|
} | undefined;
|
|
8964
9231
|
signal?: {
|
|
8965
9232
|
spanCount: number;
|
|
@@ -9151,6 +9418,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
9151
9418
|
snippet?: string | undefined;
|
|
9152
9419
|
method?: string | undefined;
|
|
9153
9420
|
pathTemplate?: string | undefined;
|
|
9421
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9154
9422
|
} | undefined;
|
|
9155
9423
|
signal?: {
|
|
9156
9424
|
spanCount: number;
|
|
@@ -9342,6 +9610,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
9342
9610
|
snippet?: string | undefined;
|
|
9343
9611
|
method?: string | undefined;
|
|
9344
9612
|
pathTemplate?: string | undefined;
|
|
9613
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9345
9614
|
} | undefined;
|
|
9346
9615
|
signal?: {
|
|
9347
9616
|
spanCount: number;
|
|
@@ -9950,18 +10219,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9950
10219
|
snippet: z.ZodOptional<z.ZodString>;
|
|
9951
10220
|
method: z.ZodOptional<z.ZodString>;
|
|
9952
10221
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
10222
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
9953
10223
|
}, "strip", z.ZodTypeAny, {
|
|
9954
10224
|
file: string;
|
|
9955
10225
|
line?: number | undefined;
|
|
9956
10226
|
snippet?: string | undefined;
|
|
9957
10227
|
method?: string | undefined;
|
|
9958
10228
|
pathTemplate?: string | undefined;
|
|
10229
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9959
10230
|
}, {
|
|
9960
10231
|
file: string;
|
|
9961
10232
|
line?: number | undefined;
|
|
9962
10233
|
snippet?: string | undefined;
|
|
9963
10234
|
method?: string | undefined;
|
|
9964
10235
|
pathTemplate?: string | undefined;
|
|
10236
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9965
10237
|
}>>;
|
|
9966
10238
|
signal: z.ZodOptional<z.ZodObject<{
|
|
9967
10239
|
spanCount: z.ZodNumber;
|
|
@@ -10031,6 +10303,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10031
10303
|
snippet?: string | undefined;
|
|
10032
10304
|
method?: string | undefined;
|
|
10033
10305
|
pathTemplate?: string | undefined;
|
|
10306
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10034
10307
|
} | undefined;
|
|
10035
10308
|
signal?: {
|
|
10036
10309
|
spanCount: number;
|
|
@@ -10062,6 +10335,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10062
10335
|
snippet?: string | undefined;
|
|
10063
10336
|
method?: string | undefined;
|
|
10064
10337
|
pathTemplate?: string | undefined;
|
|
10338
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10065
10339
|
} | undefined;
|
|
10066
10340
|
signal?: {
|
|
10067
10341
|
spanCount: number;
|
|
@@ -10253,6 +10527,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10253
10527
|
snippet?: string | undefined;
|
|
10254
10528
|
method?: string | undefined;
|
|
10255
10529
|
pathTemplate?: string | undefined;
|
|
10530
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10256
10531
|
} | undefined;
|
|
10257
10532
|
signal?: {
|
|
10258
10533
|
spanCount: number;
|
|
@@ -10444,6 +10719,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10444
10719
|
snippet?: string | undefined;
|
|
10445
10720
|
method?: string | undefined;
|
|
10446
10721
|
pathTemplate?: string | undefined;
|
|
10722
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10447
10723
|
} | undefined;
|
|
10448
10724
|
signal?: {
|
|
10449
10725
|
spanCount: number;
|
|
@@ -11036,18 +11312,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11036
11312
|
snippet: z.ZodOptional<z.ZodString>;
|
|
11037
11313
|
method: z.ZodOptional<z.ZodString>;
|
|
11038
11314
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
11315
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
11039
11316
|
}, "strip", z.ZodTypeAny, {
|
|
11040
11317
|
file: string;
|
|
11041
11318
|
line?: number | undefined;
|
|
11042
11319
|
snippet?: string | undefined;
|
|
11043
11320
|
method?: string | undefined;
|
|
11044
11321
|
pathTemplate?: string | undefined;
|
|
11322
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11045
11323
|
}, {
|
|
11046
11324
|
file: string;
|
|
11047
11325
|
line?: number | undefined;
|
|
11048
11326
|
snippet?: string | undefined;
|
|
11049
11327
|
method?: string | undefined;
|
|
11050
11328
|
pathTemplate?: string | undefined;
|
|
11329
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11051
11330
|
}>>;
|
|
11052
11331
|
signal: z.ZodOptional<z.ZodObject<{
|
|
11053
11332
|
spanCount: z.ZodNumber;
|
|
@@ -11117,6 +11396,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11117
11396
|
snippet?: string | undefined;
|
|
11118
11397
|
method?: string | undefined;
|
|
11119
11398
|
pathTemplate?: string | undefined;
|
|
11399
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11120
11400
|
} | undefined;
|
|
11121
11401
|
signal?: {
|
|
11122
11402
|
spanCount: number;
|
|
@@ -11148,6 +11428,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11148
11428
|
snippet?: string | undefined;
|
|
11149
11429
|
method?: string | undefined;
|
|
11150
11430
|
pathTemplate?: string | undefined;
|
|
11431
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11151
11432
|
} | undefined;
|
|
11152
11433
|
signal?: {
|
|
11153
11434
|
spanCount: number;
|
|
@@ -11339,6 +11620,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11339
11620
|
snippet?: string | undefined;
|
|
11340
11621
|
method?: string | undefined;
|
|
11341
11622
|
pathTemplate?: string | undefined;
|
|
11623
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11342
11624
|
} | undefined;
|
|
11343
11625
|
signal?: {
|
|
11344
11626
|
spanCount: number;
|
|
@@ -11530,6 +11812,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11530
11812
|
snippet?: string | undefined;
|
|
11531
11813
|
method?: string | undefined;
|
|
11532
11814
|
pathTemplate?: string | undefined;
|
|
11815
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11533
11816
|
} | undefined;
|
|
11534
11817
|
signal?: {
|
|
11535
11818
|
spanCount: number;
|
|
@@ -13321,18 +13604,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13321
13604
|
snippet: z.ZodOptional<z.ZodString>;
|
|
13322
13605
|
method: z.ZodOptional<z.ZodString>;
|
|
13323
13606
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
13607
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
13324
13608
|
}, "strip", z.ZodTypeAny, {
|
|
13325
13609
|
file: string;
|
|
13326
13610
|
line?: number | undefined;
|
|
13327
13611
|
snippet?: string | undefined;
|
|
13328
13612
|
method?: string | undefined;
|
|
13329
13613
|
pathTemplate?: string | undefined;
|
|
13614
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13330
13615
|
}, {
|
|
13331
13616
|
file: string;
|
|
13332
13617
|
line?: number | undefined;
|
|
13333
13618
|
snippet?: string | undefined;
|
|
13334
13619
|
method?: string | undefined;
|
|
13335
13620
|
pathTemplate?: string | undefined;
|
|
13621
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13336
13622
|
}>>;
|
|
13337
13623
|
signal: z.ZodOptional<z.ZodObject<{
|
|
13338
13624
|
spanCount: z.ZodNumber;
|
|
@@ -13402,6 +13688,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13402
13688
|
snippet?: string | undefined;
|
|
13403
13689
|
method?: string | undefined;
|
|
13404
13690
|
pathTemplate?: string | undefined;
|
|
13691
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13405
13692
|
} | undefined;
|
|
13406
13693
|
signal?: {
|
|
13407
13694
|
spanCount: number;
|
|
@@ -13433,6 +13720,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13433
13720
|
snippet?: string | undefined;
|
|
13434
13721
|
method?: string | undefined;
|
|
13435
13722
|
pathTemplate?: string | undefined;
|
|
13723
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13436
13724
|
} | undefined;
|
|
13437
13725
|
signal?: {
|
|
13438
13726
|
spanCount: number;
|
|
@@ -13465,18 +13753,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13465
13753
|
snippet: z.ZodOptional<z.ZodString>;
|
|
13466
13754
|
method: z.ZodOptional<z.ZodString>;
|
|
13467
13755
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
13756
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
13468
13757
|
}, "strip", z.ZodTypeAny, {
|
|
13469
13758
|
file: string;
|
|
13470
13759
|
line?: number | undefined;
|
|
13471
13760
|
snippet?: string | undefined;
|
|
13472
13761
|
method?: string | undefined;
|
|
13473
13762
|
pathTemplate?: string | undefined;
|
|
13763
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13474
13764
|
}, {
|
|
13475
13765
|
file: string;
|
|
13476
13766
|
line?: number | undefined;
|
|
13477
13767
|
snippet?: string | undefined;
|
|
13478
13768
|
method?: string | undefined;
|
|
13479
13769
|
pathTemplate?: string | undefined;
|
|
13770
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13480
13771
|
}>>;
|
|
13481
13772
|
signal: z.ZodOptional<z.ZodObject<{
|
|
13482
13773
|
spanCount: z.ZodNumber;
|
|
@@ -13546,6 +13837,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13546
13837
|
snippet?: string | undefined;
|
|
13547
13838
|
method?: string | undefined;
|
|
13548
13839
|
pathTemplate?: string | undefined;
|
|
13840
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13549
13841
|
} | undefined;
|
|
13550
13842
|
signal?: {
|
|
13551
13843
|
spanCount: number;
|
|
@@ -13577,6 +13869,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13577
13869
|
snippet?: string | undefined;
|
|
13578
13870
|
method?: string | undefined;
|
|
13579
13871
|
pathTemplate?: string | undefined;
|
|
13872
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13580
13873
|
} | undefined;
|
|
13581
13874
|
signal?: {
|
|
13582
13875
|
spanCount: number;
|
|
@@ -13611,6 +13904,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13611
13904
|
snippet?: string | undefined;
|
|
13612
13905
|
method?: string | undefined;
|
|
13613
13906
|
pathTemplate?: string | undefined;
|
|
13907
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13614
13908
|
} | undefined;
|
|
13615
13909
|
signal?: {
|
|
13616
13910
|
spanCount: number;
|
|
@@ -13643,6 +13937,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13643
13937
|
snippet?: string | undefined;
|
|
13644
13938
|
method?: string | undefined;
|
|
13645
13939
|
pathTemplate?: string | undefined;
|
|
13940
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13646
13941
|
} | undefined;
|
|
13647
13942
|
signal?: {
|
|
13648
13943
|
spanCount: number;
|
|
@@ -13677,6 +13972,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13677
13972
|
snippet?: string | undefined;
|
|
13678
13973
|
method?: string | undefined;
|
|
13679
13974
|
pathTemplate?: string | undefined;
|
|
13975
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13680
13976
|
} | undefined;
|
|
13681
13977
|
signal?: {
|
|
13682
13978
|
spanCount: number;
|
|
@@ -13709,6 +14005,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13709
14005
|
snippet?: string | undefined;
|
|
13710
14006
|
method?: string | undefined;
|
|
13711
14007
|
pathTemplate?: string | undefined;
|
|
14008
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13712
14009
|
} | undefined;
|
|
13713
14010
|
signal?: {
|
|
13714
14011
|
spanCount: number;
|
|
@@ -14064,6 +14361,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14064
14361
|
snippet?: string | undefined;
|
|
14065
14362
|
method?: string | undefined;
|
|
14066
14363
|
pathTemplate?: string | undefined;
|
|
14364
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14067
14365
|
} | undefined;
|
|
14068
14366
|
signal?: {
|
|
14069
14367
|
spanCount: number;
|
|
@@ -14096,6 +14394,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14096
14394
|
snippet?: string | undefined;
|
|
14097
14395
|
method?: string | undefined;
|
|
14098
14396
|
pathTemplate?: string | undefined;
|
|
14397
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14099
14398
|
} | undefined;
|
|
14100
14399
|
signal?: {
|
|
14101
14400
|
spanCount: number;
|
|
@@ -14451,6 +14750,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14451
14750
|
snippet?: string | undefined;
|
|
14452
14751
|
method?: string | undefined;
|
|
14453
14752
|
pathTemplate?: string | undefined;
|
|
14753
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14454
14754
|
} | undefined;
|
|
14455
14755
|
signal?: {
|
|
14456
14756
|
spanCount: number;
|
|
@@ -14483,6 +14783,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14483
14783
|
snippet?: string | undefined;
|
|
14484
14784
|
method?: string | undefined;
|
|
14485
14785
|
pathTemplate?: string | undefined;
|
|
14786
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14486
14787
|
} | undefined;
|
|
14487
14788
|
signal?: {
|
|
14488
14789
|
spanCount: number;
|
|
@@ -14683,6 +14984,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14683
14984
|
snippet?: string | undefined;
|
|
14684
14985
|
method?: string | undefined;
|
|
14685
14986
|
pathTemplate?: string | undefined;
|
|
14987
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14686
14988
|
} | undefined;
|
|
14687
14989
|
signal?: {
|
|
14688
14990
|
spanCount: number;
|
|
@@ -14875,6 +15177,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14875
15177
|
snippet?: string | undefined;
|
|
14876
15178
|
method?: string | undefined;
|
|
14877
15179
|
pathTemplate?: string | undefined;
|
|
15180
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14878
15181
|
} | undefined;
|
|
14879
15182
|
signal?: {
|
|
14880
15183
|
spanCount: number;
|
|
@@ -15230,6 +15533,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15230
15533
|
snippet?: string | undefined;
|
|
15231
15534
|
method?: string | undefined;
|
|
15232
15535
|
pathTemplate?: string | undefined;
|
|
15536
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15233
15537
|
} | undefined;
|
|
15234
15538
|
signal?: {
|
|
15235
15539
|
spanCount: number;
|
|
@@ -15262,6 +15566,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15262
15566
|
snippet?: string | undefined;
|
|
15263
15567
|
method?: string | undefined;
|
|
15264
15568
|
pathTemplate?: string | undefined;
|
|
15569
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15265
15570
|
} | undefined;
|
|
15266
15571
|
signal?: {
|
|
15267
15572
|
spanCount: number;
|
|
@@ -15462,6 +15767,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15462
15767
|
snippet?: string | undefined;
|
|
15463
15768
|
method?: string | undefined;
|
|
15464
15769
|
pathTemplate?: string | undefined;
|
|
15770
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15465
15771
|
} | undefined;
|
|
15466
15772
|
signal?: {
|
|
15467
15773
|
spanCount: number;
|
|
@@ -15654,6 +15960,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15654
15960
|
snippet?: string | undefined;
|
|
15655
15961
|
method?: string | undefined;
|
|
15656
15962
|
pathTemplate?: string | undefined;
|
|
15963
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15657
15964
|
} | undefined;
|
|
15658
15965
|
signal?: {
|
|
15659
15966
|
spanCount: number;
|
|
@@ -16009,6 +16316,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
16009
16316
|
snippet?: string | undefined;
|
|
16010
16317
|
method?: string | undefined;
|
|
16011
16318
|
pathTemplate?: string | undefined;
|
|
16319
|
+
hostSource?: "literal" | "config" | undefined;
|
|
16012
16320
|
} | undefined;
|
|
16013
16321
|
signal?: {
|
|
16014
16322
|
spanCount: number;
|
|
@@ -16041,6 +16349,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
16041
16349
|
snippet?: string | undefined;
|
|
16042
16350
|
method?: string | undefined;
|
|
16043
16351
|
pathTemplate?: string | undefined;
|
|
16352
|
+
hostSource?: "literal" | "config" | undefined;
|
|
16044
16353
|
} | undefined;
|
|
16045
16354
|
signal?: {
|
|
16046
16355
|
spanCount: number;
|
|
@@ -16071,4 +16380,4 @@ declare const DEFAULT_EXTRACTED_PRECISION_FLOOR = 0.7;
|
|
|
16071
16380
|
declare function extractedPrecisionFloor(): number;
|
|
16072
16381
|
declare function passesExtractedFloor(confidence: number): boolean;
|
|
16073
16382
|
|
|
16074
|
-
export { type ApplicablePoliciesResponse, ApplicablePoliciesResponseSchema, type ApplicablePolicy, ApplicablePolicySchema, 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 };
|
|
16383
|
+
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 };
|