@actnet/app-core - v0.1.0
    Preparing search index...

    Interface ContactRow

    Minimal contact-list row. Backs the compose autocomplete and the People list.

    interface ContactRow {
        did: string;
        displayName: string;
        isCurated: boolean;
        lastInteractionAt: Instant;
    }
    Index

    Properties

    did: string
    displayName: string

    Cached profile display name. Empty string if not fetched yet.

    isCurated: boolean

    true if the user has done a deliberate gesture toward this contact (sent them a DM, invited them to a group). The compose autocomplete shows curated rows under "People" and the rest under "Other".

    lastInteractionAt: Instant

    Most recent interaction with this contact.