Member Junction
    Preparing search index...

    Progress update emitted during label creation. Consumers can use this to display a progress bar and status messages.

    interface CreateLabelProgressUpdate {
        CurrentEntity?: string;
        Message: string;
        Percentage: number;
        RecordsProcessed?: number;
        Step: CreateLabelStep;
        TotalRecords?: number;
    }
    Index

    Properties

    CurrentEntity?: string

    Entity currently being processed (only during capturing_snapshots)

    Message: string

    Human-readable description of what's happening

    Percentage: number

    Estimated completion percentage (0–100)

    RecordsProcessed?: number

    Number of records processed so far (only during capturing_snapshots)

    Current lifecycle step

    TotalRecords?: number

    Total records to process (only during capturing_snapshots)