@neat.is/types 0.3.8 → 0.4.2
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 +35 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +152 -3
- package/dist/index.d.ts +152 -3
- package/dist/index.js +34 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -46,6 +46,8 @@ declare const ServiceNodeSchema: z.ZodObject<{
|
|
|
46
46
|
type: z.ZodLiteral<"ServiceNode">;
|
|
47
47
|
name: z.ZodString;
|
|
48
48
|
language: z.ZodString;
|
|
49
|
+
env: z.ZodOptional<z.ZodString>;
|
|
50
|
+
framework: z.ZodOptional<z.ZodString>;
|
|
49
51
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
50
52
|
version: z.ZodOptional<z.ZodString>;
|
|
51
53
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -153,6 +155,8 @@ declare const ServiceNodeSchema: z.ZodObject<{
|
|
|
153
155
|
type: "ServiceNode";
|
|
154
156
|
id: string;
|
|
155
157
|
language: string;
|
|
158
|
+
env?: string | undefined;
|
|
159
|
+
framework?: string | undefined;
|
|
156
160
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
157
161
|
version?: string | undefined;
|
|
158
162
|
dbConnectionTarget?: string | undefined;
|
|
@@ -196,6 +200,8 @@ declare const ServiceNodeSchema: z.ZodObject<{
|
|
|
196
200
|
type: "ServiceNode";
|
|
197
201
|
id: string;
|
|
198
202
|
language: string;
|
|
203
|
+
env?: string | undefined;
|
|
204
|
+
framework?: string | undefined;
|
|
199
205
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
200
206
|
version?: string | undefined;
|
|
201
207
|
dbConnectionTarget?: string | undefined;
|
|
@@ -354,6 +360,8 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
354
360
|
type: z.ZodLiteral<"ServiceNode">;
|
|
355
361
|
name: z.ZodString;
|
|
356
362
|
language: z.ZodString;
|
|
363
|
+
env: z.ZodOptional<z.ZodString>;
|
|
364
|
+
framework: z.ZodOptional<z.ZodString>;
|
|
357
365
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
358
366
|
version: z.ZodOptional<z.ZodString>;
|
|
359
367
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -461,6 +469,8 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
461
469
|
type: "ServiceNode";
|
|
462
470
|
id: string;
|
|
463
471
|
language: string;
|
|
472
|
+
env?: string | undefined;
|
|
473
|
+
framework?: string | undefined;
|
|
464
474
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
465
475
|
version?: string | undefined;
|
|
466
476
|
dbConnectionTarget?: string | undefined;
|
|
@@ -504,6 +514,8 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
504
514
|
type: "ServiceNode";
|
|
505
515
|
id: string;
|
|
506
516
|
language: string;
|
|
517
|
+
env?: string | undefined;
|
|
518
|
+
framework?: string | undefined;
|
|
507
519
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
508
520
|
version?: string | undefined;
|
|
509
521
|
dbConnectionTarget?: string | undefined;
|
|
@@ -973,8 +985,11 @@ declare const TransitiveDependenciesResultSchema: z.ZodObject<{
|
|
|
973
985
|
}>;
|
|
974
986
|
type TransitiveDependenciesResult = z.infer<typeof TransitiveDependenciesResultSchema>;
|
|
975
987
|
|
|
976
|
-
declare function serviceId(name: string): string;
|
|
977
|
-
declare function parseServiceId(id: string):
|
|
988
|
+
declare function serviceId(name: string, env?: string): string;
|
|
989
|
+
declare function parseServiceId(id: string): {
|
|
990
|
+
name: string;
|
|
991
|
+
env: string;
|
|
992
|
+
} | null;
|
|
978
993
|
declare function databaseId(host: string): string;
|
|
979
994
|
declare function parseDatabaseId(id: string): string | null;
|
|
980
995
|
declare function configId(relPath: string): string;
|
|
@@ -3771,6 +3786,8 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
3771
3786
|
type: z.ZodLiteral<"ServiceNode">;
|
|
3772
3787
|
name: z.ZodString;
|
|
3773
3788
|
language: z.ZodString;
|
|
3789
|
+
env: z.ZodOptional<z.ZodString>;
|
|
3790
|
+
framework: z.ZodOptional<z.ZodString>;
|
|
3774
3791
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
3775
3792
|
version: z.ZodOptional<z.ZodString>;
|
|
3776
3793
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -3878,6 +3895,8 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
3878
3895
|
type: "ServiceNode";
|
|
3879
3896
|
id: string;
|
|
3880
3897
|
language: string;
|
|
3898
|
+
env?: string | undefined;
|
|
3899
|
+
framework?: string | undefined;
|
|
3881
3900
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
3882
3901
|
version?: string | undefined;
|
|
3883
3902
|
dbConnectionTarget?: string | undefined;
|
|
@@ -3921,6 +3940,8 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
3921
3940
|
type: "ServiceNode";
|
|
3922
3941
|
id: string;
|
|
3923
3942
|
language: string;
|
|
3943
|
+
env?: string | undefined;
|
|
3944
|
+
framework?: string | undefined;
|
|
3924
3945
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
3925
3946
|
version?: string | undefined;
|
|
3926
3947
|
dbConnectionTarget?: string | undefined;
|
|
@@ -4071,6 +4092,8 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4071
4092
|
type: "ServiceNode";
|
|
4072
4093
|
id: string;
|
|
4073
4094
|
language: string;
|
|
4095
|
+
env?: string | undefined;
|
|
4096
|
+
framework?: string | undefined;
|
|
4074
4097
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4075
4098
|
version?: string | undefined;
|
|
4076
4099
|
dbConnectionTarget?: string | undefined;
|
|
@@ -4149,6 +4172,8 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4149
4172
|
type: "ServiceNode";
|
|
4150
4173
|
id: string;
|
|
4151
4174
|
language: string;
|
|
4175
|
+
env?: string | undefined;
|
|
4176
|
+
framework?: string | undefined;
|
|
4152
4177
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4153
4178
|
version?: string | undefined;
|
|
4154
4179
|
dbConnectionTarget?: string | undefined;
|
|
@@ -4470,6 +4495,56 @@ declare const HealthResponseSchema: z.ZodObject<{
|
|
|
4470
4495
|
uptimeMs: z.ZodNumber;
|
|
4471
4496
|
}, z.ZodTypeAny, "passthrough">>;
|
|
4472
4497
|
type HealthResponse = z.infer<typeof HealthResponseSchema>;
|
|
4498
|
+
declare const DaemonHealthResponseSchema: z.ZodObject<{
|
|
4499
|
+
ok: z.ZodBoolean;
|
|
4500
|
+
uptimeMs: z.ZodNumber;
|
|
4501
|
+
projects: z.ZodArray<z.ZodObject<{
|
|
4502
|
+
name: z.ZodString;
|
|
4503
|
+
nodeCount: z.ZodNumber;
|
|
4504
|
+
edgeCount: z.ZodNumber;
|
|
4505
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4506
|
+
name: z.ZodString;
|
|
4507
|
+
nodeCount: z.ZodNumber;
|
|
4508
|
+
edgeCount: z.ZodNumber;
|
|
4509
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4510
|
+
name: z.ZodString;
|
|
4511
|
+
nodeCount: z.ZodNumber;
|
|
4512
|
+
edgeCount: z.ZodNumber;
|
|
4513
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
4514
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4515
|
+
ok: z.ZodBoolean;
|
|
4516
|
+
uptimeMs: z.ZodNumber;
|
|
4517
|
+
projects: z.ZodArray<z.ZodObject<{
|
|
4518
|
+
name: z.ZodString;
|
|
4519
|
+
nodeCount: z.ZodNumber;
|
|
4520
|
+
edgeCount: z.ZodNumber;
|
|
4521
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4522
|
+
name: z.ZodString;
|
|
4523
|
+
nodeCount: z.ZodNumber;
|
|
4524
|
+
edgeCount: z.ZodNumber;
|
|
4525
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4526
|
+
name: z.ZodString;
|
|
4527
|
+
nodeCount: z.ZodNumber;
|
|
4528
|
+
edgeCount: z.ZodNumber;
|
|
4529
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
4530
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4531
|
+
ok: z.ZodBoolean;
|
|
4532
|
+
uptimeMs: z.ZodNumber;
|
|
4533
|
+
projects: z.ZodArray<z.ZodObject<{
|
|
4534
|
+
name: z.ZodString;
|
|
4535
|
+
nodeCount: z.ZodNumber;
|
|
4536
|
+
edgeCount: z.ZodNumber;
|
|
4537
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4538
|
+
name: z.ZodString;
|
|
4539
|
+
nodeCount: z.ZodNumber;
|
|
4540
|
+
edgeCount: z.ZodNumber;
|
|
4541
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4542
|
+
name: z.ZodString;
|
|
4543
|
+
nodeCount: z.ZodNumber;
|
|
4544
|
+
edgeCount: z.ZodNumber;
|
|
4545
|
+
}, z.ZodTypeAny, "passthrough">>, "many">;
|
|
4546
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
4547
|
+
type DaemonHealthResponse = z.infer<typeof DaemonHealthResponseSchema>;
|
|
4473
4548
|
declare const SingleProjectResponseSchema: z.ZodObject<{
|
|
4474
4549
|
project: z.ZodObject<{
|
|
4475
4550
|
name: z.ZodString;
|
|
@@ -4551,6 +4626,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
4551
4626
|
type: z.ZodLiteral<"ServiceNode">;
|
|
4552
4627
|
name: z.ZodString;
|
|
4553
4628
|
language: z.ZodString;
|
|
4629
|
+
env: z.ZodOptional<z.ZodString>;
|
|
4630
|
+
framework: z.ZodOptional<z.ZodString>;
|
|
4554
4631
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
4555
4632
|
version: z.ZodOptional<z.ZodString>;
|
|
4556
4633
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -4658,6 +4735,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
4658
4735
|
type: "ServiceNode";
|
|
4659
4736
|
id: string;
|
|
4660
4737
|
language: string;
|
|
4738
|
+
env?: string | undefined;
|
|
4739
|
+
framework?: string | undefined;
|
|
4661
4740
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4662
4741
|
version?: string | undefined;
|
|
4663
4742
|
dbConnectionTarget?: string | undefined;
|
|
@@ -4701,6 +4780,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
4701
4780
|
type: "ServiceNode";
|
|
4702
4781
|
id: string;
|
|
4703
4782
|
language: string;
|
|
4783
|
+
env?: string | undefined;
|
|
4784
|
+
framework?: string | undefined;
|
|
4704
4785
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4705
4786
|
version?: string | undefined;
|
|
4706
4787
|
dbConnectionTarget?: string | undefined;
|
|
@@ -4925,6 +5006,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
4925
5006
|
type: "ServiceNode";
|
|
4926
5007
|
id: string;
|
|
4927
5008
|
language: string;
|
|
5009
|
+
env?: string | undefined;
|
|
5010
|
+
framework?: string | undefined;
|
|
4928
5011
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4929
5012
|
version?: string | undefined;
|
|
4930
5013
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5023,6 +5106,8 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
5023
5106
|
type: "ServiceNode";
|
|
5024
5107
|
id: string;
|
|
5025
5108
|
language: string;
|
|
5109
|
+
env?: string | undefined;
|
|
5110
|
+
framework?: string | undefined;
|
|
5026
5111
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5027
5112
|
version?: string | undefined;
|
|
5028
5113
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5138,6 +5223,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
5138
5223
|
type: z.ZodLiteral<"ServiceNode">;
|
|
5139
5224
|
name: z.ZodString;
|
|
5140
5225
|
language: z.ZodString;
|
|
5226
|
+
env: z.ZodOptional<z.ZodString>;
|
|
5227
|
+
framework: z.ZodOptional<z.ZodString>;
|
|
5141
5228
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
5142
5229
|
version: z.ZodOptional<z.ZodString>;
|
|
5143
5230
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -5245,6 +5332,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
5245
5332
|
type: "ServiceNode";
|
|
5246
5333
|
id: string;
|
|
5247
5334
|
language: string;
|
|
5335
|
+
env?: string | undefined;
|
|
5336
|
+
framework?: string | undefined;
|
|
5248
5337
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5249
5338
|
version?: string | undefined;
|
|
5250
5339
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5288,6 +5377,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
5288
5377
|
type: "ServiceNode";
|
|
5289
5378
|
id: string;
|
|
5290
5379
|
language: string;
|
|
5380
|
+
env?: string | undefined;
|
|
5381
|
+
framework?: string | undefined;
|
|
5291
5382
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5292
5383
|
version?: string | undefined;
|
|
5293
5384
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5512,6 +5603,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
5512
5603
|
type: "ServiceNode";
|
|
5513
5604
|
id: string;
|
|
5514
5605
|
language: string;
|
|
5606
|
+
env?: string | undefined;
|
|
5607
|
+
framework?: string | undefined;
|
|
5515
5608
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5516
5609
|
version?: string | undefined;
|
|
5517
5610
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5610,6 +5703,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
5610
5703
|
type: "ServiceNode";
|
|
5611
5704
|
id: string;
|
|
5612
5705
|
language: string;
|
|
5706
|
+
env?: string | undefined;
|
|
5707
|
+
framework?: string | undefined;
|
|
5613
5708
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5614
5709
|
version?: string | undefined;
|
|
5615
5710
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5709,6 +5804,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
5709
5804
|
type: z.ZodLiteral<"ServiceNode">;
|
|
5710
5805
|
name: z.ZodString;
|
|
5711
5806
|
language: z.ZodString;
|
|
5807
|
+
env: z.ZodOptional<z.ZodString>;
|
|
5808
|
+
framework: z.ZodOptional<z.ZodString>;
|
|
5712
5809
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
5713
5810
|
version: z.ZodOptional<z.ZodString>;
|
|
5714
5811
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -5816,6 +5913,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
5816
5913
|
type: "ServiceNode";
|
|
5817
5914
|
id: string;
|
|
5818
5915
|
language: string;
|
|
5916
|
+
env?: string | undefined;
|
|
5917
|
+
framework?: string | undefined;
|
|
5819
5918
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5820
5919
|
version?: string | undefined;
|
|
5821
5920
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5859,6 +5958,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
5859
5958
|
type: "ServiceNode";
|
|
5860
5959
|
id: string;
|
|
5861
5960
|
language: string;
|
|
5961
|
+
env?: string | undefined;
|
|
5962
|
+
framework?: string | undefined;
|
|
5862
5963
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5863
5964
|
version?: string | undefined;
|
|
5864
5965
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6083,6 +6184,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6083
6184
|
type: "ServiceNode";
|
|
6084
6185
|
id: string;
|
|
6085
6186
|
language: string;
|
|
6187
|
+
env?: string | undefined;
|
|
6188
|
+
framework?: string | undefined;
|
|
6086
6189
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6087
6190
|
version?: string | undefined;
|
|
6088
6191
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6181,6 +6284,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6181
6284
|
type: "ServiceNode";
|
|
6182
6285
|
id: string;
|
|
6183
6286
|
language: string;
|
|
6287
|
+
env?: string | undefined;
|
|
6288
|
+
framework?: string | undefined;
|
|
6184
6289
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6185
6290
|
version?: string | undefined;
|
|
6186
6291
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6282,6 +6387,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6282
6387
|
type: z.ZodLiteral<"ServiceNode">;
|
|
6283
6388
|
name: z.ZodString;
|
|
6284
6389
|
language: z.ZodString;
|
|
6390
|
+
env: z.ZodOptional<z.ZodString>;
|
|
6391
|
+
framework: z.ZodOptional<z.ZodString>;
|
|
6285
6392
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
6286
6393
|
version: z.ZodOptional<z.ZodString>;
|
|
6287
6394
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -6389,6 +6496,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6389
6496
|
type: "ServiceNode";
|
|
6390
6497
|
id: string;
|
|
6391
6498
|
language: string;
|
|
6499
|
+
env?: string | undefined;
|
|
6500
|
+
framework?: string | undefined;
|
|
6392
6501
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6393
6502
|
version?: string | undefined;
|
|
6394
6503
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6432,6 +6541,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6432
6541
|
type: "ServiceNode";
|
|
6433
6542
|
id: string;
|
|
6434
6543
|
language: string;
|
|
6544
|
+
env?: string | undefined;
|
|
6545
|
+
framework?: string | undefined;
|
|
6435
6546
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6436
6547
|
version?: string | undefined;
|
|
6437
6548
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6581,6 +6692,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6581
6692
|
type: z.ZodLiteral<"ServiceNode">;
|
|
6582
6693
|
name: z.ZodString;
|
|
6583
6694
|
language: z.ZodString;
|
|
6695
|
+
env: z.ZodOptional<z.ZodString>;
|
|
6696
|
+
framework: z.ZodOptional<z.ZodString>;
|
|
6584
6697
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
6585
6698
|
version: z.ZodOptional<z.ZodString>;
|
|
6586
6699
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -6688,6 +6801,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6688
6801
|
type: "ServiceNode";
|
|
6689
6802
|
id: string;
|
|
6690
6803
|
language: string;
|
|
6804
|
+
env?: string | undefined;
|
|
6805
|
+
framework?: string | undefined;
|
|
6691
6806
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6692
6807
|
version?: string | undefined;
|
|
6693
6808
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6731,6 +6846,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6731
6846
|
type: "ServiceNode";
|
|
6732
6847
|
id: string;
|
|
6733
6848
|
language: string;
|
|
6849
|
+
env?: string | undefined;
|
|
6850
|
+
framework?: string | undefined;
|
|
6734
6851
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6735
6852
|
version?: string | undefined;
|
|
6736
6853
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6882,6 +6999,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6882
6999
|
type: "ServiceNode";
|
|
6883
7000
|
id: string;
|
|
6884
7001
|
language: string;
|
|
7002
|
+
env?: string | undefined;
|
|
7003
|
+
framework?: string | undefined;
|
|
6885
7004
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6886
7005
|
version?: string | undefined;
|
|
6887
7006
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6959,6 +7078,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6959
7078
|
type: "ServiceNode";
|
|
6960
7079
|
id: string;
|
|
6961
7080
|
language: string;
|
|
7081
|
+
env?: string | undefined;
|
|
7082
|
+
framework?: string | undefined;
|
|
6962
7083
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6963
7084
|
version?: string | undefined;
|
|
6964
7085
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7038,6 +7159,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7038
7159
|
type: "ServiceNode";
|
|
7039
7160
|
id: string;
|
|
7040
7161
|
language: string;
|
|
7162
|
+
env?: string | undefined;
|
|
7163
|
+
framework?: string | undefined;
|
|
7041
7164
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7042
7165
|
version?: string | undefined;
|
|
7043
7166
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7115,6 +7238,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7115
7238
|
type: "ServiceNode";
|
|
7116
7239
|
id: string;
|
|
7117
7240
|
language: string;
|
|
7241
|
+
env?: string | undefined;
|
|
7242
|
+
framework?: string | undefined;
|
|
7118
7243
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7119
7244
|
version?: string | undefined;
|
|
7120
7245
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7431,6 +7556,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7431
7556
|
type: "ServiceNode";
|
|
7432
7557
|
id: string;
|
|
7433
7558
|
language: string;
|
|
7559
|
+
env?: string | undefined;
|
|
7560
|
+
framework?: string | undefined;
|
|
7434
7561
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7435
7562
|
version?: string | undefined;
|
|
7436
7563
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7508,6 +7635,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7508
7635
|
type: "ServiceNode";
|
|
7509
7636
|
id: string;
|
|
7510
7637
|
language: string;
|
|
7638
|
+
env?: string | undefined;
|
|
7639
|
+
framework?: string | undefined;
|
|
7511
7640
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7512
7641
|
version?: string | undefined;
|
|
7513
7642
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7632,6 +7761,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7632
7761
|
type: "ServiceNode";
|
|
7633
7762
|
id: string;
|
|
7634
7763
|
language: string;
|
|
7764
|
+
env?: string | undefined;
|
|
7765
|
+
framework?: string | undefined;
|
|
7635
7766
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7636
7767
|
version?: string | undefined;
|
|
7637
7768
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7709,6 +7840,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7709
7840
|
type: "ServiceNode";
|
|
7710
7841
|
id: string;
|
|
7711
7842
|
language: string;
|
|
7843
|
+
env?: string | undefined;
|
|
7844
|
+
framework?: string | undefined;
|
|
7712
7845
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7713
7846
|
version?: string | undefined;
|
|
7714
7847
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7839,6 +7972,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7839
7972
|
type: "ServiceNode";
|
|
7840
7973
|
id: string;
|
|
7841
7974
|
language: string;
|
|
7975
|
+
env?: string | undefined;
|
|
7976
|
+
framework?: string | undefined;
|
|
7842
7977
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7843
7978
|
version?: string | undefined;
|
|
7844
7979
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7938,6 +8073,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7938
8073
|
type: "ServiceNode";
|
|
7939
8074
|
id: string;
|
|
7940
8075
|
language: string;
|
|
8076
|
+
env?: string | undefined;
|
|
8077
|
+
framework?: string | undefined;
|
|
7941
8078
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7942
8079
|
version?: string | undefined;
|
|
7943
8080
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8039,6 +8176,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8039
8176
|
type: "ServiceNode";
|
|
8040
8177
|
id: string;
|
|
8041
8178
|
language: string;
|
|
8179
|
+
env?: string | undefined;
|
|
8180
|
+
framework?: string | undefined;
|
|
8042
8181
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8043
8182
|
version?: string | undefined;
|
|
8044
8183
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8116,6 +8255,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8116
8255
|
type: "ServiceNode";
|
|
8117
8256
|
id: string;
|
|
8118
8257
|
language: string;
|
|
8258
|
+
env?: string | undefined;
|
|
8259
|
+
framework?: string | undefined;
|
|
8119
8260
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8120
8261
|
version?: string | undefined;
|
|
8121
8262
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8246,6 +8387,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8246
8387
|
type: "ServiceNode";
|
|
8247
8388
|
id: string;
|
|
8248
8389
|
language: string;
|
|
8390
|
+
env?: string | undefined;
|
|
8391
|
+
framework?: string | undefined;
|
|
8249
8392
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8250
8393
|
version?: string | undefined;
|
|
8251
8394
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8345,6 +8488,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8345
8488
|
type: "ServiceNode";
|
|
8346
8489
|
id: string;
|
|
8347
8490
|
language: string;
|
|
8491
|
+
env?: string | undefined;
|
|
8492
|
+
framework?: string | undefined;
|
|
8348
8493
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8349
8494
|
version?: string | undefined;
|
|
8350
8495
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8446,6 +8591,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8446
8591
|
type: "ServiceNode";
|
|
8447
8592
|
id: string;
|
|
8448
8593
|
language: string;
|
|
8594
|
+
env?: string | undefined;
|
|
8595
|
+
framework?: string | undefined;
|
|
8449
8596
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8450
8597
|
version?: string | undefined;
|
|
8451
8598
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8523,6 +8670,8 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8523
8670
|
type: "ServiceNode";
|
|
8524
8671
|
id: string;
|
|
8525
8672
|
language: string;
|
|
8673
|
+
env?: string | undefined;
|
|
8674
|
+
framework?: string | undefined;
|
|
8526
8675
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8527
8676
|
version?: string | undefined;
|
|
8528
8677
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8651,4 +8800,4 @@ declare const DEFAULT_EXTRACTED_PRECISION_FLOOR = 0.7;
|
|
|
8651
8800
|
declare function extractedPrecisionFloor(): number;
|
|
8652
8801
|
declare function passesExtractedFloor(confidence: number): boolean;
|
|
8653
8802
|
|
|
8654
|
-
export { type BlastRadiusAffectedNode, BlastRadiusAffectedNodeSchema, type BlastRadiusResult, BlastRadiusResultSchema, type BlastRadiusRule, BlastRadiusRuleSchema, type CheckPoliciesScope, CheckPoliciesScopeSchema, type CompatRuleRef, CompatRuleRefSchema, type CompatViolationDivergence, CompatViolationDivergenceSchema, type CompatibilityRule, CompatibilityRuleSchema, type CompatibilityVerdict, CompatibilityVerdictSchema, type CompatibleDriver, CompatibleDriverSchema, type ConfigNode, ConfigNodeSchema, DEFAULT_EXTRACTED_PRECISION_FLOOR, type DatabaseNode, DatabaseNodeSchema, type DiscoveredVia, DiscoveredViaSchema, type Divergence, type DivergenceResult, DivergenceResultSchema, DivergenceSchema, type DivergenceType, DivergenceTypeSchema, EMPTY_REGISTRY, EXTRACTED_CONFIDENCE, type EdgeEvidence, EdgeEvidenceSchema, type EdgeSignal, EdgeSignalSchema, EdgeType, EdgeTypeSchema, type EdgeTypeValue, type ErrorEvent, ErrorEventSchema, type ExtractedConfidenceKind, type FrontierNode, FrontierNodeSchema, type GraphDiffResult, GraphDiffResultSchema, type GraphEdge, GraphEdgeSchema, type GraphEdgesResponse, GraphEdgesResponseSchema, type GraphNode, type GraphNodeResponse, GraphNodeResponseSchema, GraphNodeSchema, type HealthResponse, HealthResponseSchema, type HostMismatchDivergence, HostMismatchDivergenceSchema, type HypotheticalAction, HypotheticalActionSchema, type IncidentsResponse, IncidentsResponseSchema, type InfraNode, InfraNodeSchema, type MissingExtractedDivergence, MissingExtractedDivergenceSchema, type MissingObservedDivergence, MissingObservedDivergenceSchema, NodeType, NodeTypeSchema, type NodeTypeValue, 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, Provenance, type ProvenanceRule, ProvenanceRuleSchema, ProvenanceSchema, type ProvenanceValue, type RegistryEntry, RegistryEntrySchema, type RegistryFile, RegistryFileSchema, type RegistryStatus, RegistryStatusSchema, type RootCauseResult, RootCauseResultSchema, type SearchMatch, SearchMatchSchema, type SearchResponse, SearchResponseSchema, type SerializedGraph, SerializedGraphSchema, type ServiceNode, ServiceNodeSchema, type SingleProjectResponse, SingleProjectResponseSchema, type SpanAttributes, SpanAttributesSchema, type StaleEvent, StaleEventSchema, type StaleEventsResponse, StaleEventsResponseSchema, type StructuralRule, StructuralRuleSchema, type TransitiveDependenciesResult, TransitiveDependenciesResultSchema, type TransitiveDependency, TransitiveDependencySchema, type VersionMismatchDivergence, VersionMismatchDivergenceSchema, confidenceForExtracted, confidenceForObservedSignal, configId, databaseId, extractedEdgeId, extractedPrecisionFloor, frontierId, inferredEdgeId, infraId, observedEdgeId, parseConfigId, parseDatabaseId, parseEdgeId, parseFrontierId, parseInfraId, parseServiceId, passesExtractedFloor, serviceId };
|
|
8803
|
+
export { type BlastRadiusAffectedNode, BlastRadiusAffectedNodeSchema, type BlastRadiusResult, BlastRadiusResultSchema, type BlastRadiusRule, BlastRadiusRuleSchema, type CheckPoliciesScope, CheckPoliciesScopeSchema, type CompatRuleRef, CompatRuleRefSchema, type CompatViolationDivergence, CompatViolationDivergenceSchema, type CompatibilityRule, CompatibilityRuleSchema, type CompatibilityVerdict, CompatibilityVerdictSchema, type CompatibleDriver, CompatibleDriverSchema, type ConfigNode, ConfigNodeSchema, 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 EdgeEvidence, EdgeEvidenceSchema, type EdgeSignal, EdgeSignalSchema, EdgeType, EdgeTypeSchema, type EdgeTypeValue, type ErrorEvent, ErrorEventSchema, type ExtractedConfidenceKind, type FrontierNode, FrontierNodeSchema, type GraphDiffResult, GraphDiffResultSchema, type GraphEdge, GraphEdgeSchema, type GraphEdgesResponse, GraphEdgesResponseSchema, type GraphNode, type GraphNodeResponse, GraphNodeResponseSchema, GraphNodeSchema, type HealthResponse, HealthResponseSchema, type HostMismatchDivergence, HostMismatchDivergenceSchema, type HypotheticalAction, HypotheticalActionSchema, type IncidentsResponse, IncidentsResponseSchema, type InfraNode, InfraNodeSchema, type MissingExtractedDivergence, MissingExtractedDivergenceSchema, type MissingObservedDivergence, MissingObservedDivergenceSchema, NodeType, NodeTypeSchema, type NodeTypeValue, 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, Provenance, type ProvenanceRule, ProvenanceRuleSchema, ProvenanceSchema, type ProvenanceValue, type RegistryEntry, RegistryEntrySchema, type RegistryFile, RegistryFileSchema, type RegistryStatus, RegistryStatusSchema, type RootCauseResult, RootCauseResultSchema, type SearchMatch, SearchMatchSchema, type SearchResponse, SearchResponseSchema, type SerializedGraph, SerializedGraphSchema, type ServiceNode, ServiceNodeSchema, type SingleProjectResponse, SingleProjectResponseSchema, type SpanAttributes, SpanAttributesSchema, type StaleEvent, StaleEventSchema, type StaleEventsResponse, StaleEventsResponseSchema, type StructuralRule, StructuralRuleSchema, type TransitiveDependenciesResult, TransitiveDependenciesResultSchema, type TransitiveDependency, TransitiveDependencySchema, type VersionMismatchDivergence, VersionMismatchDivergenceSchema, confidenceForExtracted, confidenceForObservedSignal, configId, databaseId, extractedEdgeId, extractedPrecisionFloor, frontierId, inferredEdgeId, infraId, observedEdgeId, parseConfigId, parseDatabaseId, parseEdgeId, parseFrontierId, parseInfraId, parseServiceId, passesExtractedFloor, serviceId };
|