@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface ComplianceChangedPayload

    Payload for agent.compliance_changed feed events.

    interface ComplianceChangedPayload {
        previous_status: "unknown" | "passing" | "degraded" | "failing";
        current_status: "unknown" | "passing" | "degraded" | "failing";
        compliance_summary?: {
            status: "unknown" | "passing" | "degraded" | "failing";
            lifecycle_stage: "production" | "deprecated" | "development" | "testing";
            tracks: { [key: string]: string };
            streak_days: number;
            last_checked_at: string | null;
            headline: string | null;
            monitoring_paused?: boolean;
            check_interval_hours?: number;
        };
    }
    Index

    Properties

    previous_status: "unknown" | "passing" | "degraded" | "failing"
    current_status: "unknown" | "passing" | "degraded" | "failing"
    compliance_summary?: {
        status: "unknown" | "passing" | "degraded" | "failing";
        lifecycle_stage: "production" | "deprecated" | "development" | "testing";
        tracks: { [key: string]: string };
        streak_days: number;
        last_checked_at: string | null;
        headline: string | null;
        monitoring_paused?: boolean;
        check_interval_hours?: number;
    }

    Type Declaration

    • status: "unknown" | "passing" | "degraded" | "failing"
    • lifecycle_stage: "production" | "deprecated" | "development" | "testing"
    • tracks: { [key: string]: string }
      {
      * "core": "pass",
      * "products": "fail"
      * }
    • streak_days: number
    • last_checked_at: string | null
    • headline: string | null
    • Optionalmonitoring_paused?: boolean
    • Optionalcheck_interval_hours?: number