@neat.is/types 0.9.2 → 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 +12 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +145 -0
- package/dist/index.d.ts +145 -0
- package/dist/index.js +12 -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;
|
|
@@ -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;
|
|
@@ -4516,18 +4552,21 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4516
4552
|
snippet: z.ZodOptional<z.ZodString>;
|
|
4517
4553
|
method: z.ZodOptional<z.ZodString>;
|
|
4518
4554
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
4555
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
4519
4556
|
}, "strip", z.ZodTypeAny, {
|
|
4520
4557
|
file: string;
|
|
4521
4558
|
line?: number | undefined;
|
|
4522
4559
|
snippet?: string | undefined;
|
|
4523
4560
|
method?: string | undefined;
|
|
4524
4561
|
pathTemplate?: string | undefined;
|
|
4562
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4525
4563
|
}, {
|
|
4526
4564
|
file: string;
|
|
4527
4565
|
line?: number | undefined;
|
|
4528
4566
|
snippet?: string | undefined;
|
|
4529
4567
|
method?: string | undefined;
|
|
4530
4568
|
pathTemplate?: string | undefined;
|
|
4569
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4531
4570
|
}>>;
|
|
4532
4571
|
signal: z.ZodOptional<z.ZodObject<{
|
|
4533
4572
|
spanCount: z.ZodNumber;
|
|
@@ -4597,6 +4636,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4597
4636
|
snippet?: string | undefined;
|
|
4598
4637
|
method?: string | undefined;
|
|
4599
4638
|
pathTemplate?: string | undefined;
|
|
4639
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4600
4640
|
} | undefined;
|
|
4601
4641
|
signal?: {
|
|
4602
4642
|
spanCount: number;
|
|
@@ -4628,6 +4668,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4628
4668
|
snippet?: string | undefined;
|
|
4629
4669
|
method?: string | undefined;
|
|
4630
4670
|
pathTemplate?: string | undefined;
|
|
4671
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4631
4672
|
} | undefined;
|
|
4632
4673
|
signal?: {
|
|
4633
4674
|
spanCount: number;
|
|
@@ -4676,6 +4717,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4676
4717
|
snippet?: string | undefined;
|
|
4677
4718
|
method?: string | undefined;
|
|
4678
4719
|
pathTemplate?: string | undefined;
|
|
4720
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4679
4721
|
} | undefined;
|
|
4680
4722
|
signal?: {
|
|
4681
4723
|
spanCount: number;
|
|
@@ -4718,6 +4760,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4718
4760
|
snippet?: string | undefined;
|
|
4719
4761
|
method?: string | undefined;
|
|
4720
4762
|
pathTemplate?: string | undefined;
|
|
4763
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4721
4764
|
} | undefined;
|
|
4722
4765
|
signal?: {
|
|
4723
4766
|
spanCount: number;
|
|
@@ -4754,18 +4797,21 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4754
4797
|
snippet: z.ZodOptional<z.ZodString>;
|
|
4755
4798
|
method: z.ZodOptional<z.ZodString>;
|
|
4756
4799
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
4800
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
4757
4801
|
}, "strip", z.ZodTypeAny, {
|
|
4758
4802
|
file: string;
|
|
4759
4803
|
line?: number | undefined;
|
|
4760
4804
|
snippet?: string | undefined;
|
|
4761
4805
|
method?: string | undefined;
|
|
4762
4806
|
pathTemplate?: string | undefined;
|
|
4807
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4763
4808
|
}, {
|
|
4764
4809
|
file: string;
|
|
4765
4810
|
line?: number | undefined;
|
|
4766
4811
|
snippet?: string | undefined;
|
|
4767
4812
|
method?: string | undefined;
|
|
4768
4813
|
pathTemplate?: string | undefined;
|
|
4814
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4769
4815
|
}>>;
|
|
4770
4816
|
signal: z.ZodOptional<z.ZodObject<{
|
|
4771
4817
|
spanCount: z.ZodNumber;
|
|
@@ -4835,6 +4881,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4835
4881
|
snippet?: string | undefined;
|
|
4836
4882
|
method?: string | undefined;
|
|
4837
4883
|
pathTemplate?: string | undefined;
|
|
4884
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4838
4885
|
} | undefined;
|
|
4839
4886
|
signal?: {
|
|
4840
4887
|
spanCount: number;
|
|
@@ -4866,6 +4913,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4866
4913
|
snippet?: string | undefined;
|
|
4867
4914
|
method?: string | undefined;
|
|
4868
4915
|
pathTemplate?: string | undefined;
|
|
4916
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4869
4917
|
} | undefined;
|
|
4870
4918
|
signal?: {
|
|
4871
4919
|
spanCount: number;
|
|
@@ -4914,6 +4962,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4914
4962
|
snippet?: string | undefined;
|
|
4915
4963
|
method?: string | undefined;
|
|
4916
4964
|
pathTemplate?: string | undefined;
|
|
4965
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4917
4966
|
} | undefined;
|
|
4918
4967
|
signal?: {
|
|
4919
4968
|
spanCount: number;
|
|
@@ -4956,6 +5005,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4956
5005
|
snippet?: string | undefined;
|
|
4957
5006
|
method?: string | undefined;
|
|
4958
5007
|
pathTemplate?: string | undefined;
|
|
5008
|
+
hostSource?: "literal" | "config" | undefined;
|
|
4959
5009
|
} | undefined;
|
|
4960
5010
|
signal?: {
|
|
4961
5011
|
spanCount: number;
|
|
@@ -5067,18 +5117,21 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5067
5117
|
snippet: z.ZodOptional<z.ZodString>;
|
|
5068
5118
|
method: z.ZodOptional<z.ZodString>;
|
|
5069
5119
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
5120
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
5070
5121
|
}, "strip", z.ZodTypeAny, {
|
|
5071
5122
|
file: string;
|
|
5072
5123
|
line?: number | undefined;
|
|
5073
5124
|
snippet?: string | undefined;
|
|
5074
5125
|
method?: string | undefined;
|
|
5075
5126
|
pathTemplate?: string | undefined;
|
|
5127
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5076
5128
|
}, {
|
|
5077
5129
|
file: string;
|
|
5078
5130
|
line?: number | undefined;
|
|
5079
5131
|
snippet?: string | undefined;
|
|
5080
5132
|
method?: string | undefined;
|
|
5081
5133
|
pathTemplate?: string | undefined;
|
|
5134
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5082
5135
|
}>>;
|
|
5083
5136
|
signal: z.ZodOptional<z.ZodObject<{
|
|
5084
5137
|
spanCount: z.ZodNumber;
|
|
@@ -5148,6 +5201,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5148
5201
|
snippet?: string | undefined;
|
|
5149
5202
|
method?: string | undefined;
|
|
5150
5203
|
pathTemplate?: string | undefined;
|
|
5204
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5151
5205
|
} | undefined;
|
|
5152
5206
|
signal?: {
|
|
5153
5207
|
spanCount: number;
|
|
@@ -5179,6 +5233,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5179
5233
|
snippet?: string | undefined;
|
|
5180
5234
|
method?: string | undefined;
|
|
5181
5235
|
pathTemplate?: string | undefined;
|
|
5236
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5182
5237
|
} | undefined;
|
|
5183
5238
|
signal?: {
|
|
5184
5239
|
spanCount: number;
|
|
@@ -5230,6 +5285,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5230
5285
|
snippet?: string | undefined;
|
|
5231
5286
|
method?: string | undefined;
|
|
5232
5287
|
pathTemplate?: string | undefined;
|
|
5288
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5233
5289
|
} | undefined;
|
|
5234
5290
|
signal?: {
|
|
5235
5291
|
spanCount: number;
|
|
@@ -5276,6 +5332,7 @@ declare const DivergenceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5276
5332
|
snippet?: string | undefined;
|
|
5277
5333
|
method?: string | undefined;
|
|
5278
5334
|
pathTemplate?: string | undefined;
|
|
5335
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5279
5336
|
} | undefined;
|
|
5280
5337
|
signal?: {
|
|
5281
5338
|
spanCount: number;
|
|
@@ -5314,18 +5371,21 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5314
5371
|
snippet: z.ZodOptional<z.ZodString>;
|
|
5315
5372
|
method: z.ZodOptional<z.ZodString>;
|
|
5316
5373
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
5374
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
5317
5375
|
}, "strip", z.ZodTypeAny, {
|
|
5318
5376
|
file: string;
|
|
5319
5377
|
line?: number | undefined;
|
|
5320
5378
|
snippet?: string | undefined;
|
|
5321
5379
|
method?: string | undefined;
|
|
5322
5380
|
pathTemplate?: string | undefined;
|
|
5381
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5323
5382
|
}, {
|
|
5324
5383
|
file: string;
|
|
5325
5384
|
line?: number | undefined;
|
|
5326
5385
|
snippet?: string | undefined;
|
|
5327
5386
|
method?: string | undefined;
|
|
5328
5387
|
pathTemplate?: string | undefined;
|
|
5388
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5329
5389
|
}>>;
|
|
5330
5390
|
signal: z.ZodOptional<z.ZodObject<{
|
|
5331
5391
|
spanCount: z.ZodNumber;
|
|
@@ -5395,6 +5455,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5395
5455
|
snippet?: string | undefined;
|
|
5396
5456
|
method?: string | undefined;
|
|
5397
5457
|
pathTemplate?: string | undefined;
|
|
5458
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5398
5459
|
} | undefined;
|
|
5399
5460
|
signal?: {
|
|
5400
5461
|
spanCount: number;
|
|
@@ -5426,6 +5487,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5426
5487
|
snippet?: string | undefined;
|
|
5427
5488
|
method?: string | undefined;
|
|
5428
5489
|
pathTemplate?: string | undefined;
|
|
5490
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5429
5491
|
} | undefined;
|
|
5430
5492
|
signal?: {
|
|
5431
5493
|
spanCount: number;
|
|
@@ -5474,6 +5536,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5474
5536
|
snippet?: string | undefined;
|
|
5475
5537
|
method?: string | undefined;
|
|
5476
5538
|
pathTemplate?: string | undefined;
|
|
5539
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5477
5540
|
} | undefined;
|
|
5478
5541
|
signal?: {
|
|
5479
5542
|
spanCount: number;
|
|
@@ -5516,6 +5579,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5516
5579
|
snippet?: string | undefined;
|
|
5517
5580
|
method?: string | undefined;
|
|
5518
5581
|
pathTemplate?: string | undefined;
|
|
5582
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5519
5583
|
} | undefined;
|
|
5520
5584
|
signal?: {
|
|
5521
5585
|
spanCount: number;
|
|
@@ -5552,18 +5616,21 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5552
5616
|
snippet: z.ZodOptional<z.ZodString>;
|
|
5553
5617
|
method: z.ZodOptional<z.ZodString>;
|
|
5554
5618
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
5619
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
5555
5620
|
}, "strip", z.ZodTypeAny, {
|
|
5556
5621
|
file: string;
|
|
5557
5622
|
line?: number | undefined;
|
|
5558
5623
|
snippet?: string | undefined;
|
|
5559
5624
|
method?: string | undefined;
|
|
5560
5625
|
pathTemplate?: string | undefined;
|
|
5626
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5561
5627
|
}, {
|
|
5562
5628
|
file: string;
|
|
5563
5629
|
line?: number | undefined;
|
|
5564
5630
|
snippet?: string | undefined;
|
|
5565
5631
|
method?: string | undefined;
|
|
5566
5632
|
pathTemplate?: string | undefined;
|
|
5633
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5567
5634
|
}>>;
|
|
5568
5635
|
signal: z.ZodOptional<z.ZodObject<{
|
|
5569
5636
|
spanCount: z.ZodNumber;
|
|
@@ -5633,6 +5700,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5633
5700
|
snippet?: string | undefined;
|
|
5634
5701
|
method?: string | undefined;
|
|
5635
5702
|
pathTemplate?: string | undefined;
|
|
5703
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5636
5704
|
} | undefined;
|
|
5637
5705
|
signal?: {
|
|
5638
5706
|
spanCount: number;
|
|
@@ -5664,6 +5732,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5664
5732
|
snippet?: string | undefined;
|
|
5665
5733
|
method?: string | undefined;
|
|
5666
5734
|
pathTemplate?: string | undefined;
|
|
5735
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5667
5736
|
} | undefined;
|
|
5668
5737
|
signal?: {
|
|
5669
5738
|
spanCount: number;
|
|
@@ -5712,6 +5781,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5712
5781
|
snippet?: string | undefined;
|
|
5713
5782
|
method?: string | undefined;
|
|
5714
5783
|
pathTemplate?: string | undefined;
|
|
5784
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5715
5785
|
} | undefined;
|
|
5716
5786
|
signal?: {
|
|
5717
5787
|
spanCount: number;
|
|
@@ -5754,6 +5824,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5754
5824
|
snippet?: string | undefined;
|
|
5755
5825
|
method?: string | undefined;
|
|
5756
5826
|
pathTemplate?: string | undefined;
|
|
5827
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5757
5828
|
} | undefined;
|
|
5758
5829
|
signal?: {
|
|
5759
5830
|
spanCount: number;
|
|
@@ -5865,18 +5936,21 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5865
5936
|
snippet: z.ZodOptional<z.ZodString>;
|
|
5866
5937
|
method: z.ZodOptional<z.ZodString>;
|
|
5867
5938
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
5939
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
5868
5940
|
}, "strip", z.ZodTypeAny, {
|
|
5869
5941
|
file: string;
|
|
5870
5942
|
line?: number | undefined;
|
|
5871
5943
|
snippet?: string | undefined;
|
|
5872
5944
|
method?: string | undefined;
|
|
5873
5945
|
pathTemplate?: string | undefined;
|
|
5946
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5874
5947
|
}, {
|
|
5875
5948
|
file: string;
|
|
5876
5949
|
line?: number | undefined;
|
|
5877
5950
|
snippet?: string | undefined;
|
|
5878
5951
|
method?: string | undefined;
|
|
5879
5952
|
pathTemplate?: string | undefined;
|
|
5953
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5880
5954
|
}>>;
|
|
5881
5955
|
signal: z.ZodOptional<z.ZodObject<{
|
|
5882
5956
|
spanCount: z.ZodNumber;
|
|
@@ -5946,6 +6020,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5946
6020
|
snippet?: string | undefined;
|
|
5947
6021
|
method?: string | undefined;
|
|
5948
6022
|
pathTemplate?: string | undefined;
|
|
6023
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5949
6024
|
} | undefined;
|
|
5950
6025
|
signal?: {
|
|
5951
6026
|
spanCount: number;
|
|
@@ -5977,6 +6052,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
5977
6052
|
snippet?: string | undefined;
|
|
5978
6053
|
method?: string | undefined;
|
|
5979
6054
|
pathTemplate?: string | undefined;
|
|
6055
|
+
hostSource?: "literal" | "config" | undefined;
|
|
5980
6056
|
} | undefined;
|
|
5981
6057
|
signal?: {
|
|
5982
6058
|
spanCount: number;
|
|
@@ -6028,6 +6104,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6028
6104
|
snippet?: string | undefined;
|
|
6029
6105
|
method?: string | undefined;
|
|
6030
6106
|
pathTemplate?: string | undefined;
|
|
6107
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6031
6108
|
} | undefined;
|
|
6032
6109
|
signal?: {
|
|
6033
6110
|
spanCount: number;
|
|
@@ -6074,6 +6151,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6074
6151
|
snippet?: string | undefined;
|
|
6075
6152
|
method?: string | undefined;
|
|
6076
6153
|
pathTemplate?: string | undefined;
|
|
6154
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6077
6155
|
} | undefined;
|
|
6078
6156
|
signal?: {
|
|
6079
6157
|
spanCount: number;
|
|
@@ -6120,6 +6198,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6120
6198
|
snippet?: string | undefined;
|
|
6121
6199
|
method?: string | undefined;
|
|
6122
6200
|
pathTemplate?: string | undefined;
|
|
6201
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6123
6202
|
} | undefined;
|
|
6124
6203
|
signal?: {
|
|
6125
6204
|
spanCount: number;
|
|
@@ -6162,6 +6241,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6162
6241
|
snippet?: string | undefined;
|
|
6163
6242
|
method?: string | undefined;
|
|
6164
6243
|
pathTemplate?: string | undefined;
|
|
6244
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6165
6245
|
} | undefined;
|
|
6166
6246
|
signal?: {
|
|
6167
6247
|
spanCount: number;
|
|
@@ -6228,6 +6308,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6228
6308
|
snippet?: string | undefined;
|
|
6229
6309
|
method?: string | undefined;
|
|
6230
6310
|
pathTemplate?: string | undefined;
|
|
6311
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6231
6312
|
} | undefined;
|
|
6232
6313
|
signal?: {
|
|
6233
6314
|
spanCount: number;
|
|
@@ -6273,6 +6354,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6273
6354
|
snippet?: string | undefined;
|
|
6274
6355
|
method?: string | undefined;
|
|
6275
6356
|
pathTemplate?: string | undefined;
|
|
6357
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6276
6358
|
} | undefined;
|
|
6277
6359
|
signal?: {
|
|
6278
6360
|
spanCount: number;
|
|
@@ -6315,6 +6397,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6315
6397
|
snippet?: string | undefined;
|
|
6316
6398
|
method?: string | undefined;
|
|
6317
6399
|
pathTemplate?: string | undefined;
|
|
6400
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6318
6401
|
} | undefined;
|
|
6319
6402
|
signal?: {
|
|
6320
6403
|
spanCount: number;
|
|
@@ -6381,6 +6464,7 @@ declare const DivergenceResultSchema: z.ZodObject<{
|
|
|
6381
6464
|
snippet?: string | undefined;
|
|
6382
6465
|
method?: string | undefined;
|
|
6383
6466
|
pathTemplate?: string | undefined;
|
|
6467
|
+
hostSource?: "literal" | "config" | undefined;
|
|
6384
6468
|
} | undefined;
|
|
6385
6469
|
signal?: {
|
|
6386
6470
|
spanCount: number;
|
|
@@ -7615,18 +7699,21 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7615
7699
|
snippet: z.ZodOptional<z.ZodString>;
|
|
7616
7700
|
method: z.ZodOptional<z.ZodString>;
|
|
7617
7701
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
7702
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
7618
7703
|
}, "strip", z.ZodTypeAny, {
|
|
7619
7704
|
file: string;
|
|
7620
7705
|
line?: number | undefined;
|
|
7621
7706
|
snippet?: string | undefined;
|
|
7622
7707
|
method?: string | undefined;
|
|
7623
7708
|
pathTemplate?: string | undefined;
|
|
7709
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7624
7710
|
}, {
|
|
7625
7711
|
file: string;
|
|
7626
7712
|
line?: number | undefined;
|
|
7627
7713
|
snippet?: string | undefined;
|
|
7628
7714
|
method?: string | undefined;
|
|
7629
7715
|
pathTemplate?: string | undefined;
|
|
7716
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7630
7717
|
}>>;
|
|
7631
7718
|
signal: z.ZodOptional<z.ZodObject<{
|
|
7632
7719
|
spanCount: z.ZodNumber;
|
|
@@ -7696,6 +7783,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7696
7783
|
snippet?: string | undefined;
|
|
7697
7784
|
method?: string | undefined;
|
|
7698
7785
|
pathTemplate?: string | undefined;
|
|
7786
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7699
7787
|
} | undefined;
|
|
7700
7788
|
signal?: {
|
|
7701
7789
|
spanCount: number;
|
|
@@ -7727,6 +7815,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7727
7815
|
snippet?: string | undefined;
|
|
7728
7816
|
method?: string | undefined;
|
|
7729
7817
|
pathTemplate?: string | undefined;
|
|
7818
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7730
7819
|
} | undefined;
|
|
7731
7820
|
signal?: {
|
|
7732
7821
|
spanCount: number;
|
|
@@ -7759,18 +7848,21 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7759
7848
|
snippet: z.ZodOptional<z.ZodString>;
|
|
7760
7849
|
method: z.ZodOptional<z.ZodString>;
|
|
7761
7850
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
7851
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
7762
7852
|
}, "strip", z.ZodTypeAny, {
|
|
7763
7853
|
file: string;
|
|
7764
7854
|
line?: number | undefined;
|
|
7765
7855
|
snippet?: string | undefined;
|
|
7766
7856
|
method?: string | undefined;
|
|
7767
7857
|
pathTemplate?: string | undefined;
|
|
7858
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7768
7859
|
}, {
|
|
7769
7860
|
file: string;
|
|
7770
7861
|
line?: number | undefined;
|
|
7771
7862
|
snippet?: string | undefined;
|
|
7772
7863
|
method?: string | undefined;
|
|
7773
7864
|
pathTemplate?: string | undefined;
|
|
7865
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7774
7866
|
}>>;
|
|
7775
7867
|
signal: z.ZodOptional<z.ZodObject<{
|
|
7776
7868
|
spanCount: z.ZodNumber;
|
|
@@ -7840,6 +7932,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7840
7932
|
snippet?: string | undefined;
|
|
7841
7933
|
method?: string | undefined;
|
|
7842
7934
|
pathTemplate?: string | undefined;
|
|
7935
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7843
7936
|
} | undefined;
|
|
7844
7937
|
signal?: {
|
|
7845
7938
|
spanCount: number;
|
|
@@ -7871,6 +7964,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7871
7964
|
snippet?: string | undefined;
|
|
7872
7965
|
method?: string | undefined;
|
|
7873
7966
|
pathTemplate?: string | undefined;
|
|
7967
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7874
7968
|
} | undefined;
|
|
7875
7969
|
signal?: {
|
|
7876
7970
|
spanCount: number;
|
|
@@ -7904,6 +7998,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7904
7998
|
snippet?: string | undefined;
|
|
7905
7999
|
method?: string | undefined;
|
|
7906
8000
|
pathTemplate?: string | undefined;
|
|
8001
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7907
8002
|
} | undefined;
|
|
7908
8003
|
signal?: {
|
|
7909
8004
|
spanCount: number;
|
|
@@ -7936,6 +8031,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7936
8031
|
snippet?: string | undefined;
|
|
7937
8032
|
method?: string | undefined;
|
|
7938
8033
|
pathTemplate?: string | undefined;
|
|
8034
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7939
8035
|
} | undefined;
|
|
7940
8036
|
signal?: {
|
|
7941
8037
|
spanCount: number;
|
|
@@ -7969,6 +8065,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
7969
8065
|
snippet?: string | undefined;
|
|
7970
8066
|
method?: string | undefined;
|
|
7971
8067
|
pathTemplate?: string | undefined;
|
|
8068
|
+
hostSource?: "literal" | "config" | undefined;
|
|
7972
8069
|
} | undefined;
|
|
7973
8070
|
signal?: {
|
|
7974
8071
|
spanCount: number;
|
|
@@ -8001,6 +8098,7 @@ declare const GraphEdgesResponseSchema: z.ZodObject<{
|
|
|
8001
8098
|
snippet?: string | undefined;
|
|
8002
8099
|
method?: string | undefined;
|
|
8003
8100
|
pathTemplate?: string | undefined;
|
|
8101
|
+
hostSource?: "literal" | "config" | undefined;
|
|
8004
8102
|
} | undefined;
|
|
8005
8103
|
signal?: {
|
|
8006
8104
|
spanCount: number;
|
|
@@ -9012,18 +9110,21 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
9012
9110
|
snippet: z.ZodOptional<z.ZodString>;
|
|
9013
9111
|
method: z.ZodOptional<z.ZodString>;
|
|
9014
9112
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
9113
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
9015
9114
|
}, "strip", z.ZodTypeAny, {
|
|
9016
9115
|
file: string;
|
|
9017
9116
|
line?: number | undefined;
|
|
9018
9117
|
snippet?: string | undefined;
|
|
9019
9118
|
method?: string | undefined;
|
|
9020
9119
|
pathTemplate?: string | undefined;
|
|
9120
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9021
9121
|
}, {
|
|
9022
9122
|
file: string;
|
|
9023
9123
|
line?: number | undefined;
|
|
9024
9124
|
snippet?: string | undefined;
|
|
9025
9125
|
method?: string | undefined;
|
|
9026
9126
|
pathTemplate?: string | undefined;
|
|
9127
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9027
9128
|
}>>;
|
|
9028
9129
|
signal: z.ZodOptional<z.ZodObject<{
|
|
9029
9130
|
spanCount: z.ZodNumber;
|
|
@@ -9093,6 +9194,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
9093
9194
|
snippet?: string | undefined;
|
|
9094
9195
|
method?: string | undefined;
|
|
9095
9196
|
pathTemplate?: string | undefined;
|
|
9197
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9096
9198
|
} | undefined;
|
|
9097
9199
|
signal?: {
|
|
9098
9200
|
spanCount: number;
|
|
@@ -9124,6 +9226,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
9124
9226
|
snippet?: string | undefined;
|
|
9125
9227
|
method?: string | undefined;
|
|
9126
9228
|
pathTemplate?: string | undefined;
|
|
9229
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9127
9230
|
} | undefined;
|
|
9128
9231
|
signal?: {
|
|
9129
9232
|
spanCount: number;
|
|
@@ -9315,6 +9418,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
9315
9418
|
snippet?: string | undefined;
|
|
9316
9419
|
method?: string | undefined;
|
|
9317
9420
|
pathTemplate?: string | undefined;
|
|
9421
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9318
9422
|
} | undefined;
|
|
9319
9423
|
signal?: {
|
|
9320
9424
|
spanCount: number;
|
|
@@ -9506,6 +9610,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
9506
9610
|
snippet?: string | undefined;
|
|
9507
9611
|
method?: string | undefined;
|
|
9508
9612
|
pathTemplate?: string | undefined;
|
|
9613
|
+
hostSource?: "literal" | "config" | undefined;
|
|
9509
9614
|
} | undefined;
|
|
9510
9615
|
signal?: {
|
|
9511
9616
|
spanCount: number;
|
|
@@ -10114,18 +10219,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10114
10219
|
snippet: z.ZodOptional<z.ZodString>;
|
|
10115
10220
|
method: z.ZodOptional<z.ZodString>;
|
|
10116
10221
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
10222
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
10117
10223
|
}, "strip", z.ZodTypeAny, {
|
|
10118
10224
|
file: string;
|
|
10119
10225
|
line?: number | undefined;
|
|
10120
10226
|
snippet?: string | undefined;
|
|
10121
10227
|
method?: string | undefined;
|
|
10122
10228
|
pathTemplate?: string | undefined;
|
|
10229
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10123
10230
|
}, {
|
|
10124
10231
|
file: string;
|
|
10125
10232
|
line?: number | undefined;
|
|
10126
10233
|
snippet?: string | undefined;
|
|
10127
10234
|
method?: string | undefined;
|
|
10128
10235
|
pathTemplate?: string | undefined;
|
|
10236
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10129
10237
|
}>>;
|
|
10130
10238
|
signal: z.ZodOptional<z.ZodObject<{
|
|
10131
10239
|
spanCount: z.ZodNumber;
|
|
@@ -10195,6 +10303,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10195
10303
|
snippet?: string | undefined;
|
|
10196
10304
|
method?: string | undefined;
|
|
10197
10305
|
pathTemplate?: string | undefined;
|
|
10306
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10198
10307
|
} | undefined;
|
|
10199
10308
|
signal?: {
|
|
10200
10309
|
spanCount: number;
|
|
@@ -10226,6 +10335,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10226
10335
|
snippet?: string | undefined;
|
|
10227
10336
|
method?: string | undefined;
|
|
10228
10337
|
pathTemplate?: string | undefined;
|
|
10338
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10229
10339
|
} | undefined;
|
|
10230
10340
|
signal?: {
|
|
10231
10341
|
spanCount: number;
|
|
@@ -10417,6 +10527,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10417
10527
|
snippet?: string | undefined;
|
|
10418
10528
|
method?: string | undefined;
|
|
10419
10529
|
pathTemplate?: string | undefined;
|
|
10530
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10420
10531
|
} | undefined;
|
|
10421
10532
|
signal?: {
|
|
10422
10533
|
spanCount: number;
|
|
@@ -10608,6 +10719,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10608
10719
|
snippet?: string | undefined;
|
|
10609
10720
|
method?: string | undefined;
|
|
10610
10721
|
pathTemplate?: string | undefined;
|
|
10722
|
+
hostSource?: "literal" | "config" | undefined;
|
|
10611
10723
|
} | undefined;
|
|
10612
10724
|
signal?: {
|
|
10613
10725
|
spanCount: number;
|
|
@@ -11200,18 +11312,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11200
11312
|
snippet: z.ZodOptional<z.ZodString>;
|
|
11201
11313
|
method: z.ZodOptional<z.ZodString>;
|
|
11202
11314
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
11315
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
11203
11316
|
}, "strip", z.ZodTypeAny, {
|
|
11204
11317
|
file: string;
|
|
11205
11318
|
line?: number | undefined;
|
|
11206
11319
|
snippet?: string | undefined;
|
|
11207
11320
|
method?: string | undefined;
|
|
11208
11321
|
pathTemplate?: string | undefined;
|
|
11322
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11209
11323
|
}, {
|
|
11210
11324
|
file: string;
|
|
11211
11325
|
line?: number | undefined;
|
|
11212
11326
|
snippet?: string | undefined;
|
|
11213
11327
|
method?: string | undefined;
|
|
11214
11328
|
pathTemplate?: string | undefined;
|
|
11329
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11215
11330
|
}>>;
|
|
11216
11331
|
signal: z.ZodOptional<z.ZodObject<{
|
|
11217
11332
|
spanCount: z.ZodNumber;
|
|
@@ -11281,6 +11396,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11281
11396
|
snippet?: string | undefined;
|
|
11282
11397
|
method?: string | undefined;
|
|
11283
11398
|
pathTemplate?: string | undefined;
|
|
11399
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11284
11400
|
} | undefined;
|
|
11285
11401
|
signal?: {
|
|
11286
11402
|
spanCount: number;
|
|
@@ -11312,6 +11428,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11312
11428
|
snippet?: string | undefined;
|
|
11313
11429
|
method?: string | undefined;
|
|
11314
11430
|
pathTemplate?: string | undefined;
|
|
11431
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11315
11432
|
} | undefined;
|
|
11316
11433
|
signal?: {
|
|
11317
11434
|
spanCount: number;
|
|
@@ -11503,6 +11620,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11503
11620
|
snippet?: string | undefined;
|
|
11504
11621
|
method?: string | undefined;
|
|
11505
11622
|
pathTemplate?: string | undefined;
|
|
11623
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11506
11624
|
} | undefined;
|
|
11507
11625
|
signal?: {
|
|
11508
11626
|
spanCount: number;
|
|
@@ -11694,6 +11812,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11694
11812
|
snippet?: string | undefined;
|
|
11695
11813
|
method?: string | undefined;
|
|
11696
11814
|
pathTemplate?: string | undefined;
|
|
11815
|
+
hostSource?: "literal" | "config" | undefined;
|
|
11697
11816
|
} | undefined;
|
|
11698
11817
|
signal?: {
|
|
11699
11818
|
spanCount: number;
|
|
@@ -13485,18 +13604,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13485
13604
|
snippet: z.ZodOptional<z.ZodString>;
|
|
13486
13605
|
method: z.ZodOptional<z.ZodString>;
|
|
13487
13606
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
13607
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
13488
13608
|
}, "strip", z.ZodTypeAny, {
|
|
13489
13609
|
file: string;
|
|
13490
13610
|
line?: number | undefined;
|
|
13491
13611
|
snippet?: string | undefined;
|
|
13492
13612
|
method?: string | undefined;
|
|
13493
13613
|
pathTemplate?: string | undefined;
|
|
13614
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13494
13615
|
}, {
|
|
13495
13616
|
file: string;
|
|
13496
13617
|
line?: number | undefined;
|
|
13497
13618
|
snippet?: string | undefined;
|
|
13498
13619
|
method?: string | undefined;
|
|
13499
13620
|
pathTemplate?: string | undefined;
|
|
13621
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13500
13622
|
}>>;
|
|
13501
13623
|
signal: z.ZodOptional<z.ZodObject<{
|
|
13502
13624
|
spanCount: z.ZodNumber;
|
|
@@ -13566,6 +13688,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13566
13688
|
snippet?: string | undefined;
|
|
13567
13689
|
method?: string | undefined;
|
|
13568
13690
|
pathTemplate?: string | undefined;
|
|
13691
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13569
13692
|
} | undefined;
|
|
13570
13693
|
signal?: {
|
|
13571
13694
|
spanCount: number;
|
|
@@ -13597,6 +13720,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13597
13720
|
snippet?: string | undefined;
|
|
13598
13721
|
method?: string | undefined;
|
|
13599
13722
|
pathTemplate?: string | undefined;
|
|
13723
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13600
13724
|
} | undefined;
|
|
13601
13725
|
signal?: {
|
|
13602
13726
|
spanCount: number;
|
|
@@ -13629,18 +13753,21 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13629
13753
|
snippet: z.ZodOptional<z.ZodString>;
|
|
13630
13754
|
method: z.ZodOptional<z.ZodString>;
|
|
13631
13755
|
pathTemplate: z.ZodOptional<z.ZodString>;
|
|
13756
|
+
hostSource: z.ZodOptional<z.ZodEnum<["literal", "config"]>>;
|
|
13632
13757
|
}, "strip", z.ZodTypeAny, {
|
|
13633
13758
|
file: string;
|
|
13634
13759
|
line?: number | undefined;
|
|
13635
13760
|
snippet?: string | undefined;
|
|
13636
13761
|
method?: string | undefined;
|
|
13637
13762
|
pathTemplate?: string | undefined;
|
|
13763
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13638
13764
|
}, {
|
|
13639
13765
|
file: string;
|
|
13640
13766
|
line?: number | undefined;
|
|
13641
13767
|
snippet?: string | undefined;
|
|
13642
13768
|
method?: string | undefined;
|
|
13643
13769
|
pathTemplate?: string | undefined;
|
|
13770
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13644
13771
|
}>>;
|
|
13645
13772
|
signal: z.ZodOptional<z.ZodObject<{
|
|
13646
13773
|
spanCount: z.ZodNumber;
|
|
@@ -13710,6 +13837,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13710
13837
|
snippet?: string | undefined;
|
|
13711
13838
|
method?: string | undefined;
|
|
13712
13839
|
pathTemplate?: string | undefined;
|
|
13840
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13713
13841
|
} | undefined;
|
|
13714
13842
|
signal?: {
|
|
13715
13843
|
spanCount: number;
|
|
@@ -13741,6 +13869,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13741
13869
|
snippet?: string | undefined;
|
|
13742
13870
|
method?: string | undefined;
|
|
13743
13871
|
pathTemplate?: string | undefined;
|
|
13872
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13744
13873
|
} | undefined;
|
|
13745
13874
|
signal?: {
|
|
13746
13875
|
spanCount: number;
|
|
@@ -13775,6 +13904,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13775
13904
|
snippet?: string | undefined;
|
|
13776
13905
|
method?: string | undefined;
|
|
13777
13906
|
pathTemplate?: string | undefined;
|
|
13907
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13778
13908
|
} | undefined;
|
|
13779
13909
|
signal?: {
|
|
13780
13910
|
spanCount: number;
|
|
@@ -13807,6 +13937,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13807
13937
|
snippet?: string | undefined;
|
|
13808
13938
|
method?: string | undefined;
|
|
13809
13939
|
pathTemplate?: string | undefined;
|
|
13940
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13810
13941
|
} | undefined;
|
|
13811
13942
|
signal?: {
|
|
13812
13943
|
spanCount: number;
|
|
@@ -13841,6 +13972,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13841
13972
|
snippet?: string | undefined;
|
|
13842
13973
|
method?: string | undefined;
|
|
13843
13974
|
pathTemplate?: string | undefined;
|
|
13975
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13844
13976
|
} | undefined;
|
|
13845
13977
|
signal?: {
|
|
13846
13978
|
spanCount: number;
|
|
@@ -13873,6 +14005,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
13873
14005
|
snippet?: string | undefined;
|
|
13874
14006
|
method?: string | undefined;
|
|
13875
14007
|
pathTemplate?: string | undefined;
|
|
14008
|
+
hostSource?: "literal" | "config" | undefined;
|
|
13876
14009
|
} | undefined;
|
|
13877
14010
|
signal?: {
|
|
13878
14011
|
spanCount: number;
|
|
@@ -14228,6 +14361,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14228
14361
|
snippet?: string | undefined;
|
|
14229
14362
|
method?: string | undefined;
|
|
14230
14363
|
pathTemplate?: string | undefined;
|
|
14364
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14231
14365
|
} | undefined;
|
|
14232
14366
|
signal?: {
|
|
14233
14367
|
spanCount: number;
|
|
@@ -14260,6 +14394,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14260
14394
|
snippet?: string | undefined;
|
|
14261
14395
|
method?: string | undefined;
|
|
14262
14396
|
pathTemplate?: string | undefined;
|
|
14397
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14263
14398
|
} | undefined;
|
|
14264
14399
|
signal?: {
|
|
14265
14400
|
spanCount: number;
|
|
@@ -14615,6 +14750,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14615
14750
|
snippet?: string | undefined;
|
|
14616
14751
|
method?: string | undefined;
|
|
14617
14752
|
pathTemplate?: string | undefined;
|
|
14753
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14618
14754
|
} | undefined;
|
|
14619
14755
|
signal?: {
|
|
14620
14756
|
spanCount: number;
|
|
@@ -14647,6 +14783,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14647
14783
|
snippet?: string | undefined;
|
|
14648
14784
|
method?: string | undefined;
|
|
14649
14785
|
pathTemplate?: string | undefined;
|
|
14786
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14650
14787
|
} | undefined;
|
|
14651
14788
|
signal?: {
|
|
14652
14789
|
spanCount: number;
|
|
@@ -14847,6 +14984,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
14847
14984
|
snippet?: string | undefined;
|
|
14848
14985
|
method?: string | undefined;
|
|
14849
14986
|
pathTemplate?: string | undefined;
|
|
14987
|
+
hostSource?: "literal" | "config" | undefined;
|
|
14850
14988
|
} | undefined;
|
|
14851
14989
|
signal?: {
|
|
14852
14990
|
spanCount: number;
|
|
@@ -15039,6 +15177,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15039
15177
|
snippet?: string | undefined;
|
|
15040
15178
|
method?: string | undefined;
|
|
15041
15179
|
pathTemplate?: string | undefined;
|
|
15180
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15042
15181
|
} | undefined;
|
|
15043
15182
|
signal?: {
|
|
15044
15183
|
spanCount: number;
|
|
@@ -15394,6 +15533,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15394
15533
|
snippet?: string | undefined;
|
|
15395
15534
|
method?: string | undefined;
|
|
15396
15535
|
pathTemplate?: string | undefined;
|
|
15536
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15397
15537
|
} | undefined;
|
|
15398
15538
|
signal?: {
|
|
15399
15539
|
spanCount: number;
|
|
@@ -15426,6 +15566,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15426
15566
|
snippet?: string | undefined;
|
|
15427
15567
|
method?: string | undefined;
|
|
15428
15568
|
pathTemplate?: string | undefined;
|
|
15569
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15429
15570
|
} | undefined;
|
|
15430
15571
|
signal?: {
|
|
15431
15572
|
spanCount: number;
|
|
@@ -15626,6 +15767,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15626
15767
|
snippet?: string | undefined;
|
|
15627
15768
|
method?: string | undefined;
|
|
15628
15769
|
pathTemplate?: string | undefined;
|
|
15770
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15629
15771
|
} | undefined;
|
|
15630
15772
|
signal?: {
|
|
15631
15773
|
spanCount: number;
|
|
@@ -15818,6 +15960,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
15818
15960
|
snippet?: string | undefined;
|
|
15819
15961
|
method?: string | undefined;
|
|
15820
15962
|
pathTemplate?: string | undefined;
|
|
15963
|
+
hostSource?: "literal" | "config" | undefined;
|
|
15821
15964
|
} | undefined;
|
|
15822
15965
|
signal?: {
|
|
15823
15966
|
spanCount: number;
|
|
@@ -16173,6 +16316,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
16173
16316
|
snippet?: string | undefined;
|
|
16174
16317
|
method?: string | undefined;
|
|
16175
16318
|
pathTemplate?: string | undefined;
|
|
16319
|
+
hostSource?: "literal" | "config" | undefined;
|
|
16176
16320
|
} | undefined;
|
|
16177
16321
|
signal?: {
|
|
16178
16322
|
spanCount: number;
|
|
@@ -16205,6 +16349,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
16205
16349
|
snippet?: string | undefined;
|
|
16206
16350
|
method?: string | undefined;
|
|
16207
16351
|
pathTemplate?: string | undefined;
|
|
16352
|
+
hostSource?: "literal" | "config" | undefined;
|
|
16208
16353
|
} | undefined;
|
|
16209
16354
|
signal?: {
|
|
16210
16355
|
spanCount: number;
|