@squidcloud/client
    Preparing search index...

    Interface BulkIngestionJobStatusResponse

    Response describing a bulk-ingestion job's current state and progress counts.

    interface BulkIngestionJobStatusResponse {
        counts: BulkIngestionJobStatusCounts;
        files: BulkIngestionFileStatus[];
        providerBatchIds: string[];
        state: string;
    }
    Index

    Progress counters aggregated from the job's files and logical requests.

    Per-file status, one entry per staged context (bounded by the job's file cap).

    providerBatchIds: string[]

    Provider batch ids submitted for this job.

    state: string

    The job's lifecycle state (e.g. running, completed, failed, cancelled).