@neat.is/types 0.4.28-dev.20260708 → 0.4.28-dev.20260710
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 +19 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +144 -0
- package/dist/index.d.ts +144 -0
- package/dist/index.js +19 -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">;
|
|
@@ -4632,6 +4650,7 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4632
4650
|
language: z.ZodString;
|
|
4633
4651
|
env: z.ZodOptional<z.ZodString>;
|
|
4634
4652
|
framework: z.ZodOptional<z.ZodString>;
|
|
4653
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
4635
4654
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
4636
4655
|
version: z.ZodOptional<z.ZodString>;
|
|
4637
4656
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -4741,6 +4760,7 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4741
4760
|
language: string;
|
|
4742
4761
|
env?: string | undefined;
|
|
4743
4762
|
framework?: string | undefined;
|
|
4763
|
+
platform?: string | undefined;
|
|
4744
4764
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4745
4765
|
version?: string | undefined;
|
|
4746
4766
|
dbConnectionTarget?: string | undefined;
|
|
@@ -4786,6 +4806,7 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4786
4806
|
language: string;
|
|
4787
4807
|
env?: string | undefined;
|
|
4788
4808
|
framework?: string | undefined;
|
|
4809
|
+
platform?: string | undefined;
|
|
4789
4810
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4790
4811
|
version?: string | undefined;
|
|
4791
4812
|
dbConnectionTarget?: string | undefined;
|
|
@@ -4937,22 +4958,28 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4937
4958
|
language: z.ZodOptional<z.ZodString>;
|
|
4938
4959
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
4939
4960
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
4961
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
4962
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
4940
4963
|
}, "strip", z.ZodTypeAny, {
|
|
4941
4964
|
path: string;
|
|
4942
4965
|
type: "FileNode";
|
|
4943
4966
|
id: string;
|
|
4944
4967
|
service: string;
|
|
4945
4968
|
language?: string | undefined;
|
|
4969
|
+
platform?: string | undefined;
|
|
4946
4970
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4947
4971
|
originalPath?: string | undefined;
|
|
4972
|
+
platformName?: string | undefined;
|
|
4948
4973
|
}, {
|
|
4949
4974
|
path: string;
|
|
4950
4975
|
type: "FileNode";
|
|
4951
4976
|
id: string;
|
|
4952
4977
|
service: string;
|
|
4953
4978
|
language?: string | undefined;
|
|
4979
|
+
platform?: string | undefined;
|
|
4954
4980
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4955
4981
|
originalPath?: string | undefined;
|
|
4982
|
+
platformName?: string | undefined;
|
|
4956
4983
|
}>, z.ZodObject<{
|
|
4957
4984
|
id: z.ZodString;
|
|
4958
4985
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -5079,6 +5106,7 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
5079
5106
|
language: string;
|
|
5080
5107
|
env?: string | undefined;
|
|
5081
5108
|
framework?: string | undefined;
|
|
5109
|
+
platform?: string | undefined;
|
|
5082
5110
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5083
5111
|
version?: string | undefined;
|
|
5084
5112
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5156,8 +5184,10 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
5156
5184
|
id: string;
|
|
5157
5185
|
service: string;
|
|
5158
5186
|
language?: string | undefined;
|
|
5187
|
+
platform?: string | undefined;
|
|
5159
5188
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5160
5189
|
originalPath?: string | undefined;
|
|
5190
|
+
platformName?: string | undefined;
|
|
5161
5191
|
} | {
|
|
5162
5192
|
name: string;
|
|
5163
5193
|
path: string;
|
|
@@ -5206,6 +5236,7 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
5206
5236
|
language: string;
|
|
5207
5237
|
env?: string | undefined;
|
|
5208
5238
|
framework?: string | undefined;
|
|
5239
|
+
platform?: string | undefined;
|
|
5209
5240
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5210
5241
|
version?: string | undefined;
|
|
5211
5242
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5283,8 +5314,10 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
5283
5314
|
id: string;
|
|
5284
5315
|
service: string;
|
|
5285
5316
|
language?: string | undefined;
|
|
5317
|
+
platform?: string | undefined;
|
|
5286
5318
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5287
5319
|
originalPath?: string | undefined;
|
|
5320
|
+
platformName?: string | undefined;
|
|
5288
5321
|
} | {
|
|
5289
5322
|
name: string;
|
|
5290
5323
|
path: string;
|
|
@@ -5735,6 +5768,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
5735
5768
|
language: z.ZodString;
|
|
5736
5769
|
env: z.ZodOptional<z.ZodString>;
|
|
5737
5770
|
framework: z.ZodOptional<z.ZodString>;
|
|
5771
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
5738
5772
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
5739
5773
|
version: z.ZodOptional<z.ZodString>;
|
|
5740
5774
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -5844,6 +5878,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
5844
5878
|
language: string;
|
|
5845
5879
|
env?: string | undefined;
|
|
5846
5880
|
framework?: string | undefined;
|
|
5881
|
+
platform?: string | undefined;
|
|
5847
5882
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5848
5883
|
version?: string | undefined;
|
|
5849
5884
|
dbConnectionTarget?: string | undefined;
|
|
@@ -5889,6 +5924,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
5889
5924
|
language: string;
|
|
5890
5925
|
env?: string | undefined;
|
|
5891
5926
|
framework?: string | undefined;
|
|
5927
|
+
platform?: string | undefined;
|
|
5892
5928
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5893
5929
|
version?: string | undefined;
|
|
5894
5930
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6040,22 +6076,28 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
6040
6076
|
language: z.ZodOptional<z.ZodString>;
|
|
6041
6077
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
6042
6078
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
6079
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
6080
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
6043
6081
|
}, "strip", z.ZodTypeAny, {
|
|
6044
6082
|
path: string;
|
|
6045
6083
|
type: "FileNode";
|
|
6046
6084
|
id: string;
|
|
6047
6085
|
service: string;
|
|
6048
6086
|
language?: string | undefined;
|
|
6087
|
+
platform?: string | undefined;
|
|
6049
6088
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6050
6089
|
originalPath?: string | undefined;
|
|
6090
|
+
platformName?: string | undefined;
|
|
6051
6091
|
}, {
|
|
6052
6092
|
path: string;
|
|
6053
6093
|
type: "FileNode";
|
|
6054
6094
|
id: string;
|
|
6055
6095
|
service: string;
|
|
6056
6096
|
language?: string | undefined;
|
|
6097
|
+
platform?: string | undefined;
|
|
6057
6098
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6058
6099
|
originalPath?: string | undefined;
|
|
6100
|
+
platformName?: string | undefined;
|
|
6059
6101
|
}>, z.ZodObject<{
|
|
6060
6102
|
id: z.ZodString;
|
|
6061
6103
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -6266,6 +6308,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
6266
6308
|
language: string;
|
|
6267
6309
|
env?: string | undefined;
|
|
6268
6310
|
framework?: string | undefined;
|
|
6311
|
+
platform?: string | undefined;
|
|
6269
6312
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6270
6313
|
version?: string | undefined;
|
|
6271
6314
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6343,8 +6386,10 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
6343
6386
|
id: string;
|
|
6344
6387
|
service: string;
|
|
6345
6388
|
language?: string | undefined;
|
|
6389
|
+
platform?: string | undefined;
|
|
6346
6390
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6347
6391
|
originalPath?: string | undefined;
|
|
6392
|
+
platformName?: string | undefined;
|
|
6348
6393
|
} | {
|
|
6349
6394
|
name: string;
|
|
6350
6395
|
path: string;
|
|
@@ -6415,6 +6460,7 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
6415
6460
|
language: string;
|
|
6416
6461
|
env?: string | undefined;
|
|
6417
6462
|
framework?: string | undefined;
|
|
6463
|
+
platform?: string | undefined;
|
|
6418
6464
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6419
6465
|
version?: string | undefined;
|
|
6420
6466
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6492,8 +6538,10 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
6492
6538
|
id: string;
|
|
6493
6539
|
service: string;
|
|
6494
6540
|
language?: string | undefined;
|
|
6541
|
+
platform?: string | undefined;
|
|
6495
6542
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6496
6543
|
originalPath?: string | undefined;
|
|
6544
|
+
platformName?: string | undefined;
|
|
6497
6545
|
} | {
|
|
6498
6546
|
name: string;
|
|
6499
6547
|
path: string;
|
|
@@ -6581,6 +6629,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6581
6629
|
language: z.ZodString;
|
|
6582
6630
|
env: z.ZodOptional<z.ZodString>;
|
|
6583
6631
|
framework: z.ZodOptional<z.ZodString>;
|
|
6632
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
6584
6633
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
6585
6634
|
version: z.ZodOptional<z.ZodString>;
|
|
6586
6635
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -6690,6 +6739,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6690
6739
|
language: string;
|
|
6691
6740
|
env?: string | undefined;
|
|
6692
6741
|
framework?: string | undefined;
|
|
6742
|
+
platform?: string | undefined;
|
|
6693
6743
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6694
6744
|
version?: string | undefined;
|
|
6695
6745
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6735,6 +6785,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6735
6785
|
language: string;
|
|
6736
6786
|
env?: string | undefined;
|
|
6737
6787
|
framework?: string | undefined;
|
|
6788
|
+
platform?: string | undefined;
|
|
6738
6789
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6739
6790
|
version?: string | undefined;
|
|
6740
6791
|
dbConnectionTarget?: string | undefined;
|
|
@@ -6886,22 +6937,28 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6886
6937
|
language: z.ZodOptional<z.ZodString>;
|
|
6887
6938
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
6888
6939
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
6940
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
6941
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
6889
6942
|
}, "strip", z.ZodTypeAny, {
|
|
6890
6943
|
path: string;
|
|
6891
6944
|
type: "FileNode";
|
|
6892
6945
|
id: string;
|
|
6893
6946
|
service: string;
|
|
6894
6947
|
language?: string | undefined;
|
|
6948
|
+
platform?: string | undefined;
|
|
6895
6949
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6896
6950
|
originalPath?: string | undefined;
|
|
6951
|
+
platformName?: string | undefined;
|
|
6897
6952
|
}, {
|
|
6898
6953
|
path: string;
|
|
6899
6954
|
type: "FileNode";
|
|
6900
6955
|
id: string;
|
|
6901
6956
|
service: string;
|
|
6902
6957
|
language?: string | undefined;
|
|
6958
|
+
platform?: string | undefined;
|
|
6903
6959
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6904
6960
|
originalPath?: string | undefined;
|
|
6961
|
+
platformName?: string | undefined;
|
|
6905
6962
|
}>, z.ZodObject<{
|
|
6906
6963
|
id: z.ZodString;
|
|
6907
6964
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -7112,6 +7169,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7112
7169
|
language: string;
|
|
7113
7170
|
env?: string | undefined;
|
|
7114
7171
|
framework?: string | undefined;
|
|
7172
|
+
platform?: string | undefined;
|
|
7115
7173
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7116
7174
|
version?: string | undefined;
|
|
7117
7175
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7189,8 +7247,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7189
7247
|
id: string;
|
|
7190
7248
|
service: string;
|
|
7191
7249
|
language?: string | undefined;
|
|
7250
|
+
platform?: string | undefined;
|
|
7192
7251
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7193
7252
|
originalPath?: string | undefined;
|
|
7253
|
+
platformName?: string | undefined;
|
|
7194
7254
|
} | {
|
|
7195
7255
|
name: string;
|
|
7196
7256
|
path: string;
|
|
@@ -7261,6 +7321,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7261
7321
|
language: string;
|
|
7262
7322
|
env?: string | undefined;
|
|
7263
7323
|
framework?: string | undefined;
|
|
7324
|
+
platform?: string | undefined;
|
|
7264
7325
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7265
7326
|
version?: string | undefined;
|
|
7266
7327
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7338,8 +7399,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7338
7399
|
id: string;
|
|
7339
7400
|
service: string;
|
|
7340
7401
|
language?: string | undefined;
|
|
7402
|
+
platform?: string | undefined;
|
|
7341
7403
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7342
7404
|
originalPath?: string | undefined;
|
|
7405
|
+
platformName?: string | undefined;
|
|
7343
7406
|
} | {
|
|
7344
7407
|
name: string;
|
|
7345
7408
|
path: string;
|
|
@@ -7411,6 +7474,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7411
7474
|
language: z.ZodString;
|
|
7412
7475
|
env: z.ZodOptional<z.ZodString>;
|
|
7413
7476
|
framework: z.ZodOptional<z.ZodString>;
|
|
7477
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
7414
7478
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
7415
7479
|
version: z.ZodOptional<z.ZodString>;
|
|
7416
7480
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -7520,6 +7584,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7520
7584
|
language: string;
|
|
7521
7585
|
env?: string | undefined;
|
|
7522
7586
|
framework?: string | undefined;
|
|
7587
|
+
platform?: string | undefined;
|
|
7523
7588
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7524
7589
|
version?: string | undefined;
|
|
7525
7590
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7565,6 +7630,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7565
7630
|
language: string;
|
|
7566
7631
|
env?: string | undefined;
|
|
7567
7632
|
framework?: string | undefined;
|
|
7633
|
+
platform?: string | undefined;
|
|
7568
7634
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7569
7635
|
version?: string | undefined;
|
|
7570
7636
|
dbConnectionTarget?: string | undefined;
|
|
@@ -7716,22 +7782,28 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7716
7782
|
language: z.ZodOptional<z.ZodString>;
|
|
7717
7783
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
7718
7784
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
7785
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
7786
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
7719
7787
|
}, "strip", z.ZodTypeAny, {
|
|
7720
7788
|
path: string;
|
|
7721
7789
|
type: "FileNode";
|
|
7722
7790
|
id: string;
|
|
7723
7791
|
service: string;
|
|
7724
7792
|
language?: string | undefined;
|
|
7793
|
+
platform?: string | undefined;
|
|
7725
7794
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7726
7795
|
originalPath?: string | undefined;
|
|
7796
|
+
platformName?: string | undefined;
|
|
7727
7797
|
}, {
|
|
7728
7798
|
path: string;
|
|
7729
7799
|
type: "FileNode";
|
|
7730
7800
|
id: string;
|
|
7731
7801
|
service: string;
|
|
7732
7802
|
language?: string | undefined;
|
|
7803
|
+
platform?: string | undefined;
|
|
7733
7804
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7734
7805
|
originalPath?: string | undefined;
|
|
7806
|
+
platformName?: string | undefined;
|
|
7735
7807
|
}>, z.ZodObject<{
|
|
7736
7808
|
id: z.ZodString;
|
|
7737
7809
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -7942,6 +8014,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7942
8014
|
language: string;
|
|
7943
8015
|
env?: string | undefined;
|
|
7944
8016
|
framework?: string | undefined;
|
|
8017
|
+
platform?: string | undefined;
|
|
7945
8018
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7946
8019
|
version?: string | undefined;
|
|
7947
8020
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8019,8 +8092,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8019
8092
|
id: string;
|
|
8020
8093
|
service: string;
|
|
8021
8094
|
language?: string | undefined;
|
|
8095
|
+
platform?: string | undefined;
|
|
8022
8096
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8023
8097
|
originalPath?: string | undefined;
|
|
8098
|
+
platformName?: string | undefined;
|
|
8024
8099
|
} | {
|
|
8025
8100
|
name: string;
|
|
8026
8101
|
path: string;
|
|
@@ -8091,6 +8166,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8091
8166
|
language: string;
|
|
8092
8167
|
env?: string | undefined;
|
|
8093
8168
|
framework?: string | undefined;
|
|
8169
|
+
platform?: string | undefined;
|
|
8094
8170
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8095
8171
|
version?: string | undefined;
|
|
8096
8172
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8168,8 +8244,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8168
8244
|
id: string;
|
|
8169
8245
|
service: string;
|
|
8170
8246
|
language?: string | undefined;
|
|
8247
|
+
platform?: string | undefined;
|
|
8171
8248
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8172
8249
|
originalPath?: string | undefined;
|
|
8250
|
+
platformName?: string | undefined;
|
|
8173
8251
|
} | {
|
|
8174
8252
|
name: string;
|
|
8175
8253
|
path: string;
|
|
@@ -8243,6 +8321,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8243
8321
|
language: z.ZodString;
|
|
8244
8322
|
env: z.ZodOptional<z.ZodString>;
|
|
8245
8323
|
framework: z.ZodOptional<z.ZodString>;
|
|
8324
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
8246
8325
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
8247
8326
|
version: z.ZodOptional<z.ZodString>;
|
|
8248
8327
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -8352,6 +8431,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8352
8431
|
language: string;
|
|
8353
8432
|
env?: string | undefined;
|
|
8354
8433
|
framework?: string | undefined;
|
|
8434
|
+
platform?: string | undefined;
|
|
8355
8435
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8356
8436
|
version?: string | undefined;
|
|
8357
8437
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8397,6 +8477,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8397
8477
|
language: string;
|
|
8398
8478
|
env?: string | undefined;
|
|
8399
8479
|
framework?: string | undefined;
|
|
8480
|
+
platform?: string | undefined;
|
|
8400
8481
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8401
8482
|
version?: string | undefined;
|
|
8402
8483
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8548,22 +8629,28 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8548
8629
|
language: z.ZodOptional<z.ZodString>;
|
|
8549
8630
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
8550
8631
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
8632
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
8633
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
8551
8634
|
}, "strip", z.ZodTypeAny, {
|
|
8552
8635
|
path: string;
|
|
8553
8636
|
type: "FileNode";
|
|
8554
8637
|
id: string;
|
|
8555
8638
|
service: string;
|
|
8556
8639
|
language?: string | undefined;
|
|
8640
|
+
platform?: string | undefined;
|
|
8557
8641
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8558
8642
|
originalPath?: string | undefined;
|
|
8643
|
+
platformName?: string | undefined;
|
|
8559
8644
|
}, {
|
|
8560
8645
|
path: string;
|
|
8561
8646
|
type: "FileNode";
|
|
8562
8647
|
id: string;
|
|
8563
8648
|
service: string;
|
|
8564
8649
|
language?: string | undefined;
|
|
8650
|
+
platform?: string | undefined;
|
|
8565
8651
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8566
8652
|
originalPath?: string | undefined;
|
|
8653
|
+
platformName?: string | undefined;
|
|
8567
8654
|
}>, z.ZodObject<{
|
|
8568
8655
|
id: z.ZodString;
|
|
8569
8656
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -8689,6 +8776,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8689
8776
|
language: z.ZodString;
|
|
8690
8777
|
env: z.ZodOptional<z.ZodString>;
|
|
8691
8778
|
framework: z.ZodOptional<z.ZodString>;
|
|
8779
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
8692
8780
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
8693
8781
|
version: z.ZodOptional<z.ZodString>;
|
|
8694
8782
|
dbConnectionTarget: z.ZodOptional<z.ZodString>;
|
|
@@ -8798,6 +8886,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8798
8886
|
language: string;
|
|
8799
8887
|
env?: string | undefined;
|
|
8800
8888
|
framework?: string | undefined;
|
|
8889
|
+
platform?: string | undefined;
|
|
8801
8890
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8802
8891
|
version?: string | undefined;
|
|
8803
8892
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8843,6 +8932,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8843
8932
|
language: string;
|
|
8844
8933
|
env?: string | undefined;
|
|
8845
8934
|
framework?: string | undefined;
|
|
8935
|
+
platform?: string | undefined;
|
|
8846
8936
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8847
8937
|
version?: string | undefined;
|
|
8848
8938
|
dbConnectionTarget?: string | undefined;
|
|
@@ -8994,22 +9084,28 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8994
9084
|
language: z.ZodOptional<z.ZodString>;
|
|
8995
9085
|
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
8996
9086
|
originalPath: z.ZodOptional<z.ZodString>;
|
|
9087
|
+
platform: z.ZodOptional<z.ZodString>;
|
|
9088
|
+
platformName: z.ZodOptional<z.ZodString>;
|
|
8997
9089
|
}, "strip", z.ZodTypeAny, {
|
|
8998
9090
|
path: string;
|
|
8999
9091
|
type: "FileNode";
|
|
9000
9092
|
id: string;
|
|
9001
9093
|
service: string;
|
|
9002
9094
|
language?: string | undefined;
|
|
9095
|
+
platform?: string | undefined;
|
|
9003
9096
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9004
9097
|
originalPath?: string | undefined;
|
|
9098
|
+
platformName?: string | undefined;
|
|
9005
9099
|
}, {
|
|
9006
9100
|
path: string;
|
|
9007
9101
|
type: "FileNode";
|
|
9008
9102
|
id: string;
|
|
9009
9103
|
service: string;
|
|
9010
9104
|
language?: string | undefined;
|
|
9105
|
+
platform?: string | undefined;
|
|
9011
9106
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9012
9107
|
originalPath?: string | undefined;
|
|
9108
|
+
platformName?: string | undefined;
|
|
9013
9109
|
}>, z.ZodObject<{
|
|
9014
9110
|
id: z.ZodString;
|
|
9015
9111
|
type: z.ZodLiteral<"RouteNode">;
|
|
@@ -9137,6 +9233,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9137
9233
|
language: string;
|
|
9138
9234
|
env?: string | undefined;
|
|
9139
9235
|
framework?: string | undefined;
|
|
9236
|
+
platform?: string | undefined;
|
|
9140
9237
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9141
9238
|
version?: string | undefined;
|
|
9142
9239
|
dbConnectionTarget?: string | undefined;
|
|
@@ -9214,8 +9311,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9214
9311
|
id: string;
|
|
9215
9312
|
service: string;
|
|
9216
9313
|
language?: string | undefined;
|
|
9314
|
+
platform?: string | undefined;
|
|
9217
9315
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9218
9316
|
originalPath?: string | undefined;
|
|
9317
|
+
platformName?: string | undefined;
|
|
9219
9318
|
} | {
|
|
9220
9319
|
name: string;
|
|
9221
9320
|
path: string;
|
|
@@ -9263,6 +9362,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9263
9362
|
language: string;
|
|
9264
9363
|
env?: string | undefined;
|
|
9265
9364
|
framework?: string | undefined;
|
|
9365
|
+
platform?: string | undefined;
|
|
9266
9366
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9267
9367
|
version?: string | undefined;
|
|
9268
9368
|
dbConnectionTarget?: string | undefined;
|
|
@@ -9340,8 +9440,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9340
9440
|
id: string;
|
|
9341
9441
|
service: string;
|
|
9342
9442
|
language?: string | undefined;
|
|
9443
|
+
platform?: string | undefined;
|
|
9343
9444
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9344
9445
|
originalPath?: string | undefined;
|
|
9446
|
+
platformName?: string | undefined;
|
|
9345
9447
|
} | {
|
|
9346
9448
|
name: string;
|
|
9347
9449
|
path: string;
|
|
@@ -9391,6 +9493,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9391
9493
|
language: string;
|
|
9392
9494
|
env?: string | undefined;
|
|
9393
9495
|
framework?: string | undefined;
|
|
9496
|
+
platform?: string | undefined;
|
|
9394
9497
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9395
9498
|
version?: string | undefined;
|
|
9396
9499
|
dbConnectionTarget?: string | undefined;
|
|
@@ -9468,8 +9571,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9468
9571
|
id: string;
|
|
9469
9572
|
service: string;
|
|
9470
9573
|
language?: string | undefined;
|
|
9574
|
+
platform?: string | undefined;
|
|
9471
9575
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9472
9576
|
originalPath?: string | undefined;
|
|
9577
|
+
platformName?: string | undefined;
|
|
9473
9578
|
} | {
|
|
9474
9579
|
name: string;
|
|
9475
9580
|
path: string;
|
|
@@ -9517,6 +9622,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9517
9622
|
language: string;
|
|
9518
9623
|
env?: string | undefined;
|
|
9519
9624
|
framework?: string | undefined;
|
|
9625
|
+
platform?: string | undefined;
|
|
9520
9626
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9521
9627
|
version?: string | undefined;
|
|
9522
9628
|
dbConnectionTarget?: string | undefined;
|
|
@@ -9594,8 +9700,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9594
9700
|
id: string;
|
|
9595
9701
|
service: string;
|
|
9596
9702
|
language?: string | undefined;
|
|
9703
|
+
platform?: string | undefined;
|
|
9597
9704
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9598
9705
|
originalPath?: string | undefined;
|
|
9706
|
+
platformName?: string | undefined;
|
|
9599
9707
|
} | {
|
|
9600
9708
|
name: string;
|
|
9601
9709
|
path: string;
|
|
@@ -9910,6 +10018,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9910
10018
|
language: string;
|
|
9911
10019
|
env?: string | undefined;
|
|
9912
10020
|
framework?: string | undefined;
|
|
10021
|
+
platform?: string | undefined;
|
|
9913
10022
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9914
10023
|
version?: string | undefined;
|
|
9915
10024
|
dbConnectionTarget?: string | undefined;
|
|
@@ -9987,8 +10096,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9987
10096
|
id: string;
|
|
9988
10097
|
service: string;
|
|
9989
10098
|
language?: string | undefined;
|
|
10099
|
+
platform?: string | undefined;
|
|
9990
10100
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9991
10101
|
originalPath?: string | undefined;
|
|
10102
|
+
platformName?: string | undefined;
|
|
9992
10103
|
} | {
|
|
9993
10104
|
name: string;
|
|
9994
10105
|
path: string;
|
|
@@ -10036,6 +10147,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10036
10147
|
language: string;
|
|
10037
10148
|
env?: string | undefined;
|
|
10038
10149
|
framework?: string | undefined;
|
|
10150
|
+
platform?: string | undefined;
|
|
10039
10151
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10040
10152
|
version?: string | undefined;
|
|
10041
10153
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10113,8 +10225,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10113
10225
|
id: string;
|
|
10114
10226
|
service: string;
|
|
10115
10227
|
language?: string | undefined;
|
|
10228
|
+
platform?: string | undefined;
|
|
10116
10229
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10117
10230
|
originalPath?: string | undefined;
|
|
10231
|
+
platformName?: string | undefined;
|
|
10118
10232
|
} | {
|
|
10119
10233
|
name: string;
|
|
10120
10234
|
path: string;
|
|
@@ -10213,6 +10327,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10213
10327
|
language: string;
|
|
10214
10328
|
env?: string | undefined;
|
|
10215
10329
|
framework?: string | undefined;
|
|
10330
|
+
platform?: string | undefined;
|
|
10216
10331
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10217
10332
|
version?: string | undefined;
|
|
10218
10333
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10290,8 +10405,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10290
10405
|
id: string;
|
|
10291
10406
|
service: string;
|
|
10292
10407
|
language?: string | undefined;
|
|
10408
|
+
platform?: string | undefined;
|
|
10293
10409
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10294
10410
|
originalPath?: string | undefined;
|
|
10411
|
+
platformName?: string | undefined;
|
|
10295
10412
|
} | {
|
|
10296
10413
|
name: string;
|
|
10297
10414
|
path: string;
|
|
@@ -10339,6 +10456,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10339
10456
|
language: string;
|
|
10340
10457
|
env?: string | undefined;
|
|
10341
10458
|
framework?: string | undefined;
|
|
10459
|
+
platform?: string | undefined;
|
|
10342
10460
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10343
10461
|
version?: string | undefined;
|
|
10344
10462
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10416,8 +10534,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10416
10534
|
id: string;
|
|
10417
10535
|
service: string;
|
|
10418
10536
|
language?: string | undefined;
|
|
10537
|
+
platform?: string | undefined;
|
|
10419
10538
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10420
10539
|
originalPath?: string | undefined;
|
|
10540
|
+
platformName?: string | undefined;
|
|
10421
10541
|
} | {
|
|
10422
10542
|
name: string;
|
|
10423
10543
|
path: string;
|
|
@@ -10522,6 +10642,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10522
10642
|
language: string;
|
|
10523
10643
|
env?: string | undefined;
|
|
10524
10644
|
framework?: string | undefined;
|
|
10645
|
+
platform?: string | undefined;
|
|
10525
10646
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10526
10647
|
version?: string | undefined;
|
|
10527
10648
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10599,8 +10720,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10599
10720
|
id: string;
|
|
10600
10721
|
service: string;
|
|
10601
10722
|
language?: string | undefined;
|
|
10723
|
+
platform?: string | undefined;
|
|
10602
10724
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10603
10725
|
originalPath?: string | undefined;
|
|
10726
|
+
platformName?: string | undefined;
|
|
10604
10727
|
} | {
|
|
10605
10728
|
name: string;
|
|
10606
10729
|
path: string;
|
|
@@ -10672,6 +10795,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10672
10795
|
language: string;
|
|
10673
10796
|
env?: string | undefined;
|
|
10674
10797
|
framework?: string | undefined;
|
|
10798
|
+
platform?: string | undefined;
|
|
10675
10799
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10676
10800
|
version?: string | undefined;
|
|
10677
10801
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10749,8 +10873,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10749
10873
|
id: string;
|
|
10750
10874
|
service: string;
|
|
10751
10875
|
language?: string | undefined;
|
|
10876
|
+
platform?: string | undefined;
|
|
10752
10877
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10753
10878
|
originalPath?: string | undefined;
|
|
10879
|
+
platformName?: string | undefined;
|
|
10754
10880
|
} | {
|
|
10755
10881
|
name: string;
|
|
10756
10882
|
path: string;
|
|
@@ -10824,6 +10950,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10824
10950
|
language: string;
|
|
10825
10951
|
env?: string | undefined;
|
|
10826
10952
|
framework?: string | undefined;
|
|
10953
|
+
platform?: string | undefined;
|
|
10827
10954
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10828
10955
|
version?: string | undefined;
|
|
10829
10956
|
dbConnectionTarget?: string | undefined;
|
|
@@ -10901,8 +11028,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10901
11028
|
id: string;
|
|
10902
11029
|
service: string;
|
|
10903
11030
|
language?: string | undefined;
|
|
11031
|
+
platform?: string | undefined;
|
|
10904
11032
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10905
11033
|
originalPath?: string | undefined;
|
|
11034
|
+
platformName?: string | undefined;
|
|
10906
11035
|
} | {
|
|
10907
11036
|
name: string;
|
|
10908
11037
|
path: string;
|
|
@@ -10950,6 +11079,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10950
11079
|
language: string;
|
|
10951
11080
|
env?: string | undefined;
|
|
10952
11081
|
framework?: string | undefined;
|
|
11082
|
+
platform?: string | undefined;
|
|
10953
11083
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10954
11084
|
version?: string | undefined;
|
|
10955
11085
|
dbConnectionTarget?: string | undefined;
|
|
@@ -11027,8 +11157,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11027
11157
|
id: string;
|
|
11028
11158
|
service: string;
|
|
11029
11159
|
language?: string | undefined;
|
|
11160
|
+
platform?: string | undefined;
|
|
11030
11161
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11031
11162
|
originalPath?: string | undefined;
|
|
11163
|
+
platformName?: string | undefined;
|
|
11032
11164
|
} | {
|
|
11033
11165
|
name: string;
|
|
11034
11166
|
path: string;
|
|
@@ -11133,6 +11265,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11133
11265
|
language: string;
|
|
11134
11266
|
env?: string | undefined;
|
|
11135
11267
|
framework?: string | undefined;
|
|
11268
|
+
platform?: string | undefined;
|
|
11136
11269
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11137
11270
|
version?: string | undefined;
|
|
11138
11271
|
dbConnectionTarget?: string | undefined;
|
|
@@ -11210,8 +11343,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11210
11343
|
id: string;
|
|
11211
11344
|
service: string;
|
|
11212
11345
|
language?: string | undefined;
|
|
11346
|
+
platform?: string | undefined;
|
|
11213
11347
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11214
11348
|
originalPath?: string | undefined;
|
|
11349
|
+
platformName?: string | undefined;
|
|
11215
11350
|
} | {
|
|
11216
11351
|
name: string;
|
|
11217
11352
|
path: string;
|
|
@@ -11283,6 +11418,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11283
11418
|
language: string;
|
|
11284
11419
|
env?: string | undefined;
|
|
11285
11420
|
framework?: string | undefined;
|
|
11421
|
+
platform?: string | undefined;
|
|
11286
11422
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11287
11423
|
version?: string | undefined;
|
|
11288
11424
|
dbConnectionTarget?: string | undefined;
|
|
@@ -11360,8 +11496,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11360
11496
|
id: string;
|
|
11361
11497
|
service: string;
|
|
11362
11498
|
language?: string | undefined;
|
|
11499
|
+
platform?: string | undefined;
|
|
11363
11500
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11364
11501
|
originalPath?: string | undefined;
|
|
11502
|
+
platformName?: string | undefined;
|
|
11365
11503
|
} | {
|
|
11366
11504
|
name: string;
|
|
11367
11505
|
path: string;
|
|
@@ -11435,6 +11573,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11435
11573
|
language: string;
|
|
11436
11574
|
env?: string | undefined;
|
|
11437
11575
|
framework?: string | undefined;
|
|
11576
|
+
platform?: string | undefined;
|
|
11438
11577
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11439
11578
|
version?: string | undefined;
|
|
11440
11579
|
dbConnectionTarget?: string | undefined;
|
|
@@ -11512,8 +11651,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11512
11651
|
id: string;
|
|
11513
11652
|
service: string;
|
|
11514
11653
|
language?: string | undefined;
|
|
11654
|
+
platform?: string | undefined;
|
|
11515
11655
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11516
11656
|
originalPath?: string | undefined;
|
|
11657
|
+
platformName?: string | undefined;
|
|
11517
11658
|
} | {
|
|
11518
11659
|
name: string;
|
|
11519
11660
|
path: string;
|
|
@@ -11561,6 +11702,7 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11561
11702
|
language: string;
|
|
11562
11703
|
env?: string | undefined;
|
|
11563
11704
|
framework?: string | undefined;
|
|
11705
|
+
platform?: string | undefined;
|
|
11564
11706
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11565
11707
|
version?: string | undefined;
|
|
11566
11708
|
dbConnectionTarget?: string | undefined;
|
|
@@ -11638,8 +11780,10 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
11638
11780
|
id: string;
|
|
11639
11781
|
service: string;
|
|
11640
11782
|
language?: string | undefined;
|
|
11783
|
+
platform?: string | undefined;
|
|
11641
11784
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11642
11785
|
originalPath?: string | undefined;
|
|
11786
|
+
platformName?: string | undefined;
|
|
11643
11787
|
} | {
|
|
11644
11788
|
name: string;
|
|
11645
11789
|
path: string;
|