@squidcloud/client
    Preparing search index...

    Interface BulkIngestionProviderBatchRequestCounts

    A provider batch's per-request progress as the provider reports it.

    interface BulkIngestionProviderBatchRequestCounts {
        completed: number;
        failed?: number;
        total: number;
    }
    Index
    completed: number

    Requests the provider ran to a result, succeeded or failed. Requests it reports as cancelled or expired unrun are left out, so total − completed is not the count still in flight.

    failed?: number

    Of completed, the ones that failed, when the provider reports that breakdown.

    total: number

    Requests in the batch.