@neat.is/types 0.4.28-dev.20260707 → 0.4.28-dev.20260709
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 +54 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +243 -1
- package/dist/index.d.ts +243 -1
- package/dist/index.js +51 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -55,6 +55,7 @@ declare const ServiceNodeSchema: z.ZodObject<{
|
|
|
55
55
|
language: z.ZodString;
|
|
56
56
|
env: z.ZodOptional<z.ZodString>;
|
|
57
57
|
framework: z.ZodOptional<z.ZodString>;
|
|
58
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
58
59
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
59
60
|
version: z.ZodOptional<z.ZodString>;
|
|
60
61
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -164,6 +165,7 @@ declare const ServiceNodeSchema: z.ZodObject<{
|
|
|
164
165
|
language: string;
|
|
165
166
|
env?: string | undefined;
|
|
166
167
|
framework?: string | undefined;
|
|
168
|
+
platform?: string | undefined;
|
|
167
169
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
168
170
|
version?: string | undefined;
|
|
169
171
|
dbConnectionTarget?: string | undefined;
|
|
@@ -209,6 +211,7 @@ declare const ServiceNodeSchema: z.ZodObject<{
|
|
|
209
211
|
language: string;
|
|
210
212
|
env?: string | undefined;
|
|
211
213
|
framework?: string | undefined;
|
|
214
|
+
platform?: string | undefined;
|
|
212
215
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
213
216
|
version?: string | undefined;
|
|
214
217
|
dbConnectionTarget?: string | undefined;
|
|
@@ -370,22 +373,28 @@ declare const FileNodeSchema: z.ZodObject<{
|
|
|
370
373
|
language: z.ZodOptional<z.ZodString>;
|
|
371
374
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
372
375
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
376
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
377
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
373
378
|
}, "strip", z.ZodTypeAny, {
|
|
374
379
|
path: string;
|
|
375
380
|
type: "FileNode";
|
|
376
381
|
id: string;
|
|
377
382
|
service: string;
|
|
378
383
|
language?: string | undefined;
|
|
384
|
+
platform?: string | undefined;
|
|
379
385
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
380
386
|
originalPath?: string | undefined;
|
|
387
|
+
platformName?: string | undefined;
|
|
381
388
|
}, {
|
|
382
389
|
path: string;
|
|
383
390
|
type: "FileNode";
|
|
384
391
|
id: string;
|
|
385
392
|
service: string;
|
|
386
393
|
language?: string | undefined;
|
|
394
|
+
platform?: string | undefined;
|
|
387
395
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
388
396
|
originalPath?: string | undefined;
|
|
397
|
+
platformName?: string | undefined;
|
|
389
398
|
}>;
|
|
390
399
|
type FileNode = z.infer<typeof FileNodeSchema>;
|
|
391
400
|
declare const RouteNodeSchema: z.ZodObject<{
|
|
@@ -520,6 +529,7 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
520
529
|
language: z.ZodString;
|
|
521
530
|
env: z.ZodOptional<z.ZodString>;
|
|
522
531
|
framework: z.ZodOptional<z.ZodString>;
|
|
532
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
523
533
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
524
534
|
version: z.ZodOptional<z.ZodString>;
|
|
525
535
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -629,6 +639,7 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
629
639
|
language: string;
|
|
630
640
|
env?: string | undefined;
|
|
631
641
|
framework?: string | undefined;
|
|
642
|
+
platform?: string | undefined;
|
|
632
643
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
633
644
|
version?: string | undefined;
|
|
634
645
|
dbConnectionTarget?: string | undefined;
|
|
@@ -674,6 +685,7 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
674
685
|
language: string;
|
|
675
686
|
env?: string | undefined;
|
|
676
687
|
framework?: string | undefined;
|
|
688
|
+
platform?: string | undefined;
|
|
677
689
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
678
690
|
version?: string | undefined;
|
|
679
691
|
dbConnectionTarget?: string | undefined;
|
|
@@ -825,22 +837,28 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
825
837
|
language: z.ZodOptional<z.ZodString>;
|
|
826
838
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
827
839
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
840
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
841
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
828
842
|
}, "strip", z.ZodTypeAny, {
|
|
829
843
|
path: string;
|
|
830
844
|
type: "FileNode";
|
|
831
845
|
id: string;
|
|
832
846
|
service: string;
|
|
833
847
|
language?: string | undefined;
|
|
848
|
+
platform?: string | undefined;
|
|
834
849
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
835
850
|
originalPath?: string | undefined;
|
|
851
|
+
platformName?: string | undefined;
|
|
836
852
|
}, {
|
|
837
853
|
path: string;
|
|
838
854
|
type: "FileNode";
|
|
839
855
|
id: string;
|
|
840
856
|
service: string;
|
|
841
857
|
language?: string | undefined;
|
|
858
|
+
platform?: string | undefined;
|
|
842
859
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
843
860
|
originalPath?: string | undefined;
|
|
861
|
+
platformName?: string | undefined;
|
|
844
862
|
}>, z.ZodObject<{
|
|
845
863
|
id: z.ZodString;
|
|
846
864
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -1164,6 +1182,40 @@ declare const StaleEventSchema: z.ZodObject<{
|
|
|
1164
1182
|
transitionedAt: string;
|
|
1165
1183
|
}>;
|
|
1166
1184
|
type StaleEvent = z.infer<typeof StaleEventSchema>;
|
|
1185
|
+
declare const LogSourceSchema: z.ZodEnum<["native", "supabase", "railway", "firebase", "cloudflare", "vercel"]>;
|
|
1186
|
+
type LogSource = z.infer<typeof LogSourceSchema>;
|
|
1187
|
+
declare const LogEntrySchema: z.ZodObject<{
|
|
1188
|
+
id: z.ZodString;
|
|
1189
|
+
projectName: z.ZodString;
|
|
1190
|
+
source: z.ZodEnum<["native", "supabase", "railway", "firebase", "cloudflare", "vercel"]>;
|
|
1191
|
+
serviceName: z.ZodOptional<z.ZodString>;
|
|
1192
|
+
nodeId: z.ZodOptional<z.ZodString>;
|
|
1193
|
+
timestamp: z.ZodString;
|
|
1194
|
+
severity: z.ZodOptional<z.ZodString>;
|
|
1195
|
+
message: z.ZodString;
|
|
1196
|
+
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1197
|
+
}, "strip", z.ZodTypeAny, {
|
|
1198
|
+
message: string;
|
|
1199
|
+
id: string;
|
|
1200
|
+
source: "native" | "supabase" | "railway" | "firebase" | "cloudflare" | "vercel";
|
|
1201
|
+
timestamp: string;
|
|
1202
|
+
projectName: string;
|
|
1203
|
+
attributes?: Record<string, unknown> | undefined;
|
|
1204
|
+
serviceName?: string | undefined;
|
|
1205
|
+
nodeId?: string | undefined;
|
|
1206
|
+
severity?: string | undefined;
|
|
1207
|
+
}, {
|
|
1208
|
+
message: string;
|
|
1209
|
+
id: string;
|
|
1210
|
+
source: "native" | "supabase" | "railway" | "firebase" | "cloudflare" | "vercel";
|
|
1211
|
+
timestamp: string;
|
|
1212
|
+
projectName: string;
|
|
1213
|
+
attributes?: Record<string, unknown> | undefined;
|
|
1214
|
+
serviceName?: string | undefined;
|
|
1215
|
+
nodeId?: string | undefined;
|
|
1216
|
+
severity?: string | undefined;
|
|
1217
|
+
}>;
|
|
1218
|
+
type LogEntry = z.infer<typeof LogEntrySchema>;
|
|
1167
1219
|
|
|
1168
1220
|
declare const RootCauseResultSchema: z.ZodObject<{
|
|
1169
1221
|
rootCauseNode: z.ZodString;
|
|
@@ -4432,6 +4484,70 @@ declare const StaleEventsResponseSchema: z.ZodObject<{
|
|
|
4432
4484
|
}[];
|
|
4433
4485
|
}>;
|
|
4434
4486
|
type StaleEventsResponse = z.infer<typeof StaleEventsResponseSchema>;
|
|
4487
|
+
declare const LogsResponseSchema: z.ZodObject<{
|
|
4488
|
+
count: z.ZodNumber;
|
|
4489
|
+
total: z.ZodNumber;
|
|
4490
|
+
logs: z.ZodArray<z.ZodObject<{
|
|
4491
|
+
id: z.ZodString;
|
|
4492
|
+
projectName: z.ZodString;
|
|
4493
|
+
source: z.ZodEnum<["native", "supabase", "railway", "firebase", "cloudflare", "vercel"]>;
|
|
4494
|
+
serviceName: z.ZodOptional<z.ZodString>;
|
|
4495
|
+
nodeId: z.ZodOptional<z.ZodString>;
|
|
4496
|
+
timestamp: z.ZodString;
|
|
4497
|
+
severity: z.ZodOptional<z.ZodString>;
|
|
4498
|
+
message: z.ZodString;
|
|
4499
|
+
attributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4500
|
+
}, "strip", z.ZodTypeAny, {
|
|
4501
|
+
message: string;
|
|
4502
|
+
id: string;
|
|
4503
|
+
source: "native" | "supabase" | "railway" | "firebase" | "cloudflare" | "vercel";
|
|
4504
|
+
timestamp: string;
|
|
4505
|
+
projectName: string;
|
|
4506
|
+
attributes?: Record<string, unknown> | undefined;
|
|
4507
|
+
serviceName?: string | undefined;
|
|
4508
|
+
nodeId?: string | undefined;
|
|
4509
|
+
severity?: string | undefined;
|
|
4510
|
+
}, {
|
|
4511
|
+
message: string;
|
|
4512
|
+
id: string;
|
|
4513
|
+
source: "native" | "supabase" | "railway" | "firebase" | "cloudflare" | "vercel";
|
|
4514
|
+
timestamp: string;
|
|
4515
|
+
projectName: string;
|
|
4516
|
+
attributes?: Record<string, unknown> | undefined;
|
|
4517
|
+
serviceName?: string | undefined;
|
|
4518
|
+
nodeId?: string | undefined;
|
|
4519
|
+
severity?: string | undefined;
|
|
4520
|
+
}>, "many">;
|
|
4521
|
+
}, "strip", z.ZodTypeAny, {
|
|
4522
|
+
total: number;
|
|
4523
|
+
count: number;
|
|
4524
|
+
logs: {
|
|
4525
|
+
message: string;
|
|
4526
|
+
id: string;
|
|
4527
|
+
source: "native" | "supabase" | "railway" | "firebase" | "cloudflare" | "vercel";
|
|
4528
|
+
timestamp: string;
|
|
4529
|
+
projectName: string;
|
|
4530
|
+
attributes?: Record<string, unknown> | undefined;
|
|
4531
|
+
serviceName?: string | undefined;
|
|
4532
|
+
nodeId?: string | undefined;
|
|
4533
|
+
severity?: string | undefined;
|
|
4534
|
+
}[];
|
|
4535
|
+
}, {
|
|
4536
|
+
total: number;
|
|
4537
|
+
count: number;
|
|
4538
|
+
logs: {
|
|
4539
|
+
message: string;
|
|
4540
|
+
id: string;
|
|
4541
|
+
source: "native" | "supabase" | "railway" | "firebase" | "cloudflare" | "vercel";
|
|
4542
|
+
timestamp: string;
|
|
4543
|
+
projectName: string;
|
|
4544
|
+
attributes?: Record<string, unknown> | undefined;
|
|
4545
|
+
serviceName?: string | undefined;
|
|
4546
|
+
nodeId?: string | undefined;
|
|
4547
|
+
severity?: string | undefined;
|
|
4548
|
+
}[];
|
|
4549
|
+
}>;
|
|
4550
|
+
type LogsResponse = z.infer<typeof LogsResponseSchema>;
|
|
4435
4551
|
declare const PoliciesViolationsResponseSchema: z.ZodObject<{
|
|
4436
4552
|
violations: z.ZodArray<z.ZodObject<{
|
|
4437
4553
|
id: z.ZodString;
|
|
@@ -4534,6 +4650,7 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4534
4650
|
language: z.ZodString;
|
|
4535
4651
|
env: z.ZodOptional<z.ZodString>;
|
|
4536
4652
|
framework: z.ZodOptional<z.ZodString>;
|
|
4653
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
4537
4654
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
4538
4655
|
version: z.ZodOptional<z.ZodString>;
|
|
4539
4656
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -4643,6 +4760,7 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4643
4760
|
language: string;
|
|
4644
4761
|
env?: string | undefined;
|
|
4645
4762
|
framework?: string | undefined;
|
|
4763
|
+
platform?: string | undefined;
|
|
4646
4764
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4647
4765
|
version?: string | undefined;
|
|
4648
4766
|
dbConnectionTarget?: string | undefined;
|
|
@@ -4688,6 +4806,7 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4688
4806
|
language: string;
|
|
4689
4807
|
env?: string | undefined;
|
|
4690
4808
|
framework?: string | undefined;
|
|
4809
|
+
platform?: string | undefined;
|
|
4691
4810
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4692
4811
|
version?: string | undefined;
|
|
4693
4812
|
dbConnectionTarget?: string | undefined;
|
|
@@ -4839,22 +4958,28 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4839
4958
|
language: z.ZodOptional<z.ZodString>;
|
|
4840
4959
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
4841
4960
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
4961
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
4962
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
4842
4963
|
}, "strip", z.ZodTypeAny, {
|
|
4843
4964
|
path: string;
|
|
4844
4965
|
type: "FileNode";
|
|
4845
4966
|
id: string;
|
|
4846
4967
|
service: string;
|
|
4847
4968
|
language?: string | undefined;
|
|
4969
|
+
platform?: string | undefined;
|
|
4848
4970
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4849
4971
|
originalPath?: string | undefined;
|
|
4972
|
+
platformName?: string | undefined;
|
|
4850
4973
|
}, {
|
|
4851
4974
|
path: string;
|
|
4852
4975
|
type: "FileNode";
|
|
4853
4976
|
id: string;
|
|
4854
4977
|
service: string;
|
|
4855
4978
|
language?: string | undefined;
|
|
4979
|
+
platform?: string | undefined;
|
|
4856
4980
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4857
4981
|
originalPath?: string | undefined;
|
|
4982
|
+
platformName?: string | undefined;
|
|
4858
4983
|
}>, z.ZodObject<{
|
|
4859
4984
|
id: z.ZodString;
|
|
4860
4985
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -4981,6 +5106,7 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4981
5106
|
language: string;
|
|
4982
5107
|
env?: string | undefined;
|
|
4983
5108
|
framework?: string | undefined;
|
|
5109
|
+
platform?: string | undefined;
|
|
4984
5110
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4985
5111
|
version?: string | undefined;
|
|
4986
5112
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5058,8 +5184,10 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
5058
5184
|
id: string;
|
|
5059
5185
|
service: string;
|
|
5060
5186
|
language?: string | undefined;
|
|
5187
|
+
platform?: string | undefined;
|
|
5061
5188
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5062
5189
|
originalPath?: string | undefined;
|
|
5190
|
+
platformName?: string | undefined;
|
|
5063
5191
|
} | {
|
|
5064
5192
|
name: string;
|
|
5065
5193
|
path: string;
|
|
@@ -5108,6 +5236,7 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
5108
5236
|
language: string;
|
|
5109
5237
|
env?: string | undefined;
|
|
5110
5238
|
framework?: string | undefined;
|
|
5239
|
+
platform?: string | undefined;
|
|
5111
5240
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5112
5241
|
version?: string | undefined;
|
|
5113
5242
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5185,8 +5314,10 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
5185
5314
|
id: string;
|
|
5186
5315
|
service: string;
|
|
5187
5316
|
language?: string | undefined;
|
|
5317
|
+
platform?: string | undefined;
|
|
5188
5318
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5189
5319
|
originalPath?: string | undefined;
|
|
5320
|
+
platformName?: string | undefined;
|
|
5190
5321
|
} | {
|
|
5191
5322
|
name: string;
|
|
5192
5323
|
path: string;
|
|
@@ -5637,6 +5768,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
5637
5768
|
language: z.ZodString;
|
|
5638
5769
|
env: z.ZodOptional<z.ZodString>;
|
|
5639
5770
|
framework: z.ZodOptional<z.ZodString>;
|
|
5771
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
5640
5772
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
5641
5773
|
version: z.ZodOptional<z.ZodString>;
|
|
5642
5774
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -5746,6 +5878,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
5746
5878
|
language: string;
|
|
5747
5879
|
env?: string | undefined;
|
|
5748
5880
|
framework?: string | undefined;
|
|
5881
|
+
platform?: string | undefined;
|
|
5749
5882
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5750
5883
|
version?: string | undefined;
|
|
5751
5884
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5791,6 +5924,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
5791
5924
|
language: string;
|
|
5792
5925
|
env?: string | undefined;
|
|
5793
5926
|
framework?: string | undefined;
|
|
5927
|
+
platform?: string | undefined;
|
|
5794
5928
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5795
5929
|
version?: string | undefined;
|
|
5796
5930
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5942,22 +6076,28 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
5942
6076
|
language: z.ZodOptional<z.ZodString>;
|
|
5943
6077
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
5944
6078
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
6079
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
6080
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
5945
6081
|
}, "strip", z.ZodTypeAny, {
|
|
5946
6082
|
path: string;
|
|
5947
6083
|
type: "FileNode";
|
|
5948
6084
|
id: string;
|
|
5949
6085
|
service: string;
|
|
5950
6086
|
language?: string | undefined;
|
|
6087
|
+
platform?: string | undefined;
|
|
5951
6088
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5952
6089
|
originalPath?: string | undefined;
|
|
6090
|
+
platformName?: string | undefined;
|
|
5953
6091
|
}, {
|
|
5954
6092
|
path: string;
|
|
5955
6093
|
type: "FileNode";
|
|
5956
6094
|
id: string;
|
|
5957
6095
|
service: string;
|
|
5958
6096
|
language?: string | undefined;
|
|
6097
|
+
platform?: string | undefined;
|
|
5959
6098
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5960
6099
|
originalPath?: string | undefined;
|
|
6100
|
+
platformName?: string | undefined;
|
|
5961
6101
|
}>, z.ZodObject<{
|
|
5962
6102
|
id: z.ZodString;
|
|
5963
6103
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -6168,6 +6308,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
6168
6308
|
language: string;
|
|
6169
6309
|
env?: string | undefined;
|
|
6170
6310
|
framework?: string | undefined;
|
|
6311
|
+
platform?: string | undefined;
|
|
6171
6312
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6172
6313
|
version?: string | undefined;
|
|
6173
6314
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6245,8 +6386,10 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
6245
6386
|
id: string;
|
|
6246
6387
|
service: string;
|
|
6247
6388
|
language?: string | undefined;
|
|
6389
|
+
platform?: string | undefined;
|
|
6248
6390
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6249
6391
|
originalPath?: string | undefined;
|
|
6392
|
+
platformName?: string | undefined;
|
|
6250
6393
|
} | {
|
|
6251
6394
|
name: string;
|
|
6252
6395
|
path: string;
|
|
@@ -6317,6 +6460,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
6317
6460
|
language: string;
|
|
6318
6461
|
env?: string | undefined;
|
|
6319
6462
|
framework?: string | undefined;
|
|
6463
|
+
platform?: string | undefined;
|
|
6320
6464
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6321
6465
|
version?: string | undefined;
|
|
6322
6466
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6394,8 +6538,10 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
6394
6538
|
id: string;
|
|
6395
6539
|
service: string;
|
|
6396
6540
|
language?: string | undefined;
|
|
6541
|
+
platform?: string | undefined;
|
|
6397
6542
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6398
6543
|
originalPath?: string | undefined;
|
|
6544
|
+
platformName?: string | undefined;
|
|
6399
6545
|
} | {
|
|
6400
6546
|
name: string;
|
|
6401
6547
|
path: string;
|
|
@@ -6483,6 +6629,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6483
6629
|
language: z.ZodString;
|
|
6484
6630
|
env: z.ZodOptional<z.ZodString>;
|
|
6485
6631
|
framework: z.ZodOptional<z.ZodString>;
|
|
6632
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
6486
6633
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
6487
6634
|
version: z.ZodOptional<z.ZodString>;
|
|
6488
6635
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -6592,6 +6739,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6592
6739
|
language: string;
|
|
6593
6740
|
env?: string | undefined;
|
|
6594
6741
|
framework?: string | undefined;
|
|
6742
|
+
platform?: string | undefined;
|
|
6595
6743
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6596
6744
|
version?: string | undefined;
|
|
6597
6745
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6637,6 +6785,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6637
6785
|
language: string;
|
|
6638
6786
|
env?: string | undefined;
|
|
6639
6787
|
framework?: string | undefined;
|
|
6788
|
+
platform?: string | undefined;
|
|
6640
6789
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6641
6790
|
version?: string | undefined;
|
|
6642
6791
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6788,22 +6937,28 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6788
6937
|
language: z.ZodOptional<z.ZodString>;
|
|
6789
6938
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
6790
6939
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
6940
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
6941
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
6791
6942
|
}, "strip", z.ZodTypeAny, {
|
|
6792
6943
|
path: string;
|
|
6793
6944
|
type: "FileNode";
|
|
6794
6945
|
id: string;
|
|
6795
6946
|
service: string;
|
|
6796
6947
|
language?: string | undefined;
|
|
6948
|
+
platform?: string | undefined;
|
|
6797
6949
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6798
6950
|
originalPath?: string | undefined;
|
|
6951
|
+
platformName?: string | undefined;
|
|
6799
6952
|
}, {
|
|
6800
6953
|
path: string;
|
|
6801
6954
|
type: "FileNode";
|
|
6802
6955
|
id: string;
|
|
6803
6956
|
service: string;
|
|
6804
6957
|
language?: string | undefined;
|
|
6958
|
+
platform?: string | undefined;
|
|
6805
6959
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6806
6960
|
originalPath?: string | undefined;
|
|
6961
|
+
platformName?: string | undefined;
|
|
6807
6962
|
}>, z.ZodObject<{
|
|
6808
6963
|
id: z.ZodString;
|
|
6809
6964
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -7014,6 +7169,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7014
7169
|
language: string;
|
|
7015
7170
|
env?: string | undefined;
|
|
7016
7171
|
framework?: string | undefined;
|
|
7172
|
+
platform?: string | undefined;
|
|
7017
7173
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7018
7174
|
version?: string | undefined;
|
|
7019
7175
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7091,8 +7247,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7091
7247
|
id: string;
|
|
7092
7248
|
service: string;
|
|
7093
7249
|
language?: string | undefined;
|
|
7250
|
+
platform?: string | undefined;
|
|
7094
7251
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7095
7252
|
originalPath?: string | undefined;
|
|
7253
|
+
platformName?: string | undefined;
|
|
7096
7254
|
} | {
|
|
7097
7255
|
name: string;
|
|
7098
7256
|
path: string;
|
|
@@ -7163,6 +7321,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7163
7321
|
language: string;
|
|
7164
7322
|
env?: string | undefined;
|
|
7165
7323
|
framework?: string | undefined;
|
|
7324
|
+
platform?: string | undefined;
|
|
7166
7325
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7167
7326
|
version?: string | undefined;
|
|
7168
7327
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7240,8 +7399,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7240
7399
|
id: string;
|
|
7241
7400
|
service: string;
|
|
7242
7401
|
language?: string | undefined;
|
|
7402
|
+
platform?: string | undefined;
|
|
7243
7403
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7244
7404
|
originalPath?: string | undefined;
|
|
7405
|
+
platformName?: string | undefined;
|
|
7245
7406
|
} | {
|
|
7246
7407
|
name: string;
|
|
7247
7408
|
path: string;
|
|
@@ -7313,6 +7474,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7313
7474
|
language: z.ZodString;
|
|
7314
7475
|
env: z.ZodOptional<z.ZodString>;
|
|
7315
7476
|
framework: z.ZodOptional<z.ZodString>;
|
|
7477
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
7316
7478
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
7317
7479
|
version: z.ZodOptional<z.ZodString>;
|
|
7318
7480
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -7422,6 +7584,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7422
7584
|
language: string;
|
|
7423
7585
|
env?: string | undefined;
|
|
7424
7586
|
framework?: string | undefined;
|
|
7587
|
+
platform?: string | undefined;
|
|
7425
7588
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7426
7589
|
version?: string | undefined;
|
|
7427
7590
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7467,6 +7630,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7467
7630
|
language: string;
|
|
7468
7631
|
env?: string | undefined;
|
|
7469
7632
|
framework?: string | undefined;
|
|
7633
|
+
platform?: string | undefined;
|
|
7470
7634
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7471
7635
|
version?: string | undefined;
|
|
7472
7636
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7618,22 +7782,28 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7618
7782
|
language: z.ZodOptional<z.ZodString>;
|
|
7619
7783
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
7620
7784
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
7785
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
7786
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
7621
7787
|
}, "strip", z.ZodTypeAny, {
|
|
7622
7788
|
path: string;
|
|
7623
7789
|
type: "FileNode";
|
|
7624
7790
|
id: string;
|
|
7625
7791
|
service: string;
|
|
7626
7792
|
language?: string | undefined;
|
|
7793
|
+
platform?: string | undefined;
|
|
7627
7794
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7628
7795
|
originalPath?: string | undefined;
|
|
7796
|
+
platformName?: string | undefined;
|
|
7629
7797
|
}, {
|
|
7630
7798
|
path: string;
|
|
7631
7799
|
type: "FileNode";
|
|
7632
7800
|
id: string;
|
|
7633
7801
|
service: string;
|
|
7634
7802
|
language?: string | undefined;
|
|
7803
|
+
platform?: string | undefined;
|
|
7635
7804
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7636
7805
|
originalPath?: string | undefined;
|
|
7806
|
+
platformName?: string | undefined;
|
|
7637
7807
|
}>, z.ZodObject<{
|
|
7638
7808
|
id: z.ZodString;
|
|
7639
7809
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -7844,6 +8014,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7844
8014
|
language: string;
|
|
7845
8015
|
env?: string | undefined;
|
|
7846
8016
|
framework?: string | undefined;
|
|
8017
|
+
platform?: string | undefined;
|
|
7847
8018
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7848
8019
|
version?: string | undefined;
|
|
7849
8020
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7921,8 +8092,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7921
8092
|
id: string;
|
|
7922
8093
|
service: string;
|
|
7923
8094
|
language?: string | undefined;
|
|
8095
|
+
platform?: string | undefined;
|
|
7924
8096
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7925
8097
|
originalPath?: string | undefined;
|
|
8098
|
+
platformName?: string | undefined;
|
|
7926
8099
|
} | {
|
|
7927
8100
|
name: string;
|
|
7928
8101
|
path: string;
|
|
@@ -7993,6 +8166,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7993
8166
|
language: string;
|
|
7994
8167
|
env?: string | undefined;
|
|
7995
8168
|
framework?: string | undefined;
|
|
8169
|
+
platform?: string | undefined;
|
|
7996
8170
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7997
8171
|
version?: string | undefined;
|
|
7998
8172
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8070,8 +8244,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8070
8244
|
id: string;
|
|
8071
8245
|
service: string;
|
|
8072
8246
|
language?: string | undefined;
|
|
8247
|
+
platform?: string | undefined;
|
|
8073
8248
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8074
8249
|
originalPath?: string | undefined;
|
|
8250
|
+
platformName?: string | undefined;
|
|
8075
8251
|
} | {
|
|
8076
8252
|
name: string;
|
|
8077
8253
|
path: string;
|
|
@@ -8145,6 +8321,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8145
8321
|
language: z.ZodString;
|
|
8146
8322
|
env: z.ZodOptional<z.ZodString>;
|
|
8147
8323
|
framework: z.ZodOptional<z.ZodString>;
|
|
8324
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
8148
8325
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
8149
8326
|
version: z.ZodOptional<z.ZodString>;
|
|
8150
8327
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -8254,6 +8431,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8254
8431
|
language: string;
|
|
8255
8432
|
env?: string | undefined;
|
|
8256
8433
|
framework?: string | undefined;
|
|
8434
|
+
platform?: string | undefined;
|
|
8257
8435
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8258
8436
|
version?: string | undefined;
|
|
8259
8437
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8299,6 +8477,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8299
8477
|
language: string;
|
|
8300
8478
|
env?: string | undefined;
|
|
8301
8479
|
framework?: string | undefined;
|
|
8480
|
+
platform?: string | undefined;
|
|
8302
8481
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8303
8482
|
version?: string | undefined;
|
|
8304
8483
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8450,22 +8629,28 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8450
8629
|
language: z.ZodOptional<z.ZodString>;
|
|
8451
8630
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
8452
8631
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
8632
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
8633
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
8453
8634
|
}, "strip", z.ZodTypeAny, {
|
|
8454
8635
|
path: string;
|
|
8455
8636
|
type: "FileNode";
|
|
8456
8637
|
id: string;
|
|
8457
8638
|
service: string;
|
|
8458
8639
|
language?: string | undefined;
|
|
8640
|
+
platform?: string | undefined;
|
|
8459
8641
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8460
8642
|
originalPath?: string | undefined;
|
|
8643
|
+
platformName?: string | undefined;
|
|
8461
8644
|
}, {
|
|
8462
8645
|
path: string;
|
|
8463
8646
|
type: "FileNode";
|
|
8464
8647
|
id: string;
|
|
8465
8648
|
service: string;
|
|
8466
8649
|
language?: string | undefined;
|
|
8650
|
+
platform?: string | undefined;
|
|
8467
8651
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8468
8652
|
originalPath?: string | undefined;
|
|
8653
|
+
platformName?: string | undefined;
|
|
8469
8654
|
}>, z.ZodObject<{
|
|
8470
8655
|
id: z.ZodString;
|
|
8471
8656
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -8591,6 +8776,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8591
8776
|
language: z.ZodString;
|
|
8592
8777
|
env: z.ZodOptional<z.ZodString>;
|
|
8593
8778
|
framework: z.ZodOptional<z.ZodString>;
|
|
8779
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
8594
8780
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
8595
8781
|
version: z.ZodOptional<z.ZodString>;
|
|
8596
8782
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -8700,6 +8886,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8700
8886
|
language: string;
|
|
8701
8887
|
env?: string | undefined;
|
|
8702
8888
|
framework?: string | undefined;
|
|
8889
|
+
platform?: string | undefined;
|
|
8703
8890
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8704
8891
|
version?: string | undefined;
|
|
8705
8892
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8745,6 +8932,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8745
8932
|
language: string;
|
|
8746
8933
|
env?: string | undefined;
|
|
8747
8934
|
framework?: string | undefined;
|
|
8935
|
+
platform?: string | undefined;
|
|
8748
8936
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8749
8937
|
version?: string | undefined;
|
|
8750
8938
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8896,22 +9084,28 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8896
9084
|
language: z.ZodOptional<z.ZodString>;
|
|
8897
9085
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
8898
9086
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
9087
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
9088
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
8899
9089
|
}, "strip", z.ZodTypeAny, {
|
|
8900
9090
|
path: string;
|
|
8901
9091
|
type: "FileNode";
|
|
8902
9092
|
id: string;
|
|
8903
9093
|
service: string;
|
|
8904
9094
|
language?: string | undefined;
|
|
9095
|
+
platform?: string | undefined;
|
|
8905
9096
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8906
9097
|
originalPath?: string | undefined;
|
|
9098
|
+
platformName?: string | undefined;
|
|
8907
9099
|
}, {
|
|
8908
9100
|
path: string;
|
|
8909
9101
|
type: "FileNode";
|
|
8910
9102
|
id: string;
|
|
8911
9103
|
service: string;
|
|
8912
9104
|
language?: string | undefined;
|
|
9105
|
+
platform?: string | undefined;
|
|
8913
9106
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8914
9107
|
originalPath?: string | undefined;
|
|
9108
|
+
platformName?: string | undefined;
|
|
8915
9109
|
}>, z.ZodObject<{
|
|
8916
9110
|
id: z.ZodString;
|
|
8917
9111
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -9039,6 +9233,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9039
9233
|
language: string;
|
|
9040
9234
|
env?: string | undefined;
|
|
9041
9235
|
framework?: string | undefined;
|
|
9236
|
+
platform?: string | undefined;
|
|
9042
9237
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9043
9238
|
version?: string | undefined;
|
|
9044
9239
|
dbConnectionTarget?: string | undefined;
|
|
@@ -9116,8 +9311,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9116
9311
|
id: string;
|
|
9117
9312
|
service: string;
|
|
9118
9313
|
language?: string | undefined;
|
|
9314
|
+
platform?: string | undefined;
|
|
9119
9315
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9120
9316
|
originalPath?: string | undefined;
|
|
9317
|
+
platformName?: string | undefined;
|
|
9121
9318
|
} | {
|
|
9122
9319
|
name: string;
|
|
9123
9320
|
path: string;
|
|
@@ -9165,6 +9362,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9165
9362
|
language: string;
|
|
9166
9363
|
env?: string | undefined;
|
|
9167
9364
|
framework?: string | undefined;
|
|
9365
|
+
platform?: string | undefined;
|
|
9168
9366
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9169
9367
|
version?: string | undefined;
|
|
9170
9368
|
dbConnectionTarget?: string | undefined;
|
|
@@ -9242,8 +9440,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9242
9440
|
id: string;
|
|
9243
9441
|
service: string;
|
|
9244
9442
|
language?: string | undefined;
|
|
9443
|
+
platform?: string | undefined;
|
|
9245
9444
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9246
9445
|
originalPath?: string | undefined;
|
|
9446
|
+
platformName?: string | undefined;
|
|
9247
9447
|
} | {
|
|
9248
9448
|
name: string;
|
|
9249
9449
|
path: string;
|
|
@@ -9293,6 +9493,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9293
9493
|
language: string;
|
|
9294
9494
|
env?: string | undefined;
|
|
9295
9495
|
framework?: string | undefined;
|
|
9496
|
+
platform?: string | undefined;
|
|
9296
9497
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9297
9498
|
version?: string | undefined;
|
|
9298
9499
|
dbConnectionTarget?: string | undefined;
|
|
@@ -9370,8 +9571,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9370
9571
|
id: string;
|
|
9371
9572
|
service: string;
|
|
9372
9573
|
language?: string | undefined;
|
|
9574
|
+
platform?: string | undefined;
|
|
9373
9575
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9374
9576
|
originalPath?: string | undefined;
|
|
9577
|
+
platformName?: string | undefined;
|
|
9375
9578
|
} | {
|
|
9376
9579
|
name: string;
|
|
9377
9580
|
path: string;
|
|
@@ -9419,6 +9622,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9419
9622
|
language: string;
|
|
9420
9623
|
env?: string | undefined;
|
|
9421
9624
|
framework?: string | undefined;
|
|
9625
|
+
platform?: string | undefined;
|
|
9422
9626
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9423
9627
|
version?: string | undefined;
|
|
9424
9628
|
dbConnectionTarget?: string | undefined;
|
|
@@ -9496,8 +9700,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9496
9700
|
id: string;
|
|
9497
9701
|
service: string;
|
|
9498
9702
|
language?: string | undefined;
|
|
9703
|
+
platform?: string | undefined;
|
|
9499
9704
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9500
9705
|
originalPath?: string | undefined;
|
|
9706
|
+
platformName?: string | undefined;
|
|
9501
9707
|
} | {
|
|
9502
9708
|
name: string;
|
|
9503
9709
|
path: string;
|
|
@@ -9812,6 +10018,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9812
10018
|
language: string;
|
|
9813
10019
|
env?: string | undefined;
|
|
9814
10020
|
framework?: string | undefined;
|
|
10021
|
+
platform?: string | undefined;
|
|
9815
10022
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9816
10023
|
version?: string | undefined;
|
|
9817
10024
|
dbConnectionTarget?: string | undefined;
|
|
@@ -9889,8 +10096,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9889
10096
|
id: string;
|
|
9890
10097
|
service: string;
|
|
9891
10098
|
language?: string | undefined;
|
|
10099
|
+
platform?: string | undefined;
|
|
9892
10100
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9893
10101
|
originalPath?: string | undefined;
|
|
10102
|
+
platformName?: string | undefined;
|
|
9894
10103
|
} | {
|
|
9895
10104
|
name: string;
|
|
9896
10105
|
path: string;
|
|
@@ -9938,6 +10147,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9938
10147
|
language: string;
|
|
9939
10148
|
env?: string | undefined;
|
|
9940
10149
|
framework?: string | undefined;
|
|
10150
|
+
platform?: string | undefined;
|
|
9941
10151
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9942
10152
|
version?: string | undefined;
|
|
9943
10153
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10015,8 +10225,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10015
10225
|
id: string;
|
|
10016
10226
|
service: string;
|
|
10017
10227
|
language?: string | undefined;
|
|
10228
|
+
platform?: string | undefined;
|
|
10018
10229
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10019
10230
|
originalPath?: string | undefined;
|
|
10231
|
+
platformName?: string | undefined;
|
|
10020
10232
|
} | {
|
|
10021
10233
|
name: string;
|
|
10022
10234
|
path: string;
|
|
@@ -10115,6 +10327,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10115
10327
|
language: string;
|
|
10116
10328
|
env?: string | undefined;
|
|
10117
10329
|
framework?: string | undefined;
|
|
10330
|
+
platform?: string | undefined;
|
|
10118
10331
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10119
10332
|
version?: string | undefined;
|
|
10120
10333
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10192,8 +10405,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10192
10405
|
id: string;
|
|
10193
10406
|
service: string;
|
|
10194
10407
|
language?: string | undefined;
|
|
10408
|
+
platform?: string | undefined;
|
|
10195
10409
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10196
10410
|
originalPath?: string | undefined;
|
|
10411
|
+
platformName?: string | undefined;
|
|
10197
10412
|
} | {
|
|
10198
10413
|
name: string;
|
|
10199
10414
|
path: string;
|
|
@@ -10241,6 +10456,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10241
10456
|
language: string;
|
|
10242
10457
|
env?: string | undefined;
|
|
10243
10458
|
framework?: string | undefined;
|
|
10459
|
+
platform?: string | undefined;
|
|
10244
10460
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10245
10461
|
version?: string | undefined;
|
|
10246
10462
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10318,8 +10534,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10318
10534
|
id: string;
|
|
10319
10535
|
service: string;
|
|
10320
10536
|
language?: string | undefined;
|
|
10537
|
+
platform?: string | undefined;
|
|
10321
10538
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10322
10539
|
originalPath?: string | undefined;
|
|
10540
|
+
platformName?: string | undefined;
|
|
10323
10541
|
} | {
|
|
10324
10542
|
name: string;
|
|
10325
10543
|
path: string;
|
|
@@ -10424,6 +10642,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10424
10642
|
language: string;
|
|
10425
10643
|
env?: string | undefined;
|
|
10426
10644
|
framework?: string | undefined;
|
|
10645
|
+
platform?: string | undefined;
|
|
10427
10646
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10428
10647
|
version?: string | undefined;
|
|
10429
10648
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10501,8 +10720,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10501
10720
|
id: string;
|
|
10502
10721
|
service: string;
|
|
10503
10722
|
language?: string | undefined;
|
|
10723
|
+
platform?: string | undefined;
|
|
10504
10724
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10505
10725
|
originalPath?: string | undefined;
|
|
10726
|
+
platformName?: string | undefined;
|
|
10506
10727
|
} | {
|
|
10507
10728
|
name: string;
|
|
10508
10729
|
path: string;
|
|
@@ -10574,6 +10795,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10574
10795
|
language: string;
|
|
10575
10796
|
env?: string | undefined;
|
|
10576
10797
|
framework?: string | undefined;
|
|
10798
|
+
platform?: string | undefined;
|
|
10577
10799
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10578
10800
|
version?: string | undefined;
|
|
10579
10801
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10651,8 +10873,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10651
10873
|
id: string;
|
|
10652
10874
|
service: string;
|
|
10653
10875
|
language?: string | undefined;
|
|
10876
|
+
platform?: string | undefined;
|
|
10654
10877
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10655
10878
|
originalPath?: string | undefined;
|
|
10879
|
+
platformName?: string | undefined;
|
|
10656
10880
|
} | {
|
|
10657
10881
|
name: string;
|
|
10658
10882
|
path: string;
|
|
@@ -10726,6 +10950,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10726
10950
|
language: string;
|
|
10727
10951
|
env?: string | undefined;
|
|
10728
10952
|
framework?: string | undefined;
|
|
10953
|
+
platform?: string | undefined;
|
|
10729
10954
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10730
10955
|
version?: string | undefined;
|
|
10731
10956
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10803,8 +11028,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10803
11028
|
id: string;
|
|
10804
11029
|
service: string;
|
|
10805
11030
|
language?: string | undefined;
|
|
11031
|
+
platform?: string | undefined;
|
|
10806
11032
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10807
11033
|
originalPath?: string | undefined;
|
|
11034
|
+
platformName?: string | undefined;
|
|
10808
11035
|
} | {
|
|
10809
11036
|
name: string;
|
|
10810
11037
|
path: string;
|
|
@@ -10852,6 +11079,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10852
11079
|
language: string;
|
|
10853
11080
|
env?: string | undefined;
|
|
10854
11081
|
framework?: string | undefined;
|
|
11082
|
+
platform?: string | undefined;
|
|
10855
11083
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10856
11084
|
version?: string | undefined;
|
|
10857
11085
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10929,8 +11157,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10929
11157
|
id: string;
|
|
10930
11158
|
service: string;
|
|
10931
11159
|
language?: string | undefined;
|
|
11160
|
+
platform?: string | undefined;
|
|
10932
11161
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10933
11162
|
originalPath?: string | undefined;
|
|
11163
|
+
platformName?: string | undefined;
|
|
10934
11164
|
} | {
|
|
10935
11165
|
name: string;
|
|
10936
11166
|
path: string;
|
|
@@ -11035,6 +11265,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11035
11265
|
language: string;
|
|
11036
11266
|
env?: string | undefined;
|
|
11037
11267
|
framework?: string | undefined;
|
|
11268
|
+
platform?: string | undefined;
|
|
11038
11269
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11039
11270
|
version?: string | undefined;
|
|
11040
11271
|
dbConnectionTarget?: string | undefined;
|
|
@@ -11112,8 +11343,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11112
11343
|
id: string;
|
|
11113
11344
|
service: string;
|
|
11114
11345
|
language?: string | undefined;
|
|
11346
|
+
platform?: string | undefined;
|
|
11115
11347
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11116
11348
|
originalPath?: string | undefined;
|
|
11349
|
+
platformName?: string | undefined;
|
|
11117
11350
|
} | {
|
|
11118
11351
|
name: string;
|
|
11119
11352
|
path: string;
|
|
@@ -11185,6 +11418,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11185
11418
|
language: string;
|
|
11186
11419
|
env?: string | undefined;
|
|
11187
11420
|
framework?: string | undefined;
|
|
11421
|
+
platform?: string | undefined;
|
|
11188
11422
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11189
11423
|
version?: string | undefined;
|
|
11190
11424
|
dbConnectionTarget?: string | undefined;
|
|
@@ -11262,8 +11496,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11262
11496
|
id: string;
|
|
11263
11497
|
service: string;
|
|
11264
11498
|
language?: string | undefined;
|
|
11499
|
+
platform?: string | undefined;
|
|
11265
11500
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11266
11501
|
originalPath?: string | undefined;
|
|
11502
|
+
platformName?: string | undefined;
|
|
11267
11503
|
} | {
|
|
11268
11504
|
name: string;
|
|
11269
11505
|
path: string;
|
|
@@ -11337,6 +11573,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11337
11573
|
language: string;
|
|
11338
11574
|
env?: string | undefined;
|
|
11339
11575
|
framework?: string | undefined;
|
|
11576
|
+
platform?: string | undefined;
|
|
11340
11577
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11341
11578
|
version?: string | undefined;
|
|
11342
11579
|
dbConnectionTarget?: string | undefined;
|
|
@@ -11414,8 +11651,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11414
11651
|
id: string;
|
|
11415
11652
|
service: string;
|
|
11416
11653
|
language?: string | undefined;
|
|
11654
|
+
platform?: string | undefined;
|
|
11417
11655
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11418
11656
|
originalPath?: string | undefined;
|
|
11657
|
+
platformName?: string | undefined;
|
|
11419
11658
|
} | {
|
|
11420
11659
|
name: string;
|
|
11421
11660
|
path: string;
|
|
@@ -11463,6 +11702,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11463
11702
|
language: string;
|
|
11464
11703
|
env?: string | undefined;
|
|
11465
11704
|
framework?: string | undefined;
|
|
11705
|
+
platform?: string | undefined;
|
|
11466
11706
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11467
11707
|
version?: string | undefined;
|
|
11468
11708
|
dbConnectionTarget?: string | undefined;
|
|
@@ -11540,8 +11780,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11540
11780
|
id: string;
|
|
11541
11781
|
service: string;
|
|
11542
11782
|
language?: string | undefined;
|
|
11783
|
+
platform?: string | undefined;
|
|
11543
11784
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11544
11785
|
originalPath?: string | undefined;
|
|
11786
|
+
platformName?: string | undefined;
|
|
11545
11787
|
} | {
|
|
11546
11788
|
name: string;
|
|
11547
11789
|
path: string;
|
|
@@ -11642,4 +11884,4 @@ declare const DEFAULT_EXTRACTED_PRECISION_FLOOR = 0.7;
|
|
|
11642
11884
|
declare function extractedPrecisionFloor(): number;
|
|
11643
11885
|
declare function passesExtractedFloor(confidence: number): boolean;
|
|
11644
11886
|
|
|
11645
|
-
export { type ApplicablePoliciesResponse, ApplicablePoliciesResponseSchema, type ApplicablePolicy, ApplicablePolicySchema, 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 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 MCPToolName, MCP_TOOL_NAMES, type MissingExtractedDivergence, MissingExtractedDivergenceSchema, type MissingObservedDivergence, MissingObservedDivergenceSchema, 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, Provenance, type ProvenanceRule, ProvenanceRuleSchema, ProvenanceSchema, type ProvenanceValue, type RegistryEntry, RegistryEntrySchema, type RegistryFile, RegistryFileSchema, type RegistryStatus, RegistryStatusSchema, type RootCauseResult, RootCauseResultSchema, type RouteNode, RouteNodeSchema, 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, 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, parseServiceId, parseWebsocketChannelId, passesExtractedFloor, routeId, serviceId, websocketChannelId };
|
|
11887
|
+
export { type ApplicablePoliciesResponse, ApplicablePoliciesResponseSchema, type ApplicablePolicy, ApplicablePolicySchema, 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 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 LogEntry, LogEntrySchema, type LogSource, LogSourceSchema, type LogsResponse, LogsResponseSchema, type MCPToolName, MCP_TOOL_NAMES, type MissingExtractedDivergence, MissingExtractedDivergenceSchema, type MissingObservedDivergence, MissingObservedDivergenceSchema, 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, Provenance, type ProvenanceRule, ProvenanceRuleSchema, ProvenanceSchema, type ProvenanceValue, type RegistryEntry, RegistryEntrySchema, type RegistryFile, RegistryFileSchema, type RegistryStatus, RegistryStatusSchema, type RootCauseResult, RootCauseResultSchema, type RouteNode, RouteNodeSchema, 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, 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, parseServiceId, parseWebsocketChannelId, passesExtractedFloor, routeId, serviceId, websocketChannelId };
|