Documentation - v1.2.0-alpha.3
    Preparing search index...

    Represents an item to be stored in a storage provider.

    Each item can contain arbitrary data along with an optional eTag for optimistic concurrency control.

    interface StoreItem {
        eTag?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Additional properties can be stored in the item.

      Each storage provider may have specific requirements or limitations on property names and values.

    Index

    Properties

    Properties

    eTag?: string

    Optional eTag used for optimistic concurrency control.

    When set to '*', it indicates that the write should proceed regardless of existing data. When comparing eTags, exact string matching is used to determine if data has changed.