Member Junction
    Preparing search index...

    Aggregated summary for a single integration, used by the Control Tower UI

    interface IntegrationSummary {
        DurationMs: number | null;
        Icon: string | null;
        Integration: MJCompanyIntegrationEntity;
        LatestRun: IntegrationRunRow | null;
        RecentRuns: IntegrationRunRow[];
        RelativeTime: string;
        SourceType: MJIntegrationSourceTypeEntity | null;
        StatusColor: "green" | "red" | "gray" | "amber";
        TotalErrors: number;
        TotalRecordsSyncedToday: number;
    }
    Index

    Properties

    DurationMs: number | null
    Icon: string | null

    Icon from the Integration entity — FA class, URL, or base64

    LatestRun: IntegrationRunRow | null
    RecentRuns: IntegrationRunRow[]
    RelativeTime: string
    StatusColor: "green" | "red" | "gray" | "amber"
    TotalErrors: number
    TotalRecordsSyncedToday: number