@umbraco-cms/backoffice
    Preparing search index...

    Interface UmbEntityBulkActionProgressArgs

    interface UmbEntityBulkActionProgressArgs {
        headline: string;
        process: (unique: string) => Promise<{ error?: unknown }>;
        uniques: string[];
    }
    Index
    headline: string

    The headline shown in the progress dialog.

    process: (unique: string) => Promise<{ error?: unknown }>

    Called once per entity, sequentially. Sequential processing is intentional: concurrent writes cause database locking (notably with SQLite).

    uniques: string[]

    The unique identifiers of the entities to process.