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

    Interface UmbBulkContentPublishingArgs

    interface UmbBulkContentPublishingArgs {
        entityType: string;
        headline: string;
        labels: UmbBulkContentPublishingResultLabels;
        process: (unique: string) => Promise<{ error?: unknown }>;
        selection: string[];
        unique: string | null;
        variantIds: UmbVariantId[];
    }
    Index
    entityType: string

    The parent entity to reload once the operation succeeds.

    headline: string

    Headline for the progress dialog (localization alias, e.g. #publish_inProgress).

    Localization keys for the result notification.

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

    Performs the operation for a single item. Called once per selected item, sequentially.

    selection: string[]

    The content items to (un)publish.

    unique: string | null
    variantIds: UmbVariantId[]

    The variants the operation is performed for, used to phrase the result notification.