prorm API Reference
    Preparing search index...

    Interface IndexChange

    Index change details

    interface IndexChange {
        type: "index";
        changeType: ChangeType;
        indexName: string;
        modelDefinition?: IndexDefinition;
        databaseDefinition?: DatabaseIndexInfo;
        changedProperties?: string[];
    }
    Index
    type: "index"
    changeType: ChangeType
    indexName: string
    modelDefinition?: IndexDefinition

    Index definition from model (for create/modify)

    databaseDefinition?: DatabaseIndexInfo

    Index definition from database (for modify/delete)

    changedProperties?: string[]

    Specific properties that changed