@neat.is/types 0.4.26-dev.20260703 → 0.4.26
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 +93 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +966 -86
- package/dist/index.d.ts +966 -86
- package/dist/index.js +86 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -28,10 +28,12 @@ declare const NodeType: {
|
|
|
28
28
|
readonly FileNode: "FileNode";
|
|
29
29
|
readonly RouteNode: "RouteNode";
|
|
30
30
|
readonly GraphQLOperationNode: "GraphQLOperationNode";
|
|
31
|
+
readonly GrpcMethodNode: "GrpcMethodNode";
|
|
32
|
+
readonly WebSocketChannelNode: "WebSocketChannelNode";
|
|
31
33
|
};
|
|
32
34
|
type NodeTypeValue = (typeof NodeType)[keyof typeof NodeType];
|
|
33
35
|
|
|
34
|
-
declare const NodeTypeSchema: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
36
|
+
declare const NodeTypeSchema: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
35
37
|
|
|
36
38
|
declare const CompatibleDriverSchema: z.ZodObject<{
|
|
37
39
|
name: z.ZodString;
|
|
@@ -453,6 +455,64 @@ declare const GraphQLOperationNodeSchema: z.ZodObject<{
|
|
|
453
455
|
line?: number | undefined;
|
|
454
456
|
}>;
|
|
455
457
|
type GraphQLOperationNode = z.infer<typeof GraphQLOperationNodeSchema>;
|
|
458
|
+
declare const GrpcMethodNodeSchema: z.ZodObject<{
|
|
459
|
+
id: z.ZodString;
|
|
460
|
+
type: z.ZodLiteral<"GrpcMethodNode">;
|
|
461
|
+
name: z.ZodString;
|
|
462
|
+
rpcService: z.ZodString;
|
|
463
|
+
rpcMethod: z.ZodString;
|
|
464
|
+
path: z.ZodOptional<z.ZodString>;
|
|
465
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
466
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
467
|
+
}, "strip", z.ZodTypeAny, {
|
|
468
|
+
name: string;
|
|
469
|
+
type: "GrpcMethodNode";
|
|
470
|
+
id: string;
|
|
471
|
+
rpcService: string;
|
|
472
|
+
rpcMethod: string;
|
|
473
|
+
path?: string | undefined;
|
|
474
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
475
|
+
line?: number | undefined;
|
|
476
|
+
}, {
|
|
477
|
+
name: string;
|
|
478
|
+
type: "GrpcMethodNode";
|
|
479
|
+
id: string;
|
|
480
|
+
rpcService: string;
|
|
481
|
+
rpcMethod: string;
|
|
482
|
+
path?: string | undefined;
|
|
483
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
484
|
+
line?: number | undefined;
|
|
485
|
+
}>;
|
|
486
|
+
type GrpcMethodNode = z.infer<typeof GrpcMethodNodeSchema>;
|
|
487
|
+
declare const WebSocketChannelNodeSchema: z.ZodObject<{
|
|
488
|
+
id: z.ZodString;
|
|
489
|
+
type: z.ZodLiteral<"WebSocketChannelNode">;
|
|
490
|
+
name: z.ZodString;
|
|
491
|
+
service: z.ZodString;
|
|
492
|
+
channel: z.ZodString;
|
|
493
|
+
path: z.ZodOptional<z.ZodString>;
|
|
494
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
495
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
496
|
+
}, "strip", z.ZodTypeAny, {
|
|
497
|
+
name: string;
|
|
498
|
+
type: "WebSocketChannelNode";
|
|
499
|
+
id: string;
|
|
500
|
+
service: string;
|
|
501
|
+
channel: string;
|
|
502
|
+
path?: string | undefined;
|
|
503
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
504
|
+
line?: number | undefined;
|
|
505
|
+
}, {
|
|
506
|
+
name: string;
|
|
507
|
+
type: "WebSocketChannelNode";
|
|
508
|
+
id: string;
|
|
509
|
+
service: string;
|
|
510
|
+
channel: string;
|
|
511
|
+
path?: string | undefined;
|
|
512
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
513
|
+
line?: number | undefined;
|
|
514
|
+
}>;
|
|
515
|
+
type WebSocketChannelNode = z.infer<typeof WebSocketChannelNodeSchema>;
|
|
456
516
|
declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
457
517
|
id: z.ZodString;
|
|
458
518
|
type: z.ZodLiteral<"ServiceNode">;
|
|
@@ -844,6 +904,60 @@ declare const GraphNodeSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
844
904
|
path?: string | undefined;
|
|
845
905
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
846
906
|
line?: number | undefined;
|
|
907
|
+
}>, z.ZodObject<{
|
|
908
|
+
id: z.ZodString;
|
|
909
|
+
type: z.ZodLiteral<"GrpcMethodNode">;
|
|
910
|
+
name: z.ZodString;
|
|
911
|
+
rpcService: z.ZodString;
|
|
912
|
+
rpcMethod: z.ZodString;
|
|
913
|
+
path: z.ZodOptional<z.ZodString>;
|
|
914
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
915
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
916
|
+
}, "strip", z.ZodTypeAny, {
|
|
917
|
+
name: string;
|
|
918
|
+
type: "GrpcMethodNode";
|
|
919
|
+
id: string;
|
|
920
|
+
rpcService: string;
|
|
921
|
+
rpcMethod: string;
|
|
922
|
+
path?: string | undefined;
|
|
923
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
924
|
+
line?: number | undefined;
|
|
925
|
+
}, {
|
|
926
|
+
name: string;
|
|
927
|
+
type: "GrpcMethodNode";
|
|
928
|
+
id: string;
|
|
929
|
+
rpcService: string;
|
|
930
|
+
rpcMethod: string;
|
|
931
|
+
path?: string | undefined;
|
|
932
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
933
|
+
line?: number | undefined;
|
|
934
|
+
}>, z.ZodObject<{
|
|
935
|
+
id: z.ZodString;
|
|
936
|
+
type: z.ZodLiteral<"WebSocketChannelNode">;
|
|
937
|
+
name: z.ZodString;
|
|
938
|
+
service: z.ZodString;
|
|
939
|
+
channel: z.ZodString;
|
|
940
|
+
path: z.ZodOptional<z.ZodString>;
|
|
941
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
942
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
943
|
+
}, "strip", z.ZodTypeAny, {
|
|
944
|
+
name: string;
|
|
945
|
+
type: "WebSocketChannelNode";
|
|
946
|
+
id: string;
|
|
947
|
+
service: string;
|
|
948
|
+
channel: string;
|
|
949
|
+
path?: string | undefined;
|
|
950
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
951
|
+
line?: number | undefined;
|
|
952
|
+
}, {
|
|
953
|
+
name: string;
|
|
954
|
+
type: "WebSocketChannelNode";
|
|
955
|
+
id: string;
|
|
956
|
+
service: string;
|
|
957
|
+
channel: string;
|
|
958
|
+
path?: string | undefined;
|
|
959
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
960
|
+
line?: number | undefined;
|
|
847
961
|
}>]>;
|
|
848
962
|
type GraphNode = z.infer<typeof GraphNodeSchema>;
|
|
849
963
|
|
|
@@ -1377,6 +1491,16 @@ declare function parseGraphqlOperationId(id: string): {
|
|
|
1377
1491
|
operationType: string;
|
|
1378
1492
|
operationName: string;
|
|
1379
1493
|
} | null;
|
|
1494
|
+
declare function grpcMethodId(rpcService: string, rpcMethod: string): string;
|
|
1495
|
+
declare function parseGrpcMethodId(id: string): {
|
|
1496
|
+
rpcService: string;
|
|
1497
|
+
rpcMethod: string;
|
|
1498
|
+
} | null;
|
|
1499
|
+
declare function websocketChannelId(service: string, channel: string): string;
|
|
1500
|
+
declare function parseWebsocketChannelId(id: string): {
|
|
1501
|
+
service: string;
|
|
1502
|
+
channel: string;
|
|
1503
|
+
} | null;
|
|
1380
1504
|
declare function extractedEdgeId(source: string, target: string, type: string): string;
|
|
1381
1505
|
declare function observedEdgeId(source: string, target: string, type: string): string;
|
|
1382
1506
|
declare function inferredEdgeId(source: string, target: string, type: string): string;
|
|
@@ -1394,19 +1518,19 @@ declare const PolicyActionSchema: z.ZodEnum<["log", "alert", "block"]>;
|
|
|
1394
1518
|
type PolicyAction = z.infer<typeof PolicyActionSchema>;
|
|
1395
1519
|
declare const StructuralRuleSchema: z.ZodObject<{
|
|
1396
1520
|
type: z.ZodLiteral<"structural">;
|
|
1397
|
-
fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1521
|
+
fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1398
1522
|
edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
|
|
1399
|
-
toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1523
|
+
toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1400
1524
|
}, "strip", z.ZodTypeAny, {
|
|
1401
1525
|
type: "structural";
|
|
1402
1526
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1403
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1404
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1527
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1528
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1405
1529
|
}, {
|
|
1406
1530
|
type: "structural";
|
|
1407
1531
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1408
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1409
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1532
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1533
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1410
1534
|
}>;
|
|
1411
1535
|
type StructuralRule = z.infer<typeof StructuralRuleSchema>;
|
|
1412
1536
|
declare const CompatibilityRuleSchema: z.ZodObject<{
|
|
@@ -1439,50 +1563,50 @@ declare const ProvenanceRuleSchema: z.ZodObject<{
|
|
|
1439
1563
|
type ProvenanceRule = z.infer<typeof ProvenanceRuleSchema>;
|
|
1440
1564
|
declare const OwnershipRuleSchema: z.ZodObject<{
|
|
1441
1565
|
type: z.ZodLiteral<"ownership">;
|
|
1442
|
-
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1566
|
+
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1443
1567
|
field: z.ZodDefault<z.ZodString>;
|
|
1444
1568
|
}, "strip", z.ZodTypeAny, {
|
|
1445
1569
|
type: "ownership";
|
|
1446
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1570
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1447
1571
|
field: string;
|
|
1448
1572
|
}, {
|
|
1449
1573
|
type: "ownership";
|
|
1450
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1574
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1451
1575
|
field?: string | undefined;
|
|
1452
1576
|
}>;
|
|
1453
1577
|
type OwnershipRule = z.infer<typeof OwnershipRuleSchema>;
|
|
1454
1578
|
declare const BlastRadiusRuleSchema: z.ZodObject<{
|
|
1455
1579
|
type: z.ZodLiteral<"blast-radius">;
|
|
1456
|
-
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1580
|
+
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1457
1581
|
maxAffected: z.ZodNumber;
|
|
1458
1582
|
depth: z.ZodOptional<z.ZodNumber>;
|
|
1459
1583
|
}, "strip", z.ZodTypeAny, {
|
|
1460
1584
|
type: "blast-radius";
|
|
1461
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1585
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1462
1586
|
maxAffected: number;
|
|
1463
1587
|
depth?: number | undefined;
|
|
1464
1588
|
}, {
|
|
1465
1589
|
type: "blast-radius";
|
|
1466
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1590
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1467
1591
|
maxAffected: number;
|
|
1468
1592
|
depth?: number | undefined;
|
|
1469
1593
|
}>;
|
|
1470
1594
|
type BlastRadiusRule = z.infer<typeof BlastRadiusRuleSchema>;
|
|
1471
1595
|
declare const PolicyRuleSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1472
1596
|
type: z.ZodLiteral<"structural">;
|
|
1473
|
-
fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1597
|
+
fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1474
1598
|
edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
|
|
1475
|
-
toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1599
|
+
toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1476
1600
|
}, "strip", z.ZodTypeAny, {
|
|
1477
1601
|
type: "structural";
|
|
1478
1602
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1479
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1480
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1603
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1604
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1481
1605
|
}, {
|
|
1482
1606
|
type: "structural";
|
|
1483
1607
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1484
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1485
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1608
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1609
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1486
1610
|
}>, z.ZodObject<{
|
|
1487
1611
|
type: z.ZodLiteral<"compatibility">;
|
|
1488
1612
|
kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
|
|
@@ -1509,29 +1633,29 @@ declare const PolicyRuleSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
1509
1633
|
targetNodeId?: string | undefined;
|
|
1510
1634
|
}>, z.ZodObject<{
|
|
1511
1635
|
type: z.ZodLiteral<"ownership">;
|
|
1512
|
-
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1636
|
+
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1513
1637
|
field: z.ZodDefault<z.ZodString>;
|
|
1514
1638
|
}, "strip", z.ZodTypeAny, {
|
|
1515
1639
|
type: "ownership";
|
|
1516
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1640
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1517
1641
|
field: string;
|
|
1518
1642
|
}, {
|
|
1519
1643
|
type: "ownership";
|
|
1520
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1644
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1521
1645
|
field?: string | undefined;
|
|
1522
1646
|
}>, z.ZodObject<{
|
|
1523
1647
|
type: z.ZodLiteral<"blast-radius">;
|
|
1524
|
-
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1648
|
+
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1525
1649
|
maxAffected: z.ZodNumber;
|
|
1526
1650
|
depth: z.ZodOptional<z.ZodNumber>;
|
|
1527
1651
|
}, "strip", z.ZodTypeAny, {
|
|
1528
1652
|
type: "blast-radius";
|
|
1529
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1653
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1530
1654
|
maxAffected: number;
|
|
1531
1655
|
depth?: number | undefined;
|
|
1532
1656
|
}, {
|
|
1533
1657
|
type: "blast-radius";
|
|
1534
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1658
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1535
1659
|
maxAffected: number;
|
|
1536
1660
|
depth?: number | undefined;
|
|
1537
1661
|
}>]>;
|
|
@@ -1544,19 +1668,19 @@ declare const PolicySchema: z.ZodObject<{
|
|
|
1544
1668
|
onViolation: z.ZodOptional<z.ZodEnum<["log", "alert", "block"]>>;
|
|
1545
1669
|
rule: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1546
1670
|
type: z.ZodLiteral<"structural">;
|
|
1547
|
-
fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1671
|
+
fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1548
1672
|
edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
|
|
1549
|
-
toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1673
|
+
toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1550
1674
|
}, "strip", z.ZodTypeAny, {
|
|
1551
1675
|
type: "structural";
|
|
1552
1676
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1553
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1554
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1677
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1678
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1555
1679
|
}, {
|
|
1556
1680
|
type: "structural";
|
|
1557
1681
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1558
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1559
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1682
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1683
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1560
1684
|
}>, z.ZodObject<{
|
|
1561
1685
|
type: z.ZodLiteral<"compatibility">;
|
|
1562
1686
|
kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
|
|
@@ -1583,29 +1707,29 @@ declare const PolicySchema: z.ZodObject<{
|
|
|
1583
1707
|
targetNodeId?: string | undefined;
|
|
1584
1708
|
}>, z.ZodObject<{
|
|
1585
1709
|
type: z.ZodLiteral<"ownership">;
|
|
1586
|
-
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1710
|
+
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1587
1711
|
field: z.ZodDefault<z.ZodString>;
|
|
1588
1712
|
}, "strip", z.ZodTypeAny, {
|
|
1589
1713
|
type: "ownership";
|
|
1590
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1714
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1591
1715
|
field: string;
|
|
1592
1716
|
}, {
|
|
1593
1717
|
type: "ownership";
|
|
1594
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1718
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1595
1719
|
field?: string | undefined;
|
|
1596
1720
|
}>, z.ZodObject<{
|
|
1597
1721
|
type: z.ZodLiteral<"blast-radius">;
|
|
1598
|
-
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1722
|
+
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1599
1723
|
maxAffected: z.ZodNumber;
|
|
1600
1724
|
depth: z.ZodOptional<z.ZodNumber>;
|
|
1601
1725
|
}, "strip", z.ZodTypeAny, {
|
|
1602
1726
|
type: "blast-radius";
|
|
1603
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1727
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1604
1728
|
maxAffected: number;
|
|
1605
1729
|
depth?: number | undefined;
|
|
1606
1730
|
}, {
|
|
1607
1731
|
type: "blast-radius";
|
|
1608
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1732
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1609
1733
|
maxAffected: number;
|
|
1610
1734
|
depth?: number | undefined;
|
|
1611
1735
|
}>]>;
|
|
@@ -1616,8 +1740,8 @@ declare const PolicySchema: z.ZodObject<{
|
|
|
1616
1740
|
rule: {
|
|
1617
1741
|
type: "structural";
|
|
1618
1742
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1619
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1620
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1743
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1744
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1621
1745
|
} | {
|
|
1622
1746
|
type: "compatibility";
|
|
1623
1747
|
kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
|
|
@@ -1628,11 +1752,11 @@ declare const PolicySchema: z.ZodObject<{
|
|
|
1628
1752
|
targetNodeId?: string | undefined;
|
|
1629
1753
|
} | {
|
|
1630
1754
|
type: "ownership";
|
|
1631
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1755
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1632
1756
|
field: string;
|
|
1633
1757
|
} | {
|
|
1634
1758
|
type: "blast-radius";
|
|
1635
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1759
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1636
1760
|
maxAffected: number;
|
|
1637
1761
|
depth?: number | undefined;
|
|
1638
1762
|
};
|
|
@@ -1645,8 +1769,8 @@ declare const PolicySchema: z.ZodObject<{
|
|
|
1645
1769
|
rule: {
|
|
1646
1770
|
type: "structural";
|
|
1647
1771
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1648
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1649
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1772
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1773
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1650
1774
|
} | {
|
|
1651
1775
|
type: "compatibility";
|
|
1652
1776
|
kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
|
|
@@ -1657,11 +1781,11 @@ declare const PolicySchema: z.ZodObject<{
|
|
|
1657
1781
|
targetNodeId?: string | undefined;
|
|
1658
1782
|
} | {
|
|
1659
1783
|
type: "ownership";
|
|
1660
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1784
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1661
1785
|
field?: string | undefined;
|
|
1662
1786
|
} | {
|
|
1663
1787
|
type: "blast-radius";
|
|
1664
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1788
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1665
1789
|
maxAffected: number;
|
|
1666
1790
|
depth?: number | undefined;
|
|
1667
1791
|
};
|
|
@@ -1679,19 +1803,19 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1679
1803
|
onViolation: z.ZodOptional<z.ZodEnum<["log", "alert", "block"]>>;
|
|
1680
1804
|
rule: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1681
1805
|
type: z.ZodLiteral<"structural">;
|
|
1682
|
-
fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1806
|
+
fromNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1683
1807
|
edgeType: z.ZodEnum<["CALLS", "DEPENDS_ON", "CONNECTS_TO", "CONFIGURED_BY", "PUBLISHES_TO", "CONSUMES_FROM", "RUNS_ON", "CONTAINS", "IMPORTS"]>;
|
|
1684
|
-
toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1808
|
+
toNodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1685
1809
|
}, "strip", z.ZodTypeAny, {
|
|
1686
1810
|
type: "structural";
|
|
1687
1811
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1688
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1689
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1812
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1813
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1690
1814
|
}, {
|
|
1691
1815
|
type: "structural";
|
|
1692
1816
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1693
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1694
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1817
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1818
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1695
1819
|
}>, z.ZodObject<{
|
|
1696
1820
|
type: z.ZodLiteral<"compatibility">;
|
|
1697
1821
|
kind: z.ZodOptional<z.ZodEnum<["driver-engine", "node-engine", "package-conflict", "deprecated-api"]>>;
|
|
@@ -1718,29 +1842,29 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1718
1842
|
targetNodeId?: string | undefined;
|
|
1719
1843
|
}>, z.ZodObject<{
|
|
1720
1844
|
type: z.ZodLiteral<"ownership">;
|
|
1721
|
-
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1845
|
+
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1722
1846
|
field: z.ZodDefault<z.ZodString>;
|
|
1723
1847
|
}, "strip", z.ZodTypeAny, {
|
|
1724
1848
|
type: "ownership";
|
|
1725
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1849
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1726
1850
|
field: string;
|
|
1727
1851
|
}, {
|
|
1728
1852
|
type: "ownership";
|
|
1729
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1853
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1730
1854
|
field?: string | undefined;
|
|
1731
1855
|
}>, z.ZodObject<{
|
|
1732
1856
|
type: z.ZodLiteral<"blast-radius">;
|
|
1733
|
-
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode"]>;
|
|
1857
|
+
nodeType: z.ZodEnum<["ServiceNode", "DatabaseNode", "ConfigNode", "InfraNode", "FrontierNode", "FileNode", "RouteNode", "GraphQLOperationNode", "GrpcMethodNode", "WebSocketChannelNode"]>;
|
|
1734
1858
|
maxAffected: z.ZodNumber;
|
|
1735
1859
|
depth: z.ZodOptional<z.ZodNumber>;
|
|
1736
1860
|
}, "strip", z.ZodTypeAny, {
|
|
1737
1861
|
type: "blast-radius";
|
|
1738
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1862
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1739
1863
|
maxAffected: number;
|
|
1740
1864
|
depth?: number | undefined;
|
|
1741
1865
|
}, {
|
|
1742
1866
|
type: "blast-radius";
|
|
1743
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1867
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1744
1868
|
maxAffected: number;
|
|
1745
1869
|
depth?: number | undefined;
|
|
1746
1870
|
}>]>;
|
|
@@ -1751,8 +1875,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1751
1875
|
rule: {
|
|
1752
1876
|
type: "structural";
|
|
1753
1877
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1754
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1755
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1878
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1879
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1756
1880
|
} | {
|
|
1757
1881
|
type: "compatibility";
|
|
1758
1882
|
kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
|
|
@@ -1763,11 +1887,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1763
1887
|
targetNodeId?: string | undefined;
|
|
1764
1888
|
} | {
|
|
1765
1889
|
type: "ownership";
|
|
1766
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1890
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1767
1891
|
field: string;
|
|
1768
1892
|
} | {
|
|
1769
1893
|
type: "blast-radius";
|
|
1770
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1894
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1771
1895
|
maxAffected: number;
|
|
1772
1896
|
depth?: number | undefined;
|
|
1773
1897
|
};
|
|
@@ -1780,8 +1904,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1780
1904
|
rule: {
|
|
1781
1905
|
type: "structural";
|
|
1782
1906
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1783
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1784
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1907
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1908
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1785
1909
|
} | {
|
|
1786
1910
|
type: "compatibility";
|
|
1787
1911
|
kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
|
|
@@ -1792,11 +1916,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1792
1916
|
targetNodeId?: string | undefined;
|
|
1793
1917
|
} | {
|
|
1794
1918
|
type: "ownership";
|
|
1795
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1919
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1796
1920
|
field?: string | undefined;
|
|
1797
1921
|
} | {
|
|
1798
1922
|
type: "blast-radius";
|
|
1799
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1923
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1800
1924
|
maxAffected: number;
|
|
1801
1925
|
depth?: number | undefined;
|
|
1802
1926
|
};
|
|
@@ -1812,8 +1936,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1812
1936
|
rule: {
|
|
1813
1937
|
type: "structural";
|
|
1814
1938
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1815
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1816
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1939
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1940
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1817
1941
|
} | {
|
|
1818
1942
|
type: "compatibility";
|
|
1819
1943
|
kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
|
|
@@ -1824,11 +1948,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1824
1948
|
targetNodeId?: string | undefined;
|
|
1825
1949
|
} | {
|
|
1826
1950
|
type: "ownership";
|
|
1827
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1951
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1828
1952
|
field: string;
|
|
1829
1953
|
} | {
|
|
1830
1954
|
type: "blast-radius";
|
|
1831
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1955
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1832
1956
|
maxAffected: number;
|
|
1833
1957
|
depth?: number | undefined;
|
|
1834
1958
|
};
|
|
@@ -1844,8 +1968,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1844
1968
|
rule: {
|
|
1845
1969
|
type: "structural";
|
|
1846
1970
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1847
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1848
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1971
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1972
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1849
1973
|
} | {
|
|
1850
1974
|
type: "compatibility";
|
|
1851
1975
|
kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
|
|
@@ -1856,11 +1980,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1856
1980
|
targetNodeId?: string | undefined;
|
|
1857
1981
|
} | {
|
|
1858
1982
|
type: "ownership";
|
|
1859
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1983
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1860
1984
|
field?: string | undefined;
|
|
1861
1985
|
} | {
|
|
1862
1986
|
type: "blast-radius";
|
|
1863
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1987
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1864
1988
|
maxAffected: number;
|
|
1865
1989
|
depth?: number | undefined;
|
|
1866
1990
|
};
|
|
@@ -1876,8 +2000,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1876
2000
|
rule: {
|
|
1877
2001
|
type: "structural";
|
|
1878
2002
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1879
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1880
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
2003
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
2004
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1881
2005
|
} | {
|
|
1882
2006
|
type: "compatibility";
|
|
1883
2007
|
kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
|
|
@@ -1888,11 +2012,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1888
2012
|
targetNodeId?: string | undefined;
|
|
1889
2013
|
} | {
|
|
1890
2014
|
type: "ownership";
|
|
1891
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
2015
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1892
2016
|
field: string;
|
|
1893
2017
|
} | {
|
|
1894
2018
|
type: "blast-radius";
|
|
1895
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
2019
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1896
2020
|
maxAffected: number;
|
|
1897
2021
|
depth?: number | undefined;
|
|
1898
2022
|
};
|
|
@@ -1908,8 +2032,8 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1908
2032
|
rule: {
|
|
1909
2033
|
type: "structural";
|
|
1910
2034
|
edgeType: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
1911
|
-
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
1912
|
-
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
2035
|
+
fromNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
2036
|
+
toNodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1913
2037
|
} | {
|
|
1914
2038
|
type: "compatibility";
|
|
1915
2039
|
kind?: "driver-engine" | "node-engine" | "package-conflict" | "deprecated-api" | undefined;
|
|
@@ -1920,11 +2044,11 @@ declare const PolicyFileSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1920
2044
|
targetNodeId?: string | undefined;
|
|
1921
2045
|
} | {
|
|
1922
2046
|
type: "ownership";
|
|
1923
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
2047
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1924
2048
|
field?: string | undefined;
|
|
1925
2049
|
} | {
|
|
1926
2050
|
type: "blast-radius";
|
|
1927
|
-
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode";
|
|
2051
|
+
nodeType: "ServiceNode" | "DatabaseNode" | "ConfigNode" | "InfraNode" | "FrontierNode" | "FileNode" | "RouteNode" | "GraphQLOperationNode" | "GrpcMethodNode" | "WebSocketChannelNode";
|
|
1928
2052
|
maxAffected: number;
|
|
1929
2053
|
depth?: number | undefined;
|
|
1930
2054
|
};
|
|
@@ -4794,6 +4918,60 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4794
4918
|
path?: string | undefined;
|
|
4795
4919
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4796
4920
|
line?: number | undefined;
|
|
4921
|
+
}>, z.ZodObject<{
|
|
4922
|
+
id: z.ZodString;
|
|
4923
|
+
type: z.ZodLiteral<"GrpcMethodNode">;
|
|
4924
|
+
name: z.ZodString;
|
|
4925
|
+
rpcService: z.ZodString;
|
|
4926
|
+
rpcMethod: z.ZodString;
|
|
4927
|
+
path: z.ZodOptional<z.ZodString>;
|
|
4928
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
4929
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
4930
|
+
}, "strip", z.ZodTypeAny, {
|
|
4931
|
+
name: string;
|
|
4932
|
+
type: "GrpcMethodNode";
|
|
4933
|
+
id: string;
|
|
4934
|
+
rpcService: string;
|
|
4935
|
+
rpcMethod: string;
|
|
4936
|
+
path?: string | undefined;
|
|
4937
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4938
|
+
line?: number | undefined;
|
|
4939
|
+
}, {
|
|
4940
|
+
name: string;
|
|
4941
|
+
type: "GrpcMethodNode";
|
|
4942
|
+
id: string;
|
|
4943
|
+
rpcService: string;
|
|
4944
|
+
rpcMethod: string;
|
|
4945
|
+
path?: string | undefined;
|
|
4946
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4947
|
+
line?: number | undefined;
|
|
4948
|
+
}>, z.ZodObject<{
|
|
4949
|
+
id: z.ZodString;
|
|
4950
|
+
type: z.ZodLiteral<"WebSocketChannelNode">;
|
|
4951
|
+
name: z.ZodString;
|
|
4952
|
+
service: z.ZodString;
|
|
4953
|
+
channel: z.ZodString;
|
|
4954
|
+
path: z.ZodOptional<z.ZodString>;
|
|
4955
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
4956
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
4957
|
+
}, "strip", z.ZodTypeAny, {
|
|
4958
|
+
name: string;
|
|
4959
|
+
type: "WebSocketChannelNode";
|
|
4960
|
+
id: string;
|
|
4961
|
+
service: string;
|
|
4962
|
+
channel: string;
|
|
4963
|
+
path?: string | undefined;
|
|
4964
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4965
|
+
line?: number | undefined;
|
|
4966
|
+
}, {
|
|
4967
|
+
name: string;
|
|
4968
|
+
type: "WebSocketChannelNode";
|
|
4969
|
+
id: string;
|
|
4970
|
+
service: string;
|
|
4971
|
+
channel: string;
|
|
4972
|
+
path?: string | undefined;
|
|
4973
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4974
|
+
line?: number | undefined;
|
|
4797
4975
|
}>]>;
|
|
4798
4976
|
}, "strip", z.ZodTypeAny, {
|
|
4799
4977
|
node: {
|
|
@@ -4903,6 +5081,24 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
4903
5081
|
path?: string | undefined;
|
|
4904
5082
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
4905
5083
|
line?: number | undefined;
|
|
5084
|
+
} | {
|
|
5085
|
+
name: string;
|
|
5086
|
+
type: "GrpcMethodNode";
|
|
5087
|
+
id: string;
|
|
5088
|
+
rpcService: string;
|
|
5089
|
+
rpcMethod: string;
|
|
5090
|
+
path?: string | undefined;
|
|
5091
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5092
|
+
line?: number | undefined;
|
|
5093
|
+
} | {
|
|
5094
|
+
name: string;
|
|
5095
|
+
type: "WebSocketChannelNode";
|
|
5096
|
+
id: string;
|
|
5097
|
+
service: string;
|
|
5098
|
+
channel: string;
|
|
5099
|
+
path?: string | undefined;
|
|
5100
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5101
|
+
line?: number | undefined;
|
|
4906
5102
|
};
|
|
4907
5103
|
}, {
|
|
4908
5104
|
node: {
|
|
@@ -5012,6 +5208,24 @@ declare const GraphNodeResponseSchema: z.ZodObject<{
|
|
|
5012
5208
|
path?: string | undefined;
|
|
5013
5209
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5014
5210
|
line?: number | undefined;
|
|
5211
|
+
} | {
|
|
5212
|
+
name: string;
|
|
5213
|
+
type: "GrpcMethodNode";
|
|
5214
|
+
id: string;
|
|
5215
|
+
rpcService: string;
|
|
5216
|
+
rpcMethod: string;
|
|
5217
|
+
path?: string | undefined;
|
|
5218
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5219
|
+
line?: number | undefined;
|
|
5220
|
+
} | {
|
|
5221
|
+
name: string;
|
|
5222
|
+
type: "WebSocketChannelNode";
|
|
5223
|
+
id: string;
|
|
5224
|
+
service: string;
|
|
5225
|
+
channel: string;
|
|
5226
|
+
path?: string | undefined;
|
|
5227
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5228
|
+
line?: number | undefined;
|
|
5015
5229
|
};
|
|
5016
5230
|
}>;
|
|
5017
5231
|
type GraphNodeResponse = z.infer<typeof GraphNodeResponseSchema>;
|
|
@@ -5807,6 +6021,60 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
5807
6021
|
path?: string | undefined;
|
|
5808
6022
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
5809
6023
|
line?: number | undefined;
|
|
6024
|
+
}>, z.ZodObject<{
|
|
6025
|
+
id: z.ZodString;
|
|
6026
|
+
type: z.ZodLiteral<"GrpcMethodNode">;
|
|
6027
|
+
name: z.ZodString;
|
|
6028
|
+
rpcService: z.ZodString;
|
|
6029
|
+
rpcMethod: z.ZodString;
|
|
6030
|
+
path: z.ZodOptional<z.ZodString>;
|
|
6031
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
6032
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
6033
|
+
}, "strip", z.ZodTypeAny, {
|
|
6034
|
+
name: string;
|
|
6035
|
+
type: "GrpcMethodNode";
|
|
6036
|
+
id: string;
|
|
6037
|
+
rpcService: string;
|
|
6038
|
+
rpcMethod: string;
|
|
6039
|
+
path?: string | undefined;
|
|
6040
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6041
|
+
line?: number | undefined;
|
|
6042
|
+
}, {
|
|
6043
|
+
name: string;
|
|
6044
|
+
type: "GrpcMethodNode";
|
|
6045
|
+
id: string;
|
|
6046
|
+
rpcService: string;
|
|
6047
|
+
rpcMethod: string;
|
|
6048
|
+
path?: string | undefined;
|
|
6049
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6050
|
+
line?: number | undefined;
|
|
6051
|
+
}>, z.ZodObject<{
|
|
6052
|
+
id: z.ZodString;
|
|
6053
|
+
type: z.ZodLiteral<"WebSocketChannelNode">;
|
|
6054
|
+
name: z.ZodString;
|
|
6055
|
+
service: z.ZodString;
|
|
6056
|
+
channel: z.ZodString;
|
|
6057
|
+
path: z.ZodOptional<z.ZodString>;
|
|
6058
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
6059
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
6060
|
+
}, "strip", z.ZodTypeAny, {
|
|
6061
|
+
name: string;
|
|
6062
|
+
type: "WebSocketChannelNode";
|
|
6063
|
+
id: string;
|
|
6064
|
+
service: string;
|
|
6065
|
+
channel: string;
|
|
6066
|
+
path?: string | undefined;
|
|
6067
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6068
|
+
line?: number | undefined;
|
|
6069
|
+
}, {
|
|
6070
|
+
name: string;
|
|
6071
|
+
type: "WebSocketChannelNode";
|
|
6072
|
+
id: string;
|
|
6073
|
+
service: string;
|
|
6074
|
+
channel: string;
|
|
6075
|
+
path?: string | undefined;
|
|
6076
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6077
|
+
line?: number | undefined;
|
|
5810
6078
|
}>]>, "many">;
|
|
5811
6079
|
edges: z.ZodArray<z.ZodObject<{
|
|
5812
6080
|
id: z.ZodString;
|
|
@@ -6000,6 +6268,24 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
6000
6268
|
path?: string | undefined;
|
|
6001
6269
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6002
6270
|
line?: number | undefined;
|
|
6271
|
+
} | {
|
|
6272
|
+
name: string;
|
|
6273
|
+
type: "GrpcMethodNode";
|
|
6274
|
+
id: string;
|
|
6275
|
+
rpcService: string;
|
|
6276
|
+
rpcMethod: string;
|
|
6277
|
+
path?: string | undefined;
|
|
6278
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6279
|
+
line?: number | undefined;
|
|
6280
|
+
} | {
|
|
6281
|
+
name: string;
|
|
6282
|
+
type: "WebSocketChannelNode";
|
|
6283
|
+
id: string;
|
|
6284
|
+
service: string;
|
|
6285
|
+
channel: string;
|
|
6286
|
+
path?: string | undefined;
|
|
6287
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6288
|
+
line?: number | undefined;
|
|
6003
6289
|
})[];
|
|
6004
6290
|
edges: {
|
|
6005
6291
|
type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
@@ -6131,6 +6417,24 @@ declare const SerializedGraphSchema: z.ZodObject<{
|
|
|
6131
6417
|
path?: string | undefined;
|
|
6132
6418
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6133
6419
|
line?: number | undefined;
|
|
6420
|
+
} | {
|
|
6421
|
+
name: string;
|
|
6422
|
+
type: "GrpcMethodNode";
|
|
6423
|
+
id: string;
|
|
6424
|
+
rpcService: string;
|
|
6425
|
+
rpcMethod: string;
|
|
6426
|
+
path?: string | undefined;
|
|
6427
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6428
|
+
line?: number | undefined;
|
|
6429
|
+
} | {
|
|
6430
|
+
name: string;
|
|
6431
|
+
type: "WebSocketChannelNode";
|
|
6432
|
+
id: string;
|
|
6433
|
+
service: string;
|
|
6434
|
+
channel: string;
|
|
6435
|
+
path?: string | undefined;
|
|
6436
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6437
|
+
line?: number | undefined;
|
|
6134
6438
|
})[];
|
|
6135
6439
|
edges: {
|
|
6136
6440
|
type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
@@ -6563,6 +6867,60 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6563
6867
|
path?: string | undefined;
|
|
6564
6868
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6565
6869
|
line?: number | undefined;
|
|
6870
|
+
}>, z.ZodObject<{
|
|
6871
|
+
id: z.ZodString;
|
|
6872
|
+
type: z.ZodLiteral<"GrpcMethodNode">;
|
|
6873
|
+
name: z.ZodString;
|
|
6874
|
+
rpcService: z.ZodString;
|
|
6875
|
+
rpcMethod: z.ZodString;
|
|
6876
|
+
path: z.ZodOptional<z.ZodString>;
|
|
6877
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
6878
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
6879
|
+
}, "strip", z.ZodTypeAny, {
|
|
6880
|
+
name: string;
|
|
6881
|
+
type: "GrpcMethodNode";
|
|
6882
|
+
id: string;
|
|
6883
|
+
rpcService: string;
|
|
6884
|
+
rpcMethod: string;
|
|
6885
|
+
path?: string | undefined;
|
|
6886
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6887
|
+
line?: number | undefined;
|
|
6888
|
+
}, {
|
|
6889
|
+
name: string;
|
|
6890
|
+
type: "GrpcMethodNode";
|
|
6891
|
+
id: string;
|
|
6892
|
+
rpcService: string;
|
|
6893
|
+
rpcMethod: string;
|
|
6894
|
+
path?: string | undefined;
|
|
6895
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6896
|
+
line?: number | undefined;
|
|
6897
|
+
}>, z.ZodObject<{
|
|
6898
|
+
id: z.ZodString;
|
|
6899
|
+
type: z.ZodLiteral<"WebSocketChannelNode">;
|
|
6900
|
+
name: z.ZodString;
|
|
6901
|
+
service: z.ZodString;
|
|
6902
|
+
channel: z.ZodString;
|
|
6903
|
+
path: z.ZodOptional<z.ZodString>;
|
|
6904
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
6905
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
6906
|
+
}, "strip", z.ZodTypeAny, {
|
|
6907
|
+
name: string;
|
|
6908
|
+
type: "WebSocketChannelNode";
|
|
6909
|
+
id: string;
|
|
6910
|
+
service: string;
|
|
6911
|
+
channel: string;
|
|
6912
|
+
path?: string | undefined;
|
|
6913
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6914
|
+
line?: number | undefined;
|
|
6915
|
+
}, {
|
|
6916
|
+
name: string;
|
|
6917
|
+
type: "WebSocketChannelNode";
|
|
6918
|
+
id: string;
|
|
6919
|
+
service: string;
|
|
6920
|
+
channel: string;
|
|
6921
|
+
path?: string | undefined;
|
|
6922
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6923
|
+
line?: number | undefined;
|
|
6566
6924
|
}>]>, "many">;
|
|
6567
6925
|
edges: z.ZodArray<z.ZodObject<{
|
|
6568
6926
|
id: z.ZodString;
|
|
@@ -6756,11 +7114,29 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6756
7114
|
path?: string | undefined;
|
|
6757
7115
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6758
7116
|
line?: number | undefined;
|
|
6759
|
-
}
|
|
6760
|
-
|
|
6761
|
-
type: "
|
|
7117
|
+
} | {
|
|
7118
|
+
name: string;
|
|
7119
|
+
type: "GrpcMethodNode";
|
|
6762
7120
|
id: string;
|
|
6763
|
-
|
|
7121
|
+
rpcService: string;
|
|
7122
|
+
rpcMethod: string;
|
|
7123
|
+
path?: string | undefined;
|
|
7124
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7125
|
+
line?: number | undefined;
|
|
7126
|
+
} | {
|
|
7127
|
+
name: string;
|
|
7128
|
+
type: "WebSocketChannelNode";
|
|
7129
|
+
id: string;
|
|
7130
|
+
service: string;
|
|
7131
|
+
channel: string;
|
|
7132
|
+
path?: string | undefined;
|
|
7133
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7134
|
+
line?: number | undefined;
|
|
7135
|
+
})[];
|
|
7136
|
+
edges: {
|
|
7137
|
+
type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
7138
|
+
id: string;
|
|
7139
|
+
source: string;
|
|
6764
7140
|
target: string;
|
|
6765
7141
|
provenance: "EXTRACTED" | "INFERRED" | "OBSERVED" | "STALE";
|
|
6766
7142
|
lastObserved?: string | undefined;
|
|
@@ -6887,6 +7263,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
6887
7263
|
path?: string | undefined;
|
|
6888
7264
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
6889
7265
|
line?: number | undefined;
|
|
7266
|
+
} | {
|
|
7267
|
+
name: string;
|
|
7268
|
+
type: "GrpcMethodNode";
|
|
7269
|
+
id: string;
|
|
7270
|
+
rpcService: string;
|
|
7271
|
+
rpcMethod: string;
|
|
7272
|
+
path?: string | undefined;
|
|
7273
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7274
|
+
line?: number | undefined;
|
|
7275
|
+
} | {
|
|
7276
|
+
name: string;
|
|
7277
|
+
type: "WebSocketChannelNode";
|
|
7278
|
+
id: string;
|
|
7279
|
+
service: string;
|
|
7280
|
+
channel: string;
|
|
7281
|
+
path?: string | undefined;
|
|
7282
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7283
|
+
line?: number | undefined;
|
|
6890
7284
|
})[];
|
|
6891
7285
|
edges: {
|
|
6892
7286
|
type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
@@ -7303,6 +7697,60 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7303
7697
|
path?: string | undefined;
|
|
7304
7698
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7305
7699
|
line?: number | undefined;
|
|
7700
|
+
}>, z.ZodObject<{
|
|
7701
|
+
id: z.ZodString;
|
|
7702
|
+
type: z.ZodLiteral<"GrpcMethodNode">;
|
|
7703
|
+
name: z.ZodString;
|
|
7704
|
+
rpcService: z.ZodString;
|
|
7705
|
+
rpcMethod: z.ZodString;
|
|
7706
|
+
path: z.ZodOptional<z.ZodString>;
|
|
7707
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
7708
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
7709
|
+
}, "strip", z.ZodTypeAny, {
|
|
7710
|
+
name: string;
|
|
7711
|
+
type: "GrpcMethodNode";
|
|
7712
|
+
id: string;
|
|
7713
|
+
rpcService: string;
|
|
7714
|
+
rpcMethod: string;
|
|
7715
|
+
path?: string | undefined;
|
|
7716
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7717
|
+
line?: number | undefined;
|
|
7718
|
+
}, {
|
|
7719
|
+
name: string;
|
|
7720
|
+
type: "GrpcMethodNode";
|
|
7721
|
+
id: string;
|
|
7722
|
+
rpcService: string;
|
|
7723
|
+
rpcMethod: string;
|
|
7724
|
+
path?: string | undefined;
|
|
7725
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7726
|
+
line?: number | undefined;
|
|
7727
|
+
}>, z.ZodObject<{
|
|
7728
|
+
id: z.ZodString;
|
|
7729
|
+
type: z.ZodLiteral<"WebSocketChannelNode">;
|
|
7730
|
+
name: z.ZodString;
|
|
7731
|
+
service: z.ZodString;
|
|
7732
|
+
channel: z.ZodString;
|
|
7733
|
+
path: z.ZodOptional<z.ZodString>;
|
|
7734
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
7735
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
7736
|
+
}, "strip", z.ZodTypeAny, {
|
|
7737
|
+
name: string;
|
|
7738
|
+
type: "WebSocketChannelNode";
|
|
7739
|
+
id: string;
|
|
7740
|
+
service: string;
|
|
7741
|
+
channel: string;
|
|
7742
|
+
path?: string | undefined;
|
|
7743
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7744
|
+
line?: number | undefined;
|
|
7745
|
+
}, {
|
|
7746
|
+
name: string;
|
|
7747
|
+
type: "WebSocketChannelNode";
|
|
7748
|
+
id: string;
|
|
7749
|
+
service: string;
|
|
7750
|
+
channel: string;
|
|
7751
|
+
path?: string | undefined;
|
|
7752
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7753
|
+
line?: number | undefined;
|
|
7306
7754
|
}>]>, "many">;
|
|
7307
7755
|
edges: z.ZodArray<z.ZodObject<{
|
|
7308
7756
|
id: z.ZodString;
|
|
@@ -7496,6 +7944,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7496
7944
|
path?: string | undefined;
|
|
7497
7945
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7498
7946
|
line?: number | undefined;
|
|
7947
|
+
} | {
|
|
7948
|
+
name: string;
|
|
7949
|
+
type: "GrpcMethodNode";
|
|
7950
|
+
id: string;
|
|
7951
|
+
rpcService: string;
|
|
7952
|
+
rpcMethod: string;
|
|
7953
|
+
path?: string | undefined;
|
|
7954
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7955
|
+
line?: number | undefined;
|
|
7956
|
+
} | {
|
|
7957
|
+
name: string;
|
|
7958
|
+
type: "WebSocketChannelNode";
|
|
7959
|
+
id: string;
|
|
7960
|
+
service: string;
|
|
7961
|
+
channel: string;
|
|
7962
|
+
path?: string | undefined;
|
|
7963
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7964
|
+
line?: number | undefined;
|
|
7499
7965
|
})[];
|
|
7500
7966
|
edges: {
|
|
7501
7967
|
type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
@@ -7627,6 +8093,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
7627
8093
|
path?: string | undefined;
|
|
7628
8094
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
7629
8095
|
line?: number | undefined;
|
|
8096
|
+
} | {
|
|
8097
|
+
name: string;
|
|
8098
|
+
type: "GrpcMethodNode";
|
|
8099
|
+
id: string;
|
|
8100
|
+
rpcService: string;
|
|
8101
|
+
rpcMethod: string;
|
|
8102
|
+
path?: string | undefined;
|
|
8103
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8104
|
+
line?: number | undefined;
|
|
8105
|
+
} | {
|
|
8106
|
+
name: string;
|
|
8107
|
+
type: "WebSocketChannelNode";
|
|
8108
|
+
id: string;
|
|
8109
|
+
service: string;
|
|
8110
|
+
channel: string;
|
|
8111
|
+
path?: string | undefined;
|
|
8112
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8113
|
+
line?: number | undefined;
|
|
7630
8114
|
})[];
|
|
7631
8115
|
edges: {
|
|
7632
8116
|
type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
@@ -8045,6 +8529,60 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8045
8529
|
path?: string | undefined;
|
|
8046
8530
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8047
8531
|
line?: number | undefined;
|
|
8532
|
+
}>, z.ZodObject<{
|
|
8533
|
+
id: z.ZodString;
|
|
8534
|
+
type: z.ZodLiteral<"GrpcMethodNode">;
|
|
8535
|
+
name: z.ZodString;
|
|
8536
|
+
rpcService: z.ZodString;
|
|
8537
|
+
rpcMethod: z.ZodString;
|
|
8538
|
+
path: z.ZodOptional<z.ZodString>;
|
|
8539
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
8540
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
8541
|
+
}, "strip", z.ZodTypeAny, {
|
|
8542
|
+
name: string;
|
|
8543
|
+
type: "GrpcMethodNode";
|
|
8544
|
+
id: string;
|
|
8545
|
+
rpcService: string;
|
|
8546
|
+
rpcMethod: string;
|
|
8547
|
+
path?: string | undefined;
|
|
8548
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8549
|
+
line?: number | undefined;
|
|
8550
|
+
}, {
|
|
8551
|
+
name: string;
|
|
8552
|
+
type: "GrpcMethodNode";
|
|
8553
|
+
id: string;
|
|
8554
|
+
rpcService: string;
|
|
8555
|
+
rpcMethod: string;
|
|
8556
|
+
path?: string | undefined;
|
|
8557
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8558
|
+
line?: number | undefined;
|
|
8559
|
+
}>, z.ZodObject<{
|
|
8560
|
+
id: z.ZodString;
|
|
8561
|
+
type: z.ZodLiteral<"WebSocketChannelNode">;
|
|
8562
|
+
name: z.ZodString;
|
|
8563
|
+
service: z.ZodString;
|
|
8564
|
+
channel: z.ZodString;
|
|
8565
|
+
path: z.ZodOptional<z.ZodString>;
|
|
8566
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
8567
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
8568
|
+
}, "strip", z.ZodTypeAny, {
|
|
8569
|
+
name: string;
|
|
8570
|
+
type: "WebSocketChannelNode";
|
|
8571
|
+
id: string;
|
|
8572
|
+
service: string;
|
|
8573
|
+
channel: string;
|
|
8574
|
+
path?: string | undefined;
|
|
8575
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8576
|
+
line?: number | undefined;
|
|
8577
|
+
}, {
|
|
8578
|
+
name: string;
|
|
8579
|
+
type: "WebSocketChannelNode";
|
|
8580
|
+
id: string;
|
|
8581
|
+
service: string;
|
|
8582
|
+
channel: string;
|
|
8583
|
+
path?: string | undefined;
|
|
8584
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8585
|
+
line?: number | undefined;
|
|
8048
8586
|
}>]>;
|
|
8049
8587
|
after: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8050
8588
|
id: z.ZodString;
|
|
@@ -8437,6 +8975,60 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8437
8975
|
path?: string | undefined;
|
|
8438
8976
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8439
8977
|
line?: number | undefined;
|
|
8978
|
+
}>, z.ZodObject<{
|
|
8979
|
+
id: z.ZodString;
|
|
8980
|
+
type: z.ZodLiteral<"GrpcMethodNode">;
|
|
8981
|
+
name: z.ZodString;
|
|
8982
|
+
rpcService: z.ZodString;
|
|
8983
|
+
rpcMethod: z.ZodString;
|
|
8984
|
+
path: z.ZodOptional<z.ZodString>;
|
|
8985
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
8986
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
8987
|
+
}, "strip", z.ZodTypeAny, {
|
|
8988
|
+
name: string;
|
|
8989
|
+
type: "GrpcMethodNode";
|
|
8990
|
+
id: string;
|
|
8991
|
+
rpcService: string;
|
|
8992
|
+
rpcMethod: string;
|
|
8993
|
+
path?: string | undefined;
|
|
8994
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8995
|
+
line?: number | undefined;
|
|
8996
|
+
}, {
|
|
8997
|
+
name: string;
|
|
8998
|
+
type: "GrpcMethodNode";
|
|
8999
|
+
id: string;
|
|
9000
|
+
rpcService: string;
|
|
9001
|
+
rpcMethod: string;
|
|
9002
|
+
path?: string | undefined;
|
|
9003
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9004
|
+
line?: number | undefined;
|
|
9005
|
+
}>, z.ZodObject<{
|
|
9006
|
+
id: z.ZodString;
|
|
9007
|
+
type: z.ZodLiteral<"WebSocketChannelNode">;
|
|
9008
|
+
name: z.ZodString;
|
|
9009
|
+
service: z.ZodString;
|
|
9010
|
+
channel: z.ZodString;
|
|
9011
|
+
path: z.ZodOptional<z.ZodString>;
|
|
9012
|
+
line: z.ZodOptional<z.ZodNumber>;
|
|
9013
|
+
discoveredVia: z.ZodOptional<z.ZodEnum<["static", "otel", "merged"]>>;
|
|
9014
|
+
}, "strip", z.ZodTypeAny, {
|
|
9015
|
+
name: string;
|
|
9016
|
+
type: "WebSocketChannelNode";
|
|
9017
|
+
id: string;
|
|
9018
|
+
service: string;
|
|
9019
|
+
channel: string;
|
|
9020
|
+
path?: string | undefined;
|
|
9021
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9022
|
+
line?: number | undefined;
|
|
9023
|
+
}, {
|
|
9024
|
+
name: string;
|
|
9025
|
+
type: "WebSocketChannelNode";
|
|
9026
|
+
id: string;
|
|
9027
|
+
service: string;
|
|
9028
|
+
channel: string;
|
|
9029
|
+
path?: string | undefined;
|
|
9030
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9031
|
+
line?: number | undefined;
|
|
8440
9032
|
}>]>;
|
|
8441
9033
|
}, "strip", z.ZodTypeAny, {
|
|
8442
9034
|
id: string;
|
|
@@ -8547,6 +9139,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8547
9139
|
path?: string | undefined;
|
|
8548
9140
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8549
9141
|
line?: number | undefined;
|
|
9142
|
+
} | {
|
|
9143
|
+
name: string;
|
|
9144
|
+
type: "GrpcMethodNode";
|
|
9145
|
+
id: string;
|
|
9146
|
+
rpcService: string;
|
|
9147
|
+
rpcMethod: string;
|
|
9148
|
+
path?: string | undefined;
|
|
9149
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9150
|
+
line?: number | undefined;
|
|
9151
|
+
} | {
|
|
9152
|
+
name: string;
|
|
9153
|
+
type: "WebSocketChannelNode";
|
|
9154
|
+
id: string;
|
|
9155
|
+
service: string;
|
|
9156
|
+
channel: string;
|
|
9157
|
+
path?: string | undefined;
|
|
9158
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9159
|
+
line?: number | undefined;
|
|
8550
9160
|
};
|
|
8551
9161
|
after: {
|
|
8552
9162
|
name: string;
|
|
@@ -8655,6 +9265,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8655
9265
|
path?: string | undefined;
|
|
8656
9266
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8657
9267
|
line?: number | undefined;
|
|
9268
|
+
} | {
|
|
9269
|
+
name: string;
|
|
9270
|
+
type: "GrpcMethodNode";
|
|
9271
|
+
id: string;
|
|
9272
|
+
rpcService: string;
|
|
9273
|
+
rpcMethod: string;
|
|
9274
|
+
path?: string | undefined;
|
|
9275
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9276
|
+
line?: number | undefined;
|
|
9277
|
+
} | {
|
|
9278
|
+
name: string;
|
|
9279
|
+
type: "WebSocketChannelNode";
|
|
9280
|
+
id: string;
|
|
9281
|
+
service: string;
|
|
9282
|
+
channel: string;
|
|
9283
|
+
path?: string | undefined;
|
|
9284
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9285
|
+
line?: number | undefined;
|
|
8658
9286
|
};
|
|
8659
9287
|
}, {
|
|
8660
9288
|
id: string;
|
|
@@ -8765,6 +9393,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8765
9393
|
path?: string | undefined;
|
|
8766
9394
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8767
9395
|
line?: number | undefined;
|
|
9396
|
+
} | {
|
|
9397
|
+
name: string;
|
|
9398
|
+
type: "GrpcMethodNode";
|
|
9399
|
+
id: string;
|
|
9400
|
+
rpcService: string;
|
|
9401
|
+
rpcMethod: string;
|
|
9402
|
+
path?: string | undefined;
|
|
9403
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9404
|
+
line?: number | undefined;
|
|
9405
|
+
} | {
|
|
9406
|
+
name: string;
|
|
9407
|
+
type: "WebSocketChannelNode";
|
|
9408
|
+
id: string;
|
|
9409
|
+
service: string;
|
|
9410
|
+
channel: string;
|
|
9411
|
+
path?: string | undefined;
|
|
9412
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9413
|
+
line?: number | undefined;
|
|
8768
9414
|
};
|
|
8769
9415
|
after: {
|
|
8770
9416
|
name: string;
|
|
@@ -8873,6 +9519,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
8873
9519
|
path?: string | undefined;
|
|
8874
9520
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
8875
9521
|
line?: number | undefined;
|
|
9522
|
+
} | {
|
|
9523
|
+
name: string;
|
|
9524
|
+
type: "GrpcMethodNode";
|
|
9525
|
+
id: string;
|
|
9526
|
+
rpcService: string;
|
|
9527
|
+
rpcMethod: string;
|
|
9528
|
+
path?: string | undefined;
|
|
9529
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9530
|
+
line?: number | undefined;
|
|
9531
|
+
} | {
|
|
9532
|
+
name: string;
|
|
9533
|
+
type: "WebSocketChannelNode";
|
|
9534
|
+
id: string;
|
|
9535
|
+
service: string;
|
|
9536
|
+
channel: string;
|
|
9537
|
+
path?: string | undefined;
|
|
9538
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9539
|
+
line?: number | undefined;
|
|
8876
9540
|
};
|
|
8877
9541
|
}>, "many">;
|
|
8878
9542
|
edges: z.ZodArray<z.ZodObject<{
|
|
@@ -9248,6 +9912,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9248
9912
|
path?: string | undefined;
|
|
9249
9913
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9250
9914
|
line?: number | undefined;
|
|
9915
|
+
} | {
|
|
9916
|
+
name: string;
|
|
9917
|
+
type: "GrpcMethodNode";
|
|
9918
|
+
id: string;
|
|
9919
|
+
rpcService: string;
|
|
9920
|
+
rpcMethod: string;
|
|
9921
|
+
path?: string | undefined;
|
|
9922
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9923
|
+
line?: number | undefined;
|
|
9924
|
+
} | {
|
|
9925
|
+
name: string;
|
|
9926
|
+
type: "WebSocketChannelNode";
|
|
9927
|
+
id: string;
|
|
9928
|
+
service: string;
|
|
9929
|
+
channel: string;
|
|
9930
|
+
path?: string | undefined;
|
|
9931
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9932
|
+
line?: number | undefined;
|
|
9251
9933
|
};
|
|
9252
9934
|
after: {
|
|
9253
9935
|
name: string;
|
|
@@ -9356,6 +10038,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9356
10038
|
path?: string | undefined;
|
|
9357
10039
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9358
10040
|
line?: number | undefined;
|
|
10041
|
+
} | {
|
|
10042
|
+
name: string;
|
|
10043
|
+
type: "GrpcMethodNode";
|
|
10044
|
+
id: string;
|
|
10045
|
+
rpcService: string;
|
|
10046
|
+
rpcMethod: string;
|
|
10047
|
+
path?: string | undefined;
|
|
10048
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10049
|
+
line?: number | undefined;
|
|
10050
|
+
} | {
|
|
10051
|
+
name: string;
|
|
10052
|
+
type: "WebSocketChannelNode";
|
|
10053
|
+
id: string;
|
|
10054
|
+
service: string;
|
|
10055
|
+
channel: string;
|
|
10056
|
+
path?: string | undefined;
|
|
10057
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10058
|
+
line?: number | undefined;
|
|
9359
10059
|
};
|
|
9360
10060
|
}[];
|
|
9361
10061
|
edges: {
|
|
@@ -9515,6 +10215,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9515
10215
|
path?: string | undefined;
|
|
9516
10216
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9517
10217
|
line?: number | undefined;
|
|
10218
|
+
} | {
|
|
10219
|
+
name: string;
|
|
10220
|
+
type: "GrpcMethodNode";
|
|
10221
|
+
id: string;
|
|
10222
|
+
rpcService: string;
|
|
10223
|
+
rpcMethod: string;
|
|
10224
|
+
path?: string | undefined;
|
|
10225
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10226
|
+
line?: number | undefined;
|
|
10227
|
+
} | {
|
|
10228
|
+
name: string;
|
|
10229
|
+
type: "WebSocketChannelNode";
|
|
10230
|
+
id: string;
|
|
10231
|
+
service: string;
|
|
10232
|
+
channel: string;
|
|
10233
|
+
path?: string | undefined;
|
|
10234
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10235
|
+
line?: number | undefined;
|
|
9518
10236
|
};
|
|
9519
10237
|
after: {
|
|
9520
10238
|
name: string;
|
|
@@ -9623,6 +10341,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9623
10341
|
path?: string | undefined;
|
|
9624
10342
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9625
10343
|
line?: number | undefined;
|
|
10344
|
+
} | {
|
|
10345
|
+
name: string;
|
|
10346
|
+
type: "GrpcMethodNode";
|
|
10347
|
+
id: string;
|
|
10348
|
+
rpcService: string;
|
|
10349
|
+
rpcMethod: string;
|
|
10350
|
+
path?: string | undefined;
|
|
10351
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10352
|
+
line?: number | undefined;
|
|
10353
|
+
} | {
|
|
10354
|
+
name: string;
|
|
10355
|
+
type: "WebSocketChannelNode";
|
|
10356
|
+
id: string;
|
|
10357
|
+
service: string;
|
|
10358
|
+
channel: string;
|
|
10359
|
+
path?: string | undefined;
|
|
10360
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10361
|
+
line?: number | undefined;
|
|
9626
10362
|
};
|
|
9627
10363
|
}[];
|
|
9628
10364
|
edges: {
|
|
@@ -9788,6 +10524,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9788
10524
|
path?: string | undefined;
|
|
9789
10525
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9790
10526
|
line?: number | undefined;
|
|
10527
|
+
} | {
|
|
10528
|
+
name: string;
|
|
10529
|
+
type: "GrpcMethodNode";
|
|
10530
|
+
id: string;
|
|
10531
|
+
rpcService: string;
|
|
10532
|
+
rpcMethod: string;
|
|
10533
|
+
path?: string | undefined;
|
|
10534
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10535
|
+
line?: number | undefined;
|
|
10536
|
+
} | {
|
|
10537
|
+
name: string;
|
|
10538
|
+
type: "WebSocketChannelNode";
|
|
10539
|
+
id: string;
|
|
10540
|
+
service: string;
|
|
10541
|
+
channel: string;
|
|
10542
|
+
path?: string | undefined;
|
|
10543
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10544
|
+
line?: number | undefined;
|
|
9791
10545
|
})[];
|
|
9792
10546
|
edges: {
|
|
9793
10547
|
type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
@@ -9920,6 +10674,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
9920
10674
|
path?: string | undefined;
|
|
9921
10675
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
9922
10676
|
line?: number | undefined;
|
|
10677
|
+
} | {
|
|
10678
|
+
name: string;
|
|
10679
|
+
type: "GrpcMethodNode";
|
|
10680
|
+
id: string;
|
|
10681
|
+
rpcService: string;
|
|
10682
|
+
rpcMethod: string;
|
|
10683
|
+
path?: string | undefined;
|
|
10684
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10685
|
+
line?: number | undefined;
|
|
10686
|
+
} | {
|
|
10687
|
+
name: string;
|
|
10688
|
+
type: "WebSocketChannelNode";
|
|
10689
|
+
id: string;
|
|
10690
|
+
service: string;
|
|
10691
|
+
channel: string;
|
|
10692
|
+
path?: string | undefined;
|
|
10693
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10694
|
+
line?: number | undefined;
|
|
9923
10695
|
})[];
|
|
9924
10696
|
edges: {
|
|
9925
10697
|
type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
@@ -10054,6 +10826,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10054
10826
|
path?: string | undefined;
|
|
10055
10827
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10056
10828
|
line?: number | undefined;
|
|
10829
|
+
} | {
|
|
10830
|
+
name: string;
|
|
10831
|
+
type: "GrpcMethodNode";
|
|
10832
|
+
id: string;
|
|
10833
|
+
rpcService: string;
|
|
10834
|
+
rpcMethod: string;
|
|
10835
|
+
path?: string | undefined;
|
|
10836
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10837
|
+
line?: number | undefined;
|
|
10838
|
+
} | {
|
|
10839
|
+
name: string;
|
|
10840
|
+
type: "WebSocketChannelNode";
|
|
10841
|
+
id: string;
|
|
10842
|
+
service: string;
|
|
10843
|
+
channel: string;
|
|
10844
|
+
path?: string | undefined;
|
|
10845
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10846
|
+
line?: number | undefined;
|
|
10057
10847
|
};
|
|
10058
10848
|
after: {
|
|
10059
10849
|
name: string;
|
|
@@ -10162,6 +10952,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10162
10952
|
path?: string | undefined;
|
|
10163
10953
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10164
10954
|
line?: number | undefined;
|
|
10955
|
+
} | {
|
|
10956
|
+
name: string;
|
|
10957
|
+
type: "GrpcMethodNode";
|
|
10958
|
+
id: string;
|
|
10959
|
+
rpcService: string;
|
|
10960
|
+
rpcMethod: string;
|
|
10961
|
+
path?: string | undefined;
|
|
10962
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10963
|
+
line?: number | undefined;
|
|
10964
|
+
} | {
|
|
10965
|
+
name: string;
|
|
10966
|
+
type: "WebSocketChannelNode";
|
|
10967
|
+
id: string;
|
|
10968
|
+
service: string;
|
|
10969
|
+
channel: string;
|
|
10970
|
+
path?: string | undefined;
|
|
10971
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10972
|
+
line?: number | undefined;
|
|
10165
10973
|
};
|
|
10166
10974
|
}[];
|
|
10167
10975
|
edges: {
|
|
@@ -10327,6 +11135,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10327
11135
|
path?: string | undefined;
|
|
10328
11136
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10329
11137
|
line?: number | undefined;
|
|
11138
|
+
} | {
|
|
11139
|
+
name: string;
|
|
11140
|
+
type: "GrpcMethodNode";
|
|
11141
|
+
id: string;
|
|
11142
|
+
rpcService: string;
|
|
11143
|
+
rpcMethod: string;
|
|
11144
|
+
path?: string | undefined;
|
|
11145
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11146
|
+
line?: number | undefined;
|
|
11147
|
+
} | {
|
|
11148
|
+
name: string;
|
|
11149
|
+
type: "WebSocketChannelNode";
|
|
11150
|
+
id: string;
|
|
11151
|
+
service: string;
|
|
11152
|
+
channel: string;
|
|
11153
|
+
path?: string | undefined;
|
|
11154
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11155
|
+
line?: number | undefined;
|
|
10330
11156
|
})[];
|
|
10331
11157
|
edges: {
|
|
10332
11158
|
type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
@@ -10459,6 +11285,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10459
11285
|
path?: string | undefined;
|
|
10460
11286
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10461
11287
|
line?: number | undefined;
|
|
11288
|
+
} | {
|
|
11289
|
+
name: string;
|
|
11290
|
+
type: "GrpcMethodNode";
|
|
11291
|
+
id: string;
|
|
11292
|
+
rpcService: string;
|
|
11293
|
+
rpcMethod: string;
|
|
11294
|
+
path?: string | undefined;
|
|
11295
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11296
|
+
line?: number | undefined;
|
|
11297
|
+
} | {
|
|
11298
|
+
name: string;
|
|
11299
|
+
type: "WebSocketChannelNode";
|
|
11300
|
+
id: string;
|
|
11301
|
+
service: string;
|
|
11302
|
+
channel: string;
|
|
11303
|
+
path?: string | undefined;
|
|
11304
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11305
|
+
line?: number | undefined;
|
|
10462
11306
|
})[];
|
|
10463
11307
|
edges: {
|
|
10464
11308
|
type: "CALLS" | "DEPENDS_ON" | "CONNECTS_TO" | "CONFIGURED_BY" | "PUBLISHES_TO" | "CONSUMES_FROM" | "RUNS_ON" | "CONTAINS" | "IMPORTS";
|
|
@@ -10593,6 +11437,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10593
11437
|
path?: string | undefined;
|
|
10594
11438
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10595
11439
|
line?: number | undefined;
|
|
11440
|
+
} | {
|
|
11441
|
+
name: string;
|
|
11442
|
+
type: "GrpcMethodNode";
|
|
11443
|
+
id: string;
|
|
11444
|
+
rpcService: string;
|
|
11445
|
+
rpcMethod: string;
|
|
11446
|
+
path?: string | undefined;
|
|
11447
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11448
|
+
line?: number | undefined;
|
|
11449
|
+
} | {
|
|
11450
|
+
name: string;
|
|
11451
|
+
type: "WebSocketChannelNode";
|
|
11452
|
+
id: string;
|
|
11453
|
+
service: string;
|
|
11454
|
+
channel: string;
|
|
11455
|
+
path?: string | undefined;
|
|
11456
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11457
|
+
line?: number | undefined;
|
|
10596
11458
|
};
|
|
10597
11459
|
after: {
|
|
10598
11460
|
name: string;
|
|
@@ -10701,6 +11563,24 @@ declare const GraphDiffResultSchema: z.ZodObject<{
|
|
|
10701
11563
|
path?: string | undefined;
|
|
10702
11564
|
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
10703
11565
|
line?: number | undefined;
|
|
11566
|
+
} | {
|
|
11567
|
+
name: string;
|
|
11568
|
+
type: "GrpcMethodNode";
|
|
11569
|
+
id: string;
|
|
11570
|
+
rpcService: string;
|
|
11571
|
+
rpcMethod: string;
|
|
11572
|
+
path?: string | undefined;
|
|
11573
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11574
|
+
line?: number | undefined;
|
|
11575
|
+
} | {
|
|
11576
|
+
name: string;
|
|
11577
|
+
type: "WebSocketChannelNode";
|
|
11578
|
+
id: string;
|
|
11579
|
+
service: string;
|
|
11580
|
+
channel: string;
|
|
11581
|
+
path?: string | undefined;
|
|
11582
|
+
discoveredVia?: "static" | "otel" | "merged" | undefined;
|
|
11583
|
+
line?: number | undefined;
|
|
10704
11584
|
};
|
|
10705
11585
|
}[];
|
|
10706
11586
|
edges: {
|
|
@@ -10762,4 +11642,4 @@ declare const DEFAULT_EXTRACTED_PRECISION_FLOOR = 0.7;
|
|
|
10762
11642
|
declare function extractedPrecisionFloor(): number;
|
|
10763
11643
|
declare function passesExtractedFloor(confidence: number): boolean;
|
|
10764
11644
|
|
|
10765
|
-
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 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, confidenceForExtracted, confidenceForObservedSignal, configId, databaseId, extractedEdgeId, extractedPrecisionFloor, fileId, frontierId, graphqlOperationId, inferredEdgeId, infraId, localDatabaseId, observedEdgeId, parseConfigId, parseDatabaseId, parseEdgeId, parseFileId, parseFrontierId, parseGraphqlOperationId, parseInfraId, parseRouteId, parseServiceId, passesExtractedFloor, routeId, serviceId };
|
|
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 };
|