prep docs and service updates
Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled

This commit is contained in:
master
2025-11-21 06:56:36 +00:00
parent ca35db9ef4
commit d519782a8f
242 changed files with 17293 additions and 13367 deletions

View File

@@ -1,12 +1,21 @@
namespace StellaOps.Signals.Models;
using System.Collections.Generic;
namespace StellaOps.Signals.Models;
/// <summary>
/// Normalized callgraph node.
/// </summary>
public sealed record CallgraphNode(
string Id,
string Name,
string Kind,
string? Namespace,
string? File,
int? Line);
public sealed record CallgraphNode(
string Id,
string Name,
string Kind,
string? Namespace,
string? File,
int? Line,
string? Purl = null,
string? SymbolDigest = null,
string? BuildId = null,
string? Language = null,
IReadOnlyList<string>? Evidence = null,
IReadOnlyDictionary<string, string?>? Analyzer = null,
string? CodeId = null);