@squidcloud/client
    Preparing search index...

    Interface BaseUpsertContextStatus

    Status of an individual context item after successfully upserting it.

    interface BaseUpsertContextStatus {
        contextId: string;
        name: string;
        status: "success" | "error";
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    contextId: string

    The unique identifier of the context item.

    name: string

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

    status: "success" | "error"

    Whether the context upsert was successful, otherwise, what occurred.