prorm API Reference
    Preparing search index...

    Interface BulkItemResult

    Per-item result from a bulk() call.

    interface BulkItemResult {
        action: "create" | "update" | "index" | "delete";
        id?: string;
        status: number;
        error?: { type: string; reason: string };
    }
    Index
    action: "create" | "update" | "index" | "delete"
    id?: string
    status: number
    error?: { type: string; reason: string }