Member Junction
    Preparing search index...

    A single tracked job surfaced in the global Activity indicator.

    interface ActivityItem {
        Detail?: string;
        EndedAt?: number;
        Icon?: string;
        ID: string;
        Label: string;
        Progress?: number;
        StartedAt: number;
        Status: ActivityStatus;
    }
    Index

    Properties

    Detail?: string

    Optional secondary detail, e.g. "Sidecar · 18 of 30 items".

    EndedAt?: number

    Epoch ms when the job finished (set on Complete).

    Icon?: string

    Font Awesome icon class for the row.

    ID: string

    Stable unique id (returned by ActivityService.Start).

    Label: string

    Short label, e.g. "Classify pipeline".

    Progress?: number

    Optional 0–100 progress for a determinate bar.

    StartedAt: number

    Epoch ms when the job started.

    Current status.