using System.Collections.Immutable; namespace StellaOps.Policy; public sealed record PolicyPreviewRequest( string ImageDigest, ImmutableArray Findings, ImmutableArray BaselineVerdicts, PolicySnapshot? SnapshotOverride = null, PolicySnapshotContent? ProposedPolicy = null); public sealed record PolicyPreviewResponse( bool Success, string PolicyDigest, string? RevisionId, ImmutableArray Issues, ImmutableArray Diffs, int ChangedCount);