@squidcloud/client
    Preparing search index...

    Interface UpsertContextStatusError

    Status of an individual context item after it failed to upsert.

    Contains the error message for why the upsert failed.

    interface UpsertContextStatusError {
        contextId: string;
        errorMessage: string;
        name: string;
        status: "error";
    }

    Hierarchy (View Summary)

    Index

    Properties

    contextId: string

    The unique identifier of the context item.

    errorMessage: string

    Reason the upsert failed.

    name: string

    The name of the context item, typically the title or filename.

    status: "error"

    Whether the context upsert was successful or got an error.