@valon-technologies/gestalt
    Preparing search index...

    Interface StoreDeclaration

    Declarative schema for one store the SDK ensures exists and matches. Columns are fixed at creation (typically { id, payload }); record-shape evolution lives inside the payload and needs no migration.

    interface StoreDeclaration {
        name: string;
        columns?: ColumnSchema[];
        indexes?: IndexSchema[];
    }
    Index

    Properties

    name: string
    columns?: ColumnSchema[]
    indexes?: IndexSchema[]

    Indexes created together with the store.