Type Alias AnalyticsSupportDecisionExperimental

AnalyticsSupportDecision: {
    notes?: readonly string[];
    supported: true;
} | {
    message: string;
    reason: AnalyticsUnsupportedReason;
    supported: false;
}

An adapter's honest answer about one artifact. supported: false carries a machine-readable reason so a host can fall back to the accessible table instead of rendering an empty chart.